/* ==========================================================================
   DR.CARE® — GLOW NATURALLY
   Botanical Laboratory × Luxury Editorial × Modern Personal Care
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* ---- Color tokens ---- */
  --c-primary: #2E6B4F;
  --c-deep: #173F31;
  --c-ivory: #F8F7F1;
  --c-white: #FFFFFF;
  --c-sage: #DCE8D9;
  --c-gold: #C89B3C;
  --c-charcoal: #1F1F1F;

  --c-ink: var(--c-charcoal);
  --c-ink-soft: rgba(31, 31, 31, 0.62);
  --c-hairline: rgba(23, 63, 49, 0.14);
  --c-hairline-light: rgba(255, 255, 255, 0.22);

  /* ---- Type ---- */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-ui: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Motion ---- */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-slow: 900ms;
  --dur-med: 500ms;
  --dur-fast: 260ms;

  /* ---- Layout ---- */
  --page-margin: clamp(20px, 5vw, 72px);
  --header-h: 88px;
  --header-h-mobile: 68px;
  --content-max: 1440px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

body {
  font-family: var(--f-ui);
  background: var(--c-ivory);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.no-scroll { overflow: hidden; height: 100%; }

/* ---- Focus states ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* ---- Typography scale ---- */
.display-1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.display-2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.display-3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
}
.heading-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--c-primary);
}
.eyebrow {
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.body-lg {
  font-family: var(--f-ui);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--c-ink-soft);
  max-width: 46ch;
}
.body-md { font-size: 15px; line-height: 1.7; color: var(--c-ink-soft); max-width: 48ch; }
.label { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--c-ink); }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--page-margin); }
.section { position: relative; padding: clamp(64px, 10vw, 140px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.bleed { width: 100%; }
.rule { height: 1px; width: 100%; background: var(--c-hairline); border: none; }
.rule-light { background: var(--c-hairline-light); }
.divider-gold { width: 64px; height: 1px; background: var(--c-gold); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid currentColor;
  transition: background var(--dur-fast) var(--ease-editorial), color var(--dur-fast) var(--ease-editorial), border-color var(--dur-fast) var(--ease-editorial);
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }
.btn-primary:hover { background: var(--c-deep); border-color: var(--c-deep); }
.btn-outline { background: transparent; border-color: var(--c-ink); color: var(--c-ink); }
.btn-outline:hover { background: var(--c-ink); color: var(--c-ivory); }
.btn-outline-light { background: transparent; border-color: rgba(248,247,241,0.5); color: var(--c-ivory); }
.btn-outline-light:hover { background: var(--c-ivory); color: var(--c-deep); border-color: var(--c-ivory); }
.btn-gold { background: transparent; border-color: var(--c-gold); color: var(--c-deep); }
.btn-gold:hover { background: var(--c-gold); color: var(--c-white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color var(--dur-fast) var(--ease-editorial), gap var(--dur-fast) var(--ease-editorial);
}
.text-link:hover { border-color: currentColor; gap: 12px; }
.text-link svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform var(--dur-fast) var(--ease-editorial); }
.text-link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h-mobile);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--dur-med) var(--ease-editorial), border-color var(--dur-med) var(--ease-editorial), height var(--dur-med) var(--ease-editorial);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(248, 247, 241, 0.96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--c-hairline);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img { display: block; width: auto; object-fit: contain; }
.logo-img--full { height: 52px; }
.logo-img--mark { height: 34px; }

@media (min-width: 992px) {
  .logo-img--mark { display: none; }
  .logo-img--full { display: block; height: 64px; }
}
@media (max-width: 991px) {
  .logo-img--full { display: none; }
  .logo-img--mark { display: block; }
}

.footer-brand .logo-img--full { display: block; height: 74px; }
@media (min-width: 768px) {
  .footer-brand .logo-img--full { height: 92px; }
}

.mobile-nav-brand { margin-bottom: 36px; }
.mobile-nav-brand .logo-img--full { display: block; height: 58px; }

