:root{
  --white:#FFFFFF;
  --ivory:#FAFCFD;
  --pale:#EAF3F8;
  --pale-2:#D3E7F0;
  --ink:#16232E;
  --ink-soft:#5A6E7D;
  --blue:#3E7CA0;
  --blue-deep:#1B3A4E;
  --sky:#AED4E8;
  --line:rgba(22,35,46,0.12);
  --line-on-dark:rgba(255,255,255,0.18);
  --display:'Fraunces', serif;
  --body:'Inter', sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{ scroll-behavior:smooth; }
body{ background:var(--white); color:var(--ink); font-family:var(--body); line-height:1.6; overflow-x:hidden; }
a{ color:inherit; text-decoration:none; }
#collections, #parquet-gallery, #story, #why-us, #categories{ scroll-margin-top:140px; }
.amp{ font-family:var(--body) !important; font-style:normal !important; }
button{ font-family:var(--body); border:none; background:none; cursor:pointer; }
img{ max-width:100%; display:block; }

/* ANNOUNCEMENT BAR */
.announce{ background:var(--blue-deep); color:var(--white); text-align:center; font-size:12px; letter-spacing:0.08em; padding:10px; text-transform:uppercase; white-space:nowrap; overflow-x:auto; }

/* HEADER */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.9); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:padding .3s ease;
}
.header-inner{ max-width:1280px; margin:0 auto; padding:22px 40px 14px; text-align:center; transition:padding .3s ease; }
header.shrink .header-inner{ padding:12px 40px 8px; }
.logo-row{ display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:14px; transition:margin .3s ease; }
.logo-link{ display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit; }
header.shrink .logo-row{ margin-bottom:8px; }
.logo-mark{ width:auto; height:34px; object-fit:contain; }
.wordmark{ font-family:var(--display); font-size:22px; letter-spacing:0.02em; }
.wordmark span{ display:block; font-family:var(--body); font-size:9px; letter-spacing:0.25em; color:var(--ink-soft); text-transform:uppercase; margin-top:2px; }
.main-nav{ display:flex; justify-content:center; gap:38px; font-size:13px; letter-spacing:0.03em; }
.main-nav a{ position:relative; padding-bottom:2px; }
.main-nav a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--blue); transition:width .25s ease; }
.main-nav a:hover::after{ width:100%; }

/* MOBILE MENU TOGGLE */
.menu-toggle{ display:none; position:absolute; right:20px; top:50%; transform:translateY(-50%); width:26px; height:18px; flex-direction:column; justify-content:space-between; z-index:20; }
.menu-toggle span{ display:block; width:100%; height:1.5px; background:var(--ink); transition:all .3s; }
.menu-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
.mobile-nav{
  display:none; flex-direction:column; align-items:center; gap:20px;
  max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s ease;
  background:var(--white); border-top:1px solid var(--line);
}
.mobile-nav.open{ max-height:280px; padding:22px 0; }
.mobile-nav a{ font-size:14px; }

/* HERO */
.hero{
  position:relative; min-height:640px; display:flex; align-items:center; justify-content:center;
  text-align:center; overflow:hidden; padding:60px 24px;
}
.hero-bg{
  position:absolute; inset:0;
  background-image:linear-gradient(180deg, rgba(250,252,253,0.6) 0%, rgba(211,231,240,0.55) 100%), url('../img/hero-desktop.jpg');
  background-size:cover; background-position:center;
}
@media (max-width:600px){
  .hero-bg{ background-image:linear-gradient(180deg, rgba(250,252,253,0.6) 0%, rgba(211,231,240,0.55) 100%), url('../img/hero-mobile.jpg'); background-position:center top; }
}
.blob{ position:absolute; border-radius:50%; filter:blur(50px); opacity:0.3; }
.blob1{ width:420px; height:420px; background:var(--pale-2); top:-100px; left:-80px; animation:drift1 16s ease-in-out infinite; }
.blob2{ width:360px; height:360px; background:var(--white); bottom:-120px; right:-60px; animation:drift2 20s ease-in-out infinite; }
.blob3{ width:260px; height:260px; background:var(--sky); top:30%; right:10%; animation:drift1 14s ease-in-out infinite reverse; }
@keyframes drift1{ 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(40px,30px); } }
@keyframes drift2{ 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(-30px,-40px); } }
.fold-veil{ position:absolute; inset:0; display:flex; opacity:0.5; }
.fold-veil span{ flex:1; background:rgba(255,255,255,0.25); margin-right:2px; animation:sway 6s ease-in-out infinite; }
.fold-veil span:nth-child(2n){ background:rgba(255,255,255,0.12); animation-delay:.4s; }
.fold-veil span:nth-child(3n){ background:rgba(174,212,232,0.2); animation-delay:.8s; }
@keyframes sway{ 0%,100%{ transform:scaleY(1); } 50%{ transform:scaleY(1.05); } }

