:root {
  --bone: #F2EEE7;
  --bone-deep: #E8E2D7;
  --ink: #1A1612;
  --ink-soft: #3C342B;
  --wine: #6B1F2E;
  --amber: #A6552B;
  --gold: #C29A4B;
  --warm-gray: #8B7E6E;
  --cream-glow: #F6F2EC;
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.53;
  font-weight: 400;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 80% 0%, rgba(166, 85, 43, 0.08), transparent 40%),
    radial-gradient(circle at 0% 60%, rgba(107, 31, 46, 0.06), transparent 50%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

body.no-scroll { overflow: hidden; }

/* ------------- NAV ------------- */
:root {
  --subnav-h: 44px;
}

.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(242, 238, 231, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 22, 18, 0.06);
  transition: background 0.4s ease;
}

nav {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  position: relative;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.nav-center {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
}
.icon-btn:hover { opacity: 0.55; }
.icon-btn svg { width: 22px; height: 22px; stroke-width: 1.4; }

/* hamburger button — hidden at top, fades in on scroll */
.hamburger-btn {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  width: 0;
  padding: 0;
  margin: 0;
  transition: opacity 0.4s ease, transform 0.4s ease, width 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  overflow: hidden;
}
.nav-wrap.scrolled .hamburger-btn {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  width: 36px;
  padding: 0.4rem;
  margin-right: 0.4rem;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--wine);
  color: var(--bone);
  font-size: 0.6rem;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}

.logo {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.4em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.logo span {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  margin-left: 0.3em;
  font-size: 0.7em;
  color: var(--wine);
  vertical-align: super;
}

/* Image-logo variant — sized so it matches the wordmark cap-height per location */
.haidi-scope .haidi-logo-img { display: inline-flex; align-items: center; line-height: 1; padding: 0; }
.haidi-scope .haidi-logo-img img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.haidi-scope .drawer-head .haidi-logo-img img { height: 36px; }
.haidi-scope .footer-brand .haidi-logo-img { display: inline-block; margin: 0 0 1.5rem; }
.haidi-scope .footer-brand .haidi-logo-img img { height: 44px; }
@media (max-width: 900px) {
  .haidi-scope .haidi-logo-img img { height: 26px; }
}
@media (max-width: 760px) {
  .haidi-scope .haidi-logo-img img { height: 24px; }
  .haidi-scope .footer-brand .haidi-logo-img img { height: 34px; }
}
@media (max-width: 400px) {
  .haidi-scope .haidi-logo-img img { height: 22px; }
  .haidi-scope .footer-brand .haidi-logo-img img { height: 30px; }
}
@media (max-width: 360px) {
  .haidi-scope .haidi-logo-img img { height: 20px; }
}

.search {
  position: relative;
  max-width: 320px;
  width: 100%;
}
.search input {
  width: 100%;
  background: rgba(246, 242, 236, 0.5);
  border: 1px solid rgba(26, 22, 18, 0.12);
  border-radius: 999px;
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: all 0.3s;
}
.search input:focus {
  border-color: var(--wine);
  background: var(--cream-glow);
}
.search input::placeholder { color: var(--warm-gray); font-style: italic; }
.search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  pointer-events: none;
  color: var(--warm-gray);
}

.search-mobile-btn { display: none; }

/* ------------- SUBNAV ------------- */
.subnav {
  height: var(--subnav-h);
  border-top: 1px solid rgba(26, 22, 18, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  padding: 0 2rem;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              border-color 0.4s ease;
}
.nav-wrap.scrolled .subnav {
  height: 0;
  opacity: 0;
  border-color: transparent;
  pointer-events: none;
}

.subnav a {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
}
.subnav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.subnav a:hover { color: var(--wine); }
.subnav a:hover::after { transform: scaleX(1); }
.subnav a em {
  font-style: normal;
  color: var(--wine);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-left: 0.4em;
  vertical-align: 1px;
}

/* ------------- HAMBURGER DRAWER ------------- */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);
}
.backdrop.visible { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(420px, 88vw);
  background: var(--bone);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  padding: 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant', serif;
  font-size: 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.25rem;
}
.drawer-close::before {
  content: '×';
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1;
}

.drawer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.drawer-nav li { border-bottom: 1px solid rgba(26, 22, 18, 0.1); }
.drawer-nav a {
  font-family: 'Cormorant', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  padding: 0.9rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s, padding 0.3s;
}
.drawer-nav a:hover { color: var(--wine); padding-left: 0.5rem; }
.drawer-nav a em { font-style: italic; }
.drawer-nav .arrow {
  font-size: 1rem;
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
}
.drawer-nav a:hover .arrow { opacity: 1; transform: translateX(4px); }

