/* =============================================
   NOYA PROFESSIONAL — Stylesheet v2
   Palette lifted directly from brochure
   ============================================= */

/* ---- Gebuk heading font (self-hosted) ----
   Gebuk is NOT a Google Font, so it is served from assets/fonts/.
   Drop the licensed font file there as Gebuk.woff2 (preferred) — any of the
   formats below will be used if present; until then headings fall back to
   Cormorant Garamond. Paths are relative to this CSS file. */
@font-face {
  font-family: 'Gebuk';
  src: url('../fonts/Gebuk.woff2') format('woff2'),
       url('../fonts/Gebuk.woff')  format('woff'),
       url('../fonts/Gebuk.ttf')   format('truetype'),
       url('../fonts/Gebuk.otf')   format('opentype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Brand Gold
     --gold      decorative / large display use only (2.3:1 on white)
     --gold-ink  text & small-control colour — WCAG AA on white/cream/pale
     (theme.php re-derives every -ink token when the admin re-themes) */
  --gold: #C9A84C;
  --gold-dark: #A8873A;
  --gold-ink: #79652E;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDD4;

  /* Brochure Section Colours (-deep for large text ≥24px, -ink for small) */
  --mint: #A8D8C8;
  --mint-deep: #3B8B70;
  --mint-ink: #2F6F5A;
  --mint-pale: #E4F5F0;

  --blush: #F5C8C8;
  --blush-deep: #C97070;
  --blush-ink: #975454;
  --blush-pale: #FDF0F0;

  --sky: #C8DFF5;
  --sky-deep: #4A7FAA;
  --sky-ink: #3F6C90;
  --sky-pale: #EEF6FD;

  --sand: #E8D0B0;
  --sand-deep: #9C7845;
  --sand-ink: #7D6037;
  --sand-pale: #FAF3EA;

  --sage: #C8D4A8;
  --sage-deep: #607848;
  --sage-ink: #566C41;
  --sage-pale: #EEF4E4;

  --lilac: #D4C8F0;
  --lilac-deep: #7060A8;
  --lilac-ink: #6A5BA0;
  --lilac-pale: #F4F0FD;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FDFAF5;
  --off-white: #F7F4EE;
  --warm-gray: #9C9A94;
  --text: #1E1C18;
  --text-mid: #4A4840;
  --text-muted: #6B6960;   /* darkened from #8A8880 to meet WCAG AA 4.5:1 on light bg */

  /* Mero template pairing: Jost display headings, Inter body.
     Token names kept (--serif/--sans) so every existing rule still works;
     Gebuk remains self-hosted and selectable from admin Site Settings. */
  --serif: 'Jost', 'Gebuk', 'Cormorant Garamond', sans-serif;
  --sans: 'Inter', 'Jost', system-ui, sans-serif;

  /* ---- Responsive rhythm ----
     Section padding and gutters scale with the viewport instead of being
     pinned at desktop values and patched per breakpoint. Changing these two
     tokens re-times the whole page at every width.
       --section-y  vertical band padding   64px  @360  →  120px @1333+
       --gutter     horizontal page gutter   20px  @360  →   64px @1280+ */
  --section-y: clamp(64px, 9vw, 120px);
  --gutter: clamp(20px, 5vw, 64px);
}

html { scroll-behavior: smooth; }

/* Keep the fixed nav from covering a section heading when jumping to an
   anchor (e.g. footer deep links). */
section[id], [id^="tab-"] { scroll-margin-top: 96px; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ---- Custom Cursor ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.14s ease;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(16px);
  padding: 14px 64px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* Uploaded logo image (replaces the text wordmark when set in admin).
   Sized to sit in harmony with the rest of the nav — height-constrained
   so any logo (tall, wide, square) auto-fits without overflowing. */
.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: height 0.4s ease;
}
nav.scrolled .nav-logo-img { height: 46px; }   /* shrink with the compact nav */

.footer-brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-left: 1px solid rgba(201,168,76,0.3);
  padding-left: 12px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold-ink);
  border: none;
  padding: 12px 28px;
  cursor: none;
  transition: all 0.3s;
}
.nav-cta:hover { filter: brightness(0.88); }
.menu-toggle { display: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  /* svh = the *small* viewport height, i.e. with the mobile browser's address
     bar showing. Plain 100vh assumes the bar is hidden, so on iOS/Android the
     hero overflows by ~60-100px and the CTAs sit below the fold on load. */
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--mint-pale);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(104px, 12vw, 140px) clamp(24px, 6vw, 72px) clamp(56px, 7vw, 80px);
  position: relative;
  z-index: 2;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--mint-pale) 0%, transparent 30%);
  z-index: 1;
}
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--mint-pale), transparent);
  z-index: 1;
}
.hero-bg-circle {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,216,200,0.4) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mint-ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--mint-deep);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--serif);
  /* 48px was the floor, which still overflowed a 360px screen on the longest
     word. 38px holds the three-line break without hyphenating. */
  font-size: clamp(38px, 6.5vw, 80px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 10px;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
.hero-title em { font-style: italic; color: var(--mint-deep); }
.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}
.hero-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(32px, 5vw, 56px);
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}
.hero-badge {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(168,216,200,0.5);
  padding: 12px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-badge-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--mint-ink);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-badge-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Buttons */
