/* =========================================================
   Keyworth Pharmacy — Stylesheet
   ========================================================= */

/* ----- Design tokens ----- */
:root {
  /* Colours */
  --sage-900: #1a2a23;
  --sage-800: #2a3f35;
  --sage-700: #3a5444;
  --sage-600: #4d6c58;
  --sage-500: #6b8a76;
  --sage-300: #b8cdbd;
  --sage-100: #e6ede7;
  --sage-50:  #f3f6f3;

  --cream:    #faf6ef;
  --cream-2:  #f4ede0;
  --paper:    #fffdf8;

  --terracotta: #c66a4a;
  --terracotta-dark: #a44f33;
  --gold:     #c9a253;
  --ink:      #1c1c1a;
  --ink-soft: #4a4a45;
  --line:     #e4dcc9;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter Tight", "Inter", system-ui, sans-serif;

  /* Sizing */
  --container: 1240px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--sage-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--terracotta); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.6em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: -0.005em; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sage-700); }
p { margin: 0 0 1.1em; max-width: 68ch; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--sage-900);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--sage-900); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sage-700);
  display: grid; place-items: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-top: 2px;
}
.nav {
  display: flex; align-items: center; gap: 2rem;
}
.nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2rem;
}
.nav a {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--terracotta); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--sage-800);
  color: var(--cream) !important;
  padding: 0.65rem 1.2rem !important;
  border-radius: 999px;
  font-size: 0.9rem !important;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta:hover { background: var(--terracotta); transform: translateY(-1px); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  min-width: 280px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .25s var(--ease);
  box-shadow: 0 20px 50px -25px rgba(26, 42, 35, 0.25);
  margin-top: 0.5rem;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown ul { flex-direction: column; gap: 0; }
.dropdown ul li { width: 100%; }
.dropdown a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 4px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.dropdown a:hover { background: var(--sage-50); color: var(--sage-800); }
.dropdown-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 0.4rem;
  padding: 0 0.6rem;
}
.dropdown-heading + ul { margin-bottom: 1rem; }
.dropdown-heading + ul + .dropdown-heading { margin-top: 0.4rem; padding-top: 0.8rem; border-top: 1px solid var(--line); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: all .25s var(--ease);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all .25s var(--ease);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(198, 106, 74, 0.08), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(107, 138, 118, 0.18), transparent 50%),
    var(--cream);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(58, 84, 68, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  color: var(--sage-900);
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero "card" - the architectural / illustrative element on the right */
.hero-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--sage-700), var(--sage-900));
  overflow: hidden;
  box-shadow:
    0 60px 90px -50px rgba(26, 42, 35, 0.5),
    0 30px 60px -40px rgba(26, 42, 35, 0.4);
}
.hero-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(201, 162, 83, 0.3), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(198, 106, 74, 0.25), transparent 50%);
}
.hero-card-inner {
  position: absolute; inset: 0;
  padding: 2.4rem;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--cream);
}
.hero-card-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  opacity: 0.7;
  max-width: 55%;
  line-height: 1.3;
}
.hero-card-bottom {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
}
.hero-card-bottom em {
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 0.7em;
  margin-top: 0.4rem;
}

/* Hero floating bits */
.hero-badge {
  position: absolute;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 253, 248, 0.4);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage-900);
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.35);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}
.hero-badge--1 { top: 1.5rem; right: 1.5rem; }
.hero-badge--2 { top: 4.5rem; right: 1.5rem; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(198, 106, 74, 0.55);
}
.btn-secondary {
  background: var(--sage-800);
  color: var(--cream);
}
.btn-secondary:hover {
  background: var(--sage-900);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--sage-800);
  border: 1px solid var(--sage-700);
}
.btn-ghost:hover {
  background: var(--sage-800);
  color: var(--cream);
}
.btn-link {
  color: var(--sage-800);
  padding: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.btn-link:hover { color: var(--terracotta); transform: none; box-shadow: none; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Info strip / quick facts row ----- */
.strip {
  background: var(--sage-900);
  color: var(--sage-100);
  padding: 1rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.strip-inner {
  display: flex; justify-content: center; gap: 2.5rem;
  flex-wrap: wrap;
}
.strip span { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ----- Service sections ----- */
.services {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-header .lede { margin-bottom: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  display: block;
  background: var(--cream);
  padding: 2rem 1.8rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  color: var(--ink);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-300);
  box-shadow: 0 20px 40px -25px rgba(26, 42, 35, 0.2);
  color: var(--ink);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--sage-100);
  color: var(--sage-800);
  display: grid; place-items: center;
  margin-bottom: 1.4rem;
}
.service-card-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--sage-900);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.service-card-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 0.4rem;
}

.service-card--feature {
  grid-column: span 2;
  background: var(--sage-800);
  color: var(--cream);
  border-color: var(--sage-800);
}
.service-card--feature h3 { color: var(--cream); font-size: 1.75rem; }
.service-card--feature p { color: var(--sage-100); font-size: 1rem; max-width: 40ch; }
.service-card--feature .service-card-icon { background: var(--sage-700); color: var(--cream); }
.service-card--feature .service-card-link { color: var(--gold); }
.service-card--feature:hover { background: var(--sage-900); border-color: var(--sage-900); color: var(--cream); }

/* ----- IVitamin promo block ----- */
.ivitamin-promo {
  background: linear-gradient(135deg, var(--sage-900), var(--sage-700));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ivitamin-promo::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 83, 0.25), transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.ivitamin-promo .eyebrow { color: var(--gold); }
.ivitamin-promo h2 { color: var(--cream); margin-bottom: 1.2rem; }
.ivitamin-promo p { color: var(--sage-100); margin-bottom: 2rem; }
.ivitamin-promo-list {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
}
.ivitamin-promo-list li {
  font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--sage-100);
}
.ivitamin-promo-list li::before {
  content: "+";
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.ivitamin-promo-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent 70%);
  display: grid;
  place-items: center;
}
.ivitamin-promo-visual-inner {
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, var(--gold), var(--terracotta), var(--sage-300), var(--gold));
  position: relative;
  filter: blur(20px);
  opacity: 0.6;
  animation: slowSpin 30s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.ivitamin-promo-visual-center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--cream);
  text-align: center;
  line-height: 1.1;
}
.ivitamin-promo-visual-center span {
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 0.4rem;
}