.hero-content{ position:relative; z-index:2; max-width:760px; }
.hero h1{
  font-family:var(--body); font-weight:700; letter-spacing:0.02em;
  font-size:clamp(38px,6vw,64px); line-height:1.12; color:var(--ink);
  text-transform:uppercase;
}
.hero h1 .accent{ font-family:var(--display); font-weight:400; text-transform:none; color:var(--blue); }
.hero .tagline{ font-family:var(--display); font-style:italic; font-size:clamp(18px,2.2vw,26px); color:var(--ink-soft); margin-top:16px; letter-spacing:0.02em; }
.hero-ctas{ margin-top:34px; display:flex; gap:14px; justify-content:center; }
.btn{ padding:14px 30px; font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; border-radius:2px; transition:all .25s; display:inline-block; }
.btn-dark{ background:var(--ink); color:var(--white); }
.btn-dark:hover{ background:var(--blue); transform:translateY(-2px); }
.btn-outline{ border:1px solid var(--ink); color:var(--ink); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue); transform:translateY(-2px); }

.scroll-cue{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:2; font-size:11px; letter-spacing:0.15em; text-transform:uppercase; color:var(--ink-soft); display:flex; flex-direction:column; align-items:center; gap:6px; }
.scroll-cue .arrow{ width:1px; height:26px; background:var(--ink-soft); position:relative; overflow:hidden; }
.scroll-cue .arrow::after{ content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--blue); animation:scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ top:-100%; } 50%{ top:0; } 100%{ top:100%; } }

/* INTRO */
.intro{ text-align:center; max-width:640px; margin:0 auto; padding:90px 24px 60px; }
.intro h2{ font-family:var(--display); font-weight:400; font-size:clamp(26px,3vw,34px); color:var(--ink); margin-bottom:16px; }
.intro p{ color:var(--ink-soft); font-size:15.5px; margin-bottom:30px; }

/* SECTION HEAD */
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; max-width:1280px; margin:0 auto; padding:0 40px; margin-bottom:34px; }
.eyebrow{ font-size:11.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--blue); font-weight:600; margin-bottom:10px; display:block; }
.section-head h2{ font-family:var(--display); font-style:italic; font-weight:400; font-size:clamp(24px,2.6vw,32px); }
.view-all{ font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-soft); border-bottom:1px solid var(--ink-soft); padding-bottom:2px; transition:color .2s, border-color .2s; }
.view-all:hover{ color:var(--blue); border-color:var(--blue); }

