/*
  Premium beauty storefront styles.
  Hostinger/public_html friendly: no build step, no framework.
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Figtree:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #fbfaf4;
  --cream-2: #f5f0e6;
  --deep-green: #073d34;
  --sage: #c4caa9;
  --olive: #354e42;
  --ink: #121713;
  --muted: #5b625c;
  --border: #d8d4c9;
  --white: #ffffff;
  --brown: #8a644e;
  --gold: #c89b5d;
  --shadow: 0 18px 50px rgba(20, 28, 22, .14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Figtree', Arial, sans-serif;
  --announcement-height: 35px;
  --header-height: 74px;
  --header-total-height: calc(var(--announcement-height) + var(--header-height));
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-total-height) + 18px); }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-locked { overflow: hidden; }
img, video { max-width: 100%; display: block; }
svg { display: block; max-width: 100%; flex-shrink: 0; }
a { color: inherit; text-underline-offset: .22em; }
button, input, select { font: inherit; }
button { cursor: pointer; }

/* Clickability safety layer: prevents hidden drawers/menus from blocking page links. */
.header-shell, .site-header, .nav, .nav a, .nav button, .mobile-menu a, .mobile-menu button, .footer a, .category-card, .btn-filled, .btn-outline {
  pointer-events: auto;
}
.mobile-menu:not(.is-open),
.mobile-menu[aria-hidden="true"] {
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.cart-drawer { pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.search-modal { pointer-events: none; }
.search-modal.open { pointer-events: auto; }
.search-modal[hidden] { display: none !important; }
.nav-links a, .brand, .nav-icon, .currency-selector, .cart-button {
  position: relative;
  z-index: 3;
}


.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  transform: translateY(-150%);
  z-index: 999;
  background: var(--deep-green);
  color: var(--white);
  padding: .8rem 1rem;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: min(100% - 64px, 1340px); margin: 0 auto; }
.container.narrow { width: min(100% - 32px, 900px); }
.container.wide { width: min(100% - 32px, 1520px); }
.section { padding: 72px 0; }
.bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }

.header-shell {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--cream);
  transition: box-shadow .25s ease;
}
.header-shell.scrolled,
.header-shell.menu-open {
  box-shadow: 0 10px 30px rgba(7,61,52,.08);
}
.announcement {
  min-height: var(--announcement-height);
  display: grid;
  place-items: center;
  background: var(--deep-green);
  color: var(--white);
  text-align: center;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 12px;
}
.announcement p { margin: 0; }

/* Fixed responsive header */
.site-header {
  position: relative;
  z-index: 10000;
  min-height: var(--header-height);
  background: rgba(251,250,244,.98);
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  transition: background .25s ease;
}
.header-shell.scrolled .site-header,
.header-shell.menu-open .site-header {
  background: rgba(251,250,244,1);
}
.nav {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  column-gap: 24px;
}
.nav-zone {
  display: flex;
  align-items: center;
  min-width: 0;
}
.nav-zone-left { justify-content: flex-start; }
.nav-brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
}
.nav-zone-right {
  justify-content: flex-end;
  gap: 18px;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(18px, 1.7vw, 30px);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-icon:hover,
.currency-selector:hover { opacity: .72; }
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(27px, 2vw, 34px);
  letter-spacing: .42em;
  margin-right: -.42em;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  color: var(--deep-green);
  min-height: var(--header-height);
}
.brand-image img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
}
.currency-selector,
.nav-icon {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  min-width: 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity .2s ease;
  cursor: pointer;
}
.currency-selector {
  gap: 6px;
  font-size: 14px;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.currency-selector .flag {
  font-size: 17px;
  line-height: 1;
  transform: translateY(-1px);
}
.currency-selector .chevron {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
}
.nav-icon {
  position: relative;
  width: 28px;
}
.nav-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.cart-count {
  position: absolute;
  right: -7px;
  top: 5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--deep-green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  place-items: center;
  gap: 5px;
  padding: 9px;
  margin-left: -10px;
  cursor: pointer;
}
.mobile-menu-btn span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
  pointer-events: none;
}
.header-shell.menu-open .mobile-menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header-shell.menu-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
.header-shell.menu-open .mobile-menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-total-height);
  height: calc(100dvh - var(--header-total-height));
  z-index: 94;
  background: rgba(251,250,244,.995);
  color: var(--ink);
  box-shadow: 0 20px 35px rgba(0,0,0,.13);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu.is-open { display: block; }