/* ----- About / Mr Singh ----- */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-100), var(--cream-2));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.about-portrait::before {
  content: "";
  position: absolute;
  width: 200%; height: 200%;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(58, 84, 68, 0.04) 12px, rgba(58, 84, 68, 0.04) 13px);
  top: -50%; left: -50%;
}
.about-portrait-inner {
  position: relative;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-800);
}
.about-portrait-mono {
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  display: block;
}
.about-portrait-name {
  font-size: 1.1rem;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-700);
  margin-top: 1rem;
  display: block;
}
.about-portrait-role {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: normal;
  font-family: var(--font-body);
  display: block;
  margin-top: 0.3rem;
}

/* ----- Two-column generic block ----- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ----- Hours / Contact panel ----- */
.contact-panel {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
}
.contact-panel h3 {
  margin-bottom: 1.4rem;
  color: var(--sage-900);
}
.hours {
  list-style: none; padding: 0; margin: 0 0 1.6rem;
  display: grid; gap: 0.5rem;
}
.hours li {
  display: flex; justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li strong { font-weight: 500; color: var(--ink); }
.hours li span { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.contact-detail {
  display: flex; gap: 0.8rem; align-items: flex-start;
  margin-bottom: 0.8rem;
}
.contact-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sage-700);
}
.contact-detail strong {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-detail a, .contact-detail span { color: var(--ink-soft); font-size: 0.95rem; }

/* ----- Footer ----- */
.site-footer {
  background: var(--sage-900);
  color: var(--sage-100);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.footer-grid h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-grid ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.6rem;
}
.footer-grid a {
  color: var(--sage-100);
  font-size: 0.92rem;
}
.footer-grid a:hover { color: var(--cream); }
.footer-brand {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  display: block;
}
.footer-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.footer-tagline {
  color: var(--sage-100);
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
  max-width: 30ch;
}
.footer-bottom {
  border-top: 1px solid var(--sage-700);
  padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
  color: var(--sage-300);
}
.footer-bottom a { color: var(--sage-300); }

/* ----- Social icon row ----- */
.socials {
  display: flex; gap: 0.7rem; flex-wrap: wrap;
  margin-top: 1.2rem;
}
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--sage-100);
  transition: all .25s var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
}
.socials a:hover {
  background: var(--gold);
  color: var(--sage-900);
  transform: translateY(-2px);
  border-color: var(--gold);
}
.socials a svg { width: 16px; height: 16px; }
.socials--light a {
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--sage-800);
}
.socials--light a:hover {
  background: var(--sage-800);
  color: var(--cream);
  border-color: var(--sage-800);
}
.socials-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  display: block;
}
.socials-label--dark {
  color: var(--gold);
}