.nav-primary {
  display: none;
  gap: clamp(20px, 2.6vw, 40px);
}
.nav-primary a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right var(--dur-fast) var(--ease-editorial);
}
.nav-primary a:hover::after,
.nav-primary a.is-active::after { right: 0; }
.nav-primary a.is-active { color: var(--c-primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 28px);
}
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-btn svg { width: 19px; height: 19px; }
.lang-select { font-size: 12px; letter-spacing: 0.08em; }
.header-cta {
  display: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.site-header:not(.is-solid):not(.is-open) .icon-btn,
.site-header:not(.is-solid):not(.is-open) .header-cta,
.site-header:not(.is-solid):not(.is-open) .lang-select,
.site-header:not(.is-solid):not(.is-open) .nav-primary a { color: var(--c-white); }
.site-header:not(.is-solid):not(.is-open) .nav-primary a.is-active { color: var(--c-sage); }

/* Readability safeguard: transparent header sits over photographic heroes,
   so give text a soft shadow rather than relying on image contrast alone. */
.site-header:not(.is-solid):not(.is-open) .nav-primary a,
.site-header:not(.is-solid):not(.is-open) .header-cta,
.site-header:not(.is-solid):not(.is-open) .lang-select,
.site-header:not(.is-solid):not(.is-open) .icon-btn svg,
.site-header:not(.is-solid):not(.is-open) .hamburger {
  text-shadow: 0 1px 6px rgba(0,0,0,0.28);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.22));
}

.hamburger {
  width: 40px; height: 40px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  z-index: 620;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-fast) var(--ease-editorial), opacity var(--dur-fast) var(--ease-editorial);
}
.site-header.is-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-header.is-open .hamburger span:nth-child(2) { opacity: 0; }
.site-header.is-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.site-header.is-open .hamburger { color: var(--c-deep); }

/* Mobile fullscreen nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--c-ivory);
  z-index: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--page-margin) 60px;
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-editorial);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list a {
  font-family: var(--f-display);
  font-size: clamp(32px, 10vw, 46px);
  padding: 10px 0;
  color: var(--c-deep);
  border-bottom: 1px solid var(--c-hairline);
  display: block;
}
.mobile-nav-foot {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav-foot a { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-primary); font-weight: 600; }

@media (min-width: 992px) {
  .site-header { height: var(--header-h); }
  .nav-primary { display: flex; }
  .header-cta { display: inline-block; }
  .hamburger, .mobile-nav { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  width: 100%;
  overflow: hidden;
  background: var(--c-ivory);
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture { position: absolute; inset: 0; display: block; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--page-margin) 44px;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-cta-row .text-link { color: var(--c-deep); text-shadow: 0 1px 8px rgba(248,247,241,0.9), 0 1px 3px rgba(248,247,241,0.9); }
.hero-scroll-cue {
  position: absolute;
  right: var(--page-margin);
  bottom: 32px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--c-deep);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-scroll-cue .line { width: 1px; height: 34px; background: rgba(23,63,49,0.28); position: relative; overflow: hidden; }
.hero-scroll-cue .line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--c-gold);
  animation: scrollcue 2.2s var(--ease-editorial) infinite;
}
@keyframes scrollcue { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* Hero height per breakpoint (image itself switches via <picture> in the markup,
   not via CSS — see index.html). Object-position is tuned per breakpoint because
   the mobile and desktop banners are two different photos with their own
   compositions, not the same image cropped differently. */
@media (min-width: 768px) {
  .hero { height: 84vh; }
  .hero-media img { object-position: 18% 38%; }
}
@media (min-width: 992px) {
  .hero { height: 88vh; }
  .hero-scroll-cue { display: flex; }
  .hero-media img { object-position: 12% 40%; }
}
@media (min-width: 1280px) {
  .hero-media img { object-position: center 40%; }
}

/* ==========================================================================
   02 — BRAND MANIFESTO
   ========================================================================== */