.btn-primary {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold-ink);
  border: none;
  padding: 16px 36px;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  border: 1.5px solid rgba(30,28,24,0.2);
  padding: 15px 36px;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-ink); }

/* =============================================
   MARQUEE TICKER
   ============================================= */
.marquee-wrap {
  background: var(--gold-ink);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  flex-shrink: 0;
}
.marquee-sep { opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SHARED SECTION UTILITIES
   ============================================= */
section { position: relative; }
.section-inner { max-width: 1300px; margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: currentColor; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.section-title em { font-style: italic; }

/* fade-up scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

/* =============================================
   ABOUT  (mint bg)
   ============================================= */
.about {
  padding: var(--section-y) 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: clamp(320px, 46vw, 560px);
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 200px; height: 200px;
  object-fit: cover;
  border: 6px solid var(--white);
}
.about-gold-bar {
  position: absolute;
  top: 40px; left: -16px;
  width: 4px; height: 100px;
  background: var(--gold);
}
.about-text .eyebrow { color: var(--mint-ink); }
.about-text .section-title em { color: var(--mint-deep); }
.about-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-mid);
  margin-top: 24px;
}
.about-text p strong { color: var(--text); font-weight: 500; }
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.about-chip {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint-ink);
  background: var(--mint-pale);
  border: 1px solid rgba(59,139,112,0.2);
  padding: 8px 16px;
}
.about-quote {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--mint-pale);
  border-left: 3px solid var(--mint-deep);
}
.about-quote p {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--mint-ink);
  margin: 0;
  line-height: 1.7;
}

/* =============================================
   PRODUCTS  (light cream bg, coloured cards)
   ============================================= */
.products {
  padding: var(--section-y) 0;
  background: var(--off-white);
}
.products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.products-head .eyebrow { color: var(--gold-ink); }
.products-head .section-title em { color: var(--gold-ink); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid rgba(107,105,96,0.5);
  padding: 8px 18px;
  cursor: none;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold-ink);
  border-color: var(--gold-ink);
  color: var(--white);
}
/* (Product cards use the .kap-card component in shop.css.) */

/* =============================================
   PHOTO FEATURE — Full Width Split
   ============================================= */
.photo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.photo-feature-img {
  position: relative;
  overflow: hidden;
}
.photo-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 80px) clamp(24px, 6vw, 72px);
}

/* =============================================
   TREATMENTS  (sky blue bg)
   ============================================= */
