/* ============================================================
   GUJJAR MILK SHOP — Luxury Brand Showcase
   Multi-page editorial system | Pure frontend
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #f4eee2; }
html { scroll-behavior: auto; }

:root {
  --white:        #ffffff;
  --cream:        #f4eee2;
  --cream-deep:   #ebe2cd;
  --cream-dark:   #d9cdb1;
  --paper:        #faf6ec;
  --navy:         #0c2747;
  --navy-deep:    #07182d;
  --navy-black:   #050f1d;
  --blue:         #2b6cb0;
  --blue-light:   #b8d4f0;
  --blue-pale:    #dceaf8;
  --ink:          #14202e;
  --ink-soft:     #2a3a4f;
  --muted:        #6b7a8c;
  --gold:         #c8a25a;
  --gold-soft:    #e0c890;

  --sans: 'Inter', sans-serif;
  --serif: 'Cormorant Garamond', serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.7, 0, 0.3, 1);
  --ease-luxe:   cubic-bezier(0.83, 0, 0.17, 1);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
  background: var(--cream);
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; color: inherit; cursor: none; }
input, textarea, select { font: inherit; outline: none; border: none; background: none; color: inherit; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 0.95; letter-spacing: -0.025em; }
em { font-style: italic; font-weight: 400; }

.serif-xl  { font-family: var(--serif); font-size: clamp(48px, 7.5vw, 130px); font-weight: 500; line-height: 0.96; letter-spacing: -0.03em; }
.serif-lg  { font-family: var(--serif); font-size: clamp(40px, 5vw, 80px); font-weight: 500; line-height: 1.0; letter-spacing: -0.02em; }
.serif-md  { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 48px); font-weight: 500; line-height: 1.1; }
.serif-xl em, .serif-lg em, .serif-md em { font-style: italic; color: var(--blue); font-weight: 400; }

.kicker {
  display: inline-block; font-family: var(--sans);
  font-size: 11px; font-weight: 600; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 28px;
}
.kicker.light { color: var(--blue-light); }

.lede {
  font-family: var(--serif); font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.45; color: var(--ink); font-weight: 400; margin-bottom: 24px;
}
.lede.italic { font-style: italic; color: var(--blue); }
.light { color: var(--cream); }
.light em { color: var(--blue-light); }

p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; }
p.bright { color: rgba(244,238,226,0.78); }
strong { color: var(--ink); font-weight: 600; }

/* ============ GRAIN ============ */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ CURSOR ============ */
.cursor {
  position: fixed; top: 0; left: 0; width: 32px; height: 32px;
  border: 1.5px solid #fff; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              background .35s var(--ease-out);
  mix-blend-mode: difference;
}
.cursor span {
  position: absolute; top: 50%; left: 50%; width: 4px; height: 4px;
  background: #fff; border-radius: 50%; transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor.is-hover { width: 70px; height: 70px; background: rgba(255,255,255,0.06); }
.cursor.is-hover span { opacity: 0; }
.cursor.is-text { width: 4px; height: 30px; border-radius: 0; border: none; background: #fff; }
.cursor.is-text span { display: none; }
@media (max-width: 900px) { .cursor { display: none; } body, button, a { cursor: auto; } }

/* ============ PAGE TRANSITION ============ */
.page-trans {
  position: fixed; inset: 0; z-index: 9990; background: var(--cream);
  transform: translateY(-100%); pointer-events: none;
}
.page-trans.entering { transform: translateY(0); transition: transform .8s var(--ease-luxe); }
.page-trans.leaving { transform: translateY(100%); transition: transform .8s var(--ease-luxe); }
.page-trans .ptm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: 80px; color: var(--navy); font-style: italic;
  opacity: 0; transition: opacity .4s;
}
.page-trans.entering .ptm { opacity: 1; transition-delay: .3s; }

/* ============ SCROLL PROGRESS ============ */
.scroll-prog {
  position: fixed; top: 50%; right: 28px; transform: translateY(-50%);
  width: 1px; height: 200px; background: rgba(0,0,0,0.1); z-index: 90;
}
.scroll-prog-fill {
  width: 100%; background: var(--navy); height: 0;
  transition: height .1s linear;
}
[data-theme="dark"] .scroll-prog { background: rgba(255,255,255,0.15); }
[data-theme="dark"] .scroll-prog-fill { background: var(--cream); }
@media (max-width: 700px) { .scroll-prog { display: none; } }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.loader-content { width: min(420px, 80vw); text-align: center; }
.loader-logo img { width: 90px; margin: 0 auto 50px; filter: brightness(0) invert(1) opacity(0.95); }
.loader-bar { height: 1px; background: rgba(255,255,255,0.15); width: 100%; overflow: hidden; }
.loader-fill { height: 100%; width: 0%; background: var(--cream); transition: width .1s linear; }
.loader-meta {
  display: flex; justify-content: space-between; margin-top: 14px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; transition: padding .5s var(--ease-out);
  mix-blend-mode: difference;
}
.nav.scrolled { padding: 14px 40px; }
.nav-mark { display: flex; align-items: center; gap: 12px; }
.nav-mark img { width: 56px; height: 56px; object-fit: contain; filter: brightness(0) invert(1); }
.nav-mark-text { font-family: var(--serif); font-size: 22px; color: #fff; font-weight: 600; letter-spacing: -0.01em; }
.nav-menu { display: flex; gap: 38px; }
.nav-menu a {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
  display: inline-flex; gap: 8px; align-items: baseline;
  position: relative; transition: opacity .3s;
}
.nav-menu a span { font-size: 9px; opacity: 0.5; }
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: #fff; transition: width .5s var(--ease-out);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,0.3); padding: 14px 24px; border-radius: 100px;
  transition: all .4s var(--ease-out); display: inline-flex; align-items: center; gap: 10px;
}
.nav-cta:hover { background: #fff; color: var(--navy); border-color: #fff; }
@media (max-width: 1024px) {
  .nav { padding: 16px 20px; mix-blend-mode: normal; background: rgba(7,24,45,0.78); backdrop-filter: blur(18px); }
  .nav.scrolled { padding: 12px 20px; }
  .nav-menu {
    position: fixed; left: 12px; right: 12px; top: 8px; bottom: auto; z-index: 120;
    display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0;
    padding: 8px; border-radius: 999px;
    background: rgba(7,24,45,0.92); border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 50px rgba(0,0,0,0.28); backdrop-filter: blur(18px);
  }
  .nav-menu a {
    justify-content: center; text-align: center; padding: 10px 4px;
    font-size: 9px; letter-spacing: 0.08em; border-radius: 999px;
    min-width: 0; overflow: hidden; text-overflow: ellipsis;
  }
  .nav-menu a span { display: none; }
  .nav-menu a::after { display: none; }
  .nav-menu a.active { background: rgba(255,255,255,0.12); color: var(--blue-light); }
  .nav-cta { padding: 12px 16px; font-size: 10px; letter-spacing: 0.14em; }
}
@media (max-width: 520px) {
  .nav-menu { grid-template-columns: repeat(2, 1fr); border-radius: 24px; }
  .nav-menu a { padding: 8px 4px; font-size: 8px; letter-spacing: 0.03em; }
  .nav-mark, .nav-cta { display: none; }
  .nav { justify-content: center; min-height: 116px; }
  .nav-brand-text, .nav-mark-text { display: none; }
  .nav-mark img { width: 48px; height: 48px; }
}

/* ============ SECTION SYSTEM ============ */
section { position: relative; padding: 0; }
[data-bg="cream"]    { background: var(--cream); color: var(--ink); }
[data-bg="paper"]    { background: var(--paper); color: var(--ink); }
[data-bg="white"]    { background: var(--white); color: var(--ink); }
[data-bg="navy"]     { background: var(--navy-deep); color: var(--cream); }
[data-bg="navy-bk"]  { background: var(--navy-black); color: var(--cream); }

/* Section number */
.sec-num {
  position: absolute; top: 60px; left: 60px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; opacity: 0.5; z-index: 5;
}
[data-bg="navy"] .sec-num, [data-bg="navy-bk"] .sec-num { color: var(--cream); }

/* ============ HERO ============ */
.hero {
  position: relative; height: 100vh; min-height: 720px; overflow: hidden; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.hero-img { position: absolute; inset: -5%; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.1);
  animation: heroBreath 14s ease-in-out infinite alternate;
}
@keyframes heroBreath { to { transform: scale(1.18); } }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,45,0.45) 0%, rgba(7,24,45,0.25) 40%, rgba(7,24,45,0.85) 100%);
}
.hero-meta {
  position: absolute; top: 130px; display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); z-index: 3;
}
.hero-meta-tl { left: 60px; }
.hero-meta-tr { right: 60px; }
.dot { width: 4px; height: 4px; background: var(--blue-light); border-radius: 50%; display: inline-block; }