.mobile-menu[aria-hidden="true"] { display: none !important; }
.mobile-menu-inner {
  display: grid;
  padding: 18px 24px 42px;
}
.mobile-menu-title {
  padding: 10px 0 16px;
  font-family: var(--serif);
  font-size: 31px;
  color: var(--deep-green);
}
.mobile-menu a,
.mobile-menu button {
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 18px 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  cursor: pointer;
}
.mobile-menu a:hover,
.mobile-menu button:hover { color: var(--deep-green); }


.hero {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: min(760px, calc(100vh - var(--header-total-height)));
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.hero-image {
  min-height: 650px;
  background: #e8dfc4;
  overflow: hidden;
}
.hero-image img,
.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  padding: 76px 7vw 70px;
}
.eyebrow {
  margin: 0;
  color: var(--olive);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1,
.intro h2,
.split-copy h2,
.quote-section blockquote,
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .95;
}
.hero h1 {
  font-size: clamp(44px, 5.2vw, 92px);
  margin: 0;
  color: var(--deep-green);
}
.hero-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 18px;
}
.btn-filled,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 11px 30px;
  border: 1px solid var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn-filled {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--deep-green);
}
.btn-outline { background: transparent; color: var(--ink); }
.btn-filled:hover,
.btn-outline:hover { transform: translateY(-1px); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.intro { text-align: center; }
.intro h2 {
  font-size: clamp(34px, 3.6vw, 58px);
  margin: 0 0 16px;
}
.intro p {
  margin: 0 auto 18px;
  max-width: 920px;
  color: var(--olive);
  font-size: 18px;
}
.intro a { font-size: 14px; }

.category-section { padding-top: 34px; }
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: #ded2bd;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.category-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.category-card span {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: var(--white);
  text-decoration: underline;
  text-shadow: 0 2px 14px rgba(0,0,0,.48);
  font-size: 15px;
}
.category-card:hover img { transform: scale(1.04); }

.products { position: relative; background: var(--cream); }
.section-side-label {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--deep-green);
}
.products-container { padding-left: 34px; }
.product-card { text-align: center; min-width: 0; }
.product-media {
  position: relative;
  background: #f4eadb;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-media img { transform: scale(1.03); }
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: var(--deep-green);
  color: var(--white);
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 800;
}
.product-info h3 {
  margin: 16px 0 7px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #000;
  font-size: 16px;
  margin-bottom: 4px;
}
.rating small { font-size: 13px; color: var(--muted); }
.price { margin: 0 0 12px; font-size: 14px; }
.price s { color: var(--muted); margin-left: 4px; }
.product-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: stretch;
}
.product-actions select,
.product-actions button {
  height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.product-actions select { padding: 0 13px; min-width: 74px; text-transform: none; letter-spacing: 0; }
.product-actions button { min-width: 138px; }

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  border-bottom: 1px solid var(--border);
}
.split-media {
  background: #b7957d;
  border-right: 1px solid var(--border);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-copy {
  display: grid;
  place-content: center;
  text-align: center;
  padding: 50px clamp(24px, 8vw, 130px);
}
.split-copy h2 {
  font-size: clamp(38px, 4vw, 68px);
  margin: 0 0 18px;
}
.split-copy p { margin: 0 0 10px; color: var(--olive); }
.split-copy a { font-weight: 800; }

.quote-section { text-align: center; }
.quote-section blockquote {
  margin: 12px auto 22px;
  max-width: 970px;
  font-size: clamp(37px, 5.2vw, 82px);
  color: #191919;
}
.press-logos {
  margin: 62px auto 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(26px, 6vw, 86px);
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 39px);
  font-weight: 700;
}
.press-logos span:nth-child(2) { text-decoration: underline; text-underline-offset: 11px; }

.social-strip { padding-top: 28px; }
.social-strip h2 {
  margin: 0 0 28px;
  font-size: 24px;
}
.social-carousel { position: relative; }
.social-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.social-track::-webkit-scrollbar { display: none; }
.social-track img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  scroll-snap-align: start;
  border-right: 1px solid rgba(255,255,255,.35);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  box-shadow: var(--shadow);
}
.carousel-arrow[data-scroll-left] { left: 12px; }
.carousel-arrow[data-scroll-right] { right: 12px; }
.reward-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 28px;
  font-size: 14px;
}
.reward-line a { text-decoration: none; }

