
:root{
  --ink:#11100e;
  --ink-soft:#61584f;
  --cream:#f5efe7;
  --cream-2:#eee7dd;
  --white:#fcfaf6;
  --line:rgba(17,16,14,.10);
  --line-strong:rgba(17,16,14,.18);
  --shadow:0 24px 60px rgba(20,16,10,.08);
  --shadow-2:0 42px 90px rgba(20,16,10,.12);
  --serif:"Cormorant Garamond", Georgia, serif;
  --sans:"Manrope", Inter, system-ui, sans-serif;
  --blue:#355b8b;
  --taupe:#8a7f73;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(circle at top left, #faf7f2 0%, #f5efe7 44%, #f1eadf 100%);
  color:var(--ink);
  font-family:var(--sans);
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.noise{
  position:fixed; inset:0; pointer-events:none; z-index:999;
  opacity:.04; background-image:
  linear-gradient(rgba(0,0,0,.14) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
  mix-blend-mode:multiply;
}

.site-header{
  position:fixed; top:16px; left:50%; transform:translateX(-50%);
  width:min(1240px, calc(100% - 28px));
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px 14px 24px;
  background:rgba(250,247,242,.78);
  border:1px solid rgba(255,255,255,.7);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 48px rgba(0,0,0,.07);
  z-index:100;
}
.brand{display:flex; flex-direction:column; line-height:1}
.brand-main{font-family:var(--serif); font-size:34px; font-weight:700; letter-spacing:-.08em}
.brand-sub{margin-top:4px; font-size:9px; font-weight:800; letter-spacing:.24em; text-transform:uppercase; color:var(--taupe)}
.nav{display:flex; gap:24px; align-items:center; font-size:12px; font-weight:900; letter-spacing:.10em; text-transform:uppercase}
.nav a{color:#2c2924}
.bag-link{padding:12px 14px; background:#151311; color:#f7f1ea!important}
.menu-button{display:none; border:1px solid var(--line); background:transparent; padding:12px 16px; text-transform:uppercase; font-weight:900; letter-spacing:.08em}

.hero, .section, .page-hero{width:min(1240px, calc(100% - 28px)); margin:0 auto}
.premium-hero{
  min-height:100vh; display:grid; grid-template-columns:.9fr 1.1fr; gap:34px;
  align-items:center; padding-top:132px; padding-bottom:70px;
}
.hero-copy{max-width:580px}
.kicker{
  margin:0 0 14px; text-transform:uppercase; letter-spacing:.24em;
  font-size:11px; font-weight:900; color:var(--taupe)
}
h1,h2,h3,p{margin-top:0}
h1{
  font-family:var(--serif); font-size:clamp(62px, 8vw, 126px);
  line-height:.84; letter-spacing:-.075em; font-weight:500; margin-bottom:20px
}
h2{
  font-family:var(--serif); font-size:clamp(40px, 5vw, 82px);
  line-height:.88; letter-spacing:-.07em; font-weight:500; margin-bottom:16px
}
h3{font-size:22px; letter-spacing:-.04em; margin-bottom:10px}
.hero-copy p:not(.kicker), .page-hero p, .editorial-copy p, .split-copy p, .mini-copy, .lead, .content-card p, .policy-card p, .contact-copy p, .faq-list p{
  font-size:18px; line-height:1.75; color:var(--ink-soft)
}
.button-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:32px}
.btn{
  height:50px; display:inline-flex; align-items:center; justify-content:center;
  padding:0 22px; border:1px solid var(--ink); font-size:12px; font-weight:900;
  letter-spacing:.1em; text-transform:uppercase; cursor:pointer; transition:.22s ease;
  background:transparent;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{background:var(--ink); color:var(--cream)}
.btn-light{color:var(--ink)}
.full{width:100%}

.hero-meta{
  margin-top:30px; display:grid; grid-template-columns:repeat(3,1fr); gap:12px
}
.hero-meta div{
  background:rgba(255,255,255,.48); border:1px solid rgba(17,16,14,.08);
  padding:16px; box-shadow:var(--shadow)
}
.hero-meta strong{display:block; font-size:18px}
.hero-meta span{display:block; margin-top:4px; color:var(--ink-soft); font-size:13px; line-height:1.5}

.hero-products{
  position:relative; min-height:700px;
  background:linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.45);
  box-shadow:var(--shadow-2);
  overflow:hidden;
}
.hero-products::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 24% 24%, rgba(255,255,255,.9), transparent 34%),
    radial-gradient(circle at 74% 70%, rgba(255,255,255,.7), transparent 28%);
  pointer-events:none;
}
.floating-card{position:absolute; display:block; text-decoration:none}
.noir-card{left:4%; top:6%; width:46%}
.sidi-card{right:4%; bottom:8%; width:44%}
.floating-surface{
  display:grid; place-items:center; min-height:370px;
  border:1px solid rgba(17,16,14,.06); box-shadow:var(--shadow);
  overflow:hidden;
}
.floating-surface.dark, .dark-surface{
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,.92), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(0,0,0,.05), transparent 40%),
    linear-gradient(180deg, #eee6dc 0%, #ddd3c6 52%, #d2c7bb 100%);
}
.floating-surface.light, .light-surface{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(180deg, #fbfaf7 0%, #f0e8de 100%);
}
.floating-surface img,
.main-product-frame img,
.product-surface img,
.thumb-surface img,
.look-surface img,
.story-visual img,
.split-visual img{
  width:100%; height:100%; object-fit:contain; padding:18px;
}
.dark-surface img,
.product-surface.noir-resort-shirt img{
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.22));
}
.floating-caption{
  margin-top:10px; display:flex; justify-content:space-between; gap:12px;
  align-items:center; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.10em;
}
.floating-caption span{color:var(--ink-soft)}

