@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --canvas: #f4f3ee;
  --paper: #ffffff;
  --paper-warm: #faf8f2;
  --ink: #111614;
  --ink-soft: #4f5a56;
  --forest: #0d3027;
  --forest-light: #19483b;
  --gold: #b9852d;
  --gold-light: #e7c681;
  --burgundy: #7a2724;
  --line: #dcded8;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 12px 30px rgba(17, 22, 20, 0.07);
  --shadow-lg: 0 28px 70px rgba(17, 22, 20, 0.13);
  --content: 1380px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
html[dir="ltr"] body { font-family: "Manrope", Arial, sans-serif; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(185, 133, 45, 0.42); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-inline-start: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--paper);
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.topline {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px var(--gutter);
  background: var(--forest);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.topline strong { color: var(--gold-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 22, 20, 0.09);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 32px rgba(17, 22, 20, 0.08); }
.nav-shell {
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  min-height: 78px;
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
}
.brand { display: inline-flex; align-items: center; width: 190px; text-decoration: none; }
.brand img { width: 100%; height: 52px; object-fit: contain; object-position: center; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.3vw, 34px); }
.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #33403b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a::after {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a[aria-current="true"]::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
}
.language-switcher a {
  min-width: 34px;
  min-height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.language-switcher .active { background: var(--forest); color: #ffffff; }
.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--burgundy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}
.menu-icon { width: 19px; display: grid; gap: 4px; }
.menu-icon span { width: 100%; height: 2px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] .menu-icon span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-icon span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  position: absolute;
  content: "";
  inset-inline-end: -8vw;
  top: 8%;
  width: min(47vw, 720px);
  height: 72%;
  border: 1px solid rgba(185, 133, 45, 0.25);
  transform: rotate(-5deg);
}
.hero::after {
  position: absolute;
  content: "";
  inset-inline-end: 0;
  bottom: 0;
  width: 38%;
  height: 7px;
  background: var(--burgundy);
}
.hero-shell {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  min-height: 630px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 92px) var(--gutter) 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
}
.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 16px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 700;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 700;
  line-height: 1.08;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.lead { max-width: 650px; margin: 24px 0 0; color: var(--ink-soft); font-size: clamp(17px, 1.45vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--forest); color: #ffffff; box-shadow: 0 16px 34px rgba(13, 48, 39, 0.2); }
.button.primary:hover { background: var(--forest-light); }
.button.secondary { border-color: #bfc3bd; background: rgba(255, 255, 255, 0.72); color: var(--ink); }
.button.light { background: #ffffff; color: var(--forest); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #44504c;
  font-size: 13px;
  font-weight: 700;
}
.hero-proof li { position: relative; padding-inline-start: 17px; }
.hero-proof li::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}
.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.hero-visual::before {
  position: absolute;
  content: "";
  width: 72%;
  height: 82%;
  inset-inline-end: 3%;
  bottom: 2%;
  background: var(--forest);
}
.hero-product {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  max-height: 465px;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(17, 22, 20, 0.22));
  mix-blend-mode: multiply;
}
.visual-note {
  position: absolute;
  z-index: 3;
  inset-inline-start: 2%;
  bottom: 7%;
  width: 178px;
  padding: 16px 18px;
  border-inline-start: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.visual-note strong { display: block; font-size: 18px; line-height: 1.35; }
.visual-note span { color: var(--ink-soft); font-size: 12px; }

.trust-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid {
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item { min-height: 118px; padding: 24px clamp(16px, 2.4vw, 34px); border-inline-start: 1px solid var(--line); }
.trust-item:last-child { border-inline-end: 1px solid var(--line); }
.trust-item span { display: block; margin-bottom: 4px; color: var(--gold); font-family: "Manrope", Arial, sans-serif; font-size: 12px; font-weight: 800; }
.trust-item strong { display: block; font-size: 16px; }
.trust-item p { margin: 2px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

.section { padding: clamp(72px, 8vw, 116px) var(--gutter); }
.section-inner { width: min(100%, var(--content)); margin: 0 auto; }
.section-heading { max-width: 820px; margin-bottom: clamp(34px, 5vw, 62px); }
.section-heading.split { max-width: none; display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr); align-items: end; gap: clamp(28px, 7vw, 100px); }
.section-heading h2, .story-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(34px, 4.4vw, 60px); font-weight: 700; line-height: 1.16; }
.section-heading p, .story-copy > p, .contact-copy > p { margin: 14px 0 0; color: var(--ink-soft); font-size: clamp(16px, 1.45vw, 19px); }
.section-heading.split > p { margin: 0; }

.catalog { background: var(--canvas); }
.product-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.product-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(185, 133, 45, 0.58); box-shadow: var(--shadow-lg); }
.product-card.flagship { grid-column: span 7; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr); min-height: 580px; }
.product-card.starter { grid-column: span 5; }
.product-card.meso { grid-column: span 6; display: grid; grid-template-columns: minmax(240px, 0.96fr) minmax(0, 1.04fr); }
.product-media {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f9f9f6;
  border-bottom: 1px solid var(--line);
}
.flagship .product-media, .meso .product-media { min-height: 100%; border-bottom: 0; border-inline-end: 1px solid var(--line); }
.product-media::after { position: absolute; content: ""; width: 110px; height: 5px; inset-inline-end: 0; bottom: 0; background: var(--gold); }
.product-media img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  padding: clamp(22px, 3vw, 42px);
  mix-blend-mode: multiply;
  transition: transform 360ms ease;
}
.flagship .product-media img { max-height: 560px; }
.product-card:hover .product-media img { transform: scale(1.025); }
.product-badge { position: absolute; z-index: 2; top: 18px; inset-inline-start: 18px; padding: 6px 10px; background: var(--forest); color: #ffffff; font-size: 11px; font-weight: 700; }
.product-content { padding: clamp(24px, 3vw, 38px); }
.product-kicker { margin: 0 0 8px; color: var(--burgundy); font-size: 12px; font-weight: 700; }
.product-content h3 { margin: 0; font-family: "Manrope", "IBM Plex Sans Arabic", sans-serif; font-size: clamp(20px, 2vw, 28px); line-height: 1.28; letter-spacing: 0; }
html[dir="rtl"] .product-content h3 { direction: ltr; text-align: right; }
.product-content > p:not(.product-kicker) { margin: 14px 0 0; color: var(--ink-soft); font-size: 15px; }
.product-points { margin: 18px 0 24px; padding: 0; list-style: none; }
.product-points li { position: relative; margin-top: 7px; padding-inline-start: 17px; color: #3f4a46; font-size: 13px; }
.product-points li::before { position: absolute; content: ""; inset-inline-start: 0; top: 0.82em; width: 7px; height: 1px; background: var(--gold); }
.product-link { display: inline-flex; align-items: center; min-height: 42px; padding-bottom: 2px; border-bottom: 2px solid var(--gold); color: var(--forest); font-weight: 700; text-decoration: none; }
.product-link:hover { color: var(--burgundy); }

.care-story { background: var(--forest); color: #ffffff; }
.story-layout { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: clamp(40px, 8vw, 120px); align-items: start; }
.story-copy { position: sticky; top: 140px; }
.story-copy .eyebrow { color: var(--gold-light); }
.story-copy > p { color: rgba(255, 255, 255, 0.68); }
.routine-list { counter-reset: routine; }
.routine-step { position: relative; display: grid; grid-template-columns: 94px 1fr; gap: 22px; padding: 32px 0; border-top: 1px solid var(--line-dark); counter-increment: routine; }
.routine-step:last-child { border-bottom: 1px solid var(--line-dark); }
.routine-step::before { content: "0" counter(routine); color: var(--gold-light); font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 800; }
.routine-step span { color: var(--gold-light); font-size: 12px; font-weight: 700; }
.routine-step h3 { margin: 4px 0 7px; font-size: 24px; line-height: 1.3; }
.routine-step p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, 0.65); }

.ingredients { background: var(--paper); }
.ingredient-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.ingredient { min-height: 150px; padding: 24px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ingredient span { color: var(--gold); font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 800; }
.ingredient strong { display: block; margin-top: 18px; color: var(--forest); font-family: "Manrope", sans-serif; font-size: 17px; }
.ingredient p { margin: 6px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }

.faq-section { background: var(--paper-warm); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(36px, 8vw, 120px); }
.faq-layout .section-heading { margin-bottom: 0; }
.faq-list { border-top: 1px solid #bfc3bd; }
.faq-list details { border-bottom: 1px solid #bfc3bd; }
.faq-list summary { position: relative; padding: 23px 50px 23px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
html[dir="ltr"] .faq-list summary { padding: 23px 0 23px 50px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { position: absolute; content: ""; inset-inline-start: 3px; top: 50%; width: 17px; height: 1px; background: var(--forest); transition: transform 180ms ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { max-width: 760px; margin: -5px 0 24px; color: var(--ink-soft); }

.contact-section { background: var(--canvas); }
.contact-layout { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr); gap: clamp(38px, 8vw, 120px); align-items: start; }
.contact-copy { padding-top: 18px; }
.contact-note { margin-top: 30px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.contact-note strong { display: block; color: var(--forest); font-size: 16px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: clamp(26px, 4vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.contact-form label { display: grid; gap: 8px; color: #2f3a36; font-size: 13px; font-weight: 700; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #ccd0ca; border-radius: 2px; background: #ffffff; color: var(--ink); outline: none; padding: 13px 14px; transition: border-color 160ms ease, box-shadow 160ms ease; }
.contact-form input, .contact-form select { min-height: 50px; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185, 133, 45, 0.12); }
.submit-button { grid-column: 1 / -1; min-height: 52px; border: 0; border-radius: 2px; background: var(--forest); color: #ffffff; font-weight: 700; cursor: pointer; transition: background 180ms ease, transform 180ms ease; }
.submit-button:hover { background: var(--forest-light); transform: translateY(-1px); }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--ink-soft); font-size: 12px; }

.site-footer { padding: 62px var(--gutter) 26px; background: #0a201a; color: #ffffff; }
.footer-inner { width: min(100%, var(--content)); margin: 0 auto; }
.footer-main { display: grid; grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.4fr) minmax(180px, 0.4fr); gap: 50px; padding-bottom: 42px; }
.footer-brand img { width: 230px; height: 74px; object-fit: contain; object-position: center; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 520px; margin: 12px 0 0; color: rgba(255, 255, 255, 0.62); }
.footer-column strong { display: block; margin-bottom: 14px; color: var(--gold-light); font-size: 13px; }
.footer-column a { display: block; width: fit-content; margin-top: 8px; color: rgba(255, 255, 255, 0.72); font-size: 14px; text-decoration: none; }
.footer-column a:hover { color: #ffffff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 26px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: rgba(255, 255, 255, 0.5); font-size: 12px; }
.footer-bottom p { max-width: 820px; margin: 0; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .header-cta { display: none; }
  .hero-shell { grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr); }
  .product-card.flagship, .product-card.starter, .product-card.meso { grid-column: span 6; display: block; }
  .flagship .product-media, .meso .product-media { min-height: 350px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .product-card:not(.flagship):not(.starter):not(.meso) { grid-column: span 6; }
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .nav-shell { grid-template-columns: auto 1fr auto; min-height: 70px; }
  .brand { width: 160px; }
  .brand img { height: 46px; }
  .desktop-nav { display: none; }
  .nav-actions { justify-self: end; }
  .menu-toggle { display: grid; }
  .mobile-nav {
    position: fixed;
    z-index: 95;
    inset: var(--mobile-nav-top, 104px) 0 auto;
    height: calc(100svh - var(--mobile-nav-top, 104px));
    display: grid;
    align-content: start;
    gap: 2px;
    padding: 26px var(--gutter);
    background: var(--paper);
    border-top: 1px solid var(--line);
    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }
  html[dir="ltr"] .mobile-nav { transform: translateX(-110%); }
  .mobile-nav.is-open { transform: translateX(0); opacity: 1; visibility: visible; }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 18px; font-weight: 700; text-decoration: none; }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; padding-top: 58px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 420px; }
  .hero-product { max-height: 410px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-inline-end: 1px solid var(--line); }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .section-heading.split, .story-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .section-heading.split { align-items: start; gap: 20px; }
  .story-copy { position: static; }
  .faq-layout .section-heading { margin-bottom: 12px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --gutter: 18px; }
  .topline { min-height: 30px; font-size: 10px; }
  .nav-shell { min-height: 66px; gap: 8px; }
  .brand { width: 132px; }
  .brand img { height: 40px; }
  .language-switcher a { min-width: 29px; min-height: 28px; font-size: 10px; }
  .menu-toggle { width: 38px; height: 38px; }
  .mobile-nav { --mobile-nav-top: 96px; }
  .hero::before { width: 76vw; height: 38%; top: auto; bottom: 5%; }
  .hero::after { width: 64%; }
  .hero-shell { padding-top: 42px; padding-bottom: 24px; gap: 22px; }
  .hero h1 { font-size: clamp(39px, 12.5vw, 58px); }
  .lead { margin-top: 18px; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 9px 18px; margin-top: 23px; }
  .hero-visual { min-height: 315px; }
  .hero-visual::before { width: 74%; height: 82%; }
  .hero-product { max-height: 305px; }
  .visual-note { width: 148px; padding: 11px 13px; bottom: 1%; }
  .visual-note strong { font-size: 15px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 124px; padding: 18px 14px; }
  .trust-item strong { font-size: 14px; }
  .trust-item p { font-size: 11px; }
  .section { padding-top: 66px; padding-bottom: 66px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .story-copy h2, .contact-copy h2 { font-size: 34px; }
  .product-card, .product-card.flagship, .product-card.starter, .product-card.meso, .product-card:not(.flagship):not(.starter):not(.meso) { grid-column: 1 / -1; }
  .product-media, .flagship .product-media, .meso .product-media { min-height: 280px; }
  .product-media img, .flagship .product-media img { max-height: 320px; padding: 24px; }
  .routine-step { grid-template-columns: 48px 1fr; gap: 12px; padding: 25px 0; }
  .routine-step h3 { font-size: 20px; }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient { min-height: 136px; padding: 18px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label, .contact-form .full, .submit-button, .form-note { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 12px; }
}