.footer {
  background: var(--deep-green);
  color: #fffaf1;
  padding: 72px 0 28px;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr .9fr 2fr;
  gap: 54px;
  align-items: start;
}
.footer-links { display: grid; gap: 15px; }
.footer-links a {
  text-decoration: none;
  color: #fffaf1;
  font-size: 16px;
}
.footer-links a:hover { text-decoration: underline; }
.footer-mark {
  justify-self: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  font-size: 34px;
}
.newsletter h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 3.5vw, 54px);
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 62px;
  border: 1px solid rgba(255,255,255,.75);
  max-width: 600px;
}
.newsletter-form input,
.newsletter-form button {
  border: 0;
  background: transparent;
  color: #fffaf1;
  min-height: 58px;
}
.newsletter-form input { padding: 0 20px; }
.newsletter-form input::placeholder { color: rgba(255,250,241,.8); }
.newsletter-form button {
  border-left: 1px solid rgba(255,255,255,.75);
  font-size: 33px;
}
.social-links { display: flex; gap: 30px; margin-top: 34px; }
.social-links a { color: #fffaf1; text-decoration: none; }
.footer-brand {
  margin-top: 58px;
  position: relative;
}
.footer-brand span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(92px, 18vw, 300px);
  letter-spacing: .34em;
  margin-right: -.34em;
  line-height: .78;
  color: #fff;
}
.footer-brand small {
  position: absolute;
  right: 0;
  top: 4px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.cart-drawer.open { opacity: 1; visibility: visible; }
.drawer-panel {
  margin-left: auto;
  width: min(100%, 430px);
  min-height: 100%;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .28s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-header,
.drawer-footer {
  padding: 22px;
  border-bottom: 1px solid var(--border);
}
.drawer-footer { border-top: 1px solid var(--border); border-bottom: 0; }
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
}
.drawer-header button,
.search-box > button {
  border: 0;
  background: transparent;
  font-size: 30px;
}
.drawer-items { padding: 22px; overflow-y: auto; }
.empty-cart { margin: 0; color: var(--muted); }
.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cart-line img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  background: var(--cream-2);
}
.cart-line h3 { margin: 0 0 3px; font-size: 14px; }
.cart-line p { margin: 0; color: var(--muted); }
.cart-line button { border: 0; background: transparent; font-size: 24px; }
.drawer-total { display: flex; justify-content: space-between; margin-bottom: 14px; }
.checkout-btn { width: 100%; border-color: var(--deep-green); background: var(--deep-green); color: var(--white); }

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(7,61,52,.46);
  display: grid;
  place-items: start center;
  padding: 8vh 16px 16px;
  opacity: 0;
  transition: opacity .25s ease;
}
.search-modal.open { opacity: 1; }
.search-box {
  width: min(100%, 680px);
  background: var(--cream);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.search-box > button { position: absolute; right: 18px; top: 10px; }
.search-box label {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  margin-bottom: 16px;
}
.search-box input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 0 16px;
}
.search-results { margin-top: 18px; display: grid; gap: 10px; }
.search-result {
  border: 1px solid var(--border);
  padding: 12px 14px;
  background: rgba(255,255,255,.35);
}
.offer-pill {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 40;
  border: 1px solid var(--border);
  background: #fffdf7;
  color: var(--ink);
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-btn { display: none !important; }
}

@media (max-width: 1240px) {
  .nav { padding: 0 24px; column-gap: 18px; }
  .nav-links { gap: 14px; font-size: 12px; letter-spacing: .13em; }
  .nav-zone-right { gap: 12px; }
  .currency-selector { font-size: 12px; letter-spacing: .1em; }
  .brand { font-size: clamp(27px, 2.4vw, 32px); letter-spacing: .34em; margin-right: -.34em; }
}