.hero-center { position: relative; z-index: 3; text-align: center; max-width: 1300px; padding: 0 32px; }
.hero-eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 50px;
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(72px, 14vw, 240px); line-height: 0.92;
  letter-spacing: -0.04em; color: #fff;
}
.hero-title .word { display: block; overflow: hidden; }
.hero-title .word > span {
  display: inline-block; transform: translateY(110%);
  animation: wordRise 1.4s var(--ease-out) forwards;
}
.hero-title .word:nth-child(2) > span { animation-delay: .15s; }
.hero-title .word:nth-child(3) > span { animation-delay: .3s; }
.hero-title .italic > span { font-style: italic; color: var(--blue-light); }
@keyframes wordRise { to { transform: translateY(0); } }

.hero-foot {
  position: absolute; bottom: 40px; left: 60px; right: 60px; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.hero-foot-l, .hero-foot-r { display: flex; align-items: center; gap: 14px; }
.ln { width: 60px; height: 1px; background: rgba(255,255,255,0.4); }

/* Page hero (for inner pages — shorter) */
.page-hero {
  position: relative; min-height: 70vh; display: flex; align-items: flex-end;
  overflow: hidden; color: #fff; padding: 180px 60px 80px;
}
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,45,0.5), rgba(7,24,45,0.85));
}
.page-hero-content { position: relative; z-index: 3; max-width: 1400px; width: 100%; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(64px, 11vw, 180px);
  font-weight: 500; line-height: 0.95; letter-spacing: -0.03em; color: #fff;
}
.page-hero h1 em { font-style: italic; color: var(--blue-light); }
.page-hero .crumb {
  display: flex; gap: 20px; align-items: center; margin-bottom: 30px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

/* ===========================================================
   DAIRY-BRAND HOME — standard dairy website layout
   =========================================================== */

/* Shared section heading */
.ph-kicker {
  display: inline-block; font-family: var(--sans); font-size: 11px;
  font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.ph-kicker.light { color: var(--blue-light); }
.ph-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px;
}
.ph-title em { font-style: italic; color: var(--blue); font-weight: 500; }
.ph-title.light { color: #fff; }
.ph-title.light em { color: var(--blue-light); }
.ph-sub { font-size: 17px; color: var(--muted); max-width: 620px; margin: 0 auto; }
.ph-head { text-align: center; max-width: 900px; margin: 0 auto 70px; padding: 0 24px; }

/* ============ 1. HERO PRO — Split layout with brand seal centerpiece ============ */
.hero-pro {
  position: relative; min-height: 100vh; overflow: hidden;
  padding: 140px 60px 80px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #f4eee2 0%, #ebe2cd 50%, #f4eee2 100%);
}
.hero-pro-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(43,108,176,0.08) 0%, transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(200,162,90,0.06) 0%, transparent 55%);
}
.hero-pro-grid {
  position: relative; z-index: 2; max-width: 1500px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px;
  align-items: center;
}

.hero-pro-left { padding-right: 20px; }
.hero-pro-left .hero-dairy-badge {
  background: rgba(255,255,255,0.6); border: 1px solid rgba(12,39,71,0.12);
  color: var(--navy); margin-bottom: 36px; backdrop-filter: blur(8px);
}
.hero-pro-left .hero-dairy-badge i { color: var(--blue); }
.hero-pro-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(48px, 6.5vw, 100px); line-height: 1.0;
  letter-spacing: -0.025em; color: var(--ink); margin-bottom: 30px;
}
.hero-pro-title em { font-style: italic; color: var(--blue); font-weight: 500; }
.hero-pro-sub {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65;
  color: var(--muted); max-width: 540px; margin-bottom: 40px;
}
.hero-pro-sub strong { color: var(--navy); font-weight: 600; }
.hero-pro-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.btn-lg.ghost-dark { color: var(--navy); border: 1.5px solid rgba(12,39,71,0.3); }
.btn-lg.ghost-dark:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.hero-pro-meta {
  display: flex; gap: 50px; padding-top: 36px;
  border-top: 1px solid rgba(12,39,71,0.12);
  flex-wrap: wrap;
}
.hero-pro-meta > div { display: flex; flex-direction: column; }
.hero-pro-meta strong {
  font-family: var(--serif); font-size: 36px; font-weight: 600;
  color: var(--navy); line-height: 1;
}
.hero-pro-meta span {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-top: 6px; font-weight: 500;
}

/* Right side — seal + product card */
.hero-pro-right {
  position: relative; height: 100%; min-height: 580px;
  display: flex; align-items: center; justify-content: center;
}
.hero-pro-seal {
  position: absolute; top: -10px; right: -10px; z-index: 3;
  width: 240px; height: 240px;
}
.hero-pro-seal .brand-seal-hero { width: 100%; height: 100%; }
.hero-pro-seal .seal-ring svg text { fill: var(--navy); }
.hero-pro-seal .seal-inner {
  background: var(--cream); border: 4px solid #fff;
  box-shadow: 0 18px 40px rgba(12,39,71,0.18);
}

.hero-pro-card {
  position: relative; width: 90%; aspect-ratio: 4/5;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(12,39,71,0.35);
}

/* Milk carton centerpiece */
.hero-carton {
  position: relative; width: 75%; max-width: 460px; margin: 0 auto;
  filter: drop-shadow(0 50px 80px rgba(12,39,71,0.35));
  animation: cartonFloat 6s ease-in-out infinite alternate;
  transform-origin: bottom center;
}
.hero-carton img {
  width: 100%; height: auto; display: block;
}
@keyframes cartonFloat {
  0%   { transform: translateY(0) rotate(-1.5deg); }
  100% { transform: translateY(-12px) rotate(1.5deg); }
}