.treatments {
  padding: var(--section-y) 0;
  background: var(--sky-pale);
}
.treatments .eyebrow { color: var(--sky-ink); }
.treatments .section-title em { color: var(--sky-deep); }
.treatment-tabs {
  display: flex;
  gap: 0;
  margin: 48px 0 40px;
  border-bottom: 1.5px solid rgba(74,127,170,0.15);
  /* Four protocol names never fit a phone. Scroll the strip rather than let it
     run off the page — body{overflow-x:hidden} was clipping the last tab
     entirely, making that protocol unreachable on mobile. */
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.treatment-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 18px clamp(16px, 3.4vw, 32px);
  white-space: nowrap;
  flex: none;
  cursor: none;
  position: relative;
  transition: color 0.3s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1.5px; left: 0; right: 0;
  height: 2px;
  background: var(--sky-deep);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.tab-btn.active { color: var(--sky-ink); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--text-mid); }

.tab-panel { display: none; }
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
/* `1fr` is `minmax(auto, 1fr)`, and that `auto` floor resolves to the item's
   min-content — so the temperature table's 320px min-width propagated up and
   inflated the track to 370px inside a 320px container, pushing the whole
   treatments panel 30px past the viewport at 360px. */
.tab-panel > * { min-width: 0; }
.treatment-step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(74,127,170,0.1);
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.5s ease;
}
.treatment-step.in { opacity: 1; transform: translateX(0); }
.step-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--sky-ink);
  min-width: 22px;
  padding-top: 1px;
}
.step-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}
.step-text strong { color: var(--text); font-weight: 500; }

.treatment-panel-right {}
.treatment-img-wrap {
  position: relative;
  margin-bottom: 28px;
}
.treatment-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.treatment-card {
  background: var(--white);
  padding: 32px;
  border-left: 3px solid var(--sky-deep);
  margin-bottom: 16px;
}
.treatment-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky-ink);
  margin-bottom: 10px;
}
.treatment-card-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.treatment-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}
/* Scroll container: the guide is 3-4 columns of numeric data that cannot wrap
   below ~340px without the temperature ranges breaking mid-value. */
.temp-table-scroll {
  margin-top: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.temp-table-scroll:focus-visible { outline: 2px solid var(--sky-ink); outline-offset: 3px; }
.temp-table { width: 100%; min-width: 320px; border-collapse: collapse; }
.temp-table th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky-ink);
  text-align: left;
  padding: 10px 12px;
  background: var(--sky-pale);
  border-bottom: 1.5px solid rgba(74,127,170,0.2);
}
.temp-table td {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-mid);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(74,127,170,0.08);
}
.temp-table td:first-child { color: var(--text); font-weight: 400; }

/* =============================================
   HOME CARE  (blush/pink bg)
   ============================================= */
.homecare {
  padding: var(--section-y) 0;
  background: var(--blush-pale);
}
.homecare .eyebrow { color: var(--blush-ink); }
.homecare .section-title em { color: var(--blush-deep); }
.homecare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.care-card {
  background: var(--white);
  padding: 32px 24px;
  cursor: none;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.care-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blush-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.care-card:hover::before { transform: scaleX(1); }
.care-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
.care-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}
.care-icon-wrap {
  width: 44px; height: 44px;
  background: var(--blush-pale);
  border: 1.5px solid rgba(201,112,112,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s, border-color 0.3s;
}
.care-card:hover .care-icon-wrap {
  background: var(--blush);
  border-color: var(--blush-deep);
}
.care-icon-wrap svg { width: 18px; height: 18px; stroke: var(--blush-deep); fill: none; stroke-width: 1.5; }
.care-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush-ink);
  margin-bottom: 6px;
}
.care-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.care-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}
.care-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blush-ink);
  background: var(--blush-pale);
  border: 1px solid rgba(201,112,112,0.2);
  padding: 3px 10px;
  margin-top: 14px;
}