.section{padding:88px 0}
.page{padding-top:126px}
.page-hero{text-align:center; padding-top:56px; padding-bottom:18px}
.feature-strip{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px
}
.feature-box, .editorial-panel-inner, .content-card, .policy-card, .value-card, .journal-card, .bag-summary, .info-card{
  background:rgba(255,255,255,.55); border:1px solid rgba(17,16,14,.08); box-shadow:var(--shadow); padding:26px
}
.feature-box span, .value-card span{
  display:inline-block; font-family:var(--serif); font-size:54px; color:var(--taupe); line-height:1
}
.feature-box p, .editorial-panel li, .value-card p, .journal-card p, .policy-card p, .info-card p{color:var(--ink-soft); line-height:1.7}
.editorial-grid{
  display:grid; grid-template-columns:1fr .9fr; gap:24px; align-items:stretch
}
.editorial-panel ul{padding-left:18px; margin:12px 0 0}
.section-head{margin-bottom:24px}

.product-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px}
.product-card{
  background:rgba(255,255,255,.4); border:1px solid rgba(17,16,14,.07);
  box-shadow:var(--shadow); overflow:hidden
}
.product-card-image{display:block; position:relative}
.product-surface{
  height:470px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.product-surface.noir-resort-shirt{
  background:
    radial-gradient(circle at 50% 16%, rgba(255,255,255,.90), transparent 28%),
    radial-gradient(circle at 50% 82%, rgba(0,0,0,.05), transparent 42%),
    linear-gradient(180deg, #eee6dc 0%, #ddd3c6 52%, #d2c7bb 100%);
}
.product-surface.sidi-resort-shirt{
  background:linear-gradient(180deg, #fbfaf7 0%, #f2ece3 100%);
}
.product-card-image .product-surface img{
  width:88%;
  height:88%;
  object-fit:contain;
  padding:26px;
}

.product-card-image span{
  position:absolute; top:18px; left:18px;
  padding:9px 12px; background:rgba(250,247,242,.9); border:1px solid rgba(17,16,14,.08);
  text-transform:uppercase; letter-spacing:.14em; font-size:10px; font-weight:900
}
.product-card-content{padding:24px}
.product-card-content > p:first-child{
  margin-bottom:8px; font-size:11px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; color:var(--taupe)
}
.mini-copy{font-size:15px!important; line-height:1.6!important}
.price-line{margin-top:18px; display:flex; justify-content:space-between; gap:16px; align-items:center}
.price-line a{font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.1em; border-bottom:1px solid var(--ink)}

.split{display:grid; grid-template-columns:.84fr 1fr; gap:34px; align-items:center}
.split.reverse{grid-template-columns:1fr .84fr}
.split.reverse .split-copy{order:2}
.split-visual{min-height:560px; box-shadow:var(--shadow-2); border:1px solid rgba(17,16,14,.06); display:grid; place-items:center; overflow:hidden}
.quote-block{
  padding-top:20px; text-align:center; border-top:1px solid var(--line)
}
.quote-block p{
  font-family:var(--serif); font-size:clamp(34px, 4vw, 66px); line-height:1;
  letter-spacing:-.05em; margin-bottom:10px
}
.quote-block span{font-size:11px; font-weight:900; letter-spacing:.2em; text-transform:uppercase; color:var(--taupe)}

.pill-row{display:flex; flex-wrap:wrap; gap:8px}
.pill{
  display:inline-flex; align-items:center; padding:9px 12px;
  background:rgba(255,255,255,.58); border:1px solid rgba(17,16,14,.09);
  font-size:11px; font-weight:900; text-transform:uppercase; letter-spacing:.1em
}

.product-page{padding-top:106px}
.product-layout{display:grid; grid-template-columns:1.04fr .76fr; gap:28px}
.main-product-frame{
  min-height:760px; display:grid; place-items:center; border:1px solid rgba(17,16,14,.08);
  box-shadow:var(--shadow-2); overflow:hidden
}
.thumb-row{display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:10px}
.thumb{background:none; border:none; padding:0; cursor:pointer}
.thumb-surface{
  min-height:160px; border:1px solid rgba(17,16,14,.08); box-shadow:var(--shadow); overflow:hidden
}
.product-info{
  position:sticky; top:110px; align-self:start; padding:34px;
  background:rgba(250,247,242,.78); border:1px solid rgba(17,16,14,.08);
  box-shadow:var(--shadow-2); backdrop-filter:blur(14px)
}
.product-info h1{font-size:clamp(48px, 6vw, 86px)}
.price{font-size:30px; font-weight:900; margin-bottom:12px}
.product-pills{margin:18px 0 22px}
.buy-panel{
  background:rgba(255,255,255,.5); border:1px solid rgba(17,16,14,.08); padding:18px; margin:20px 0
}
.selector-title{
  margin:0 0 10px; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.12em
}
.size-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:8px}
.size-button{
  border:1px solid var(--line-strong); background:transparent; padding:12px 10px;
  font-weight:900; cursor:pointer
}
.size-button.selected{background:var(--ink); color:var(--cream)}
.small-note{font-size:12px!important; line-height:1.55!important; color:var(--taupe)!important; margin-top:10px!important}
.qty{display:flex; width:160px; border:1px solid var(--line-strong); margin:12px 0 16px}
.qty button{width:46px; border:none; background:transparent; cursor:pointer; font-size:20px}
.qty input{width:68px; border:none; background:transparent; text-align:center; padding:12px}
.info-cards{display:grid; gap:12px; margin-top:18px}
.info-card strong{display:block; font-size:13px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:10px}

.product-content-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
.content-card ul{padding-left:18px; line-height:1.7; color:var(--ink-soft)}

.story-grid, .contact-layout{display:grid; grid-template-columns:.95fr 1.05fr; gap:28px; align-items:center}
.story-visual{
  min-height:580px; display:grid; place-items:center; box-shadow:var(--shadow-2); border:1px solid rgba(17,16,14,.07)
}
.values-grid, .journal-grid, .policy-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.policy-grid{grid-template-columns:repeat(2,1fr)}
.mosaic{display:grid; grid-template-columns:repeat(4,1fr); gap:14px}
.lookbook-item{padding:0; border:none; background:none; cursor:pointer}
.look-surface{
  min-height:350px;
  box-shadow:var(--shadow);
  border:1px solid rgba(17,16,14,.08);
  overflow:hidden;
  display:grid;
  place-items:center;
}
.faq-list{max-width:920px}
.faq-list details{
  background:rgba(255,255,255,.52); border:1px solid rgba(17,16,14,.08);
  padding:18px 20px; box-shadow:var(--shadow); margin-bottom:12px
}
.faq-list summary{
  cursor:pointer; font-size:13px; font-weight:900; letter-spacing:.10em; text-transform:uppercase
}
.faq-list p{margin-top:12px}

.contact-form{
  display:grid; gap:14px; background:rgba(255,255,255,.56); border:1px solid rgba(17,16,14,.08);
  box-shadow:var(--shadow-2); padding:28px
}
.contact-form label{
  display:grid; gap:8px; font-size:12px; font-weight:900; letter-spacing:.08em; text-transform:uppercase
}
.contact-form input,.contact-form textarea{
  border:1px solid rgba(17,16,14,.12); background:transparent; padding:14px
}
.contact-form textarea{min-height:150px}

.bag-layout{display:grid; grid-template-columns:1fr 340px; gap:18px; align-items:start}
.bag-items{display:grid; gap:12px}
.bag-item{
  display:grid; grid-template-columns:118px 1fr; gap:16px;
  align-items:center; background:rgba(255,255,255,.54); border:1px solid rgba(17,16,14,.08);
  box-shadow:var(--shadow); padding:16px
}
.bag-item .bag-image{
  height:136px; display:grid; place-items:center; border:1px solid rgba(17,16,14,.08); overflow:hidden
}
.bag-item .bag-image img{width:100%; height:100%; object-fit:contain; padding:8px}
.bag-item p{color:var(--ink-soft); margin-bottom:6px}

.footer{
  width:min(1240px, calc(100% - 28px)); margin:88px auto 0; padding:38px 0 54px;
  border-top:1px solid rgba(17,16,14,.10); display:grid; grid-template-columns:1fr auto auto; gap:48px
}
.footer-logo{font-family:var(--serif); font-size:44px; letter-spacing:-.08em}
.footer p, .footer a{color:var(--ink-soft)}
.footer a{display:block; margin:8px 0}
.footer-title{font-size:11px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; color:var(--ink)}

.lightbox{
  position:fixed; inset:0; background:rgba(11,10,8,.86); backdrop-filter:blur(16px);
  z-index:1000; display:grid; place-items:center; padding:24px
}
.lightbox[hidden]{display:none}
.lightbox img{
  max-width:min(1100px,100%); max-height:88vh; object-fit:contain
}
.lightbox-close{
  position:fixed; top:22px; right:22px; width:52px; height:52px;
  border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.06);
  color:#fff; font-size:32px; cursor:pointer
}

.reveal{opacity:0; transform:translateY(22px); transition:opacity .85s ease, transform .85s ease}
.reveal.visible{opacity:1; transform:translateY(0)}
.toast{
  position:fixed; left:50%; bottom:24px; transform:translateX(-50%) translateY(18px);
  background:var(--ink); color:var(--cream); padding:14px 18px; z-index:1600;
  font-size:12px; font-weight:900; letter-spacing:.08em; text-transform:uppercase;
  opacity:0; transition:.22s ease
}
.toast.show{opacity:1; transform:translateX(-50%) translateY(0)}

@media (max-width: 1024px){
  .menu-button{display:block}
  .nav{display:none; width:100%; order:3; flex-direction:column; align-items:flex-start; padding-top:14px}
  .nav.open{display:flex}
  .site-header{flex-wrap:wrap}
  .premium-hero, .editorial-grid, .split, .split.reverse, .product-layout, .story-grid, .contact-layout, .bag-layout{grid-template-columns:1fr}
  .split.reverse .split-copy{order:0}
  .feature-strip, .values-grid, .journal-grid, .policy-grid, .product-content-grid{grid-template-columns:1fr 1fr}
  .mosaic{grid-template-columns:repeat(2,1fr)}
  .product-info{position:static}
  .hero-products{min-height:560px}
  .floating-surface{min-height:280px}
  .footer{grid-template-columns:1fr}
}

@media (max-width: 680px){
  .feature-strip, .values-grid, .journal-grid, .policy-grid, .mosaic, .product-grid, .product-content-grid{grid-template-columns:1fr}
  .hero-meta{grid-template-columns:1fr}
  .hero-products{min-height:540px}
  .noir-card{left:3%; top:5%; width:58%}
  .sidi-card{right:3%; bottom:6%; width:54%}
  .product-surface{height:420px}
  .main-product-frame{min-height:500px}
  .thumb-row{grid-template-columns:repeat(2,1fr)}
  .size-grid{grid-template-columns:repeat(2,1fr)}
  .bag-item{grid-template-columns:1fr}
  .bag-item .bag-image{height:220px}
}


/* V4 refinements */
.product-card-image,
.product-surface,
.look-surface,
.thumb-surface,
.main-product-frame{
  overflow: hidden;
}

.product-card .product-surface img{
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 86%;
  object-fit: contain;
  padding: 0;
}

.product-card .product-surface.noir-resort-shirt img{
  max-width: 82%;
  max-height: 88%;
}

.product-card .product-surface.sidi-resort-shirt img{
  max-width: 84%;
  max-height: 90%;
}

.product-card-content{
  position: relative;
  z-index: 5;
  background: rgba(252,250,246,.94);
  backdrop-filter: blur(8px);
}

/* Make detail/collar lookbook images fill their square properly */
.look-surface img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.lookbook-item:nth-child(1) .look-surface img,
.lookbook-item:nth-child(2) .look-surface img,
.lookbook-item:nth-child(5) .look-surface img,
.lookbook-item:nth-child(6) .look-surface img{
  object-fit: contain;
  padding: 18px;
}

/* Product page arrows */
.main-product-frame{
  position: relative;
}

.gallery-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17,16,14,.14);
  background: rgba(252,250,246,.72);
  backdrop-filter: blur(12px);
  color: #11100e;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 24px;
  transition: .2s ease;
}