.hero-carton-tag {
  position: absolute; bottom: 30px; left: 30px; z-index: 5;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  padding: 14px 22px 14px 18px; border-radius: 100px;
  box-shadow: 0 18px 40px rgba(12,39,71,0.22);
  animation: tagPulse 3s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(12,39,71,0.22); }
  50%      { box-shadow: 0 18px 40px rgba(43,108,176,0.35); }
}
.hero-carton-tag i {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.hero-carton-tag strong { display: block; color: var(--navy); font-size: 14px; font-weight: 700; }
.hero-carton-tag span { display: block; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.hero-farm-photo {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,0.9);
  background: var(--cream-deep);
  box-shadow: 0 24px 60px rgba(12,39,71,0.22);
}
.hero-farm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-farm-photo-one {
  width: 210px;
  height: 250px;
  left: 5%;
  top: 8%;
  transform: rotate(-5deg);
}
.hero-farm-photo-two {
  width: 170px;
  height: 200px;
  right: 8%;
  bottom: 12%;
  transform: rotate(6deg);
}
@media (max-width: 1100px) {
  .hero-carton { width: 60%; max-width: 360px; }
  .hero-farm-photo-one { left: 12%; top: 0; width: 180px; height: 210px; }
  .hero-farm-photo-two { right: 10%; bottom: 5%; width: 150px; height: 170px; }
}
@media (max-width: 600px) {
  .hero-carton { width: 70%; max-width: 280px; }
  .hero-carton-tag { left: 20px; bottom: 20px; padding: 10px 18px 10px 14px; }
  .hero-carton-tag i { width: 32px; height: 32px; font-size: 13px; }
  .hero-farm-photo { border-width: 5px; }
  .hero-farm-photo-one { width: 120px; height: 145px; left: 0; top: 18px; }
  .hero-farm-photo-two { width: 105px; height: 125px; right: 0; bottom: 38px; }
}
.hpc-img { width: 100%; height: 100%; }
.hpc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); transition: transform 1.4s var(--ease-out);
}
.hero-pro-card:hover .hpc-img img { transform: scale(1.1); }
.hpc-tag {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  padding: 14px 22px 14px 18px; border-radius: 100px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.hpc-tag i {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.hpc-tag strong { display: block; color: var(--navy); font-size: 14px; font-weight: 700; }
.hpc-tag span { display: block; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }

.hero-pro-foot {
  position: absolute; bottom: 28px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center;
}
.hero-pro-foot .scroll-hint { color: var(--navy); }

@media (max-width: 1100px) {
  .hero-pro { padding: 130px 30px 60px; }
  .hero-pro-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-pro-left { padding-right: 0; }
  .hero-pro-meta { justify-content: center; gap: 36px; }
  .hero-pro-cta { justify-content: center; }
  .hero-pro-right { min-height: 480px; }
  .hero-pro-seal { width: 180px; height: 180px; top: -20px; right: 20px; }
  .hero-pro-card { width: 80%; max-width: 460px; }
}
@media (max-width: 600px) {
  .hero-pro { padding: 118px 20px 72px; overflow: hidden; }
  .hero-pro-grid { width: 100%; gap: 42px; }
  .hero-pro-left { min-width: 0; }
  .hero-pro-left .hero-dairy-badge {
    max-width: min(100%, 330px); white-space: normal; line-height: 1.35;
    padding: 11px 16px; justify-content: center;
    font-size: 10px; letter-spacing: 0.13em;
  }
  .hero-pro-title { font-size: clamp(38px, 11vw, 44px); line-height: 1.08; }
  .hero-pro-sub {
    max-width: min(100%, 310px); margin-left: auto; margin-right: auto;
    overflow-wrap: anywhere;
  }
  .hero-pro-cta .btn-lg { width: min(100%, 280px); justify-content: center; }
  .hero-pro-meta {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%; gap: 22px 12px;
  }
  .hero-pro-meta > div { align-items: center; }
  .hero-pro-meta > div:last-child { grid-column: 1 / -1; }
  .hero-pro-seal { width: 130px; height: 130px; right: -10px; top: -30px; }
  .hero-pro-meta { gap: 20px; }
  .hero-pro-meta strong { font-size: 26px; }
}

/* ============ 1. HERO DAIRY — clean, bold, dairy-forward ============ */
.hero-dairy {
  position: relative; height: 100vh; min-height: 720px; overflow: hidden;
  display: flex; align-items: center; color: #fff;
}
.hero-dairy-img { position: absolute; inset: -5%; z-index: 0; }
.hero-dairy-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: heroBreath 18s ease-in-out infinite alternate;
}
.hero-dairy-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,24,45,0.75) 0%, rgba(7,24,45,0.55) 50%, rgba(7,24,45,0.3) 100%),
    linear-gradient(180deg, rgba(7,24,45,0.4) 0%, rgba(7,24,45,0.8) 100%);
}
.hero-dairy-content {
  position: relative; z-index: 3; max-width: 760px;
  padding: 0 60px; margin-left: 8%;
}
.hero-dairy-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px; margin-bottom: 30px;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #fff; font-weight: 600;
}
.hero-dairy-badge i { color: var(--blue-light); font-size: 14px; }
.hero-dairy-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(54px, 7.5vw, 110px); line-height: 1.02;
  letter-spacing: -0.025em; color: #fff; margin-bottom: 30px;
}
.hero-dairy-title em { font-style: italic; color: var(--blue-light); font-weight: 500; }
.hero-dairy-sub {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6;
  color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 40px;
}
.hero-dairy-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dairy-foot {
  position: absolute; bottom: 30px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center;
}
.scroll-hint {
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.75); font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-hint i { animation: bounceDown 1.8s ease-in-out infinite; }
@keyframes bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (max-width: 700px) {
  .hero-dairy-content { padding: 0 24px; margin-left: 0; }
}

/* ============ 2. TRUST STRIP ============ */
.trust-strip {
  background: var(--cream); padding: 50px 40px;
  border-bottom: 1px solid rgba(12,39,71,0.08);
}
.trust-strip-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px;
  align-items: center;
}
.ts-item {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 0;
}
.ts-item i {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(43,108,176,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 20px; flex-shrink: 0;
}
.ts-item strong {
  display: block; font-family: var(--serif); font-size: 19px;
  font-weight: 600; color: var(--ink); line-height: 1.1;
}
.ts-item span {
  display: block; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-top: 4px; font-weight: 500;
}
@media (max-width: 1000px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-strip { padding: 40px 24px; }
}

/* ============ 3. PRODUCTS HOME ============ */
.products-home { padding: 140px 40px 160px; }
.ph-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.ph-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all .5s var(--ease-out);
  box-shadow: 0 6px 30px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
  cursor: none;
}
.ph-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -20px rgba(12,39,71,0.18);
  border-color: var(--blue);
}
.ph-card-img { height: 280px; overflow: hidden; position: relative; background: var(--cream); }
.ph-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.ph-card:hover .ph-card-img img { transform: scale(1.08); }
.ph-card-body { padding: 26px 26px 24px; flex: 1; display: flex; flex-direction: column; }
.ph-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 700; color: var(--blue);
  background: rgba(43,108,176,0.1); padding: 6px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.ph-card h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em;
}
.ph-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex: 1; line-height: 1.5; }
.ph-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.07);
}
.ph-price {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: var(--navy);
}
.ph-price small { font-size: 13px; color: var(--muted); font-weight: 400; }
.ph-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; font-size: 16px;
}
.ph-card:hover .ph-arrow { background: var(--blue); transform: translateX(4px); }
.ph-bottom { text-align: center; margin-top: 60px; }
@media (max-width: 1100px) { .ph-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .ph-grid { grid-template-columns: 1fr; }
  .products-home { padding: 100px 24px 120px; }
}

/* ============ 4. ABOUT HOME ============ */
.about-home { padding: 140px 40px 160px; }
.ah-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 90px;
  align-items: center;
}
.ah-image { position: relative; }
.ah-image-wrap {
  aspect-ratio: 4/5; overflow: hidden;
  background: var(--cream); border-radius: 12px;
  box-shadow: 0 40px 80px -30px rgba(12,39,71,0.25);
}
.ah-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  padding: 0; background: #fff;
}
.ah-image-badge {
  position: absolute; bottom: 30px; right: -30px;
  background: var(--navy); color: var(--cream);
  width: 150px; height: 150px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border: 8px solid #fff;
}
.ah-image-badge strong {
  font-family: var(--serif); font-size: 42px; font-weight: 600;
  color: #fff; line-height: 1;
}
.ah-image-badge span {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue-light); margin-top: 6px;
  font-weight: 600;
}
.ah-text h2 { text-align: left; margin: 18px 0 28px; }
.ah-text .ph-kicker { display: block; }
.ah-lede {
  font-family: var(--serif); font-size: 22px; line-height: 1.5;
  color: var(--ink); margin-bottom: 20px; font-weight: 400;
}
.ah-lede strong { color: var(--blue); font-weight: 600; }
.ah-text p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 36px; }
.ah-text p strong { color: var(--ink); font-weight: 600; }
.ah-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  margin-bottom: 40px; padding: 30px 0; border-block: 1px solid rgba(0,0,0,0.08);
}
.ah-stats > div { text-align: left; }
.ah-stats strong {
  display: block; font-family: var(--serif); font-size: 34px; font-weight: 600;
  color: var(--blue); line-height: 1;
}
.ah-stats span {
  display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-top: 6px;
}
@media (max-width: 900px) {
  .ah-grid { grid-template-columns: 1fr; gap: 50px; }
  .ah-image-badge { right: 10px; bottom: -20px; width: 120px; height: 120px; }
  .about-home { padding: 100px 24px 120px; }
}