/* =============================================
   GALLERY ROW — 4 photos
   ============================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  /* Fixed 400px made the 2-up mobile grid a pair of 150×400 slivers. */
  height: clamp(220px, 30vw, 400px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
}
.gallery-overlay-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* =============================================
   INGREDIENTS  (sand/nude bg)
   ============================================= */
.ingredients {
  padding: var(--section-y) 0;
  background: var(--sand-pale);
}
.ingredients .eyebrow { color: var(--sand-ink); }
.ingredients .section-title em { color: var(--sand-deep); }
.ingredients-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.ingredients-img {
  position: relative;
}
.ingredients-img img {
  width: 100%;
  height: clamp(320px, 46vw, 560px);
  object-fit: cover;
  display: block;
}
.ingredients-img-badge {
  position: absolute;
  top: 28px; right: -20px;
  background: var(--gold-ink);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
}
.ingredients-img-badge-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}
.ingredients-img-badge-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.ingredients-list { display: flex; flex-direction: column; gap: 0; }
.ingredient-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(156,120,69,0.12);
  cursor: none;
  transition: background 0.3s;
}
.ingredient-row:first-child { border-top: 1px solid rgba(156,120,69,0.12); }
.ingredient-num-tag {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--sand-ink);
  min-width: 20px;
  padding-top: 4px;
}
.ingredient-content {}
.ingredient-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.ingredient-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}
.ingredient-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand-ink);
  background: rgba(232,208,176,0.4);
  padding: 3px 10px;
  margin-top: 8px;
}

/* =============================================
   PROMISE  (sage/green bg)
   ============================================= */
.promise {
  padding: var(--section-y) 0;
  background: var(--sage-pale);
}
.promise .eyebrow { color: var(--sage-ink); }
.promise .section-title em { color: var(--sage-deep); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.promise-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: none;
}
.promise-card:hover { transform: translateY(-6px); }
.promise-icon {
  width: 60px; height: 60px;
  background: var(--sage-pale);
  border: 1.5px solid rgba(96,120,72,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.promise-icon svg { width: 22px; height: 22px; stroke: var(--sage-deep); fill: none; stroke-width: 1.5; }
.promise-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.promise-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

/* =============================================
   PHOTO CTA — big image behind
   ============================================= */
.photo-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.photo-cta-bg {
  position: absolute;
  inset: 0;
}
.photo-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-cta-overlay {
  position: absolute;
  inset: 0;
  /* deep tones so white copy clears 4.5:1 over any admin-chosen photo */
  background: linear-gradient(135deg, rgba(42,100,79,0.90) 0%, rgba(121,101,46,0.86) 100%);
}
.photo-cta-inner {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 8vw, 80px) var(--gutter);
  max-width: 680px;
}
.photo-cta-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.photo-cta-title em { font-style: italic; }
.photo-cta-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}
.btn-white {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  background: var(--white);
  border: none;
  padding: 16px 36px;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-white:hover { background: var(--gold-pale); }
.btn-white-outline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.75);
  padding: 15px 36px;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-left: 12px;
}
.btn-white-outline:hover { border-color: var(--white); }

/* =============================================
   FOOTER  (dark)
   ============================================= */