/* Follow us strip on home / contact */
.follow-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}
.follow-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.follow-strip h3 {
  margin: 0 0 0.5rem;
  color: var(--sage-900);
  font-size: 1.8rem;
}
.follow-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.follow-strip-col {
  background: var(--paper);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.follow-strip-col h4 {
  color: var(--sage-800);
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
}
.follow-strip-col p { font-size: 0.88rem; margin-bottom: 0.8rem; }
.follow-strip-col .socials { margin-top: 0.5rem; }
@media (max-width: 1024px) {
  .follow-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ----- Service page (inner) ----- */
.page-hero {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, var(--sage-50), var(--cream) 80%);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--sage-700); }
.breadcrumb .sep { opacity: 0.5; }
.page-hero h1 { max-width: 18ch; margin-bottom: 1.2rem; }
.page-hero .lede { max-width: 56ch; }
.page-hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.tag-private { background: var(--terracotta); color: var(--cream); }
.tag-nhs { background: var(--sage-700); color: var(--cream); }
.tag-wellness {
  background: linear-gradient(135deg, var(--sage-900), var(--sage-700));
  color: var(--gold);
  border: 1px solid var(--gold);
}

.content-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.content-main h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--sage-900);
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { color: var(--sage-800); margin-top: 2rem; }
.content-main ul, .content-main ol {
  padding-left: 1.4rem;
  margin-bottom: 1.4rem;
}
.content-main li { margin-bottom: 0.5rem; }
.content-main strong { color: var(--sage-900); font-weight: 600; }

.callout {
  background: var(--cream-2);
  border-left: 3px solid var(--terracotta);
  padding: 1.4rem 1.6rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout h4 {
  margin-bottom: 0.6rem;
  color: var(--terracotta);
}

.aside-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: sticky;
  top: 100px;
}
.aside-panel h4 {
  color: var(--sage-700);
  margin-bottom: 1rem;
  font-size: 0.78rem;
}
.aside-panel p { font-size: 0.95rem; }
.aside-list {
  list-style: none; padding: 0; margin: 0 0 1.4rem;
  display: grid; gap: 0.4rem;
}
.aside-list li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line);
}
.aside-list li:last-child { border-bottom: 0; }

/* ----- Services Index Page ----- */
.services-section {
  padding: 4rem 0;
}
.services-section h2 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.services-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.services-section .lede { margin-bottom: 3rem; max-width: 60ch; }

/* ----- Index list page (e.g. /services) ----- */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.service-list-item {
  background: var(--paper);
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .25s var(--ease);
  color: var(--ink);
  display: flex; flex-direction: column;
  gap: 0.6rem;
}
.service-list-item:hover {
  transform: translateY(-3px);
  border-color: var(--sage-300);
  box-shadow: 0 14px 30px -20px rgba(26, 42, 35, 0.2);
  color: var(--ink);
}
.service-list-item h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--sage-900);
}
.service-list-item p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}
.service-list-item-arrow {
  margin-top: auto;
  color: var(--terracotta);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ----- Contact form ----- */
.form {
  display: grid; gap: 1.2rem;
  max-width: 540px;
}
.form-row {
  display: grid; gap: 0.4rem;
}
.form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-800);
  letter-spacing: 0.02em;
}
.form input, .form textarea, .form select {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--sage-600);
  box-shadow: 0 0 0 3px rgba(107, 138, 118, 0.15);
}
.form textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-self: start; }

/* ----- Misc ----- */
.intro-text {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 2rem;
}
.section-heading-center { text-align: center; }
.section-heading-center .lede { margin-left: auto; margin-right: auto; }
.section-heading-center .eyebrow { justify-content: center; }
.section-heading-center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* ----- Animations ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp 0.8s var(--ease) both;
}
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { max-width: 480px; margin: 0 auto; }
  .hero-badge--1 { left: 1rem; }
  .hero-badge--2 { right: 1rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--feature { grid-column: span 2; }
  .ivitamin-promo { grid-template-columns: 1fr; }
  .ivitamin-promo-visual { max-width: 360px; margin: 0 auto; }
  .about-block { grid-template-columns: 1fr; }
  .about-portrait { max-width: 380px; margin: 0 auto; }
  .two-col, .content-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .aside-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .menu-toggle { display: flex; }
  .nav { display: none; }
  .nav-cta-mobile { display: inline-flex; }
  .menu-open .nav {
    display: flex; flex-direction: column;
    position: fixed; top: 73px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    padding: 2rem 1.5rem;
    z-index: 40;
    gap: 0;
  }
  .menu-open .nav ul {
    flex-direction: column; align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .menu-open .nav ul li {
    border-bottom: 1px solid var(--line);
  }
  .menu-open .nav a {
    padding: 1rem 0;
    font-size: 1.1rem;
    display: block;
  }
  .menu-open .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none; border: none;
    padding: 0 0 0.6rem 1rem;
    background: transparent;
    min-width: 0;
  }
  .menu-open .dropdown a { font-size: 0.95rem; padding: 0.5rem 0; }
  .menu-open .nav-cta { margin-top: 1.5rem; align-self: flex-start; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card--feature { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip-inner { gap: 1.2rem; font-size: 0.78rem; }
  .hero-badge { display: none; }
  .ivitamin-promo-list { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