@media (max-width: 990px) {
  :root { --announcement-height: 32px; --header-height: 66px; }
  .container { width: min(100% - 32px, 1340px); }
  .announcement { font-size: 10px; letter-spacing: .16em; }
  .nav {
    padding: 0 18px;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 12px;
  }
  .mobile-menu-btn { display: grid; }
  .nav-left,
  .nav-right { display: none; }
  .nav-zone-right { gap: 10px; }
  .currency-selector,
  .account-icon { display: none; }
  .brand { font-size: clamp(25px, 5.2vw, 34px); letter-spacing: .28em; margin-right: -.28em; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image { min-height: 56vh; order: 1; }
  .hero-copy { order: 2; padding: 52px 24px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .category-card { min-height: 270px; }
  .section-side-label { display: none; }
  .products-container { padding-left: 0; }
  .split-feature { grid-template-columns: 1fr; min-height: auto; }
  .split-media { min-height: 460px; border-right: 0; }
  .split-copy { min-height: 410px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-mark { justify-self: start; }
  .newsletter { grid-column: span 2; }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .nav { padding: 0 14px; column-gap: 8px; }
  .brand { font-size: clamp(22px, 7vw, 28px); letter-spacing: .22em; margin-right: -.22em; }
  .nav-zone-right { gap: 8px; }
  .nav-icon { width: 26px; }
  .nav-icon svg { width: 21px; height: 21px; }
  .hero-image { min-height: 440px; }
  .hero h1 { font-size: 47px; }
  .hero-copy p:not(.eyebrow) { font-size: 16px; }
  .eyebrow { font-size: 12px; }
  .category-card { min-height: 210px; }
  .product-row { gap: 16px 12px; }
  .product-media { aspect-ratio: 1 / 1.08; }
  .product-info h3 { font-size: 12px; white-space: normal; min-height: 38px; }
  .rating { font-size: 13px; }
  .rating small, .price { font-size: 12px; }
  .product-actions { display: grid; gap: 8px; }
  .product-actions select,
  .product-actions button { width: 100%; min-width: 0; height: 39px; font-size: 10px; }
  .quote-section blockquote { font-size: 39px; }
  .press-logos { gap: 22px; }
  .social-track { grid-auto-columns: 58%; }
  .footer { padding-top: 52px; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter { grid-column: auto; }
  .footer-brand span { font-size: 78px; letter-spacing: .22em; margin-right: -.22em; }
  .footer-brand small { position: static; display: block; margin-top: 18px; }
  .offer-pill { left: 14px; bottom: 14px; }
}

@media (max-width: 390px) {
  .brand { font-size: 21px; letter-spacing: .18em; margin-right: -.18em; }
  .nav { padding: 0 10px; }
  .grid-4 { gap: 11px; }
  .product-actions select,
  .product-actions button { font-size: 9px; }
}

/* Inner pages, legal pages, contact, and checkout */
.page-main {
  min-height: 58vh;
  background: var(--cream);
}
.page-hero {
  padding: 82px 0 54px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero.compact h1 {
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 500;
  line-height: .95;
  color: var(--deep-green);
}
.page-hero p {
  margin: 0 auto 12px;
  max-width: 720px;
  color: var(--olive);
  font-size: 17px;
}
.page-hero small,
.order-number {
  color: var(--muted);
}
.card-panel {
  background: rgba(255,255,255,.42);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(20,28,22,.05);
}
.legal-content {
  margin-top: 46px;
  margin-bottom: 70px;
  padding: clamp(24px, 4vw, 54px);
}
.legal-content article + article {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.legal-content h2,
.checkout-form h2,
.checkout-summary h2,
.contact-layout h2 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 500;
  color: var(--deep-green);
}
.legal-content p,
.contact-layout p {
  margin: 0;
  color: var(--olive);
  font-size: 16px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: 28px;
  align-items: start;
  padding-top: 46px;
  padding-bottom: 76px;
}
.checkout-form,
.checkout-summary,
.contact-layout .card-panel {
  padding: clamp(22px, 3vw, 38px);
}
.checkout-form h2:not(:first-of-type) {
  margin-top: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.checkout-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.checkout-form input,
.checkout-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.62);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}
.checkout-form textarea,
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.checkout-form input:focus,
.checkout-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--deep-green);
}
.form-alert {
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
}
.form-alert.error {
  background: #fff1ee;
  border-color: #dba092;
  color: #7a2d20;
}
.form-alert p { margin: 0; }
.form-alert p + p { margin-top: 6px; }
.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.checkout-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.checkout-summary {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}
.summary-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.summary-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: var(--cream-2);
}
.summary-line strong {
  display: block;
  font-size: 14px;
}
.summary-line small {
  color: var(--muted);
}
.summary-line span {
  font-size: 13px;
  color: var(--olive);
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  margin-top: 8px;
  font-size: 18px;
}
.checkout-btn.disabled,
.checkout-btn:disabled {
  opacity: .48;
  cursor: not-allowed;
}
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  padding-top: 46px;
  padding-bottom: 76px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.faq-list article h2 {
  font-size: clamp(24px, 2.5vw, 34px);
}

@media (max-width: 990px) {
  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-hero { padding: 58px 0 40px; }
  .form-grid.two,
  .form-grid.three {
    grid-template-columns: 1fr;
  }
  .checkout-actions {
    display: grid;
  }
  .checkout-actions .btn-outline,
  .checkout-actions .btn-filled {
    width: 100%;
  }
  .summary-line {
    grid-template-columns: 56px 1fr;
  }
  .summary-line span {
    grid-column: 2;
  }
}