.manifesto { background: var(--c-ivory); }
.manifesto-grid {
  display: grid;
  gap: 32px;
}
.manifesto-heading { max-width: 900px; }
.manifesto-body {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}
.manifesto-copy { max-width: 480px; }
.manifesto-meta {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--c-hairline);
}
.manifesto-meta div { display: flex; flex-direction: column; gap: 6px; }
.manifesto-meta .num { font-family: var(--f-display); font-size: 34px; color: var(--c-primary); }
.manifesto-meta .lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-ink-soft); }

@media (min-width: 992px) {
  .manifesto-body { grid-template-columns: 1fr 1fr; align-items: end; }
  .manifesto-copy { justify-self: end; }
}

/* ==========================================================================
   03 — PRODUCT DISCOVERY RAIL
   ========================================================================== */
.rail-section { background: var(--c-white); overflow: hidden; }
.rail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 8px;
}
.rail-controls { display: none; align-items: center; gap: 14px; }
.rail-arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--c-hairline);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.rail-arrow:hover { border-color: var(--c-primary); background: var(--c-sage); }
.rail-arrow svg { width: 18px; height: 18px; }
.rail-progress { font-family: var(--f-display); font-size: 15px; color: var(--c-ink-soft); min-width: 52px; text-align: center; }
.rail-dots { display: none; } /* shown on mobile only — see responsive.css */

.product-rail {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px var(--page-margin) 24px;
  margin: 0 calc(var(--page-margin) * -1);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.product-rail:active { cursor: grabbing; }
.product-rail::-webkit-scrollbar { display: none; }

.rail-card {
  flex: 0 0 auto;
  width: 78vw;
  max-width: 420px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.rail-card-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--c-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 22px;
}
.rail-card-frame img {
  height: 88%;
  width: auto;
  object-fit: contain;
  transition: transform var(--dur-slow) var(--ease-editorial);
}
.rail-card:hover .rail-card-frame img { transform: scale(1.045); }
.rail-card-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-deep);
  background: rgba(248,247,241,0.85);
  padding: 6px 11px;
}
.rail-card-index { font-family: var(--f-display); font-size: 15px; color: var(--c-gold); margin-bottom: 10px; }
.rail-card-name { font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 28px); line-height: 1.15; margin-bottom: 10px; }
.rail-card-cat { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-ink-soft); margin-bottom: 18px; }

@media (min-width: 700px) {
  .rail-card { width: 42vw; }
}
@media (min-width: 992px) {
  .rail-controls { display: flex; }
  .rail-card { width: 30vw; }
}
@media (min-width: 1440px) {
  .rail-card { width: 380px; }
}

/* ==========================================================================
   04 — HAIR / SKIN SPLIT
   ========================================================================== */
.split-section { display: flex; flex-direction: column; }
.split-panel {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: flex-grow var(--dur-slow) var(--ease-editorial);
}
.split-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-editorial);
}
.split-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,63,49,0.05) 30%, rgba(23,63,49,0.65) 100%);
}
.split-panel-body {
  position: relative;
  z-index: 2;
  padding: 40px clamp(24px, 4vw, 56px);
  color: var(--c-ivory);
  width: 100%;
}
.split-panel-kicker { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; margin-bottom: 10px; }
.split-panel-title { font-family: var(--f-display); font-size: clamp(38px, 5vw, 64px); line-height: 1; margin-bottom: 20px; }

@media (min-width: 992px) {
  .split-section { flex-direction: row; min-height: 640px; }
  .split-panel { flex: 1; min-height: auto; }
  .split-panel:hover { flex-grow: 1.35; }
  .split-panel:hover img { transform: scale(1.06); }
}

/* ==========================================================================
   05 — INGREDIENT LAB
   ========================================================================== */