/* CAROUSEL */
.carousel-wrap{ position:relative; padding:0 40px 100px; max-width:1280px; margin:0 auto; }
.carousel{ display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding-bottom:6px; -webkit-overflow-scrolling:touch; }
.carousel::-webkit-scrollbar{ display:none; }
.c-card{ flex:0 0 240px; scroll-snap-align:start; cursor:pointer; display:block; }
.c-photo{ position:relative; height:300px; border-radius:4px; overflow:hidden; background:var(--pale); }
.c-photo::before{ content:""; position:absolute; inset:0; background:linear-gradient(160deg, var(--pale-2), var(--pale)); }
.c-photo svg{ position:relative; z-index:1; width:30%; height:30%; margin:auto; stroke:var(--blue); opacity:0.6; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.c-photo img{ position:absolute; inset:0; z-index:2; width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.c-photo .quick{
  position:absolute; bottom:12px; right:12px; z-index:2;
  width:34px; height:34px; border-radius:50%; background:var(--white);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(6px); transition:all .25s;
  box-shadow:0 2px 8px rgba(22,35,46,0.15);
}
.c-card:hover .quick{ opacity:1; transform:translateY(0); }
.c-card:hover .c-photo img, .c-card:hover .c-photo svg{ transform:translate(-50%,-50%) scale(1.08); }
.c-card:hover .c-photo img{ transform:scale(1.08); }
.c-title{ margin-top:14px; font-family:var(--display); font-size:16px; font-weight:500; color:var(--ink); }
.c-sub{ font-size:12.5px; color:var(--ink-soft); margin-top:2px; }

.car-arrow{
  position:absolute; top:130px; z-index:5;
  width:38px; height:38px; border-radius:50%; background:var(--white);
  box-shadow:0 2px 10px rgba(22,35,46,0.18);
  display:flex; align-items:center; justify-content:center;
  transition:transform .2s;
}
.car-arrow:hover{ transform:scale(1.08); }
.car-arrow.prev{ left:6px; }
.car-arrow.next{ right:6px; }

/* MARQUEE */
.marquee-wrap{ overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:26px 0; }
.marquee-track{ display:flex; white-space:nowrap; animation:marquee 26s linear infinite; }
.marquee-track span{ font-family:var(--display); font-style:italic; font-size:clamp(24px,3.4vw,38px); color:var(--ink-soft); padding:0 24px; }
.marquee-track span.dot{ color:var(--blue); font-style:normal; }
@keyframes marquee{ 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }

/* HOTSPOT SECTION */
.hotspot-section{
  position:relative; aspect-ratio:1852/700; overflow:hidden;
  background-image:linear-gradient(180deg, rgba(22,35,46,0.55) 0%, rgba(22,35,46,0.05) 40%, rgba(22,35,46,0) 65%), url('../img/hotspot-banner.jpg');
  background-size:cover; background-position:center;
  display:flex; align-items:flex-start; justify-content:center; padding-top:6%;
}
.hotspot-headline{
  font-family:var(--body); font-weight:700; text-transform:uppercase;
  font-size:clamp(26px,4vw,44px); text-align:center; color:var(--white);
  letter-spacing:0.02em; line-height:1.2; position:relative; z-index:3; max-width:600px;
  text-shadow:0 2px 20px rgba(22,35,46,0.25);
}
.hotspot-headline .accent{ font-family:var(--display); font-style:italic; font-weight:400; text-transform:none; }
.hotspot-link{
  position:absolute; z-index:4; top:83%; height:11.2%;
  border-radius:40px; transition:background .2s;
}
.hotspot-link:hover{ background:rgba(255,255,255,0.18); }

.hotspot-pin{
  position:absolute; z-index:5; transform:translate(-50%,-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  text-align:center; transition:transform .2s; cursor:pointer;
}
.hotspot-pin:hover{ transform:translate(-50%,-50%) scale(1.06); }
.pin-icon{
  position:relative; width:64px; height:64px; border-radius:50%; background:rgba(255,255,255,0.9);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(22,35,46,0.3);
  animation:bob 5s ease-in-out infinite;
}
.pin-icon svg{ width:26px; height:26px; stroke:var(--blue-deep); }
.pin-dot{
  position:absolute; width:10px; height:10px; border-radius:50%; background:var(--white);
  top:2px; right:2px; box-shadow:0 0 0 0 rgba(255,255,255,0.7);
  animation:pulseDot 2.2s ease-out infinite;
}
.pin-label{
  font-size:11.5px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--white); line-height:1.3; text-shadow:0 2px 10px rgba(22,35,46,0.7);
  opacity:0.45; transition:opacity .25s; max-width:120px;
}
.hotspot-pin.revealed .pin-label{ opacity:1; }
.float-item{ position:absolute; z-index:2; }
.float-icon{
  width:90px; height:90px; border-radius:50%; background:rgba(255,255,255,0.85);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px rgba(22,35,46,0.15);
  animation:bob 5s ease-in-out infinite;
}
.float-icon svg{ width:36px; height:36px; stroke:var(--blue-deep); }
@keyframes bob{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
.hotspot-dot{
  position:absolute; width:12px; height:12px; border-radius:50%; background:var(--white);
  top:8px; right:8px; box-shadow:0 0 0 0 rgba(255,255,255,0.7);
  animation:pulseDot 2.2s ease-out infinite;
}
@keyframes pulseDot{
  0%{ box-shadow:0 0 0 0 rgba(62,124,160,0.5); }
  70%{ box-shadow:0 0 0 14px rgba(62,124,160,0); }
  100%{ box-shadow:0 0 0 0 rgba(62,124,160,0); }
}
.fi-1{ top:8%; left:10%; }
.fi-2{ top:14%; right:12%; animation-delay:.5s; }
.fi-3{ bottom:12%; left:16%; animation-delay:1s; }
.fi-4{ bottom:10%; right:18%; animation-delay:1.5s; }
.fi-5{ top:50%; left:4%; animation-delay:2s; }

/* CATEGORY GRID */
.cat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.cat-item{ position:relative; height:380px; overflow:hidden; cursor:pointer; display:block; }
.cat-item .c-photo{ height:100%; border-radius:0; }
.cat-item::after{ content:""; position:absolute; inset:0; background:rgba(22,35,46,0.28); transition:background .3s; }
.cat-item:hover::after{ background:rgba(22,35,46,0.42); }
.cat-label{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; z-index:3; color:var(--white); font-family:var(--display); font-size:24px; text-align:center; }

/* PROCESS SECTION */
.process-section{ padding:100px 40px 30px; max-width:1100px; margin:0 auto; text-align:center; }
.process-section h2{ font-family:var(--display); font-style:italic; font-weight:400; font-size:clamp(24px,2.6vw,32px); margin-top:10px; }
.process-sub{ color:var(--ink-soft); font-size:14.5px; margin-top:10px; }
.process-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:50px; margin-top:56px; }
.step-number{
  width:52px; height:52px; border-radius:50%; background:var(--blue-deep); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-family:var(--display); font-size:20px; font-weight:600;
  margin:0 auto 20px;
}
.process-step h4{ font-family:var(--display); font-size:19px; font-weight:500; margin-bottom:10px; color:var(--ink); }
.process-step p{ color:var(--ink-soft); font-size:13.5px; line-height:1.65; }

/* WHY CHOOSE SECTION */
.why-section{ background:var(--pale); padding:90px 40px; margin-top:70px; }
.why-inner{ max-width:1200px; margin:0 auto; text-align:center; }
.why-inner h2{ font-family:var(--display); font-style:italic; font-weight:400; font-size:clamp(24px,2.6vw,32px); margin-top:10px; }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:50px; }
.why-card{ background:var(--white); border:1px solid var(--line); border-radius:6px; padding:36px 22px; }
.why-icon{ width:44px; height:44px; margin:0 auto 18px; display:flex; align-items:center; justify-content:center; }
.why-icon svg{ width:26px; height:26px; stroke:var(--blue); }
.why-card h4{ font-family:var(--display); font-size:16px; font-weight:500; margin-bottom:8px; color:var(--ink); }
.why-card p{ color:var(--ink-soft); font-size:13px; line-height:1.65; }

/* VALUE BAND */
.value-band{ background:var(--blue-deep); color:var(--white); padding:60px 40px; }
.value-row{ max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:40px; text-align:center; }
.value-row svg{ width:30px; height:30px; stroke:var(--sky); margin:0 auto 14px; }
.value-row h4{ font-family:var(--display); font-size:19px; font-weight:500; margin-bottom:6px; }
.value-row p{ font-size:13.5px; color:rgba(255,255,255,0.7); }

/* GALLERY GRID */
.gallery-section{ padding:100px 40px; max-width:1280px; margin:0 auto; text-align:center; }
.insta-handle{ display:inline-flex; align-items:center; gap:9px; color:var(--ink); }
.insta-handle svg{ width:22px; height:22px; color:var(--ink); flex-shrink:0; }
.gallery-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:8px; margin-top:40px; }
.insta-grid{ grid-template-columns:repeat(3,1fr); }
.wave-gallery{ grid-template-columns:repeat(5,1fr); }
.blackout-gallery{ grid-template-columns:repeat(3,1fr); }
.blackout-main-gallery{ grid-template-columns:repeat(4,1fr); }
.sunscreen-gallery{ grid-template-columns:repeat(4,1fr); }
.g-item{ position:relative; aspect-ratio:1; overflow:hidden; display:block; }
.g-item.mobile-only{ display:none; }
.g-item .c-photo{ height:100%; border-radius:0; }
.g-item::after{ content:""; position:absolute; inset:0; background:rgba(22,35,46,0); transition:background .3s; }
.g-item:hover::after{ background:rgba(22,35,46,0.3); }

