/* Dead Mosquito Co. — shared stylesheet */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-dark: #0d3b1e;
  --green: #1f7a3d;
  --green-bright: #2da855;
  --green-light: #d4f0dd;
  --green-pale: #eefbf2;
  --sun: #ffcc33;
  --sun-soft: #fff3cd;
  --golden: #f4a24b;
  --golden-deep: #d97b3a;
  --amber: #e67e22;
  --coral: #ff6b6b;
  --dusk: #6b4a7a;
  --cream: #fffef9;
  --ink: #1a2e1f;
  --gray: #6b7566;
  --gray-light: #e8ebe5;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(13,59,30,0.08);
  --shadow-md: 0 6px 20px rgba(13,59,30,0.12);
  --shadow-lg: 0 12px 40px rgba(13,59,30,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(31,122,61,0.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,122,61,0.45); }
.btn-sun {
  background: var(--sun);
  color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(255,204,51,0.4);
}
.btn-sun:hover { background: #f5bc1f; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* TOP BAR */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--sun); text-decoration: none; font-weight: 700; }

/* HEADER */
header {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
nav { display: flex; gap: 24px; align-items: center; }
nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}
nav a:hover { color: var(--green); }
nav a.active { color: var(--green); }
.nav-phone {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
}
.nav-phone:hover { background: var(--green-dark); color: var(--white) !important; }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--green-dark); }

/* HERO */
.hero {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(244,162,75,0.45), transparent 55%),
    radial-gradient(ellipse at 20% 30%, rgba(255,204,51,0.30), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(107,74,122,0.35), transparent 60%),
    linear-gradient(160deg, #0d3b1e 0%, #1f5a2d 35%, #d97b3a 75%, #f4a24b 100%);
  color: var(--white);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20 Q30 10 40 20 T60 20' stroke='rgba(255,255,255,0.04)' fill='none'/%3E%3Ccircle cx='70' cy='70' r='2' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='30' cy='80' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,204,51,0.18);
  border: 1px solid rgba(255,204,51,0.5);
  color: var(--sun);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--sun); font-style: normal; }
.hero-sub {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 12px;
  line-height: 1.5;
}
.hero-safety {
  font-size: 1rem;
  color: var(--sun-soft);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.hero-safety::before {
  content: '🛡️';
  font-size: 1.3rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: 'Book for Summer';
  position: absolute;
  top: -12px; right: 30px;
  background: var(--sun);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-card h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--green-dark);
}
.hero-card ul {
  list-style: none;
  margin-bottom: 24px;
}
.hero-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
}
.hero-card li:last-child { border: none; }
.hero-card li::before {
  content: '✓';
  background: var(--green-light);
  color: var(--green);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* Compact page hero (for sub-pages) — carries the home sunset palette */
.page-hero {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(244,162,75,0.45), transparent 55%),
    radial-gradient(ellipse at 20% 30%, rgba(255,204,51,0.30), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(107,74,122,0.35), transparent 60%),
    linear-gradient(160deg, #0d3b1e 0%, #1f5a2d 35%, #d97b3a 75%, #f4a24b 100%);
  color: var(--white);
  padding: 80px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20 Q30 10 40 20 T60 20' stroke='rgba(255,255,255,0.04)' fill='none'/%3E%3Ccircle cx='70' cy='70' r='2' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='30' cy='80' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.page-hero h1 em { color: var(--sun); font-style: normal; }
.page-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto 20px;
}
.page-hero .breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--sun-soft);
}
.page-hero .breadcrumb a {
  color: var(--sun);
  text-decoration: none;
  font-weight: 700;
}
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* SAFETY STRIP */
.safety-strip {
  background: var(--green-pale);
  padding: 40px 0;
  border-top: 4px solid var(--green-bright);
}
.safety-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}
.safety-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.safety-icon {
  width: 54px;
  height: 54px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.safety-item strong {
  color: var(--green-dark);
  font-size: 1rem;
}
.safety-item span {
  font-size: 0.88rem;
  color: var(--gray);
}

/* SECTIONS */
section.content { padding: 80px 0; }

.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: Georgia, serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 48px;
}
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto 48px; }