.lab-section { background: var(--c-deep); color: var(--c-ivory); position: relative; overflow: hidden; }
.lab-section .eyebrow { color: var(--c-sage); }
.lab-grid { display: grid; gap: 48px; margin-top: 48px; }
.lab-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
}
.lab-orbit {
  position: absolute; inset: 0;
  border: 1px solid rgba(248,247,241,0.14);
  border-radius: 50%;
}
.lab-orbit.o2 { inset: 12%; border-color: rgba(200,155,60,0.24); }
.lab-orbit.o3 { inset: 26%; border-color: rgba(248,247,241,0.14); }
.lab-visual-frame {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: var(--c-ivory);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lab-visual-frame img {
  width: 62%; height: 62%;
  object-fit: contain;
  transition: opacity var(--dur-med) var(--ease-editorial);
}
.lab-list { display: flex; flex-direction: column; }
.lab-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(248,247,241,0.16);
  width: 100%;
  text-align: left;
  transition: padding-left var(--dur-fast) var(--ease-editorial);
}
.lab-item:first-child { border-top: 1px solid rgba(248,247,241,0.16); }
.lab-item-name { font-family: var(--f-display); font-size: clamp(24px, 3vw, 34px); }
.lab-item-tag { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-sage); }
.lab-item.is-active { padding-left: 14px; color: var(--c-gold); border-bottom-color: var(--c-gold); }
.lab-item.is-active .lab-item-tag { color: var(--c-gold); opacity: 0.8; }
.lab-desc { margin-top: 28px; min-height: 66px; }
.lab-desc p { color: rgba(248,247,241,0.72); font-size: 15px; line-height: 1.7; max-width: 50ch; }

@media (min-width: 992px) {
  .lab-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 64px; }
}

/* ==========================================================================
   06 — PRODUCT STORIES (routine)
   ========================================================================== */
.stories-section { background: var(--c-ivory); }
.story-row {
  display: grid;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--c-hairline);
  align-items: center;
}
.story-row:first-of-type { border-top: 1px solid var(--c-hairline); }
.story-media {
  aspect-ratio: 4/5;
  background: var(--c-sage);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.story-media img { height: 86%; width: auto; object-fit: contain; }
.story-step { font-family: var(--f-display); font-size: 17px; color: var(--c-gold); margin-bottom: 14px; }
.story-name { font-family: var(--f-display); font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; margin-bottom: 16px; }

@media (min-width: 900px) {
  .story-row { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
  .story-row:nth-of-type(even) .story-media { order: 2; }
}

/* ==========================================================================
   SKINCARE STORY
   ========================================================================== */
.skin-section { background: var(--c-white); }
.skin-grid { display: grid; gap: 28px; margin-top: 48px; }
.skin-card { display: flex; flex-direction: column; }
.skin-media {
  aspect-ratio: 3/4;
  background: var(--c-sage);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
}
.skin-media img { height: 84%; object-fit: contain; }
.skin-theme { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 10px; }
.skin-name { font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 27px); margin-bottom: 10px; }

@media (min-width: 768px) {
  .skin-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   07 — FORMULATED IN ITALY
   ========================================================================== */
.italy-section {
  position: relative;
  background: var(--c-ivory);
  padding: clamp(80px, 14vw, 180px) 0;
  text-align: center;
  overflow: hidden;
}
.italy-line { width: 1px; height: 56px; background: var(--c-gold); margin: 0 auto 28px; }
.italy-title { font-family: var(--f-display); font-size: clamp(52px, 10vw, 132px); line-height: 0.96; }
.italy-sub { margin: 26px auto 0; max-width: 46ch; }
.italy-arch {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 900px);
  aspect-ratio: 3/1;
  border: 1px solid rgba(23,63,49,0.1);
  border-bottom: none;
  border-radius: 400px 400px 0 0;
  pointer-events: none;
}

/* ==========================================================================
   08 — BRAND PHILOSOPHY
   ========================================================================== */
.philosophy-section { background: var(--c-white); }
.phil-list { margin-top: 40px; }
.phil-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--c-hairline);
  align-items: start;
  opacity: 0.4;
  transition: opacity var(--dur-med) var(--ease-editorial);
}
.phil-row:last-child { border-bottom: 1px solid var(--c-hairline); }
.phil-row.is-visible { opacity: 1; }
.phil-num { font-family: var(--f-display); font-size: 22px; color: var(--c-gold); }
.phil-title { font-family: var(--f-display); font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 8px; }
.phil-copy { max-width: 60ch; }