/* ============ 5. QUALITY STORY ============ */
.quality-story { padding: 150px 40px 170px; overflow: hidden; }
.quality-story-grid {
  max-width: 1350px; margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 90px;
  align-items: center;
}
.quality-copy .ph-title { text-align: left; margin: 18px 0 28px; }
.quality-copy .ph-kicker { display: block; }
.quality-copy p { max-width: 560px; }
.quality-visuals {
  position: relative; min-height: 620px;
}
.quality-photo {
  position: absolute; overflow: hidden; background: var(--cream-deep);
  box-shadow: 0 38px 80px -34px rgba(12,39,71,0.35);
}
.quality-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.quality-photo:hover img { transform: scale(1.06); }
.quality-photo-main {
  inset: 0 90px 80px 0;
  border-radius: 8px;
}
.quality-photo-side {
  width: 44%; height: 46%;
  right: 0; bottom: 0;
  border: 10px solid var(--cream);
  border-radius: 8px;
}
.quality-seal {
  position: absolute; left: -28px; bottom: 52px;
  width: 170px; height: 170px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 22px; border: 8px solid var(--cream);
  box-shadow: 0 24px 50px rgba(12,39,71,0.28);
}
.quality-seal strong {
  font-family: var(--serif); font-size: 48px; line-height: 1;
  color: #fff; font-weight: 600;
}
.quality-seal span {
  margin-top: 8px; font-size: 10px; line-height: 1.35;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-light);
}
@media (max-width: 950px) {
  .quality-story { padding: 110px 24px 130px; }
  .quality-story-grid { grid-template-columns: 1fr; gap: 50px; }
  .quality-visuals { min-height: 520px; }
  .quality-photo-main { right: 44px; bottom: 90px; }
  .quality-seal { left: 8px; bottom: 48px; width: 135px; height: 135px; }
  .quality-seal strong { font-size: 36px; }
}

/* ============ 5. HERD CLEAN ============ */
.herd-clean { padding: 140px 40px 160px; }
.hc-row {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hc-cell {
  position: relative; overflow: hidden; border-radius: 12px;
  background: var(--cream); aspect-ratio: 4/5;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.hc-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.hc-cell:hover img { transform: scale(1.07); }
.hc-cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px;
  background: linear-gradient(0deg, rgba(7,24,45,0.9) 0%, rgba(7,24,45,0.5) 60%, transparent);
  color: #fff;
}
.hc-cell figcaption strong {
  display: block; font-family: var(--serif); font-size: 26px;
  font-weight: 600; color: #fff;
}
.hc-cell figcaption span {
  display: block; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blue-light); margin-top: 6px; font-weight: 600;
}
@media (max-width: 900px) {
  .hc-row { grid-template-columns: 1fr; }
  .herd-clean { padding: 100px 24px 120px; }
}

/* ============ 5. HERD BANNER — buffalo as BACKGROUND ONLY ============ */
.herd-banner {
  position: relative; min-height: 70vh; padding: 140px 40px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.herd-banner-img { position: absolute; inset: 0; z-index: 0; }
.herd-banner-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroBreath 18s ease-in-out infinite alternate;
}
.herd-banner-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,24,45,0.55) 0%, rgba(7,24,45,0.7) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(7,24,45,0.5) 100%);
}
.herd-banner-content {
  position: relative; z-index: 2; max-width: 900px;
}
.herd-banner-content .ph-title { color: #fff; }
.herd-banner-content .ph-title em { color: var(--blue-light); }
@media (max-width: 700px) {
  .herd-banner { padding: 100px 24px; min-height: 60vh; }
}

/* ============ Product card image fitting fix ============ */
.ph-card-img img { object-position: center center; }

/* ============ 6. WHY US ============ */
.why-us { padding: 140px 40px 160px; }
.why-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.why-card {
  text-align: center; padding: 50px 30px 44px;
  background: #fff; border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px; transition: all .5s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-8px); border-color: var(--blue);
  box-shadow: 0 30px 60px -20px rgba(12,39,71,0.18);
}
.why-icon {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 26px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 32px;
  box-shadow: 0 14px 28px rgba(43,108,176,0.3);
}
.why-card h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  color: var(--ink); margin-bottom: 12px;
}
.why-card p { font-size: 14px; line-height: 1.6; color: var(--muted); }
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-us { padding: 100px 24px 120px; }
}

/* ============ 7. PROCESS HOME ============ */
.process-home {
  padding: 140px 40px 160px; position: relative;
}
.process-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.process-step {
  text-align: center; padding: 40px 26px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03); border-radius: 14px;
  transition: all .5s var(--ease-out); position: relative;
}
.process-step:hover {
  background: rgba(184,212,240,0.06); border-color: var(--blue-light);
  transform: translateY(-6px);
}
.ps-num {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 50px; font-weight: 500; color: var(--blue-light);
  line-height: 1; margin-bottom: 16px;
}
.process-step > i {
  font-size: 28px; color: var(--blue-light); margin-bottom: 18px; display: inline-block;
}
.process-step h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: #fff; margin-bottom: 12px;
}
.process-step p { font-size: 14px; line-height: 1.6; color: rgba(244,238,226,0.72); }
@media (max-width: 1000px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-home { padding: 100px 24px 120px; }
}

/* ============ 8. TESTIMONIAL HOME ============ */
.testimonial-home { padding: 160px 40px; }
.th-inner {
  max-width: 1000px; margin: 0 auto; text-align: center;
  padding: 70px 60px; background: #fff;
  border-radius: 16px; box-shadow: 0 30px 60px -20px rgba(12,39,71,0.12);
  border: 1px solid rgba(0,0,0,0.05);
}
.th-stars { color: var(--gold); font-size: 22px; margin-bottom: 28px; letter-spacing: 6px; }
.th-inner blockquote {
  font-family: var(--serif); font-weight: 400; font-style: normal;
  font-size: clamp(22px, 2.6vw, 36px); line-height: 1.45;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 50px;
}
.th-inner blockquote em { color: var(--blue); font-style: italic; }
.th-author {
  display: inline-flex; align-items: center; gap: 16px;
  padding-top: 28px; border-top: 1px solid rgba(0,0,0,0.08);
}
.th-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.th-author strong { display: block; color: var(--ink); font-weight: 600; font-size: 15px; }
.th-author span { display: block; font-size: 12px; color: var(--muted); letter-spacing: 0.12em; margin-top: 3px; }
@media (max-width: 700px) {
  .testimonial-home { padding: 100px 24px; }
  .th-inner { padding: 50px 30px; }
}

