/* =========================================================
   Ear Health Practitioner — April J Westcott
   Countryside Clinical Aesthetic
   ========================================================= */

:root {
  /* Colour palette */
  --ink:        #1f2a44;   /* deep navy, matches logo text */
  --ink-soft:   #3d4866;
  --forest:     #2d4a3e;   /* deep forest green */
  --sage:       #8aa896;   /* muted sage accent */
  --sage-pale:  #d8e2db;
  --cream:      #f6f2ea;   /* warm cream base */
  --cream-deep: #ece5d6;
  --bone:       #fbfaf6;
  --rust:       #a8623a;   /* warm accent for highlights */
  --line:       #d9d3c4;
  --shadow:     rgba(31, 42, 68, 0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Outfit', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--forest); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--rust); }

/* ---------- Typography scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin-bottom: 1.1em; max-width: 62ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage);
}

.lede { font-size: 1.2rem; line-height: 1.6; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav-brand .stag-mark { width: 38px; height: 38px; }
.nav-brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .brand-text span:first-child { font-size: 1.15rem; }
.nav-brand .brand-text span:last-child  {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rust);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem !important;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  transition: background .25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--forest); color: var(--cream) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    z-index: 2;
    order: 2;
  }
  .nav-brand .brand-text span:first-child { font-size: 1rem; }
  .nav-brand .brand-text span:last-child  { font-size: 0.58rem; }
  .nav-brand .stag-mark { width: 34px; height: 34px; }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem var(--gutter) 1.75rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 20px -10px var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s ease, opacity .25s ease, visibility .25s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.95rem 1.4rem !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 60%);
  opacity: 0.5;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 300;
}
.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.hero-meta .value { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px var(--shadow);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(31,42,68,0.25));
}
.hero-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
}
.hero-badge strong { display: block; font-size: 1.6rem; color: var(--forest); font-weight: 500; }
.hero-badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--forest); color: var(--cream); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.25rem; }

/* ---------- Section: Strip / Trust ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.trust-item svg { flex-shrink: 0; }
.trust-item span:last-child { color: var(--sage-pale); }

/* ---------- Services preview ---------- */
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--sage);
}

.service-card {
  background: var(--bone);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sage);
  margin-bottom: 2rem;
  display: block;
}
.service-card h3 { margin-bottom: 1rem; }
.service-card p { font-size: 0.95rem; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

/* ---------- Quote / Testimonial ---------- */
.quote-section {
  background: var(--cream-deep);
  position: relative;
}
.quote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--sage);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 2rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ---------- Featured image / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 540px;
}
.split-image {
  position: relative;
  overflow: hidden;
  background: var(--sage-pale);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bone);
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; min-height: 0; }
  .split-image { aspect-ratio: 4/3; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.65rem; font-size: 0.92rem; }
.site-footer a { color: var(--sage-pale); }
.site-footer a:hover { color: var(--cream); }

.footer-brand .stag-mark { width: 56px; height: 56px; margin-bottom: 1rem; }
.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--sage-pale); max-width: 32ch; }

.footer-base {
  border-top: 1px solid rgba(216, 226, 219, 0.15);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--sage-pale);
  letter-spacing: 0.05em;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 320px; height: 320px;
  background: url('../images/stag-mark.svg') no-repeat center;
  background-size: contain;
  opacity: 0.05;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { margin-top: 1.5rem; }

/* ---------- Services page detailed ---------- */
.service-block {
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: none; }

.service-block .service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5rem;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-block h2 { margin-bottom: 1.5rem; }
.service-block ul {
  list-style: none;
  margin-top: 1.5rem;
}
.service-block ul li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 0.98rem;
}
.service-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 8px;
  background: var(--forest);
  transform: translateY(-50%) rotate(45deg);
}

.price-tag {
  display: inline-block;
  background: var(--forest);
  color: var(--cream);
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
}

/* ---------- About page ---------- */
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait::before {
  content: '';
  position: absolute;
  top: 1rem; left: 1rem;
  right: -1rem; bottom: -1rem;
  border: 1px solid var(--sage);
  z-index: -1;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cred-item {
  padding: 1.5rem;
  background: var(--bone);
  border-left: 3px solid var(--forest);
}
.cred-item h4 { margin-bottom: 0.5rem; color: var(--forest); }
.cred-item p { font-size: 0.88rem; margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { padding-right: 1rem; }
.contact-method {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-method:first-of-type { border-top: 1px solid var(--line); }
.contact-method .icon {
  width: 44px; height: 44px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
}
.contact-method h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.contact-method .value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}
.contact-method .value a { color: var(--ink); }
.contact-method .value a:hover { color: var(--rust); }
.contact-method .note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.25rem; }

.contact-form {
  background: var(--bone);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--bone);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ---------- Service area / coverage ---------- */
.coverage {
  background: var(--ink);
  color: var(--cream);
}
.coverage h2 { color: var(--cream); }
.coverage .lede { color: var(--sage-pale); }
.coverage .area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.coverage .area-list li {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(216, 226, 219, 0.3);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--sage-pale);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--sage);
  transition: transform .3s ease;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding-top: 1rem; color: var(--ink-soft); }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- Mobile fine-tuning ---------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2rem, 9vw, 2.75rem); line-height: 1.1; }
  h2 { font-size: clamp(1.6rem, 7vw, 2.25rem); }
  .lede { font-size: 1.05rem; }
  .hero { padding-top: 2.5rem; }
  .hero-meta { gap: 1.25rem; margin-top: 1.75rem; padding-top: 1.5rem; }
  .hero-meta .value { font-size: 1.05rem; }
  .hero-badge { left: 1rem; bottom: -1rem; padding: 0.85rem 1.1rem; }
  .hero-badge strong { font-size: 1.3rem; }
  section { padding: 3rem 0; }
  .section-head { margin-bottom: 2.5rem; }
  .service-card { padding: 2rem 1.5rem; }
  .cta-row { gap: 0.75rem; }
  .btn { padding: 0.9rem 1.5rem; font-size: 0.82rem; width: 100%; justify-content: center; }
  .cta-row .btn { width: auto; flex: 1; min-width: 0; }
  .quote blockquote { font-size: 1.35rem; }
  .quote-mark { font-size: 4.5rem; }
  .footer-base { font-size: 0.75rem; }
  .credentials { grid-template-columns: 1fr; gap: 1rem; }
  .service-block { padding: 3rem 0; }
  .service-block .service-num { font-size: 3.5rem; }
}

@media (max-width: 400px) {
  .nav-brand .brand-text span:last-child { display: none; }
  .hero-meta { flex-direction: column; gap: 1rem; }
}