.gallery-arrow:hover{
  background: #11100e;
  color: #f5efe7;
}

.gallery-prev{ left: 16px; }
.gallery-next{ right: 16px; }

@media (max-width:680px){
  .product-card .product-surface img{
    max-width: 82%;
    max-height: 84%;
  }

  .gallery-arrow{
    width: 40px;
    height: 40px;
  }
}


/* v4 fixes */
.look-surface img{
  width:100%;
  height:100%;
  object-fit:cover;
  padding:0;
}
.product-card-content{
  position:relative;
  z-index:2;
  background:rgba(252,250,246,.82);
}
.product-card{
  position:relative;
}
.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:1px solid rgba(17,16,14,.16);
  background:rgba(250,247,242,.78);
  backdrop-filter:blur(12px);
  cursor:pointer;
  z-index:3;
  font-size:24px;
  line-height:1;
}
.gallery-arrow:hover{
  background:rgba(17,16,14,.92);
  color:var(--cream);
}
.gallery-arrow.prev{left:18px}
.gallery-arrow.next{right:18px}
.main-product-frame{position:relative}
@media (max-width:680px){
  .product-surface{height:390px}
  .product-card-image .product-surface img{width:84%;height:84%;padding:20px}
  .gallery-arrow{width:40px;height:40px}
}