/* NEWSLETTER */
.newsletter{ text-align:center; padding:90px 24px; }
.newsletter h2{ font-family:var(--display); font-weight:400; font-size:clamp(24px,3vw,32px); margin-bottom:10px; }
.newsletter p{ color:var(--ink-soft); font-size:14.5px; margin-bottom:34px; }
.nl-form{ max-width:420px; margin:0 auto; display:flex; align-items:center; border-bottom:1px solid var(--ink); padding-bottom:10px; }
.nl-form input{ flex:1; border:none; outline:none; font-size:14px; font-family:var(--body); background:none; }
.nl-form button{ font-size:18px; color:var(--ink); transition:transform .2s, color .2s; }
.nl-form button:hover{ transform:translateX(4px); color:var(--blue); }

/* FOOTER */
footer{ background:#0E0E10; padding:70px 40px 0; }
.footer-inner{ max-width:1280px; margin:0 auto; display:flex; gap:90px; padding-bottom:50px; flex-wrap:wrap; }
.footer-col{ display:flex; flex-direction:column; gap:11px; }
.footer-col h4{
  font-family:var(--body); font-size:12px; font-weight:700; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--white); margin-bottom:7px;
}
.footer-col a, .footer-col span{ font-family:var(--body); font-size:14.5px; color:#AEAEB4; transition:color .2s; }
.footer-col a:hover{ color:var(--white); }
.footer-bottom-bar{
  max-width:1280px; margin:0 auto; padding:20px 0; border-top:1px solid rgba(255,255,255,0.1);
  display:flex; justify-content:space-between; align-items:center; font-family:var(--body); font-size:12.5px; color:#7A7A80;
}
.footer-bottom-bar a{ color:#AEAEB4; transition:color .2s; }
.footer-bottom-bar a:hover{ color:var(--white); }

.back-to-top{
  position:fixed; right:24px; bottom:24px; z-index:80;
  width:44px; height:44px; border-radius:50%; background:var(--ink);
  display:flex; align-items:center; justify-content:center; border:none; cursor:pointer;
  box-shadow:0 6px 20px rgba(0,0,0,0.22); opacity:0; pointer-events:none;
  transition:opacity .3s ease, transform .2s ease;
}
.back-to-top.show{ opacity:1; pointer-events:auto; }
.back-to-top:hover{ transform:translateY(-3px); }
.back-to-top svg{ width:18px; height:18px; stroke:var(--white); }

/* LIGHTBOX */
.lightbox-overlay{
  position:fixed; inset:0; z-index:2000; background:rgba(10,16,22,0.92);
  display:flex; align-items:center; justify-content:center; padding:40px;
  opacity:0; pointer-events:none; transition:opacity .25s;
}
.lightbox-overlay.open{ opacity:1; pointer-events:auto; }
.lightbox-overlay img{ max-width:100%; max-height:100%; object-fit:contain; border-radius:4px; box-shadow:0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close{
  position:absolute; top:24px; right:28px; width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,0.1); color:var(--white); font-size:22px; line-height:1;
  display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .2s;
}
.lightbox-close:hover{ background:rgba(255,255,255,0.2); }
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,0.1); color:var(--white); font-size:30px; line-height:1; border:0;
  display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .2s;
}
.lightbox-nav:hover{ background:rgba(255,255,255,0.2); }
.lightbox-prev{ left:16px; }
.lightbox-next{ right:16px; }
@media (max-width:600px){
  .lightbox-nav{ width:38px; height:38px; font-size:24px; }
  .lightbox-prev{ left:6px; }
  .lightbox-next{ right:6px; }
}
div.g-item{ cursor:zoom-in; }
#parquetCarousel .c-photo{ cursor:zoom-in; }