@media (min-width: 768px) {
  .phil-row { grid-template-columns: 90px 1fr 1.4fr; }
}

/* ==========================================================================
   09 — WHY DR.CARE
   ========================================================================== */
.why-section { background: var(--c-deep); color: var(--c-ivory); }
.why-section .eyebrow { color: var(--c-sage); }
.why-title { margin-bottom: 12px; }
.why-list { margin-top: 48px; display: flex; flex-direction: column; }
.why-item {
  padding: 22px 0;
  border-top: 1px solid rgba(248,247,241,0.16);
  font-family: var(--f-display);
  font-size: clamp(24px, 3.6vw, 42px);
  line-height: 1.15;
  color: rgba(248,247,241,0.4);
  transition: color var(--dur-med) var(--ease-editorial), padding-left var(--dur-med) var(--ease-editorial);
}
.why-item:last-child { border-bottom: 1px solid rgba(248,247,241,0.16); }
.why-item.is-visible { color: var(--c-ivory); padding-left: 10px; }

/* ==========================================================================
   10 — BUSINESS PARTNERSHIP
   ========================================================================== */
.partner-section { background: var(--c-primary); color: var(--c-ivory); }
.partner-grid { display: grid; gap: 48px; }
.partner-title { max-width: 680px; }
.partner-copy { margin-top: 20px; max-width: 46ch; color: rgba(248,247,241,0.85); }
.channel-list { display: flex; flex-direction: column; margin-top: 36px; }
.channel-item {
  padding: 16px 0;
  border-top: 1px solid rgba(248,247,241,0.22);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.channel-item:last-child { border-bottom: 1px solid rgba(248,247,241,0.22); }
.partner-cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 32px; }

@media (min-width: 992px) {
  .partner-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* ==========================================================================
   11 — CONTACT
   ========================================================================== */
.contact-section { background: var(--c-ivory); }
.contact-grid { display: grid; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-item .lbl { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-ink-soft); }
.contact-info-item a, .contact-info-item span { font-family: var(--f-display); font-size: 20px; }

.form-row { display: grid; gap: 22px; }
.field { position: relative; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--c-hairline);
  background: transparent;
  padding: 10px 2px;
  font-size: 16px;
  transition: border-color var(--dur-fast) var(--ease-editorial);
}
.field input:focus, .field textarea:focus { border-color: var(--c-primary); outline: none; }
.field textarea { resize: vertical; min-height: 100px; }
.form-two { display: grid; gap: 22px; }
.form-status { font-size: 13px; color: var(--c-primary); margin-top: 8px; min-height: 18px; }

@media (min-width: 992px) {
  .contact-grid { grid-template-columns: 0.8fr 1.2fr; gap: 90px; }
  .form-two { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   OFFICIAL DISTRIBUTOR
   ========================================================================== */
.distributor-section {
  background: var(--c-ivory);
  border-top: 1px solid var(--c-hairline);
}
.distributor-grid {
  display: grid;
  grid-template-areas: "copy" "visual" "cta";
  gap: 40px;
}
.distributor-copy { grid-area: copy; }
.distributor-visual {
  grid-area: visual;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.distributor-logo { width: 100%; max-width: 220px; height: auto; object-fit: contain; }
.distributor-url {
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-primary);
  border-bottom: 1px solid var(--c-hairline);
  padding-bottom: 3px;
  transition: border-color var(--dur-fast) var(--ease-editorial);
}
.distributor-url:hover { border-color: var(--c-primary); }
.distributor-cta { grid-area: cta; }

@media (min-width: 992px) {
  .distributor-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas:
      "copy    visual"
      "cta     visual";
    column-gap: 80px;
    row-gap: 8px;
    align-items: center;
  }
  .distributor-cta { align-self: start; margin-top: 8px; }
  .distributor-visual { align-items: center; justify-self: center; }
  .distributor-logo { max-width: 260px; }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--c-deep); color: var(--c-ivory); padding: 72px 0 28px; }