footer {
  background: #1A1A18;
  padding: clamp(56px, 7vw, 80px) var(--gutter) 40px;
  color: var(--off-white);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer-brand-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand-tag {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-mktd {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-mktd strong { color: var(--gold); font-weight: 600; }
.footer-col-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
.footer-bottom-tag {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: rgba(201,168,76,0.85);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  /* Hero stacks: copy on the mint panel, photo as a band beneath it.
     The photo used to be display:none below this width, which left every
     tablet and phone looking at a bare colour field — the brand's single
     most characteristic image was desktop-only. */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: clamp(300px, 54vw, 460px); }
  .hero-right img { object-position: center 20%; }
  /* Fade now runs top-to-bottom to match the stacked orientation, so the
     photo still dissolves into the mint panel instead of butting against it. */
  .hero-right::before {
    background: linear-gradient(to bottom, var(--mint-pale) 0%, transparent 32%);
  }
  .hero-right::after { height: 64px; }

  .about-grid,
  .ingredients-layout,
  .tab-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .homecare-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .photo-feature { grid-template-columns: 1fr; }
  .photo-feature-img { height: clamp(240px, 40vw, 340px); }
  /* Badge overhung the right edge and was clipped by body{overflow-x:hidden}
     once the layout stacked. */
  .ingredients-img-badge { right: 12px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-logo-img, nav.scrolled .nav-logo-img { height: 42px; max-width: 180px; }
  .nav-links, .nav-cta { display: none; }
  /* 44×44 box so the hamburger meets the minimum touch-target size */
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--gold-ink); margin: 5px 0; }
  /* .section-inner and .hero-left padding are handled by --gutter / clamp()
     in the base rules — overriding them here would flatten the fluid scale. */
  .homecare-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .products-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .about-img-accent { display: none; }
  .treatment-tabs { margin: 32px 0 28px; }
  .tab-panel.active { gap: 32px; }
  .treatment-card { padding: 24px; }
  .promise-card { padding: 32px 20px; }
  .promise-grid,
  .homecare-grid { gap: 16px; }
  .about-quote { padding: 22px 24px; }
}

/* Phones. Previously the site had no tier below 768px at all, so a 360px
   screen rendered the identical layout to a 767px tablet. */
@media (max-width: 520px) {
  /* A promise card at 2-up on a 360px screen left ~94px of usable width —
     narrower than its own 60px icon plus padding. */
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card { padding: 28px 24px; }
  .about-gold-bar { display: none; }
  /* Three badges across 320px leaves no readable label width; two-up wraps
     the third onto its own row. */
  .hero-badges { gap: 10px; }
  .hero-badge { flex: 1 1 calc(50% - 5px); padding: 12px 14px; }
  /* The two hero buttons together measure ~400px of uppercase tracked text. */
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .btn-white, .btn-white-outline { display: block; text-align: center; }
  .btn-white-outline { margin-left: 0; margin-top: 12px; }
  footer { padding-bottom: 32px; }
  .footer-top { padding-bottom: 40px; margin-bottom: 28px; }
}

/* =============================================
   FOOTER ADDITIONS (socials, bottom links)
   ============================================= */
.footer-brand-col { display: flex; flex-direction: column; }

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  cursor: none;
}
.footer-social-link svg { width: 15px; height: 15px; }
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-bottom-links a {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-divider {
  font-size: 10px;
  color: rgba(255,255,255,0.15);
}

/* Active nav link */
.nav-links a.nav-active {
  color: var(--gold-ink);
}
.nav-links a.nav-active::after {
  width: 100%;
}

/* =============================================
   MOBILE SLIDE-IN MENU (PHP version)
   ============================================= */
.mobile-menu {
  position: fixed;
  /* left:auto guards against the bare `nav` element selector above
     (this is a <nav> too) setting left:0 and dragging it on-screen */
  top: 0; left: auto; right: 0;
  /* 280px was wider than the viewport minus a comfortable peek on a 320px
     phone; dvh keeps the panel full-height as the mobile URL bar retracts. */
  width: min(300px, 84vw);
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--cream);
  border-left: 1px solid rgba(201,168,76,0.2);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 100px 36px 36px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -10px 0 50px rgba(0,0,0,0.1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: color 0.3s;
  cursor: none;
}
.mobile-menu a:hover { color: var(--gold); }
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.menu-toggle span { transition: all 0.3s ease; }

/* =============================================
   WHATSAPP FLOATING ACTION BUTTON
   ============================================= */
.wa-fab {
  position:        fixed;
  bottom:          28px;
  right:           28px;
  z-index:         998;
  width:           58px;
  height:          58px;
  border-radius:   50%;
  background:      #25d366;
  display:         flex;
  align-items:     center;
  justify-content: center;
  text-decoration: none;
  box-shadow:      0 4px 20px rgba(37, 211, 102, 0.45);
  transition:      transform 0.25s ease, box-shadow 0.25s ease;
  animation:       waFabIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s backwards;
  cursor:          none;
}

.wa-fab:hover {
  transform:  scale(1.12);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6);
}