/* ============ 9. CTA CLEAN ============ */
.cta-clean { padding: 140px 40px; text-align: center; }
.cta-clean-inner { max-width: 900px; margin: 0 auto; }
.cta-clean-seal {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--cream); margin: 0 auto 36px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.cta-clean-seal img { width: 85%; height: 85%; object-fit: contain; }
.cta-clean h2 {
  font-family: var(--serif); font-size: clamp(48px, 7vw, 96px);
  font-weight: 600; color: #fff; margin-bottom: 24px; line-height: 1;
}
.cta-clean h2 em { font-style: italic; color: var(--blue-light); font-weight: 500; }
.cta-clean p {
  font-family: var(--serif); font-size: 22px; color: rgba(244,238,226,0.78);
  margin-bottom: 50px; font-style: italic;
}
.cta-clean-actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 60px;
}
.cta-clean-info {
  display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
  padding-top: 50px; border-top: 1px solid rgba(255,255,255,0.12);
}
.cta-clean-info span {
  font-family: var(--sans); font-size: 13px; color: rgba(244,238,226,0.75);
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-clean-info i { color: var(--blue-light); }
@media (max-width: 700px) {
  .cta-clean { padding: 100px 24px; }
  .cta-clean-info { flex-direction: column; gap: 16px; }
}

/* ============ HERD GALLERY — Meet Our Herd ============ */
.herd { padding: 160px 60px 180px; }
.herd-head { text-align: center; max-width: 900px; margin: 0 auto 100px; }
.herd-gallery {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: repeat(2, auto);
  gap: 24px;
}
.herd-cell {
  position: relative; overflow: hidden; background: var(--cream-deep);
  border-radius: 4px;
}
.herd-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  display: block;
}
.herd-cell:hover img { transform: scale(1.06); }
.herd-cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 28px; color: #fff;
  background: linear-gradient(0deg, rgba(7,24,45,0.85) 0%, rgba(7,24,45,0.35) 60%, transparent 100%);
  display: flex; flex-direction: column; gap: 4px;
}
.hc-tag {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--blue-light); font-weight: 600;
}
.hc-name {
  font-family: var(--serif); font-style: italic; font-size: 28px;
  color: #fff; font-weight: 500;
}
.herd-1 { grid-row: span 2; aspect-ratio: 4/5; }
.herd-2 { aspect-ratio: 16/10; }
.herd-3 { aspect-ratio: 16/10; }
.herd-4 { grid-column: 1 / -1; aspect-ratio: 21/9; }
@media (max-width: 900px) {
  .herd { padding: 120px 24px 130px; }
  .herd-head { margin-bottom: 60px; }
  .herd-gallery { grid-template-columns: 1fr; }
  .herd-1 { grid-row: auto; aspect-ratio: 4/5; }
  .herd-4 { grid-column: auto; aspect-ratio: 16/10; }
}

/* ============ STORY FLOW — condensed story section ============ */
.story-flow { padding: 180px 60px; text-align: center; }
.story-flow-inner { max-width: 1100px; margin: 0 auto; }
.story-flow-inner h2 { margin: 0 auto 60px; }
.story-flow-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  text-align: left; max-width: 980px; margin: 0 auto;
}
.story-flow-grid .lede { color: var(--ink); }
.story-flow-grid p { color: var(--muted); font-size: 16px; }
.story-flow-grid strong { color: var(--ink); font-weight: 600; }
@media (max-width: 800px) {
  .story-flow { padding: 120px 24px; }
  .story-flow-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============ NAV V2 — PROMINENT LOGO + BRAND TEXT ============ */
.nav-v2 { mix-blend-mode: normal; }
.nav-v2.scrolled {
  background: rgba(7, 24, 45, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.25);
}
.nav-mark-v2 {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 16px 6px 6px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.96);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.nav-mark-v2:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.nav-mark-v2 img {
  width: 56px; height: 56px; object-fit: contain;
  filter: none !important;
}
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nb-name {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--navy-deep); letter-spacing: -0.01em;
}
.nb-sub {
  font-family: var(--sans); font-size: 9px; letter-spacing: 0.32em;
  font-weight: 600; color: var(--blue); margin-top: 5px;
}
.nav-v2 .nav-menu a {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-v2.scrolled .nav-menu a { text-shadow: none; }
.nav-v2 .nav-cta { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.nav-v2 .nav-cta:hover { background: #fff; color: var(--navy-deep); }
@media (max-width: 700px) {
  .nav-mark-v2 { padding: 4px 12px 4px 4px; }
  .nav-mark-v2 img { width: 44px; height: 44px; }
  .nb-name { font-size: 17px; }
  .nb-sub { font-size: 8px; letter-spacing: 0.25em; }
}

/* ============ BRAND CLOSER (logo + name before footer) ============ */
.brand-closer {
  background: var(--cream);
  padding: 140px 40px 120px;
  text-align: center; position: relative;
  overflow: hidden;
}
.brand-closer::before, .brand-closer::after {
  content: ''; position: absolute; top: 50%; width: 25%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,39,71,0.25), transparent);
}
.brand-closer::before { left: 0; }
.brand-closer::after  { right: 0; transform: scaleX(-1); }
.brand-closer-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.bc-logo {
  width: 200px; height: 200px; margin: 0 auto 40px;
  display: block; object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(12,39,71,0.18));
  transition: transform .8s var(--ease-out);
}
.brand-closer:hover .bc-logo { transform: rotate(-3deg) scale(1.04); }
.bc-name {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(56px, 8vw, 110px); line-height: 1;
  letter-spacing: -0.03em; color: var(--navy-deep);
  margin-bottom: 30px;
}
.bc-name em { font-style: italic; color: var(--blue); font-weight: 500; }
.bc-sub {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 36px; font-weight: 600;
}
.bc-sub .dot { background: var(--blue); }
.bc-tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px); line-height: 1.5;
  color: var(--muted); max-width: 560px; margin: 0 auto;
}
@media (max-width: 700px) {
  .brand-closer { padding: 100px 24px 90px; }
  .bc-logo { width: 150px; height: 150px; }
}

/* ============ HERO V3 — PHOTO + FAMILY SEAL ============ */
.hero-v3 {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 30px 100px; color: #fff;
}
.hero-v3-photo {
  position: absolute; inset: -5%; z-index: 0;
}
.hero-v3-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroBreath 16s ease-in-out infinite alternate;
  filter: brightness(0.55) saturate(1.05);
}
.hero-v3-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(12,39,71,0.35) 0%, rgba(7,24,45,0.7) 70%, rgba(5,15,29,0.92) 100%),
    linear-gradient(180deg, rgba(7,24,45,0.5) 0%, transparent 30%, rgba(5,15,29,0.7) 100%);
}

/* Ambient drifting drops */
.amb-drops { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.amb-drops span {
  position: absolute; width: 10px; height: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(255,255,255,0.4) 70%, transparent);
  border-radius: 50%;
  animation: floatDrop 8s ease-in-out infinite;
  filter: blur(1px);
}
.amb-drops span:nth-child(1) { top: 15%; left: 12%; animation-delay: 0s; }
.amb-drops span:nth-child(2) { top: 28%; left: 85%; width: 6px; height: 6px; animation-delay: 1.5s; }
.amb-drops span:nth-child(3) { top: 60%; left: 8%; width: 14px; height: 14px; animation-delay: 3s; }
.amb-drops span:nth-child(4) { top: 75%; left: 78%; animation-delay: 2s; }
.amb-drops span:nth-child(5) { top: 40%; left: 92%; width: 7px; height: 7px; animation-delay: 4s; }
.amb-drops span:nth-child(6) { top: 80%; left: 30%; animation-delay: 1s; }
.amb-drops span:nth-child(7) { top: 22%; left: 45%; width: 5px; height: 5px; animation-delay: 2.5s; }
.amb-drops span:nth-child(8) { top: 55%; left: 60%; animation-delay: 3.5s; }
.amb-drops span:nth-child(9) { top: 35%; left: 25%; width: 8px; height: 8px; animation-delay: 0.8s; }
.amb-drops span:nth-child(10){ top: 88%; left: 50%; animation-delay: 5s; }
@keyframes floatDrop {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-40px) scale(1.15); opacity: 0.9; }
}

.hero-v3-stage {
  position: relative; z-index: 3; max-width: 1100px;
  display: flex; flex-direction: column; align-items: center; gap: 50px;
}

/* ============ BRAND SEAL ============ */
.brand-seal {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
}
.brand-seal-hero { width: 260px; height: 260px; }
.brand-seal-divider { width: 180px; height: 180px; color: var(--navy); }

.seal-ring {
  position: absolute; inset: 0;
  animation: sealSpin 28s linear infinite;
}
.seal-ring svg { width: 100%; height: 100%; }
@keyframes sealSpin { to { transform: rotate(360deg); } }

.seal-inner {
  position: absolute; inset: 22%;
  border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), inset 0 0 0 2px rgba(255,255,255,0.4);
}
.brand-seal-divider .seal-inner { inset: 18%; background: var(--cream); }
.seal-inner img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.hero-v3-words {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.word-beat {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 9vw, 130px); line-height: 0.95;
  letter-spacing: -0.03em; color: #fff;
}
.word-beat.italic { font-style: italic; color: var(--blue-light); }