.footer-top { display: flex; flex-direction: column; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(248,247,241,0.16); }
.footer-brand { display: flex; flex-direction: column; }
.footer-tag { font-family: var(--f-display); font-style: italic; color: var(--c-sage); font-size: 18px; margin-top: 10px; }
.footer-nav-grid { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); }
.footer-col h4 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-sage); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(248,247,241,0.82); }
.footer-col a:hover { color: var(--c-gold); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(248,247,241,0.55);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(248,247,241,0.24); display: inline-flex; align-items: center; justify-content: center; }
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }

.footer-distributor {
  display: inline-block;
  font-size: 12px;
  color: rgba(248, 247, 241, 0.55);
}

/* Accordion (mobile footer nav) */
.footer-accordion .footer-col { border-top: 1px solid rgba(248,247,241,0.16); }
.footer-accordion-btn {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.footer-accordion-btn h4 { margin: 0; }
.footer-accordion-btn .plus { font-size: 18px; transition: transform var(--dur-fast); }
.footer-col.is-open .plus { transform: rotate(45deg); }
.footer-col ul { max-height: 0; overflow: hidden; transition: max-height var(--dur-med) var(--ease-editorial); padding-bottom: 0; }
.footer-col.is-open ul { max-height: 400px; padding-bottom: 18px; }

@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; }
  .footer-nav-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 992px) {
  .footer-accordion .footer-col { border-top: none; }
  .footer-accordion-btn { pointer-events: none; padding: 0 0 16px; }
  .footer-accordion-btn .plus { display: none; }
  .footer-col ul { max-height: none; padding-bottom: 0; }
}

/* ==========================================================================
   UTILITY / MISC
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-editorial), transform var(--dur-slow) var(--ease-editorial); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

.page-hero {
  padding: calc(var(--header-h-mobile) + 60px) 0 60px;
  background: var(--c-sage);
}
.page-hero .eyebrow { margin-bottom: 16px; }
@media (min-width: 992px) { .page-hero { padding: calc(var(--header-h) + 90px) 0 90px; } }

.breadcrumb { font-size: 12px; letter-spacing: 0.06em; color: var(--c-ink-soft); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--c-primary); }

.swatch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--c-hairline); }

/* Split panel — touch tap-to-expand parity */
@media (hover: none) {
  .split-panel.is-tap-active { flex-grow: 1.4; }
  .split-panel.is-tap-active img { transform: scale(1.05); }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.pd-layout { display: grid; gap: 40px; }
.pd-media-inner {
  background: var(--c-sage);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pd-media-inner img { height: 84%; width: auto; object-fit: contain; }
.acc-item { border-top: 1px solid var(--c-hairline); }
.acc-item:last-child { border-bottom: 1px solid var(--c-hairline); }
.acc-trigger {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 18px 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}
.acc-trigger span:first-child { flex: 1; }
.acc-plus { flex-shrink: 0; font-size: 18px; color: var(--c-gold); transition: transform var(--dur-fast) var(--ease-editorial); }
.acc-item.is-open .acc-plus { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height var(--dur-med) var(--ease-editorial); }
.acc-item.is-open .acc-panel { max-height: 300px; }
.acc-panel-inner { padding: 0 2px 20px; font-size: 15px; line-height: 1.7; color: var(--c-ink-soft); }

@media (min-width: 992px) {
  .pd-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: start; }
  .pd-media { position: sticky; top: calc(var(--header-h) + 32px); }
}

/* Related products rail (product detail) */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