/* REVEAL */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* COLLECTION DETAIL PAGE */
.collection-hero{
  position:relative; display:flex; align-items:stretch; min-height:520px;
}
.collection-hero-media{ position:relative; flex:1 1 50%; overflow:hidden; background:var(--pale); }
.collection-hero-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain; object-position:center; }
.collection-hero-text{ flex:1 1 50%; display:flex; flex-direction:column; justify-content:center; padding:60px; background:var(--ivory); }
.back-link{
  position:absolute; top:20px; left:20px; z-index:10;
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:500; color:var(--ink);
  background:rgba(255,255,255,0.94); padding:9px 16px 9px 12px; border-radius:999px;
  box-shadow:0 2px 12px rgba(0,0,0,0.14); transition:background .2s, gap .2s;
}
.back-link svg{ width:14px; height:14px; stroke:currentColor; flex-shrink:0; }
.back-link:hover{ background:var(--white); gap:9px; }
.breadcrumb{ font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:14px; }
.breadcrumb a{ color:var(--ink-soft); border-bottom:1px solid var(--line); }
.breadcrumb a:hover{ color:var(--blue); }
.collection-hero h1{ font-family:var(--display); font-style:italic; font-weight:400; color:var(--ink); font-size:clamp(32px,5vw,54px); }
.collection-intro{ max-width:720px; margin:0 auto; text-align:center; padding:60px 24px 20px; }
.collection-intro p{ color:var(--ink-soft); font-size:15.5px; }
.g-item .g-caption{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:14px 12px; font-size:12.5px; color:var(--white); text-align:left; opacity:0; transition:opacity .3s; background:linear-gradient(0deg, rgba(22,35,46,0.7), transparent); }
.g-item:hover .g-caption{ opacity:1; }
.collection-cta{ text-align:center; padding:20px 24px 100px; }
.collection-cta .btn{ margin-top:10px; }