.hero-v3-tag {
  font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.6vw, 24px);
  color: rgba(255,255,255,0.78); margin-top: 12px;
}
.hero-v3-tag .reveal-mask > span { display: inline-block; }

.hero-v3-cta { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }

@media (max-width: 700px) {
  .hero-v3 { padding: 120px 24px 80px; }
  .brand-seal-hero { width: 200px; height: 200px; }
  .hero-v3-stage { gap: 36px; }
}

/* ============ STEVE-JOBS BEATS ============ */
.beat {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 40px; position: relative;
}
.beat-inner { max-width: 1200px; text-align: center; }
.beat-num {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 32px; color: var(--blue); margin-bottom: 30px; opacity: 0.7;
}
.beat-num.light { color: var(--blue-light); }
.beat-line {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 8.5vw, 130px); line-height: 1.0;
  letter-spacing: -0.03em; margin-bottom: 36px;
}
.beat-line em { font-style: italic; color: var(--blue); font-weight: 400; }
.beat-line.light { color: #fff; }
.beat-line.light em { color: var(--blue-light); }
.beat-cap {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px); line-height: 1.5;
  color: var(--muted); max-width: 680px; margin: 0 auto;
}
.beat-cap.light { color: rgba(244,238,226,0.75); }
.beat-cap.light em { color: var(--blue-light); }

/* ============ THE RULE — full-screen quote ============ */
.the-rule {
  min-height: 100vh; padding: 140px 40px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.the-rule::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(43,108,176,0.12), transparent 60%);
}
.rule-seal {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--cream); margin-bottom: 60px; position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 6px rgba(184,212,240,0.15);
}
.rule-seal img { width: 88%; height: 88%; object-fit: contain; }
.rule-quote {
  position: relative; z-index: 2;
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(36px, 6vw, 92px); line-height: 1.15;
  letter-spacing: -0.02em; color: #fff; max-width: 1200px;
}
.rule-quote .reveal-mask { display: block; }
.rule-quote em { color: var(--blue-light); font-style: italic; }
.rule-att {
  margin-top: 70px; position: relative; z-index: 2;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); font-style: normal;
}

/* ============ SEAL DIVIDER ============ */
.seal-divider {
  padding: 80px 0; display: flex; justify-content: center;
}

/* ============ PROOF — Three generations ============ */
.proof { padding: 180px 60px; }
.proof-head { max-width: 1100px; margin: 0 auto 100px; text-align: center; }
.proof-head h2 { margin: 0 auto; }
.proof-line {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 30px; align-items: center; max-width: 1300px; margin: 0 auto;
}
.gen-step {
  text-align: center; padding: 40px 28px;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  transition: all .5s var(--ease-out);
}
.gen-step:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15); }
.gen-dot {
  display: inline-block; padding: 8px 18px; border-radius: 100px;
  background: var(--navy); color: var(--cream);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; margin-bottom: 24px;
}
.gen-step h3 { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--blue-deep, var(--navy)); margin-bottom: 14px; }
.gen-step p { font-size: 14px; color: var(--muted); }
.gen-arrow {
  font-family: var(--serif); font-size: 60px; color: var(--blue);
  opacity: 0.4; font-style: italic;
}
.proof-line-quote {
  text-align: center; margin-top: 100px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.5vw, 36px); line-height: 1.5;
  color: var(--blue); max-width: 900px; margin-left: auto; margin-right: auto;
  padding-top: 60px; border-top: 1px solid rgba(0,0,0,0.08);
}
.proof-line-quote em { color: var(--navy); font-style: italic; }
@media (max-width: 900px) {
  .proof-line { grid-template-columns: 1fr; }
  .gen-arrow { transform: rotate(90deg); }
  .proof { padding: 120px 24px; }
}

/* ============ CTA SEAL ============ */
.cta-seal {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--cream); margin: 0 auto 50px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 0 6px rgba(184,212,240,0.12);
}
.cta-seal img { width: 88%; height: 88%; object-fit: contain; }

/* ============ HERO MILK POUR ============ */
.hero-pour-stage {
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: flex-start;
  text-align: left; padding: 0 60px;
}
.hero-bg-dark {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(43,108,176,0.15), transparent 60%),
    linear-gradient(135deg, #050f1d 0%, #0c2747 100%);
}
.milk-pour {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 55%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; pointer-events: none;
}
.milk-pour svg {
  width: 100%; height: 92%; max-width: 700px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.mp-bottle { animation: bottleSway 5s ease-in-out infinite; transform-origin: 320px 200px; }
@keyframes bottleSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}
.mp-stream {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: streamFlow 5s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.4));
}
@keyframes streamFlow {
  0%   { stroke-dashoffset: 320; opacity: 0; }
  8%   { opacity: 1; }
  55%  { stroke-dashoffset: 0; opacity: 1; }
  80%  { stroke-dashoffset: 0; opacity: 1; }
  90%  { opacity: 0; }
  100% { stroke-dashoffset: -320; opacity: 0; }
}
.mp-glass { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }

.hero-text-l {
  position: relative; z-index: 3; max-width: 620px;
  padding-left: 20px;
}
.hero-title-l {
  font-size: clamp(60px, 9vw, 130px); text-align: left; margin-bottom: 36px;
}
.hero-sub-l {
  font-family: var(--serif); font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45; color: rgba(255,255,255,0.78); margin-bottom: 40px; max-width: 540px;
}
.hero-sub-l em { color: var(--blue-light); font-style: italic; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-pour-stage .hero-eyebrow { margin-bottom: 32px; text-align: left; }
@media (max-width: 1100px) {
  .hero-pour-stage { flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 140px 30px 40px; }
  .milk-pour { position: relative; width: 100%; height: 50vh; max-height: 500px; right: auto; }
  .hero-text-l { padding-left: 0; max-width: 720px; }
  .hero-title-l { text-align: center; }
  .hero-sub-l { margin: 0 auto 40px; text-align: center; }
  .hero-cta { justify-content: center; }
}

/* ============ REAL STORY SECTION ============ */
.real-story { padding: 180px 60px 200px; position: relative; }
.real-story-inner { max-width: 1300px; margin: 0 auto; }
.real-story h2 { margin-bottom: 80px; }
.real-story-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px;
  margin-bottom: 80px;
}
.rs-col .lede:last-child { margin-bottom: 0; }
.rs-col p strong { color: var(--ink); font-weight: 600; }
.rs-bold {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2vw, 32px); color: var(--blue) !important; line-height: 1.4;
  padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 20px;
}
.rs-quote {
  text-align: center; padding-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.rs-quote span {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--blue); font-weight: 600;
}
@media (max-width: 900px) {
  .real-story-grid { grid-template-columns: 1fr; gap: 50px; }
  .real-story { padding: 120px 24px 140px; }
}