/* WhatsApp SVG icon */
.wa-fab-icon {
  width:      28px;
  height:     28px;
  fill:       #fff;
  flex-shrink:0;
  position:   relative;
  z-index:    1;
}

/* Tooltip — slides in from right side */
.wa-fab-tip {
  position:    absolute;
  right:       calc(100% + 14px);
  top:         50%;
  transform:   translateY(-50%) translateX(6px);
  background:  var(--text);
  color:       var(--white);
  font-family: var(--sans);
  font-size:   12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding:     8px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity:     0;
  transition:  opacity 0.2s ease, transform 0.2s ease;
}

/* Tooltip arrow pointing right */
.wa-fab-tip::after {
  content:      '';
  position:     absolute;
  top:          50%;
  left:         100%;
  transform:    translateY(-50%);
  border:       6px solid transparent;
  border-left-color: var(--text);
}

.wa-fab:hover .wa-fab-tip {
  opacity:   1;
  transform: translateY(-50%) translateX(0);
}

/* Ripple pulse ring */
.wa-fab-pulse {
  position:      absolute;
  inset:         0;
  border-radius: 50%;
  background:    rgba(37, 211, 102, 0.45);
  animation:     waPulse 2.6s ease-out infinite;
  pointer-events:none;
}

/* Notification dot */
.wa-fab-dot {
  position:      absolute;
  top:           4px;
  right:         4px;
  width:         12px;
  height:        12px;
  border-radius: 50%;
  background:    #ff3b30;
  border:        2px solid #fff;
  z-index:       2;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  80%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

@keyframes waFabIn {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);    opacity: 1; }
}