/* Long-form prose (for sub-pages) */
.prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink);
}
.prose h2 {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  color: var(--green-dark);
  margin: 48px 0 14px;
  line-height: 1.2;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: var(--green-dark);
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--green); font-weight: 600; }
.prose strong { color: var(--green-dark); }

/* PACKAGES */
.packages { background: var(--white); }
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.package {
  background: var(--cream);
  border: 2px solid var(--gray-light);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-bright); }
.package.featured {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  border-color: var(--green-dark);
}
.package.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun);
  color: var(--green-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.package-icon { font-size: 2.5rem; margin-bottom: 16px; }
.package h3 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.package-tag { font-size: 0.9rem; opacity: 0.75; margin-bottom: 20px; }
.package-price {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.package-price-note { font-size: 0.85rem; opacity: 0.7; margin-bottom: 24px; }
.package ul { list-style: none; margin-bottom: 28px; }
.package li {
  padding: 10px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
}
.package li::before {
  content: '✓';
  background: var(--green-light);
  color: var(--green-dark);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.78rem;
  margin-top: 2px;
}
.package.featured li::before {
  background: var(--sun);
  color: var(--green-dark);
}
.package .btn { width: 100%; }

/* HOW IT WORKS */
.how { background: var(--green-pale); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.step p { color: var(--gray); font-size: 0.95rem; }

/* WHY US */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-features { display: grid; gap: 20px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.why-feature h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.why-feature p { color: var(--gray); font-size: 0.92rem; }
.why-visual {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 20px;
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '🌿';
  position: absolute;
  font-size: 12rem;
  opacity: 0.08;
  bottom: -30px;
  right: -30px;
}
.why-visual blockquote {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.why-visual cite {
  font-size: 0.9rem;
  opacity: 0.85;
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* AREAS */
.areas { background: var(--green-pale); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 32px auto 0;
}
.area-tag {
  background: var(--white);
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-dark);
  text-align: center;
  border: 1px solid var(--gray-light);
  text-decoration: none;
  display: block;
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--green); background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* FAQ */
.faq { background: var(--white); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item summary {
  padding: 24px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.08rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 24px; color: var(--gray); line-height: 1.7; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,204,51,0.1), transparent 40%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--gray); }
.contact-detail span, .contact-detail a {
  font-size: 1.05rem;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { margin-top: 6px; width: 100%; }

/* FOOTER */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.72);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand img { height: 48px; width: auto; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
footer h4 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
}
footer ul a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.82rem;
  text-align: center;
}
.pw-footer {
  background: #0a1f10;
  color: rgba(255,255,255,0.45);
  padding: 14px 0;
  font-size: 0.78rem;
  text-align: center;
}
.pw-footer a { color: var(--sun); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .mobile-menu-btn { display: block; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions .btn { flex: 1; min-width: 160px; }
  .page-hero h1 { font-size: 2rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-title { font-size: 1.9rem; }
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .logo img { height: 44px; }
}

/* BOLD brand-forward hero H1 — single line across the top (Ken 2026-04-22) */
/* hero-inner keeps its default 2-col layout */
.hero-brand-band {
  text-align: center;
  margin: -40px 0 24px;
}
.hero .hero-brand {
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 0 24px rgba(255,204,51,0.25);
  color: #0a0f0a;
  white-space: nowrap;
  font-size: clamp(1.6rem, 6.8vw, 5.4rem);
}
.hero .hero-brand em {
  color: var(--sun);
  font-style: normal;
}
.hero .hero-tagline {
  font-family: Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--sun-soft);
  margin: 0;
  font-weight: 500;
}

/* Sub-page header — bigger logo + wordmark next to mascot */
.logo.logo-with-wordmark img { height: 68px; }
.logo.logo-with-wordmark .wordmark {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  line-height: 1.05;
  color: var(--green-dark);
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin-left: 4px;
}
.logo.logo-with-wordmark .wordmark strong { font-weight: 900; }
.logo.logo-with-wordmark .wordmark em {
  font-style: normal;
  color: var(--golden);
  font-weight: 900;
  font-size: 0.9em;
}
@media (max-width: 860px) {
  .logo.logo-with-wordmark img { height: 52px; }
  .logo.logo-with-wordmark .wordmark { font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .logo.logo-with-wordmark .wordmark { display: none; }
}