/* ============ JOURNEY / WHATS NEXT ============ */
.journey { padding: 180px 60px 200px; }
.journey-inner { max-width: 1400px; margin: 0 auto; }
.journey-inner h2 { margin-bottom: 30px; }
.journey-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 80px;
}
.journey-stage {
  position: relative; padding: 40px 28px 36px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff; transition: all .5s var(--ease-out);
}
.journey-stage:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15); }
.journey-stage .js-year {
  display: block; font-family: var(--serif); font-size: 28px; font-style: italic;
  color: var(--blue); margin-bottom: 18px; font-weight: 500;
}
.journey-stage h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.journey-stage p { font-size: 14px; color: var(--muted); margin-bottom: 24px; min-height: 60px; }
.journey-stage .js-status {
  display: inline-block; font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.15); color: var(--muted);
}
.journey-stage.done { background: var(--cream); }
.journey-stage.done .js-status { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.journey-stage.now { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.journey-stage.now .js-year { color: var(--blue-light); }
.journey-stage.now h3 { color: #fff; }
.journey-stage.now p { color: rgba(244,238,226,0.75); }
.journey-stage.now .js-status { background: var(--blue-light); color: var(--navy); border-color: var(--blue-light); }
@media (max-width: 1100px) { .journey-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .journey-track { grid-template-columns: 1fr; } .journey { padding: 120px 24px; } }

/* ============ MANIFESTO ============ */
.manifesto { padding: 220px 40px; text-align: center; position: relative; }
.manifesto-tag {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 60px; opacity: 0.7;
}
.manifesto-text {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 6vw, 100px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink); max-width: 1400px; margin: 0 auto;
}
.manifesto-text em { color: var(--blue); font-style: italic; }
.reveal-mask { display: block; overflow: hidden; }
.reveal-mask > span {
  display: inline-block; transform: translateY(110%);
  transition: transform 1.2s var(--ease-out);
}
.reveal-mask.visible > span { transform: translateY(0); }
.manifesto-sig {
  margin-top: 80px; font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}

/* ============ HERITAGE ============ */
.heritage { padding: 180px 60px 200px; position: relative; }
.heritage-grid {
  max-width: 1400px; margin: 0 auto; display: grid;
  grid-template-columns: 0.9fr 1fr; gap: 120px; align-items: center;
}
.heritage-portrait { position: relative; }
.frame {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--cream-deep); box-shadow: 0 60px 120px -40px rgba(7,24,45,0.4);
}
.frame img { width: 100%; height: 100%; object-fit: contain; padding: 30px; background: #fff; transition: transform 1.6s var(--ease-out); }
.frame:hover img { transform: scale(1.05); }
.frame-cap {
  margin-top: 24px; display: flex; justify-content: space-between;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
}
.heritage-text .lede:last-of-type { margin-bottom: 36px; }
.sig-line {
  display: flex; align-items: center; gap: 20px; margin-top: 50px;
  padding-top: 36px; border-top: 1px solid rgba(0,0,0,0.1);
}
.sig-mark {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 28px; font-style: italic;
}
.sig-line strong { display: block; font-weight: 600; color: var(--ink); font-size: 14px; }
.sig-line span { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--navy-deep); color: var(--cream);
  padding: 28px 0; overflow: hidden; border-block: 1px solid rgba(255,255,255,0.08);
}
.marquee-row {
  display: flex; gap: 60px; align-items: center; white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-row span { font-family: var(--serif); font-size: 38px; font-style: italic; }
.marquee-row i { color: var(--blue-light); font-size: 14px; font-style: normal; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ PROMISE ============ */
.promise { padding: 180px 60px 200px; position: relative; }
.promise-intro { max-width: 1100px; margin: 0 auto 100px; }
.pillar-row { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar-row-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar-row-4 .pillar-card { padding: 40px 28px 36px; min-height: 340px; }
.pillar-row-4 .pillar-card h3 { font-size: 36px; }
.pillar-row-4 .pillar-num { font-size: 44px; }
.pillar-row-4 .pillar-card p { font-size: 14px; }
@media (max-width: 1100px) { .pillar-row-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .pillar-row-4 { grid-template-columns: 1fr; } }
.pillar-card {
  padding: 48px 40px 44px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  transition: all .6s var(--ease-out);
  display: flex; flex-direction: column; min-height: 380px;
}
.pillar-card:hover { background: rgba(184,212,240,0.06); border-color: var(--blue-light); transform: translateY(-8px); }
.pillar-num { font-family: var(--serif); font-size: 56px; font-style: italic; color: var(--blue-light); margin-bottom: 20px; line-height: 1; }
.pillar-card h3 { font-family: var(--serif); font-size: 42px; font-weight: 500; color: var(--cream); margin-bottom: 20px; }
.pillar-card p { color: rgba(244,238,226,0.7); font-size: 15px; flex: 1; }
.pillar-meta {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--blue-light);
}

/* ============ RANGE PREVIEW ============ */
.range-preview { padding: 180px 0; overflow: hidden; }
.range-preview-head {
  max-width: 1400px; padding: 0 60px; margin: 0 auto 100px;
  display: flex; justify-content: space-between; align-items: end; gap: 40px;
}
.range-preview-head h2 { max-width: 700px; }
.range-preview-track {
  display: flex; gap: 30px; padding: 0 60px 60px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.range-preview-track::-webkit-scrollbar { display: none; }
.range-item {
  flex: 0 0 min(520px, 80vw); scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.range-img { height: 540px; overflow: hidden; background: var(--cream-deep); position: relative; }
.range-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out); filter: contrast(1.05);
}
.range-item:hover .range-img img { transform: scale(1.06); }
.range-info { padding-top: 32px; }
.range-tag {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 14px;
}
.range-info h3 { font-family: var(--serif); font-size: 44px; font-weight: 500; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.02em; }
.range-info p { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--muted); font-style: italic; max-width: 460px; }

/* ============ TRUST ============ */
.trust { padding: 160px 60px; }
.trust-row { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.trust-block { text-align: center; padding: 30px 20px; border-left: 1px solid rgba(0,0,0,0.08); }
.trust-block:first-child { border-left: none; }
.trust-num { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(60px, 7vw, 110px); line-height: 1; color: var(--navy); letter-spacing: -0.04em; }
.trust-num em { font-style: italic; color: var(--blue); font-size: 0.6em; }
.trust-label { display: block; margin-top: 14px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

/* ============ QUOTE ============ */
.quote {
  padding: 200px 60px; text-align: center; position: relative;
  min-height: 90vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
}
.quote-mark {
  font-family: var(--serif); font-size: 240px; line-height: 0.7;
  color: var(--blue); opacity: 0.15; margin-bottom: -40px;
}
.quote-text {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 4.5vw, 64px); line-height: 1.3;
  letter-spacing: -0.02em; max-width: 1200px; color: var(--ink);
}
.quote-text em { color: var(--blue); font-style: italic; }
.quote-author { margin-top: 80px; display: flex; align-items: center; gap: 24px; }
.quote-line { width: 60px; height: 1px; background: var(--ink); opacity: 0.3; }
.quote-author strong { display: block; font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--ink); letter-spacing: 0.05em; }
.quote-author span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ============ ORDER CTA ============ */
.cta-section {
  padding: 200px 60px; text-align: center;
}
.cta-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 9vw, 160px); line-height: 0.95;
  letter-spacing: -0.03em; color: var(--cream); margin-bottom: 50px;
}
.cta-title em { font-style: italic; color: var(--blue-light); }
.cta-sub { font-family: var(--serif); font-size: clamp(18px, 1.6vw, 24px); color: rgba(244,238,226,0.7); margin-bottom: 70px; font-style: italic; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }

/* Buttons */
.btn-lg {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 22px 40px; border-radius: 100px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all .5s var(--ease-out); position: relative; overflow: hidden;
  will-change: transform;
}
.btn-lg.primary { background: var(--cream); color: var(--navy-deep); }
.btn-lg.primary:hover { background: var(--blue-light); transform: translateY(-3px); box-shadow: 0 30px 60px -20px rgba(184,212,240,0.4); }
.btn-lg.ghost { color: var(--cream); border: 1px solid rgba(255,255,255,0.3); }
.btn-lg.ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--cream); }
.btn-lg.dark { background: var(--navy); color: var(--cream); }
.btn-lg.dark:hover { background: var(--navy-deep); transform: translateY(-3px); box-shadow: 0 30px 60px -20px rgba(7,24,45,0.4); }
.btn-lg.outline-dark { color: var(--navy); border: 1px solid rgba(7,24,45,0.3); }
.btn-lg.outline-dark:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-lg i { font-style: normal; transition: transform .4s var(--ease-out); }
.btn-lg:hover i { transform: translateX(6px); }