/* Mobile: smaller button, hide tooltip */
@media (max-width: 640px) {
  .wa-fab     { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-fab-icon{ width: 24px; height: 24px; }
  .wa-fab-tip { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Reveal-on-scroll content must be visible without motion */
  .reveal, .treatment-step { opacity: 1 !important; transform: none !important; }
  .wa-fab-pulse, .wa-fab    { animation: none; }
}

/* =============================================
   Contact Us Modal
   ============================================= */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(30, 28, 24, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-modal-overlay.open { opacity: 1; visibility: visible; }
/* Restore a normal pointer inside the modal (site uses a custom cursor) */
.contact-modal-overlay, .contact-modal-overlay * { cursor: auto; }
.contact-modal-overlay input,
.contact-modal-overlay textarea,
.contact-modal-overlay button,
.contact-modal-overlay a { cursor: pointer; }
.contact-modal-overlay input,
.contact-modal-overlay textarea { cursor: text; }

.contact-modal {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-modal-overlay.open .contact-modal { transform: translateY(0) scale(1); }

.contact-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 38px; height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 28, 24, 0.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.contact-modal-close:hover { background: rgba(30, 28, 24, 0.12); transform: rotate(90deg); }

.contact-modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
}

/* Info column */
.contact-modal-info {
  padding: 48px 40px;
  background: linear-gradient(160deg, var(--gold-pale), var(--cream));
  border-radius: 20px 0 0 20px;
}
.contact-modal-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 14px;
}
.contact-modal-info h2 {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
}
.contact-modal-info p {
  font-size: 14px; line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.contact-modal-details { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-modal-details li { display: flex; flex-direction: column; gap: 3px; }
.contact-modal-details span:first-child {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.contact-modal-details a, .contact-modal-details li > span:last-child {
  font-size: 14px; color: var(--text); text-decoration: none;
}
.contact-modal-details a:hover { color: var(--gold-ink); }

/* Form column */
.contact-modal-form { padding: 48px 40px; }
.cf-row { margin-bottom: 16px; }
.cf-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-modal-form label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-mid);
}
.contact-modal-form label span { color: var(--blush-ink); }
.contact-modal-form input,
.contact-modal-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(30, 28, 24, 0.14);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  text-transform: none;
  letter-spacing: normal;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}
.contact-modal-form textarea { resize: vertical; }
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-form-submit { margin-top: 6px; width: 100%; }
.contact-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-form-feedback {
  font-size: 13px; line-height: 1.5;
  margin-bottom: 14px;
  min-height: 0;
  transition: all 0.2s ease;
}
.contact-form-feedback.is-success {
  color: var(--mint-ink);
  background: var(--mint-pale);
  padding: 10px 14px; border-radius: 8px;
}
.contact-form-feedback.is-error {
  color: var(--blush-ink);
  background: var(--blush-pale);
  padding: 10px 14px; border-radius: 8px;
}

@media (max-width: 768px) {
  .contact-modal-grid { grid-template-columns: 1fr; }
  .contact-modal-info { border-radius: 20px 20px 0 0; padding: 36px 28px; }
  .contact-modal-form { padding: 32px 28px; }
  .cf-two { grid-template-columns: 1fr; }
}

/* =============================================
   ACCESSIBILITY & INTERACTION HARDENING
   focus states · cursor/motion safety · touch targets
   ============================================= */

/* --- 1. Visible keyboard focus (was missing site-wide) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
.filter-btn:focus-visible,
.tab-btn:focus-visible,
.pd-tab-btn:focus-visible,
.pt-filter:focus-visible,
.kap-cta:focus-visible,
.care-card-link:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- 2. Restore the native cursor where the custom cursor must not run:
         touch / hybrid devices and reduced-motion users --- */
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  * { cursor: auto !important; }
  a, button, [role="button"], [onclick], label[for],
  .filter-btn, .tab-btn, .pd-tab-btn, .pt-filter,
  .kap-cta, .care-card-link, .nav-cta, select, summary { cursor: pointer !important; }
  input, textarea { cursor: text !important; }
  .cursor, .cursor-ring { display: none !important; }
}

/* --- 5. Comfortable touch targets on coarse-pointer (mobile) devices --- */
@media (pointer: coarse) {
  .filter-btn, .pt-filter, .nav-cta, .tab-btn, .pd-tab-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  input, textarea, select { min-height: 44px; }
  /* Safari on iOS zooms the whole page in whenever a focused control is under
     16px, and never zooms back out. Applies to <select> too.
     The per-form rules below carry class selectors, which outrank this bare
     type selector — they have to be named explicitly or they keep their 14px. */
  /* !important is deliberate and scoped to touch devices only: the per-form
     rules that set 14px live in page-level <style> blocks and in shop.css,
     both of which load after this file, so specificity alone loses on source
     order. Getting this wrong silently zooms the page on every iOS focus. */
  input, textarea, select { font-size: max(16px, 1em) !important; }
  .btn-primary, .btn-outline, .btn-white, .btn-white-outline,
  .kap-cta, .pt-btn, .filter-btn { min-height: 44px; }
  .footer-social-link { width: 44px; height: 44px; }
  .contact-modal-close { width: 44px; height: 44px; }
  /* 8px padding gave 31px / 28px tall links — under the 44px target the rest
     of the site meets. align-self keeps them from stretching the flex row. */
  .footer-links a,
  .footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 44px;
    padding: 4px 0;
  }
}

/* --- 6. Skip link for keyboard / screen-reader users --- */
.skip-link {
  position: fixed;
  top: -100px; left: 16px;
  z-index: 2100;
  background: var(--text);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