.thumb.active .thumb-surface{
  outline:2px solid rgba(17,16,14,.42);
  outline-offset:2px;
}

/* Waitlist modal */
.waitlist-modal{
  position:fixed; inset:0; z-index:2000;
  display:flex; align-items:center; justify-content:center; padding:20px;
}
.waitlist-modal[hidden]{display:none}
.waitlist-backdrop{
  position:absolute; inset:0; background:rgba(17,16,14,.55);
}
.waitlist-panel{
  position:relative; background:var(--cream);
  max-width:420px; width:100%; padding:36px 30px 30px;
  border:1px solid var(--ink);
}
.waitlist-close{
  position:absolute; top:12px; right:14px;
  background:none; border:none; font-size:24px; line-height:1;
  cursor:pointer; color:var(--ink); padding:6px;
}
.waitlist-panel h3{
  font-family:var(--serif); font-size:30px; margin:4px 0 10px; letter-spacing:-.02em;
}
.waitlist-copy{color:var(--ink-soft); line-height:1.6; margin-bottom:22px; font-size:15px}
.waitlist-field{display:block; margin-bottom:14px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-soft)}
.waitlist-field input{
  display:block; width:100%; margin-top:7px; padding:11px 12px;
  border:1px solid var(--ink); background:transparent;
  font-size:15px; font-family:var(--sans); color:var(--ink);
}
.waitlist-field input:focus{outline:2px solid var(--ink); outline-offset:1px}
.waitlist-status{margin-top:12px; font-size:13px; color:var(--ink-soft); min-height:18px}
.waitlist-status.is-error{color:#a13a2f}

/* Cookie consent banner */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:2500;
  background:var(--ink); color:var(--cream);
  padding:18px 24px; padding-bottom:calc(18px + env(safe-area-inset-bottom, 0px));
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  flex-wrap:wrap;
}
.cookie-banner p{
  margin:0; font-size:13px; line-height:1.5; color:var(--cream); max-width:640px;
}
.cookie-banner p a{ color:var(--cream); text-decoration:underline; }
.cookie-banner-actions{ display:flex; gap:10px; flex-shrink:0; }
.cookie-banner .btn{ padding:9px 18px; font-size:13px; white-space:nowrap; }
.cookie-banner .btn-light{ background:transparent; color:var(--cream); border:1px solid var(--cream); }
.cookie-banner .btn-dark{ background:var(--cream); color:var(--ink); border:1px solid var(--cream); }
@media (max-width:600px){
  .cookie-banner{ flex-direction:column; align-items:stretch; text-align:left; }
  .cookie-banner-actions{ justify-content:flex-end; }
}