/* ============ FOOTER ============ */
.footer { background: #050f1d; color: rgba(244,238,226,0.6); padding: 80px 60px 30px; }
.footer-top {
  max-width: 1400px; margin: 0 auto; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-mark img { width: 70px; height: 70px; object-fit: contain; margin-bottom: 18px; filter: brightness(0) invert(1) opacity(0.9); }
.footer-mark strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.footer-mark span { font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(244,238,226,0.5); display: block; margin-bottom: 18px; }
.footer-mark p { font-family: var(--serif); font-style: italic; color: var(--blue-light); font-size: 17px; line-height: 1.5; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 24px; font-weight: 600;
}
.footer-col a { display: block; font-family: var(--serif); font-size: 18px; color: rgba(244,238,226,0.7); margin-bottom: 10px; transition: color .3s; }
.footer-col a:hover { color: var(--blue-light); }
.footer-col p { font-family: var(--serif); font-size: 17px; color: rgba(244,238,226,0.7); margin-bottom: 8px; }
.footer-bot {
  max-width: 1400px; margin: 30px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ============ HERITAGE PAGE ============ */
.story-block { padding: 160px 60px; max-width: 1100px; margin: 0 auto; }
.story-block .lede:first-of-type { font-size: clamp(24px, 2vw, 32px); color: var(--ink); }
.story-pull {
  padding: 180px 60px; text-align: center; max-width: 1200px; margin: 0 auto;
}
.pull-quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(38px, 5vw, 78px); line-height: 1.15;
  letter-spacing: -0.02em; color: var(--blue);
}
.pull-att { margin-top: 50px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); }
.story-image-band { padding: 0 60px; }
.story-image-band img { width: 100%; height: 80vh; object-fit: cover; border-radius: 0; }
.story-twin {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  max-width: 1400px; margin: 0 auto; padding: 160px 60px;
  align-items: center;
}
.story-twin img { width: 100%; height: 70vh; object-fit: cover; }
.story-twin .reverse { order: 2; }

/* ============ PRODUCTS PAGE ============ */
.products-grid {
  padding: 140px 40px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px 60px;
  max-width: 1500px; margin: 0 auto;
}
.product-card {
  display: flex; flex-direction: column; cursor: none; transition: transform .6s var(--ease-out);
}
.product-card:hover { transform: translateY(-8px); }
.product-card-img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--cream-deep); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-img .num {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--serif); font-size: 22px; font-style: italic; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.product-card-img .tag {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,0.4); padding: 8px 14px; backdrop-filter: blur(10px);
}
.product-card-info { padding-top: 32px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.product-card-info h3 { font-family: var(--serif); font-size: 44px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.product-card-info p { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 18px; line-height: 1.4; max-width: 400px; }
.product-card-price { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--blue); white-space: nowrap; }

/* ============ CRAFT PAGE ============ */
.craft-intro { padding: 200px 60px; max-width: 1200px; margin: 0 auto; text-align: center; }
.craft-step {
  padding: 140px 60px; min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1500px; margin: 0 auto;
}
.craft-step.reverse .craft-step-img { order: 2; }
.craft-step-img { aspect-ratio: 4/5; overflow: hidden; background: var(--cream-deep); }
.craft-step-img img { width: 100%; height: 100%; object-fit: cover; }
.craft-step-text .step-num {
  font-family: var(--serif); font-size: 120px; font-weight: 500;
  font-style: italic; color: var(--blue); line-height: 1; margin-bottom: 30px;
  display: block;
}
.craft-step-text h2 { font-family: var(--serif); font-size: clamp(48px, 6vw, 80px); font-weight: 500; margin-bottom: 30px; }
.craft-step-text p { font-size: 17px; line-height: 1.7; max-width: 500px; }

/* ============ GALLERY PAGE ============ */
.gallery-grid {
  padding: 140px 40px;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
  max-width: 1500px; margin: 0 auto;
}
.g-item {
  overflow: hidden; background: var(--cream-deep); position: relative; cursor: none;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease-out); }
.g-item:hover img { transform: scale(1.08); }
.g-1 { grid-column: span 7; aspect-ratio: 4/3; }
.g-2 { grid-column: span 5; aspect-ratio: 3/4; }
.g-3 { grid-column: span 4; aspect-ratio: 1/1; }
.g-4 { grid-column: span 4; aspect-ratio: 1/1; }
.g-5 { grid-column: span 4; aspect-ratio: 1/1; }
.g-6 { grid-column: span 8; aspect-ratio: 16/9; }
.g-7 { grid-column: span 4; aspect-ratio: 3/4; }
.g-8 { grid-column: span 6; aspect-ratio: 4/3; }
.g-9 { grid-column: span 6; aspect-ratio: 4/3; }

/* ============ ORDER PAGE ============ */
.order-page { padding: 140px 60px; max-width: 1500px; margin: 0 auto; }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.order-info h2 { margin-bottom: 30px; }
.order-info > p { font-family: var(--serif); font-size: 22px; line-height: 1.5; color: var(--muted); margin-bottom: 50px; max-width: 480px; }
.order-detail-line {
  display: flex; gap: 30px; padding: 28px 0; border-top: 1px solid rgba(0,0,0,0.1);
}
.order-detail-line:last-of-type { border-bottom: 1px solid rgba(0,0,0,0.1); }
.order-detail-line .lbl { font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); min-width: 140px; padding-top: 4px; }
.order-detail-line .val { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.order-detail-line .val a { transition: color .3s; }
.order-detail-line .val a:hover { color: var(--blue); }

/* Order form */
.order-form {
  background: var(--paper); padding: 60px 50px; border: 1px solid rgba(0,0,0,0.06);
}
.order-form h3 { font-family: var(--serif); font-size: 36px; margin-bottom: 30px; }
.field-l { margin-bottom: 30px; position: relative; }
.field-l label {
  display: block; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px;
}
.field-l input, .field-l select, .field-l textarea {
  width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.2);
  font-family: var(--serif); font-size: 20px; color: var(--ink); transition: border-color .3s;
}
.field-l textarea { resize: vertical; min-height: 60px; }
.field-l input:focus, .field-l select:focus, .field-l textarea:focus { border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-msg {
  margin-top: 24px; padding: 16px 20px; background: var(--blue-pale);
  color: var(--navy); font-family: var(--serif); font-size: 16px;
  font-style: italic; opacity: 0; transition: opacity .4s;
}
.form-msg.show { opacity: 1; }

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
  background: #25d366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 14px 40px rgba(37,211,102,0.45); z-index: 95;
  animation: pulse 2.4s ease-in-out infinite; transition: transform .35s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 40px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 14px 40px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0.12); }
}

/* ============ MAGNETIC BTN WRAPPER ============ */
.magnetic { display: inline-block; will-change: transform; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .heritage-grid { grid-template-columns: 1fr; gap: 60px; }
  .pillar-row, .trust-row, .footer-top { grid-template-columns: repeat(2, 1fr); }
  .products-grid, .order-grid, .craft-step, .story-twin { grid-template-columns: 1fr; gap: 60px; }
  .craft-step.reverse .craft-step-img { order: 0; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .g-1, .g-6, .g-8, .g-9 { grid-column: span 6; }
  .g-2, .g-7 { grid-column: span 6; }
  .g-3, .g-4, .g-5 { grid-column: span 3; }
}
@media (max-width: 700px) {
  .nav { padding: 14px 20px; }
  .heritage, .promise, .quote, .trust, .manifesto, .products-grid, .order-page,
  .cta-section, .craft-intro, .story-block, .story-twin, .craft-step, .gallery-grid {
    padding-left: 24px; padding-right: 24px;
  }
  .sec-num, .hero-meta-tl, .hero-meta-tr { left: 24px; right: 24px; top: 100px; }
  .pillar-row, .trust-row, .form-row, .footer-top { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 24px; }
  .range-preview-track, .range-preview-head { padding-left: 24px; padding-right: 24px; }
  .range-img { height: 420px; }
  .trust-block { border-left: none; border-top: 1px solid rgba(0,0,0,0.08); padding: 24px 0; }
  .trust-block:first-child { border-top: none; }
  .hero-foot { left: 24px; right: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid > * { grid-column: span 1; }
  .scroll-prog { display: none; }
  .order-form { padding: 40px 28px; }
  .story-image-band { padding: 0 24px; }
  .story-image-band img { height: 50vh; }
  .page-hero { padding: 140px 24px 60px; }
}