.drawer-foot {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 22, 18, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.drawer-foot a {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm-gray);
  text-decoration: none;
}
.drawer-foot a:hover { color: var(--ink); }
.drawer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ------------- HERO ------------- */
.hero {
  min-height: 100vh;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  color: var(--bone);
}

/*
  HERO BACKGROUND PHOTO — desktop. Mobile ≤760px overrides to focke2-mobile.png.
*/
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('focke2.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* lighter overlay — left-side darken for text readability, photo's own darkness handles the rest */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* gentle left-side wash for text crispness, very soft */
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 35%, transparent 60%),
    /* film grain */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-blend-mode: normal, overlay;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: calc(var(--nav-h) + var(--subnav-h, 0px) + 2rem) 4rem 4rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 3rem;
}

/* tiny eyebrow tag at top-left */
.hero-eyebrow {
  align-self: start;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(242, 238, 231, 0.75);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  animation: fadeUp 1s ease-out 0.3s both;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(242, 238, 231, 0.5);
}

/* main content sits vertically centered in remaining space */
.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-headline {
  font-family: 'Cormorant', serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--bone);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  animation: fadeUp 1.2s ease-out 0.3s both;
  margin-bottom: 0.5rem;
}

.hero-headline .line { display: block; }
.hero-headline,
.hero-tag {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-headline .line-italic {
  font-style: italic;
  font-weight: 300;
  color: #E8B584;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
  animation: fadeUp 1.2s ease-out 0.5s both;
}

.hero-tag {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.62;
  max-width: 38ch;
  color: rgba(242, 238, 231, 0.92);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* glass-like price card on dark background */
.price-card {
  background: rgba(26, 22, 18, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(242, 238, 231, 0.18);
  padding: 1.1rem 1.5rem;
  position: relative;
  color: var(--bone);
}
.price-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 12px; height: 12px;
  border-top: 1px solid #E8B584;
  border-left: 1px solid #E8B584;
}
.price-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 12px; height: 12px;
  border-bottom: 1px solid #E8B584;
  border-right: 1px solid #E8B584;
}
.price-card-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: none;
  font-variant-numeric: proportional-nums;
  color: rgba(242, 238, 231, 0.68);
  margin-bottom: 0.35rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}
.price-comparison {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'Cormorant', serif;
}
.price-our {
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--bone);
}
.price-vs {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(242, 238, 231, 0.55);
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}
.price-theirs {
  font-size: 1rem;
  text-decoration: line-through;
  color: rgba(242, 238, 231, 0.5);
  font-style: italic;
  font-weight: 300;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.btn-primary {
  background: var(--ink);
  color: var(--bone);
  border: none;
  padding: 1.05rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  align-self: flex-start;
}
.btn-primary:hover { background: var(--wine); letter-spacing: 0.27em; }

/* hero version — light button on dark photo */
.hero .btn-primary {
  background: var(--bone);
  color: var(--ink);
}
.hero .btn-primary:hover { background: #E8B584; }

.btn-secondary {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(242, 238, 231, 0.88);
  text-decoration: none;
  transition: color 0.3s;
  align-self: flex-start;
}
.btn-secondary:hover { color: #E8B584; }
.btn-secondary u { text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* ------------- TRUST STRIP ------------- */
.trust {
  border-top: 1px solid rgba(26, 22, 18, 0.1);
  border-bottom: 1px solid rgba(26, 22, 18, 0.1);
  padding: 1.4rem 2.5rem;
  background: rgba(246, 242, 236, 0.4);
  overflow: hidden;
}
.trust-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--wine);
  flex-shrink: 0;
}
.trust-item.dup { display: none; }

/* mobile-only marquee version */
@keyframes trustMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------- DIVIDER ------------- */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  margin: 2rem 0;
}
.divider-line { flex: 1; height: 1px; background: var(--ink); opacity: 0.2; }
.divider-text {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ------------- STREET TEST ------------- */
.street-test { padding: 6rem 2.5rem; position: relative; }

.test-container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.2rem;
}

.test-headline {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.test-headline em { font-style: italic; color: var(--wine); display: block; }

.test-body {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 1.8rem 0 2rem;
  color: var(--ink-soft);
  max-width: 44ch;
  overflow-wrap: break-word;
}

.test-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
}
.test-card {
  aspect-ratio: 3/4;
  background: var(--cream-glow);
  border: 1px solid rgba(26, 22, 18, 0.15);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.4s ease;
  min-width: 0;
}
.test-card.a { transform: rotate(-3deg); }
.test-card.b {
  transform: rotate(3deg);
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.test-card.a:hover { transform: rotate(-3deg) translateY(-8px); }
.test-card.b:hover { transform: rotate(3deg) translateY(-8px); }
.test-card-letter {
  font-family: 'Cormorant', serif;
  font-size: 5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.test-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.test-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--wine);
  color: var(--bone);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.3rem;
  z-index: 5;
}

/* ------------- BESTSELLERS WITH TABS ------------- */
.bestsellers { padding: 6rem 2.5rem; position: relative; }

.bestsellers-head {
  text-align: center;
  margin-bottom: 3rem;
}
.bestsellers-head .section-eyebrow { color: var(--wine); }
.bestsellers-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.bestsellers-title em { font-style: italic; color: var(--wine); }
.bestsellers-sub {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(26, 22, 18, 0.12);
  flex-wrap: wrap;
}
.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-gray);
  padding: 0.8rem 0.4rem;
  position: relative;
  transition: color 0.3s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--wine);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--ink); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn .count {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.15em;
  vertical-align: super;
  color: var(--warm-gray);
  margin-left: 0.3em;
}