@media (max-width: 900px){
  .main-nav{ display:none; }
  .menu-toggle{ display:flex; }
  .mobile-nav{ display:flex; }
  .g-item.mobile-only{ display:block; }
  .marquee-track{ animation-duration:10s; }
  .cat-grid{ grid-template-columns:1fr; }
  .value-row{ grid-template-columns:1fr; gap:30px; }
  .process-row{ grid-template-columns:1fr; gap:40px; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .float-icon{ width:56px; height:56px; }
  .float-icon svg{ width:22px; height:22px; }
  .pin-icon{ width:28px; height:28px; }
  .pin-icon svg{ width:12px; height:12px; }
  .pin-dot{ width:6px; height:6px; }
  .hotspot-pin{ gap:4px; }
  .pin-label{
    font-size:7.5px; max-width:72px;
    background:rgba(15,24,32,0.62); padding:2px 6px; border-radius:20px;
    text-shadow:none; backdrop-filter:blur(1px);
  }
  footer{ padding:50px 20px 0; }
  .footer-inner{ flex-wrap:nowrap; gap:10px; padding-bottom:30px; }
  .footer-col{ flex:1 1 0; min-width:0; gap:7px; }
  .footer-col h4{ font-size:9.5px; margin-bottom:3px; }
  .footer-col a, .footer-col span{
    font-size:11px; line-height:1.4; word-break:break-word; overflow-wrap:anywhere;
  }
  .footer-bottom-bar{ flex-direction:column; gap:8px; text-align:center; padding-bottom:24px; }
  .back-to-top{ width:40px; height:40px; right:16px; bottom:16px; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:10px; padding:0 20px; }
  .carousel-wrap{ padding:0 20px 70px; }
  .carousel{ -webkit-overflow-scrolling:touch; }
  .car-arrow{ width:32px; height:32px; }
  .car-arrow.prev{ left:0; }
  .car-arrow.next{ right:0; }
  .header-inner{ position:relative; }
  .announce{ font-size:2.9vw; letter-spacing:0.03em; padding:9px 12px; }
}

@media (max-width: 480px){
  .announce{ font-size:2.9vw; letter-spacing:0.03em; line-height:1.4; padding:9px 12px; }
  .hero{ min-height:560px; padding:50px 20px; }
  .hero-ctas{ flex-direction:column; width:100%; }
  .hero-ctas .btn{ width:100%; text-align:center; }
  .c-card{ flex:0 0 200px; }
  .c-photo{ height:250px; }
  .car-arrow{ top:106px; width:30px; height:30px; }
  .float-icon{ width:46px; height:46px; }
  .float-icon svg{ width:18px; height:18px; }
  .fi-5{ display:none; }
  .hotspot-headline{ font-size:18px; padding:0 20px; }
  .pin-icon{ width:24px; height:24px; }
  .pin-icon svg{ width:11px; height:11px; }
  .pin-label{ font-size:7px; max-width:62px; padding:2px 5px; }
  .cat-item{ height:280px; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .insta-grid{ grid-template-columns:repeat(3,1fr); gap:4px; }
  .value-band{ padding:50px 24px; }
  .why-grid{ grid-template-columns:1fr; }
  .process-section{ padding:70px 20px 20px; }
  .why-section{ padding:60px 20px; }
  .collection-hero{ flex-direction:column; min-height:0; }
  .collection-hero-media{ height:320px; flex:none; }
  .collection-hero-text{ padding:32px 20px; }
}

/* OUR STORY PAGE */
.story-page{
  --story-cream:#F4F1EB; --story-cream-2:#ECE7DD; --story-white:#FAF9F6;
  --story-dark:#201F1B; --story-dark-text:#B4B4AE;
  --story-ink:#26251F; --story-ink-soft:#8A8577;
  --story-accent:#8A7A5F; --story-line:rgba(38,37,31,0.12);
  font-family:var(--display); color:var(--story-ink);
}
.story-band{ padding:90px 24px; }
.story-band-white{ background:var(--story-white); }
.story-band-cream{ background:var(--story-cream); }
.story-row{
  max-width:1080px; margin:0 auto; display:grid;
  grid-template-columns:220px 1fr; gap:40px; align-items:start;
}
.story-row + .story-row{ margin-top:44px; }
.story-label{
  font-family:var(--body); font-size:12px; font-weight:600; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--story-ink-soft); padding-top:6px;
}
.story-row p{ font-size:18px; line-height:1.75; color:var(--story-ink); max-width:640px; }
.story-row p strong{ font-weight:600; }

.story-hero-band{ padding-top:150px; }
.story-hero-band h1{
  font-weight:400; font-style:normal; font-size:clamp(34px,4.6vw,52px);
  line-height:1.15; color:var(--story-ink); max-width:640px;
}
.story-hero-grid{ display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; }
.story-bignum{
  font-size:clamp(60px,9vw,110px); font-weight:400; color:var(--story-line);
  letter-spacing:-0.02em; line-height:1;
}

/* subtle, staggered reveal — refined over the site-wide default */
.story-page .reveal{
  transform:translateY(14px);
  transition:opacity 1.1s cubic-bezier(.22,1,.36,1), transform 1.1s cubic-bezier(.22,1,.36,1);
}
.story-page .reveal.is-visible{ transform:translateY(0); }
.story-bignum.reveal{ transform:translateX(16px); transition-delay:.25s; }
.story-bignum.reveal.is-visible{ transform:translateX(0); }

.story-stats div, .story-card{
  opacity:0; transform:translateY(10px);
  transition:opacity .7s ease, transform .7s ease;
}
.story-stats.is-visible div, .story-cards.is-visible .story-card{ opacity:1; transform:translateY(0); }
.story-stats div:nth-child(1), .story-card:nth-child(1){ transition-delay:.05s; }
.story-stats div:nth-child(2), .story-card:nth-child(2){ transition-delay:.2s; }
.story-stats div:nth-child(3), .story-card:nth-child(3){ transition-delay:.35s; }

.story-stats{
  max-width:1080px; margin:56px auto 0; padding-top:34px; border-top:1px solid var(--story-line);
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px;
}
.story-stats div{ border-left:1px solid var(--story-line); padding-left:24px; }
.story-stats div:first-child{ border-left:none; padding-left:0; }
.story-stats strong{
  display:block; font-size:clamp(28px,3.4vw,36px); font-weight:400; color:var(--story-ink);
  margin-bottom:6px;
}
.story-stats span{
  font-family:var(--body); font-size:13px; color:var(--story-ink-soft);
}

.story-cards{
  max-width:1080px; margin:48px auto 0; display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.story-card{
  background:var(--story-white); border:1px solid var(--story-line); border-radius:6px; padding:28px 26px;
}
.story-card .num{ font-size:28px; color:var(--story-accent); }
.story-card h3{ font-weight:500; font-size:19px; margin:10px 0 8px; color:var(--story-ink); }
.story-card p{ font-family:var(--body); font-size:14px; line-height:1.6; color:var(--story-ink-soft); max-width:none; }

.story-band-dark{
  background:var(--story-dark); text-align:center; padding:100px 24px;
}
.story-band-dark .story-label{
  font-family:var(--body); color:var(--story-dark-text); text-align:center; padding-top:0;
}
.story-pull-quote{
  font-style:italic; font-weight:400; font-size:clamp(24px,3.4vw,34px);
  color:var(--story-white); max-width:760px; margin:22px auto 0; line-height:1.5;
}

.story-closing-band{ text-align:center; padding:110px 24px 130px; }
.story-closing-band .eyebrow{ font-family:var(--body); color:var(--story-accent); }
.story-closing-band h2{
  font-weight:400; font-style:normal; font-size:clamp(28px,4vw,44px);
  color:var(--story-ink); max-width:680px; margin:16px auto 0; line-height:1.3;
}
.story-divider{ width:60px; height:1px; background:var(--story-line); margin:32px auto; }
.story-closing-quote{
  font-style:italic; font-size:18px; color:var(--story-ink-soft); max-width:560px;
  margin:0 auto; line-height:1.7;
}

@media (max-width:900px){
  .story-band{ padding:60px 20px; }
  .story-hero-band{ padding-top:120px; }
  .story-row{ grid-template-columns:1fr; gap:14px; }
  .story-row + .story-row{ margin-top:30px; }
  .story-row p{ font-size:16.5px; }
  .story-hero-grid{ grid-template-columns:1fr; gap:20px; }
  .story-bignum{ font-size:56px; }
  .story-stats{ grid-template-columns:1fr; gap:22px; margin-top:36px; }
  .story-stats div{ border-left:none; padding-left:0; border-top:1px solid var(--story-line); padding-top:16px; }
  .story-stats div:first-child{ border-top:none; padding-top:0; }
  .story-cards{ grid-template-columns:1fr; margin-top:32px; }
  .story-band-dark{ padding:70px 20px; }
  .story-closing-band{ padding:70px 20px 90px; }
}
