
:root {
  --red: #ef233c;
  --red-deep: #c4152b;
  --green: #07291e;
  --green-deep: #031b14;
  --mint: #b9e8b0;
  --cream: #f7f4ec;
  --white: #fffdf8;
  --ink: #122219;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main section[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: white;
  background: #111;
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  width: min(calc(100% - 64px), 1480px);
  height: 104px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  transition: height .35s ease, background .35s ease, border-color .35s ease, padding .35s ease;
}
.site-header.is-scrolled {
  top: 12px;
  height: 76px;
  padding: 0 12px 0 14px;
  background: rgba(3, 25, 18, .86);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}
.brand { position: relative; z-index: 3; display: block; }
.brand-shell {
  display: grid;
  width: 102px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 0 0 19px 19px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  transition: width .35s ease, height .35s ease, border-radius .35s ease;
}
.brand-shell img { width: 88px; height: 65px; object-fit: contain; }
.is-scrolled .brand-shell { width: 72px; height: 60px; border-radius: 14px; }
.is-scrolled .brand-shell img { width: 64px; height: 52px; }

.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 45px); color: white; }
.desktop-nav > a:not(.nav-order) {
  position: relative;
  padding: 10px 0;
  font-size: .9rem;
  font-weight: 600;
}
.desktop-nav > a:not(.nav-order)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.desktop-nav > a:not(.nav-order):hover::after,
.desktop-nav > a:not(.nav-order):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-order {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.nav-order:hover { color: var(--green-deep); background: white; transform: translateY(-2px); }
.nav-order svg { width: 23px; fill: #62d87c; }

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 920px;
  height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--green-deep);
  isolation: isolate;
}
.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  animation: hero-arrive 1.5s cubic-bezier(.2,.7,.2,1) both;
}
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 25, 18, .98) 0%, rgba(2, 34, 24, .91) 25%, rgba(3, 31, 22, .62) 47%, rgba(3, 24, 17, .12) 76%),
    linear-gradient(0deg, rgba(0, 18, 13, .76) 0%, transparent 35%, rgba(0, 12, 8, .28) 100%);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  left: -280px;
  bottom: -260px;
  background: rgba(29, 170, 92, .25);
  border-radius: 50%;
  filter: blur(85px);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: max(32px, calc((100vw - 1480px) / 2));
  width: min(780px, calc(100% - 64px));
  transform: translateY(-51%);
}
.hero-kicker {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 27px;
  padding: 9px 15px;
  color: #ff6677;
  border: 1px solid rgba(255, 69, 90, .78);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 680;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: copy-arrive .8s .15s both;
}
.hero-kicker span { width: 6px; height: 6px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(239,35,60,.16); }
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(4.5rem, 6.45vw, 7.1rem);
  font-weight: 790;
  letter-spacing: -.075em;
  line-height: .9;
  text-wrap: balance;
  animation: copy-arrive .9s .24s both;
}
.hero h1 span { display: block; margin-top: 15px; color: #f8fff5; }
.hero-copy {
  max-width: 620px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.02rem, 1.3vw, 1.23rem);
  line-height: 1.65;
  animation: copy-arrive .9s .34s both;
}
.hero-actions { display: flex; gap: 15px; margin-top: 35px; animation: copy-arrive .9s .44s both; }
.button {
  display: inline-flex;
  min-height: 61px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .93rem;
  font-weight: 720;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button svg { width: 23px; }
.button svg:not(:first-child) { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { background: var(--red); box-shadow: 0 18px 40px rgba(190, 8, 31, .27); }
.button-primary:hover { background: #ff334a; box-shadow: 0 21px 48px rgba(190, 8, 31, .38); }
.button-primary svg { fill: currentColor; }
.button-ghost { background: rgba(3, 24, 17, .34); border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(10px); }
.button-ghost:hover { background: rgba(255, 255, 255, .13); }

.scroll-cue {
  position: absolute;
  left: max(32px, calc((100vw - 1480px) / 2));
  bottom: 119px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .62);
  font-size: .67rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-cue i { position: relative; width: 48px; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: white; transform: translateX(-100%); animation: scroll-line 2s infinite; }

.hero-categories {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 40px;
  left: max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(2, 31, 22, .82);
  border: 1px solid rgba(201, 240, 209, .25);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,.23);
  backdrop-filter: blur(18px);
  animation: panel-arrive .9s .52s both;
}
.hero-categories a {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 0 17px;
  transition: color .25s ease, background .25s ease;
}
.hero-categories a + a::before { content: ""; position: absolute; top: 20px; bottom: 20px; left: 0; width: 1px; background: rgba(255,255,255,.18); }
.hero-categories a:hover { color: var(--mint); background: rgba(255,255,255,.05); }
.category-mark { color: #96d7a0; font-size: .68rem; font-weight: 720; letter-spacing: .08em; }
.hero-categories b { font-size: .84rem; font-weight: 620; }

.section-kicker {
  margin: 0 0 24px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-kicker-light { color: #9ee8ae; }
.story-section {
  position: relative;
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  min-height: 940px;
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
  overflow: hidden;
  padding: 155px max(32px, calc((100vw - 1360px) / 2));
  background: var(--cream);
}
.story-year {
  position: absolute;
  top: 15px;
  right: -30px;
  color: rgba(7, 41, 30, .055);
  font-size: clamp(13rem, 28vw, 31rem);
  font-weight: 850;
  letter-spacing: -.11em;
  line-height: .8;
  pointer-events: none;
}
.story-copy { position: relative; z-index: 1; }
.story-copy h2,
.section-heading h2,
.difference-copy h2,
.gallery-heading h2,
.delivery-copy h2,
.location-copy h2,
.faq-title h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 6.15rem);
  font-weight: 740;
  letter-spacing: -.07em;
  line-height: .94;
}
.story-lead {
  max-width: 540px;
  margin: 34px 0 0;
  color: #52645a;
  font-size: 1.02rem;
  line-height: 1.8;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  padding-bottom: 6px;
  border-bottom: 1px solid #a9b3ad;
  font-size: .88rem;
  font-weight: 720;
}
.inline-link svg { width: 22px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.inline-link:hover svg { transform: translateX(5px); }
.story-visual { position: relative; min-height: 650px; }
.story-main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 79%;
  height: 82%;
  overflow: hidden;
  border-radius: 190px 28px 28px 28px;
  box-shadow: 0 35px 80px rgba(15, 44, 30, .16);
}
.story-side-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 39%;
  height: 48%;
  overflow: hidden;
  border: 8px solid var(--cream);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 44, 30, .18);
}
.story-main-image img,
.story-side-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.story-main-image:hover img,
.story-side-image:hover img { transform: scale(1.045); }
.story-note {
  position: absolute;
  right: 5%;
  bottom: 7%;
  display: grid;
  width: 156px;
  height: 156px;
  place-content: center;
  color: white;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(194, 17, 38, .25);
  text-align: center;
  transform: rotate(7deg);
}
.story-note strong { font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.story-note span { margin-top: 7px; color: rgba(255,255,255,.75); font-size: .65rem; }

.word-marquee { overflow: hidden; color: white; background: var(--red); }
.word-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  padding: 27px 0;
  animation: marquee 25s linear infinite;
}
.word-marquee span { font-size: clamp(1.8rem, 3.3vw, 3.7rem); font-weight: 760; letter-spacing: -.04em; white-space: nowrap; }
.word-marquee i { color: #ffd1d6; font-size: 1.25rem; font-style: normal; }

.category-section {
  padding: 145px max(32px, calc((100vw - 1360px) / 2));
  background: #fffdf8;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 60px;
}
.section-heading h2 { max-width: 900px; }
.section-heading > p {
  max-width: 450px;
  margin: 0 0 5px;
  color: #607067;
  font-size: .94rem;
  line-height: 1.75;
}
.category-bento {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  grid-template-rows: 335px 335px;
  gap: 16px;
}
.product-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: white;
  background: #18372a;
  border-radius: 23px;
}
.product-card-tall { grid-row: 1 / 3; }
.product-card-wide { grid-column: 2 / 4; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.product-card-tall img { object-position: center 30%; }
.product-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,20,13,.03) 30%, rgba(2,23,16,.88) 100%); }
.product-card-copy { position: absolute; right: 29px; bottom: 27px; left: 29px; }
.product-card-copy span { color: #bae8c3; font-size: .66rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.product-card-copy h3 { margin: 8px 0 0; font-size: clamp(2rem, 3.2vw, 3.5rem); font-weight: 690; letter-spacing: -.055em; line-height: .94; }
.product-card-copy p { max-width: 420px; margin: 15px 0 0; color: rgba(255,255,255,.7); font-size: .82rem; line-height: 1.55; }
.product-card:hover img { transform: scale(1.055); }
.category-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.category-tags span { padding: 11px 17px; color: #4e6156; background: #f2f4ef; border: 1px solid #e2e7df; border-radius: 999px; font-size: .77rem; font-weight: 610; }

.difference-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(65px, 8vw, 130px);
  padding: 145px max(32px, calc((100vw - 1360px) / 2));
  color: white;
  background: var(--green-deep);
}
.difference-media { position: relative; height: 690px; }
.difference-media::before { content: ""; position: absolute; inset: 24px 36px -24px -24px; border: 1px solid rgba(185,232,176,.3); border-radius: 28px 180px 28px 28px; }
.difference-media img { position: relative; width: 100%; height: 100%; object-fit: cover; border-radius: 28px 180px 28px 28px; }
.media-pill { position: absolute; right: -22px; bottom: 36px; padding: 16px 21px; color: #08261c; background: var(--mint); border-radius: 999px; box-shadow: 0 16px 40px rgba(0,0,0,.2); font-size: .75rem; font-weight: 740; transform: rotate(-3deg); }
.difference-copy h2 { max-width: 660px; }
.difference-intro { max-width: 620px; margin: 31px 0 0; color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.8; }
.difference-list { margin-top: 45px; border-top: 1px solid rgba(255,255,255,.14); }
.difference-list article { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.difference-list article > span { color: #8fdaa0; font-size: .69rem; font-weight: 730; }
.difference-list h3 { margin: -5px 0 7px; font-size: 1rem; }
.difference-list p { margin: 0; color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.6; }

.gallery-section { padding: 145px max(32px, calc((100vw - 1420px) / 2)); background: var(--cream); }
.gallery-heading { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.gallery-heading .section-kicker { grid-column: 1 / 3; margin-bottom: -60px; }
.gallery-heading > p:last-child { max-width: 410px; margin: 0 0 9px; color: #617067; line-height: 1.7; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .72fr .72fr; grid-template-rows: 310px 310px; gap: 16px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #dce2db; border-radius: 23px; }
.gallery-one { grid-row: 1 / 3; }
.gallery-two { grid-column: 2 / 4; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid figcaption { position: absolute; right: 17px; bottom: 17px; display: flex; align-items: center; gap: 11px; padding: 10px 14px; color: white; background: rgba(3,25,18,.8); border: 1px solid rgba(255,255,255,.17); border-radius: 999px; backdrop-filter: blur(10px); font-size: .68rem; font-weight: 650; }
.gallery-grid figcaption span { color: #9cdda7; }

.delivery-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 710px; color: white; background: var(--red); }
.delivery-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 100px max(45px, calc((100vw - 1360px) / 2)); padding-right: clamp(55px, 8vw, 130px); }
.delivery-copy .section-kicker { color: #ffd1d6; }
.delivery-copy h2 { max-width: 730px; }
.delivery-copy > p:not(.section-kicker) { max-width: 610px; margin: 30px 0 0; color: rgba(255,255,255,.76); font-size: 1rem; line-height: 1.75; }
.delivery-button { display: inline-flex; min-height: 65px; align-items: center; gap: 13px; margin-top: 35px; padding: 0 24px; color: var(--red-deep); background: white; border-radius: 15px; box-shadow: 0 20px 50px rgba(121,0,18,.18); font-size: .9rem; font-weight: 760; transition: transform .25s ease, box-shadow .25s ease; }
.delivery-button:hover { transform: translateY(-3px); box-shadow: 0 24px 55px rgba(121,0,18,.27); }
.delivery-button svg { width: 23px; }
.delivery-button svg:first-child { fill: #1aa45a; }
.delivery-button svg:last-child { margin-left: 8px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.delivery-image { position: relative; min-height: 600px; overflow: hidden; }
.delivery-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(160,8,30,.28), transparent 50%); }
.delivery-image img { width: 100%; height: 100%; object-fit: cover; }
.delivery-image > span { position: absolute; z-index: 2; right: 30px; bottom: 30px; padding: 12px 16px; background: rgba(2,29,20,.78); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; backdrop-filter: blur(10px); font-size: .7rem; font-weight: 650; letter-spacing: .05em; }

.location-section { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(60px, 8vw, 120px); padding: 145px max(32px, calc((100vw - 1360px) / 2)); background: #fffdf8; }
.location-copy address { margin: 32px 0 38px; color: #57685e; font-size: 1.02rem; font-style: normal; line-height: 1.85; }
.location-links { border-top: 1px solid #d9dfd9; }
.location-links a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid #d9dfd9; }
.location-links span { color: #748078; font-size: .71rem; }
.location-links b { color: #0d7848; font-size: .82rem; }
.map-card { height: 600px; overflow: hidden; border-radius: 30px 140px 30px 30px; box-shadow: 0 30px 80px rgba(11,51,31,.15); }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: saturate(.82) contrast(1.03); }

.faq-section { display: grid; grid-template-columns: .73fr 1.27fr; gap: clamp(70px, 9vw, 150px); padding: 130px max(32px, calc((100vw - 1260px) / 2)); background: #eef2ec; }
.faq-title h2 { max-width: 520px; font-size: clamp(3rem, 4.5vw, 5.2rem); }
.faq-list { border-top: 1px solid #c8d0c9; }
.faq-list details { border-bottom: 1px solid #c8d0c9; }
.faq-list summary { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; list-style: none; font-size: .95rem; font-weight: 690; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid #a9b4aa; border-radius: 50%; }
.faq-list summary i::before,
.faq-list summary i::after { content: ""; position: absolute; top: 13px; left: 8px; width: 10px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 700px; margin: -5px 45px 25px 0; color: #607067; font-size: .87rem; line-height: 1.7; }

.site-footer { padding: 82px max(32px, calc((100vw - 1360px) / 2)) 26px; color: #d3ddd6; background: #031b14; }
.footer-top { display: grid; grid-template-columns: 1.35fr .55fr .72fr; gap: 80px; padding-bottom: 62px; }
.footer-brand > span { display: grid; width: 112px; height: 88px; place-items: center; overflow: hidden; background: white; border-radius: 17px; }
.footer-brand img { width: 96px; height: 74px; object-fit: contain; }
.footer-brand > p { margin: 18px 0 0; color: #9eaea3; font-size: .85rem; }
.footer-nav > p,
.footer-contact > p { margin: 2px 0 19px; color: white; font-size: .67rem; font-weight: 760; letter-spacing: .15em; text-transform: uppercase; }
.footer-nav a { display: block; width: max-content; margin: 10px 0; color: #a9b6ad; font-size: .82rem; }
.footer-nav a:hover,
.footer-contact a:hover { color: white; }
.footer-contact a { display: block; color: #a9b6ad; font-size: .88rem; font-weight: 670; }
.footer-contact address { max-width: 300px; margin-top: 14px; color: #7f9185; font-size: .76rem; font-style: normal; line-height: 1.65; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 24px; color: #6f8176; border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }
.footer-bottom p { margin: 0; }

.floating-wa { position: fixed; z-index: 95; right: 20px; bottom: 20px; display: flex; min-height: 55px; align-items: center; gap: 9px; padding: 0 17px 0 13px; color: white; background: #1da65b; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; box-shadow: 0 16px 42px rgba(6,87,44,.3); font-size: .78rem; font-weight: 750; transition: transform .25s ease, background .25s ease; }
.floating-wa:hover { background: #168a4b; transform: translateY(-3px); }
.floating-wa svg { width: 28px; fill: currentColor; }

.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes hero-arrive { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
@keyframes copy-arrive { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes panel-arrive { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1080px) {
  .site-header { width: calc(100% - 40px); }
  .desktop-nav { gap: 20px; }
  .desktop-nav > a:not(.nav-order) { font-size: .82rem; }
  .nav-order { padding: 0 16px; }
  .hero h1 { font-size: clamp(4.15rem, 8.4vw, 6.3rem); }
  .hero-categories { right: 28px; left: 28px; }
  .hero-categories a { gap: 7px; padding-inline: 10px; }
  .story-section { grid-template-columns: .88fr 1.12fr; gap: 60px; }
  .story-visual { min-height: 570px; }
  .section-heading { gap: 55px; }
  .category-bento { grid-template-rows: 300px 300px; }
  .difference-section { gap: 65px; }
  .difference-media { height: 610px; }
  .location-section { gap: 60px; }
  .map-card { height: 540px; }
}

@media (min-width: 821px) and (max-height: 1000px) {
  .hero { min-height: 760px; }
  .hero-content { top: 47%; }
  .hero-kicker { margin-bottom: 18px; padding: 8px 14px; }
  .hero h1 { font-size: clamp(4rem, 5.65vw, 6rem); line-height: .89; }
  .hero h1 span { margin-top: 10px; }
  .hero-copy { max-width: 580px; margin-top: 22px; font-size: clamp(.95rem, 1.12vw, 1.08rem); line-height: 1.55; }
  .hero-actions { margin-top: 24px; }
  .button { min-height: 54px; }
  .scroll-cue { display: none; }
  .hero-categories { bottom: 22px; }
  .hero-categories a { min-height: 68px; }
}

@media (max-width: 820px) {
  .site-header, .site-header.is-scrolled { top: 0; width: 100%; height: 78px; padding: 0 18px; border-width: 0 0 1px; border-radius: 0; }
  .site-header:not(.is-scrolled) { background: linear-gradient(180deg, rgba(0,15,10,.72), transparent); }
  .brand-shell, .is-scrolled .brand-shell { width: 66px; height: 60px; border-radius: 0 0 13px 13px; }
  .brand-shell img, .is-scrolled .brand-shell img { width: 58px; height: 50px; }
  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 14px;
  }
  .menu-button span { display: block; width: 20px; height: 1.5px; background: white; transition: transform .25s ease; }
  .menu-button.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
  .desktop-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 104px 28px 40px;
    color: white;
    background: rgba(3, 29, 21, .98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .desktop-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .desktop-nav > a:not(.nav-order) { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: clamp(1.7rem, 8vw, 3rem); font-weight: 660; letter-spacing: -.04em; }
  .desktop-nav > a:not(.nav-order)::after { display: none; }
  .nav-order { min-height: 58px; justify-content: center; margin-top: 27px; }
  .hero { min-height: 820px; height: 100svh; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,30,21,.97), rgba(3,29,21,.72) 63%, rgba(3,24,17,.18)), linear-gradient(0deg, rgba(0,15,10,.82), transparent 48%); }
  .hero-content { top: 46%; left: 24px; width: calc(100% - 48px); }
  .hero h1 { max-width: 680px; font-size: clamp(3.55rem, 11.7vw, 5.7rem); }
  .hero-copy { max-width: 540px; }
  .hero-categories { right: 18px; bottom: 22px; left: 18px; grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .hero-categories::-webkit-scrollbar { display: none; }
  .hero-categories a { min-height: 66px; scroll-snap-align: start; }
  .scroll-cue { display: none; }
  .story-section { grid-template-columns: 1fr; min-height: 0; gap: 70px; padding-top: 105px; padding-bottom: 105px; }
  .story-copy { max-width: 650px; }
  .story-year { top: 30px; right: -20px; font-size: 21rem; }
  .story-visual { min-height: 620px; }
  .word-marquee div { padding: 22px 0; }
  .category-section,
  .gallery-section { padding-top: 105px; padding-bottom: 105px; }
  .section-heading,
  .gallery-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p,
  .gallery-heading > p:last-child { max-width: 600px; }
  .gallery-heading .section-kicker { grid-column: auto; margin-bottom: 0; }
  .category-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 470px 300px 300px; }
  .product-card-tall { grid-column: 1 / 3; grid-row: auto; }
  .product-card-wide { grid-column: 1 / 3; }
  .difference-section { grid-template-columns: 1fr; gap: 90px; padding-top: 105px; padding-bottom: 105px; }
  .difference-media { width: min(100%, 680px); height: 650px; }
  .difference-copy { max-width: 680px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 290px 290px; }
  .gallery-one { grid-column: 1 / 3; grid-row: auto; }
  .gallery-two { grid-column: 1 / 3; }
  .delivery-section { grid-template-columns: 1fr; }
  .delivery-copy { min-height: 620px; padding: 100px 32px; }
  .delivery-image { min-height: 560px; }
  .location-section { grid-template-columns: 1fr; padding-top: 105px; padding-bottom: 105px; }
  .location-copy { max-width: 650px; }
  .faq-section { grid-template-columns: 1fr; gap: 55px; padding-top: 100px; padding-bottom: 100px; }
  .faq-title { max-width: 650px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 55px; }
  .footer-brand { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  .hero { min-height: 780px; }
  .hero-content { top: 42.5%; }
  .hero-kicker { margin-bottom: 22px; font-size: .66rem; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.35rem); line-height: .91; }
  .hero h1 span { margin-top: 10px; }
  .hero-copy { margin-top: 24px; font-size: .94rem; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 27px; }
  .button { min-height: 55px; }
  .button-ghost { display: none; }
  .hero-categories { bottom: 13px; }
  .story-section { gap: 50px; padding: 82px 18px; }
  .story-copy h2,
  .section-heading h2,
  .difference-copy h2,
  .gallery-heading h2,
  .delivery-copy h2,
  .location-copy h2,
  .faq-title h2 { font-size: clamp(2.75rem, 12.5vw, 4.25rem); }
  .story-lead { margin-top: 25px; font-size: .91rem; line-height: 1.7; }
  .story-visual { min-height: 450px; }
  .story-main-image { width: 88%; height: 80%; border-radius: 100px 21px 21px 21px; }
  .story-side-image { width: 47%; height: 44%; border-width: 5px; border-radius: 18px; }
  .story-note { right: 0; bottom: 5%; width: 112px; height: 112px; }
  .story-note strong { font-size: .66rem; }
  .story-note span { font-size: .55rem; }
  .word-marquee div { gap: 24px; padding: 18px 0; }
  .category-section,
  .gallery-section { padding: 80px 18px; }
  .section-heading { margin-bottom: 38px; }
  .category-bento { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 340px); }
  .product-card-tall,
  .product-card-wide { grid-column: auto; }
  .product-card-copy { right: 20px; bottom: 20px; left: 20px; }
  .product-card-copy h3 { font-size: 2.45rem; }
  .difference-section { gap: 65px; padding: 80px 18px; }
  .difference-media { width: calc(100% - 10px); height: 480px; }
  .difference-media::before { inset: 16px 20px -16px -10px; border-radius: 20px 90px 20px 20px; }
  .difference-media img { border-radius: 20px 90px 20px 20px; }
  .media-pill { right: -8px; bottom: 25px; padding: 13px 16px; font-size: .65rem; }
  .difference-intro { margin-top: 24px; font-size: .9rem; }
  .gallery-heading { margin-bottom: 38px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 350px 260px 260px; }
  .gallery-one,
  .gallery-two { grid-column: auto; }
  .delivery-copy { min-height: 590px; padding: 80px 20px; }
  .delivery-copy > p:not(.section-kicker) { margin-top: 23px; font-size: .9rem; }
  .delivery-button { width: 100%; padding-inline: 17px; font-size: .8rem; }
  .delivery-button svg:last-child { margin-left: auto; }
  .delivery-image { min-height: 420px; }
  .location-section { gap: 55px; padding: 80px 18px; }
  .location-copy address { margin-top: 24px; font-size: .91rem; }
  .location-links a { align-items: flex-start; flex-direction: column; gap: 5px; }
  .map-card { height: 420px; border-radius: 22px 70px 22px 22px; }
  .faq-section { gap: 42px; padding: 80px 18px; }
  .faq-list summary { min-height: 76px; font-size: .86rem; }
  .site-footer { padding: 68px 18px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; padding-bottom: 45px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .floating-wa { right: 13px; bottom: 13px; width: 54px; min-height: 54px; justify-content: center; padding: 0; }
  .floating-wa span { display: none; }
}

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


/* ===== Multi-page architecture ===== */
.desktop-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav > a[aria-current="page"] { color: var(--mint); }
.subpage-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: end start;
  overflow: hidden;
  color: white;
  background: var(--green-deep);
  isolation: isolate;
}
.subpage-hero > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,26,19,.98), rgba(4,38,27,.77) 53%, rgba(2,24,17,.24)), linear-gradient(0deg, rgba(0,12,8,.72), transparent 55%);
}
.subpage-hero-content {
  width: min(calc(100% - 64px), 1480px);
  margin: 0 auto;
  padding: 180px 0 82px;
}
.subpage-hero-content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
}
.subpage-hero-content .breadcrumb a:hover { color: white; }
.subpage-hero-content .hero-kicker { margin-bottom: 22px; animation: none; }
.subpage-hero-content h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.6rem, 6.1vw, 6.7rem);
  font-weight: 790;
  letter-spacing: -.07em;
  line-height: .93;
  text-wrap: balance;
}
.subpage-hero-content > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.77);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}
.subpage-body .story-section,
.subpage-body .category-section,
.subpage-body .gallery-section,
.subpage-body .location-section,
.subpage-body .faq-section,
.subpage-body .difference-section { scroll-margin-top: 100px; }
@media (max-width: 820px) {
  .subpage-hero { min-height: 570px; }
  .subpage-hero-content { width: calc(100% - 48px); padding: 160px 0 64px; }
  .subpage-hero-content h1 { font-size: clamp(3.2rem, 11.5vw, 5.4rem); }
}
@media (max-width: 560px) {
  .subpage-hero { min-height: 520px; }
  .subpage-hero-content { width: calc(100% - 36px); padding: 138px 0 50px; }
  .subpage-hero-content h1 { font-size: clamp(2.9rem, 14vw, 4.2rem); }
  .subpage-hero-content > p:last-child { font-size: .93rem; line-height: 1.62; }
}


/* FINAL V3 */
.catalog-page{background:#f7f4ec}
.catalog-intro,.catalog-main,.catalog-category-main{width:min(calc(100% - 64px),1480px);margin-inline:auto}
.catalog-intro{padding:100px 0 28px}
.catalog-intro-grid,.catalog-category-heading{display:grid;grid-template-columns:1.15fr .85fr;gap:64px;align-items:end}
.catalog-intro h2,.catalog-category-heading h2{margin:0;font-size:clamp(2.8rem,4.7vw,5.3rem);font-weight:790;letter-spacing:-.065em;line-height:.95}
.catalog-intro-grid>p,.catalog-category-heading>p{margin:0;color:#66736c;line-height:1.8}
.catalog-category-nav{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:42px}
.catalog-category-link{min-height:145px;padding:20px;color:#fff;background:#063021;border-radius:20px;transition:.2s}
.catalog-category-link:hover{background:#0a4932;transform:translateY(-3px)}
.catalog-category-link small{display:block;color:#99cfaa;font-size:.64rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.catalog-category-link strong{display:block;margin-top:8px;font-size:1.15rem;line-height:1.15}
.catalog-category-link span{display:block;margin-top:12px;color:rgba(255,255,255,.58);font-size:.72rem}
.catalog-main,.catalog-category-main{padding:34px 0 110px}
.catalog-toolbar{position:sticky;z-index:20;top:92px;display:flex;align-items:center;gap:12px;padding:12px;background:rgba(247,244,236,.95);border:1px solid rgba(16,34,25,.12);border-radius:18px;box-shadow:0 12px 36px rgba(4,34,24,.08);backdrop-filter:blur(14px)}
.catalog-search{position:relative;flex:1}.catalog-search input{width:100%;height:52px;padding:0 16px 0 44px;color:#122219;background:#fff;border:1px solid rgba(16,34,25,.14);border-radius:13px;outline:none}
.catalog-search input:focus{border-color:rgba(7,74,49,.42);box-shadow:0 0 0 3px rgba(7,74,49,.07)}
.catalog-search svg{position:absolute;top:50%;left:15px;width:18px;color:#647269;transform:translateY(-50%)}
.catalog-count{min-width:92px;color:#69776f;font-size:.75rem;text-align:center}
.catalog-filters{display:flex;flex-wrap:wrap;gap:8px;margin:22px 0 36px}
.catalog-filter{padding:10px 14px;color:#07513a;background:#fff;border:1px solid rgba(16,34,25,.14);border-radius:999px;font-size:.76rem;font-weight:730;cursor:pointer}
.catalog-filter.is-active{color:#fff;background:#07513a;border-color:#07513a}
.catalog-grid-final{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.catalog-product{display:flex;min-height:270px;flex-direction:column;justify-content:space-between;padding:23px;background:#fff;border:1px solid rgba(16,34,25,.11);border-radius:22px;transition:.2s}
.catalog-product:hover{transform:translateY(-4px);box-shadow:0 18px 48px rgba(4,34,24,.09)}
.catalog-product[hidden]{display:none}
.catalog-product-icon{display:grid;width:50px;height:50px;place-items:center;color:#fff;background:#073b29;border-radius:15px;font-size:1.35rem}
.catalog-product-tag{display:inline-flex;width:max-content;margin-top:18px;padding:6px 9px;color:#07513a;background:#e7f3e8;border-radius:999px;font-size:.62rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.catalog-product h3{margin:12px 0 6px;font-size:1.3rem;letter-spacing:-.04em}
.catalog-product p{margin:0;color:#68766e;font-size:.8rem;line-height:1.65}
.catalog-product footer{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:22px;padding-top:17px;border-top:1px solid rgba(16,34,25,.1)}
.catalog-product footer span{color:#849088;font-size:.66rem}
.catalog-product footer a{color:#ef233c;font-size:.72rem;font-weight:800}
.catalog-disclaimer{margin-top:24px;padding:17px 20px;color:#59675f;background:#ecefe8;border-radius:16px;font-size:.8rem;line-height:1.65}
.catalog-category-heading{margin-bottom:40px}.catalog-back{display:inline-flex;margin-top:30px;color:#07513a;font-size:.82rem;font-weight:800}

/* Mobile menu is a proper drawer, not giant full-screen text */
@media(max-width:820px){
  .desktop-nav{top:0!important;right:0!important;bottom:0!important;left:auto!important;width:min(360px,88vw)!important;height:100dvh!important;padding:94px 24px 28px!important;justify-content:flex-start!important;background:rgba(3,35,25,.995)!important;box-shadow:-24px 0 70px rgba(0,0,0,.3)!important;visibility:visible!important;opacity:1!important;transform:translateX(105%)!important;transition:transform .28s ease!important}
  .desktop-nav.is-open{transform:translateX(0)!important}
  .desktop-nav>a:not(.nav-order){padding:15px 4px!important;border-bottom:1px solid rgba(255,255,255,.12)!important;font-size:1rem!important;font-weight:700!important;letter-spacing:-.01em!important}
  .nav-order{min-height:54px!important;margin-top:20px!important}
  .catalog-intro,.catalog-main,.catalog-category-main{width:min(calc(100% - 36px),760px)}
  .catalog-intro-grid,.catalog-category-heading{grid-template-columns:1fr;gap:22px}
  .catalog-category-nav,.catalog-grid-final{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .catalog-category-nav,.catalog-grid-final{grid-template-columns:1fr}
  .catalog-toolbar{top:82px}.catalog-count{display:none}.catalog-product{min-height:235px}
}