.tab-panel { display: none; animation: fadeIn 0.5s ease-out; min-width: 0; }
.tab-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.product { position: relative; cursor: pointer; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); min-width: 0; }
.product:hover { transform: translateY(-6px); }

.product-visual {
  aspect-ratio: 3/4;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bottle { width: 50%; height: 65%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

.product-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

.product-info { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; overflow-wrap: break-word; }
.product-inspired {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.product-name {
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
}
.product-notes {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: 'Cormorant', serif;
  font-weight: 300;
}
.product-prices {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: 0.4rem;
  font-family: 'Cormorant', serif;
}
.product-price { font-size: 1.05rem; font-weight: 500; }
.product-price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--warm-gray);
  font-style: italic;
}

/* product gradients per category */
.tab-panel[data-panel="vyrams"] .product:nth-child(1) .product-visual { background: linear-gradient(160deg, #6B7B5C 0%, #3F4A36 100%); }
.tab-panel[data-panel="vyrams"] .product:nth-child(2) .product-visual { background: linear-gradient(160deg, #8B5A3C 0%, #4A2F1F 100%); }
.tab-panel[data-panel="vyrams"] .product:nth-child(3) .product-visual { background: linear-gradient(160deg, #2C4865 0%, #15273D 100%); }
.tab-panel[data-panel="vyrams"] .product:nth-child(4) .product-visual { background: linear-gradient(160deg, #4A2A30 0%, #2A1418 100%); }

.tab-panel[data-panel="moterims"] .product:nth-child(1) .product-visual { background: linear-gradient(160deg, #C9534A 0%, #8B2A24 100%); }
.tab-panel[data-panel="moterims"] .product:nth-child(2) .product-visual { background: linear-gradient(160deg, #D4A4B5 0%, #8B4D5F 100%); }
.tab-panel[data-panel="moterims"] .product:nth-child(3) .product-visual { background: linear-gradient(160deg, #9B7BA0 0%, #5C4263 100%); }
.tab-panel[data-panel="moterims"] .product:nth-child(4) .product-visual { background: linear-gradient(160deg, #E8B584 0%, #B47845 100%); }

.tab-panel[data-panel="unisex"] .product:nth-child(1) .product-visual { background: linear-gradient(160deg, #2D2620 0%, #4A3D2F 100%); }
.tab-panel[data-panel="unisex"] .product:nth-child(2) .product-visual { background: linear-gradient(160deg, #D4A574 0%, #A6552B 100%); }
.tab-panel[data-panel="unisex"] .product:nth-child(3) .product-visual { background: linear-gradient(160deg, #A8C2C9 0%, #6B8C95 100%); }
.tab-panel[data-panel="unisex"] .product:nth-child(4) .product-visual { background: linear-gradient(160deg, #8B6F4F 0%, #4F3A23 100%); }

.see-all {
  text-align: center;
  margin-top: 3rem;
}
.see-all a {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.3s;
}
.see-all a:hover { color: var(--wine); }

/* scroll hint shows only on mobile (overridden in mobile media query) */
.scroll-hint { display: none; }

/* ------------- SHOP BY CATEGORY (compact circles) ------------- */
.shop-cats { padding: 4rem 2.5rem; }

.shop-cats-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
}
.cat-circle:hover { transform: translateY(-4px); }

.cat-circle-disc {
  width: 100%;
  aspect-ratio: 1;
  max-width: 180px;
  border-radius: 50%;
  background: var(--cream-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.cat-circle:hover .cat-circle-disc { background: var(--bone-deep); }

.cat-circle-disc svg {
  width: 50%;
  height: 70%;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.25));
}

.cat-circle-label {
  font-family: 'Cormorant', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  text-align: center;
}

/* per-category bottle tints */
.cat-circle[data-cat="vyrams"] svg path.bottle { fill: rgba(45, 70, 50, 0.85); }
.cat-circle[data-cat="moterims"] svg path.bottle { fill: rgba(180, 80, 90, 0.8); }
.cat-circle[data-cat="unisex"] svg path.bottle { fill: rgba(220, 200, 180, 0.85); }
.cat-circle[data-cat="rinkiniai"] svg path.bottle { fill: rgba(107, 31, 46, 0.85); }
.cat-circle[data-cat="naujienos"] svg path.bottle { fill: rgba(212, 165, 100, 0.9); }
.cat-circle[data-cat="bestsellers"] svg path.bottle { fill: rgba(40, 35, 30, 0.9); }

/* ------------- STORY ------------- */
.story {
  padding: 7rem 2.5rem;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: 'H';
  position: absolute;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 60vw;
  font-weight: 300;
  color: rgba(242, 238, 231, 0.03);
  top: -10vw;
  right: -10vw;
  line-height: 1;
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 5rem;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.story-aside {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 238, 231, 0.5);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(242, 238, 231, 0.2);
}

.story-text {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  line-height: 1.3;
  font-weight: 300;
}
.story-text em { font-style: italic; color: #E8B584; }
.story-text p + p { margin-top: 1.5rem; }

.story-meta {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.story-stat .stat-num {
  font-family: 'Cormorant', serif;
  font-size: 2.8rem;
  font-weight: 300;
  display: block;
  line-height: 1;
}
.story-stat .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 238, 231, 0.6);
  margin-top: 0.5rem;
  display: block;
}

/* ------------- REVIEWS ------------- */
.reviews { padding: 6rem 2.5rem; position: relative; }

.reviews-head {
  text-align: center;
  margin-bottom: 4rem;
}
.reviews-stars-big {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.reviews-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.reviews-title em { font-style: italic; color: var(--wine); }
.reviews-meta {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.review {
  background: var(--cream-glow);
  border: 1px solid rgba(26, 22, 18, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.4s ease;
  position: relative;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 22, 18, 0.06);
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.review-quote {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--ink);
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 22, 18, 0.1);
}
.review-name {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: 0.95rem;
}
.review-meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.verified-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4A7C59;
  display: inline-block;
}

/* ------------- DISCOVERY ------------- */
.discovery {
  padding: 6rem 2.5rem;
  background: linear-gradient(135deg, var(--bone-deep) 0%, var(--cream-glow) 100%);
  position: relative;
  overflow: hidden;
}

.discovery-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.discovery-visual {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  position: relative;
}

.sample-vial {
  width: 50px;
  height: 180px;
  border: 1px solid rgba(26, 22, 18, 0.3);
  border-radius: 4px 4px 8px 8px;
  position: relative;
}
.sample-vial::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 12px;
  background: var(--ink);
  border-radius: 2px;
}
.sample-vial:nth-child(1) { transform: rotate(-5deg) translateY(8px); background: linear-gradient(180deg, transparent 0%, transparent 20%, rgba(201, 83, 74, 0.7) 20%, rgba(139, 42, 36, 0.8) 100%); }
.sample-vial:nth-child(2) { transform: rotate(2deg); background: linear-gradient(180deg, transparent 0%, transparent 18%, rgba(45, 38, 32, 0.7) 18%, rgba(74, 61, 47, 0.8) 100%); }
.sample-vial:nth-child(3) { transform: rotate(-2deg) translateY(-8px); background: linear-gradient(180deg, transparent 0%, transparent 22%, rgba(107, 123, 92, 0.7) 22%, rgba(63, 74, 54, 0.8) 100%); }
.sample-vial:nth-child(4) { transform: rotate(4deg); background: linear-gradient(180deg, transparent 0%, transparent 16%, rgba(212, 165, 116, 0.7) 16%, rgba(166, 85, 43, 0.8) 100%); }
.sample-vial:nth-child(5) { transform: rotate(-3deg) translateY(6px); background: linear-gradient(180deg, transparent 0%, transparent 19%, rgba(232, 181, 132, 0.7) 19%, rgba(180, 120, 75, 0.8) 100%); }

.discovery-content h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.discovery-content h2 em { font-style: italic; color: var(--wine); }
.discovery-content p {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 38ch;
}

.discovery-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  font-family: 'Cormorant', serif;
}
.discovery-price .num {
  font-size: 2.8rem;
  font-weight: 400;
}
.discovery-price .desc {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--warm-gray);
  max-width: 24ch;
  line-height: 1.4;
}

/* ------------- FOOTER ------------- */
footer {
  background: var(--ink);
  color: var(--bone);
  padding: 5rem 2.5rem 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  font-size: 2rem;
  display: block;
  margin: 0 0 1.5rem;
  color: var(--bone);
}

.footer-tagline {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 32ch;
  color: rgba(242, 238, 231, 0.8);
  margin-bottom: 2rem;
}

.newsletter {
  display: flex;
  border-bottom: 1px solid rgba(242, 238, 231, 0.4);
  padding-bottom: 0.5rem;
  max-width: 380px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--bone);
  font-family: 'Outfit', sans-serif;
  padding: 0.5rem 0;
  outline: none;
  font-size: 0.92rem;
}
.newsletter input::placeholder {
  color: rgba(242, 238, 231, 0.5);
  font-style: italic;
  font-family: 'Cormorant', serif;
}
.newsletter button {
  background: transparent;
  border: none;
  color: var(--bone);
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 238, 231, 0.6);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a {
  color: var(--bone);
  text-decoration: none;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 0.98rem;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover { color: #E8B584; }

.footer-base {
  border-top: 1px solid rgba(242, 238, 231, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(242, 238, 231, 0.5);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------- RESPONSIVE ------------- */
@media (max-width: 1100px) {
  nav { gap: 1rem; padding: 0 1.5rem; }
  .search { max-width: 240px; }
  .subnav { gap: 1.8rem; padding: 0 1.5rem; }
  .subnav a { font-size: 0.88rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 60px; --subnav-h: 40px; }
  nav { padding: 0 1rem; gap: 0.6rem; grid-template-columns: auto minmax(0, 1fr) auto; }
  .logo { font-size: 1.15rem; letter-spacing: 0.3em; }
  .nav-left, .nav-right { gap: 0.3rem; }
  .nav-center { justify-content: center; }
  .search { display: none; }
  .search-mobile-btn { display: flex; }

  /* On mobile, hamburger is always visible (no scroll-aware behavior) */
  .hamburger-btn {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    width: 36px;
    padding: 0.4rem;
    margin-right: 0.2rem;
  }

  /* On mobile, subnav becomes a horizontally scrolling pill row */
  .subnav {
    height: var(--subnav-h);
    gap: 1.3rem;
    padding: 0 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .subnav::-webkit-scrollbar { display: none; }
  .subnav a { font-size: 0.88rem; flex-shrink: 0; }
  .nav-wrap.scrolled .subnav { height: 0; }

  .hero {
    min-height: 100vh;
  }
  .hero-inner {
    padding: calc(var(--nav-h) + var(--subnav-h) + 2rem) 1.5rem 3rem;
    gap: 2rem;
  }
  .hero-content {
    gap: 1.8rem;
    align-items: start;
  }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.3em; }
  .hero-eyebrow::before { width: 24px; }
  .hero-tag { font-size: 0.95rem; }

  .trust { padding: 1.2rem 1.3rem; }
  .trust-row { gap: 1rem; justify-content: flex-start; }
  .trust-item { font-size: 0.85rem; }

  .street-test, .bestsellers, .story, .reviews, .discovery { padding: 4rem 1.3rem; }
  .shop-cats { padding: 3rem 1.3rem; }
  .shop-cats-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .cat-circle-label { font-size: 0.92rem; }
  .test-container, .story-grid, .discovery-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .test-vs { width: 50px; height: 50px; font-size: 1rem; }

  .tabs { gap: 1.5rem; }
  .tab-btn { font-size: 1rem; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }

  .reviews-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .divider { padding: 0 1.3rem; }
  footer { padding: 4rem 1.3rem 2rem; }
}

@media (max-width: 760px) {
  :root { --nav-h: 56px; --subnav-h: 38px; }

  .logo { font-size: 1rem; letter-spacing: 0.25em; }

  /* MOBILE HERO — full-bleed photo, no seam; compact content block at bottom */
  .hero {
    min-height: 78vh;
    color: var(--bone);
  }
  .hero::before {
    inset: 0;
    height: auto;
    background-image: url('focke2-mobile.png');
    background-position: center 30%;
    background-size: cover;
  }
  .hero::after {
    inset: 0;
    height: auto;
    z-index: 0;
    background: linear-gradient(to top, rgba(26, 22, 18, 0.86) 0%, rgba(26, 22, 18, 0.35) 22%, transparent 42%);
    background-blend-mode: normal;
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    padding: calc(var(--nav-h) + var(--subnav-h) + 1rem) 1.2rem 1.6rem;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-eyebrow {
    display: none;
  }
  .hero-content {
    margin-top: 0;
    padding: 0;
    background: transparent;
    gap: 0.9rem;
    align-items: stretch;
  }
  .hero-headline {
    font-size: clamp(1.9rem, 8.4vw, 2.8rem);
    line-height: 1.02;
    color: var(--bone);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 0;
  }
  .hero-headline .line-italic { color: #E8B584; }
  .hero-aside { gap: 0.75rem; }
  .hero .btn-primary,
  .hero .btn-secondary {
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-tag {
    display: none;
  }
  .hero .price-card {
    background: rgba(26, 22, 18, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(242, 238, 231, 0.18);
    color: var(--bone);
    padding: 0.7rem 1rem;
    max-width: 100%;
  }
  .hero .price-card::before,
  .hero .price-card::after {
    border-color: #E8B584;
  }
  .hero .price-card-label { color: rgba(242, 238, 231, 0.68); font-size: 0.58rem; letter-spacing: 0.25em; margin-bottom: 0.2rem; }
  .hero .price-comparison { gap: 0.6rem; }
  .hero .price-our { color: var(--bone); font-size: 1.35rem; }
  .hero .price-vs { color: rgba(242, 238, 231, 0.55); font-size: 0.55rem; }
  .hero .price-theirs { color: rgba(242, 238, 231, 0.5); font-size: 0.85rem; }
  .cta-stack { gap: 0.55rem; margin-top: 0.2rem; }
  .hero .btn-primary {
    background: var(--bone);
    color: var(--ink);
    padding: 0.8rem 1.4rem;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }
  .hero .btn-primary:hover { background: #E8B584; }
  .hero .btn-secondary {
    color: rgba(242, 238, 231, 0.8);
    font-size: 0.85rem;
  }
  .hero .btn-secondary:hover { color: #E8B584; }

  /* TRUST STRIP — auto-scrolling marquee on mobile */
  .trust { padding: 1rem 0; overflow: hidden; }
  .trust-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2.5rem;
    padding: 0 1rem;
    width: max-content;
    animation: trustMarquee 30s linear infinite;
  }
  .trust-item.dup { display: flex; }
  .trust-item { font-size: 0.85rem; gap: 0.55rem; flex-shrink: 0; }
  .trust-item svg { width: 17px; height: 17px; }

  /* sections */
  .street-test, .bestsellers, .story, .reviews, .discovery { padding: 3.5rem 1.3rem; }
  .shop-cats { padding: 2.5rem 1rem; }
  .shop-cats-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.6rem; }
  .cat-circle { gap: 0.6rem; }
  .cat-circle-label { font-size: 0.78rem; }
  .cat-circle-disc { max-width: 110px; }

  .section-eyebrow { font-size: 0.6rem; letter-spacing: 0.25em; }
  .test-headline, .bestsellers-title, .reviews-title, .discovery-content h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .test-body { font-size: 1rem; }
  .test-vs { width: 42px; height: 42px; font-size: 0.85rem; }
  .test-card-letter { font-size: 3.5rem; }
  .test-card { padding: 1.3rem; }

  /* bestsellers — 2x2 grid on mobile */
  .tabs { gap: 1rem; margin: 1.5rem 0 2rem; }
  .tab-btn { font-size: 0.9rem; padding: 0.6rem 0.3rem; }
  .tab-btn .count { font-size: 0.55rem; }
  .bestsellers-sub { font-size: 0.92rem; }

  .tab-panel.active { display: block; }
  .products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .product-name { font-size: 1rem; }
  .product-notes { font-size: 0.75rem; }

  /* reviews — horizontal scroll, centered with scroll-padding */
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 10vw 0.5rem;
    scroll-padding-left: 10vw;
    margin: 0 -1.3rem;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review {
    flex: 0 0 80%;
    scroll-snap-align: center;
    padding: 1.4rem;
    gap: 0.9rem;
    min-width: 0;
  }
  .review-quote { font-size: 0.95rem; }
  .reviews-stars-big { font-size: 1.1rem; }

  .reviews-head { margin-bottom: 2.5rem; }

  /* story */
  .story { padding: 4rem 1.3rem; }
  .story-grid { gap: 2rem; }
  .story-text { font-size: 1.3rem; }
  .story-meta { gap: 1.5rem; }
  .stat-num { font-size: 2.2rem !important; }

  /* discovery */
  .sample-vial { width: 38px; height: 140px; }
  .discovery-price .num { font-size: 2.3rem; }
  .discovery-price .desc { font-size: 0.85rem; }

  .divider { padding: 0 1rem; gap: 0.8rem; }
  .divider-text { font-size: 0.6rem; letter-spacing: 0.3em; }

  /* drawer */
  .drawer { padding: 1.5rem 1.5rem 1.5rem; width: 90vw; }
  .drawer-nav a { font-size: 1.4rem; padding: 0.7rem 0; }

  /* footer */
  footer { padding: 3rem 1.3rem 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2.5rem; }
  .footer-brand .logo { font-size: 1.5rem; }
  .footer-tagline { font-size: 0.95rem; }
  .footer-base { flex-direction: column; align-items: flex-start; gap: 0.5rem; font-size: 0.65rem; }
}

/* small phones — iPhone SE, most Androids in portrait */
@media (max-width: 400px) {
  :root { --nav-h: 54px; --subnav-h: 36px; }
  nav { padding: 0 0.7rem; gap: 0.4rem; }
  .nav-left, .nav-right { gap: 0.1rem; }
  .icon-btn { padding: 0.35rem; }
  .icon-btn svg { width: 20px; height: 20px; }
  .logo { font-size: 0.92rem; letter-spacing: 0.2em; }

  .subnav { gap: 1rem; padding: 0 0.8rem; }
  .subnav a { font-size: 0.82rem; }

  .hero {
    min-height: 74vh;
  }
  .hero-inner {
    min-height: 74vh;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1.4rem;
  }
  .hero-headline { font-size: clamp(1.7rem, 8vw, 2.4rem); }

  .price-card { padding: 0.65rem 0.9rem; }
  .price-comparison { gap: 0.55rem; }
  .price-our { font-size: 1.25rem; }
  .price-theirs { font-size: 0.78rem; }
  .price-card-label { font-size: 0.52rem; letter-spacing: 0.2em; }

  .hero .btn-primary { padding: 0.72rem 1.2rem; font-size: 0.62rem; letter-spacing: 0.14em; }
  .hero .btn-secondary { font-size: 0.8rem; }

  .street-test, .bestsellers, .story, .reviews, .discovery, .shop-cats { padding: 3rem 1rem; }
  .trust { padding: 0.9rem 0; }
  .trust-row { gap: 2rem; }
  .trust-item { font-size: 0.78rem; }

  .test-headline, .bestsellers-title, .reviews-title, .discovery-content h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .test-body { font-size: 0.92rem; }
  .test-card { padding: 1rem; }
  .test-card-letter { font-size: 2.8rem; }
  .test-card-tag { font-size: 0.6rem; letter-spacing: 0.2em; }
  .test-vs { width: 36px; height: 36px; font-size: 0.75rem; }

  .tabs { gap: 0.6rem; }
  .tab-btn { font-size: 0.82rem; padding: 0.5rem 0.2rem; }

  .products { gap: 0.8rem; }
  .reviews-grid { padding: 0 9vw 0.5rem; scroll-padding-left: 9vw; margin: 0 -1rem; }
  .review { flex-basis: 82%; }

  .product-name { font-size: 1.1rem; }
  .product-notes { font-size: 0.78rem; }
  .product-inspired { font-size: 0.62rem; letter-spacing: 0.2em; }

  .review { padding: 1.2rem; }
  .review-quote { font-size: 0.9rem; }

  .shop-cats-row { gap: 0.5rem; }
  .cat-circle-disc { max-width: 95px; }
  .cat-circle-label { font-size: 0.72rem; }

  .story-text { font-size: 1.15rem; }
  .stat-num { font-size: 1.9rem !important; }
  .stat-label { font-size: 0.62rem !important; }

  .sample-vial { width: 32px; height: 120px; gap: 0.5rem; }
  .discovery-visual { gap: 0.4rem; }

  .drawer { padding: 1.2rem 1.2rem; width: 92vw; }
  .drawer-nav a { font-size: 1.2rem; padding: 0.6rem 0; }
  .drawer-head { margin-bottom: 2rem; }

  .footer-brand .logo { font-size: 1.3rem; letter-spacing: 0.25em; }
  .newsletter input { font-size: 0.85rem; }
}

/* ultra-narrow — Galaxy Fold cover screen, ~344px */
@media (max-width: 360px) {
  nav { padding: 0 0.5rem; gap: 0.3rem; }
  .icon-btn { padding: 0.3rem; }
  .icon-btn svg { width: 18px; height: 18px; }
  .logo { font-size: 0.85rem; letter-spacing: 0.18em; }
  .cart-count { width: 13px; height: 13px; font-size: 0.5rem; }

  .subnav { gap: 0.85rem; padding: 0 0.6rem; }
  .subnav a { font-size: 0.75rem; }
  .subnav a em { font-size: 0.55rem; letter-spacing: 0.15em; margin-left: 0.25em; }

  .hero {
    min-height: 70vh;
  }
  .hero-inner {
    min-height: 70vh;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    padding-bottom: 1.2rem;
  }
  .hero-content { gap: 0.7rem; }
  .hero-headline { font-size: clamp(1.55rem, 7.5vw, 2.1rem); }

  .price-card { padding: 0.6rem 0.85rem; }
  .price-our { font-size: 1.15rem; }
  .price-theirs { font-size: 0.78rem; }
  .price-vs { font-size: 0.55rem; }
  .price-comparison { gap: 0.5rem; }

  .hero .btn-primary { padding: 0.78rem 1.1rem; font-size: 0.6rem; letter-spacing: 0.12em; }
  .hero .btn-secondary { font-size: 0.78rem; }

  .street-test, .bestsellers, .story, .reviews, .discovery, .shop-cats { padding: 2.5rem 0.85rem; }
  .trust { padding: 0.8rem 0; }
  .trust-row { gap: 1.6rem; }
  .trust-item { font-size: 0.72rem; }

  .test-headline, .bestsellers-title, .reviews-title, .discovery-content h2 { font-size: clamp(1.5rem, 8vw, 1.9rem); }
  .test-body { font-size: 0.85rem; }
  .test-cards { gap: 0.8rem; }
  .test-card { padding: 0.85rem; }
  .test-card-letter { font-size: 2.3rem; }
  .test-vs { width: 32px; height: 32px; font-size: 0.7rem; }

  .tabs { gap: 0.4rem; padding: 0; flex-wrap: wrap; justify-content: center; }
  .tab-btn { font-size: 0.75rem; padding: 0.45rem 0.2rem; }
  .tab-btn .count { display: none; }

  .products { gap: 0.8rem; }
  .reviews-grid { padding: 0 0.85rem 0.5rem; margin: 0 -0.85rem; gap: 0.8rem; }
  .product { flex-basis: calc(70% - 0.5rem); }
  .review { flex-basis: 88%; }

  .product-visual { aspect-ratio: 4/5; }
  .product-name { font-size: 1rem; }
  .product-notes { font-size: 0.72rem; }
  .product-inspired { font-size: 0.58rem; letter-spacing: 0.18em; }
  .product-price { font-size: 0.95rem; }
  .product-price-old { font-size: 0.78rem; }

  .review { padding: 1rem; gap: 0.8rem; }
  .review-quote { font-size: 0.85rem; line-height: 1.5; }
  .review-name { font-size: 0.88rem; }
  .review-meta { font-size: 0.62rem; letter-spacing: 0.13em; }
  .reviews-stars-big { font-size: 0.95rem; }
  .reviews-meta { font-size: 0.85rem; }

  .shop-cats-row { gap: 0.4rem; }
  .cat-circle { gap: 0.5rem; }
  .cat-circle-disc { max-width: 80px; }
  .cat-circle-label { font-size: 0.66rem; }

  .story { padding: 3rem 0.85rem; }
  .story-text { font-size: 1.05rem; }
  .story-text p + p { margin-top: 1rem; }
  .story-meta { gap: 1rem; }
  .stat-num { font-size: 1.6rem !important; }
  .stat-label { font-size: 0.55rem !important; letter-spacing: 0.15em !important; }

  .sample-vial { width: 26px; height: 100px; }
  .sample-vial::before { width: 14px; height: 9px; }
  .discovery-visual { gap: 0.3rem; }
  .discovery-price .num { font-size: 1.9rem; }
  .discovery-price .desc { font-size: 0.78rem; }

  .divider { padding: 0 0.7rem; gap: 0.5rem; }
  .divider-text { font-size: 0.55rem; letter-spacing: 0.2em; }

  .drawer { padding: 1rem 1rem; }
  .drawer-nav a { font-size: 1.1rem; padding: 0.55rem 0; }
  .drawer-head { margin-bottom: 1.5rem; }
  .drawer-foot a { font-size: 0.88rem; }

  footer { padding: 2.5rem 0.85rem 1.2rem; }
  .footer-brand .logo { font-size: 1.15rem; letter-spacing: 0.2em; }
  .footer-tagline { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .footer-col h4 { font-size: 0.62rem; letter-spacing: 0.25em; margin-bottom: 1rem; }
  .footer-col a { font-size: 0.9rem; }
  .footer-col ul { gap: 0.6rem; }
  .newsletter input { font-size: 0.8rem; }
  .newsletter button { font-size: 0.6rem; }
  .footer-base { font-size: 0.6rem; }
}

/* Viewports wider than tablet layout — tame headline vw cap; enlarge supporting serif */
@media (min-width: 901px) {
  .hero-inner {
    padding-left: clamp(2rem, 5vw, 4.5rem);
    padding-right: clamp(2rem, 4vw, 4rem);
  }
  .hero-content {
    gap: 2.5rem;
  }
  .hero-headline {
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.024em;
    max-width: 11em;
    text-wrap: balance;
  }
  .hero-headline .line-italic {
    font-weight: 400;
  }
  .hero-tag {
    font-size: 1.42rem;
    line-height: 1.67;
    max-width: 40ch;
  }
  .hero .btn-secondary {
    font-size: 1.1rem;
  }
  .hero .btn-primary {
    font-size: 0.8rem;
    padding: 1.08rem 2.35rem;
  }
}
