/* =========================================================================
   LAST SEVEN DAYS — quiet-luxury editorial menswear
   Display: Archivo (expanded, all-caps).  Body: Manrope.
   Ground: bone / ivory.  Ink: noir.  Warmth: espresso / terracotta.
   ========================================================================= */

:root {
  --bone:      #E8E2D5;
  --ivory:     #F5F1E8;
  --paper:     #EFEAE0;   /* subtle secondary ground */
  --noir:      #141414;
  --ink:       #1c1a17;
  --muted:     #6f675c;
  --faint:     #a49b8c;
  --espresso:  #4A3527;
  --terra:     #97694a;
  --line:      rgba(20,20,20,.14);
  --line-soft: rgba(20,20,20,.08);
  --maxw:      1320px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; font-weight: 400; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 40px; }

/* Display type */
.display, h1, h2, h3 {
  font-family: 'Archivo', 'Arial Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-stretch: expanded;
}

/* Small-caps label */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-accent { color: var(--terra); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 34px; border: 1px solid var(--noir); background: var(--noir); color: var(--ivory);
  cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s;
}
.btn:hover { background: transparent; color: var(--noir); }
.btn-ghost { background: transparent; color: var(--noir); }
.btn-ghost:hover { background: var(--noir); color: var(--ivory); }
.btn-light { background: var(--ivory); color: var(--noir); border-color: var(--ivory); }
.btn-light:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); }

.link-underline {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  border-bottom: 1px solid var(--noir); padding-bottom: 3px;
  transition: color .25s, border-color .25s, opacity .25s;
}
.link-underline:hover { color: var(--terra); border-color: var(--terra); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(232,226,213,.9);
  backdrop-filter: saturate(120%) blur(12px);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  max-width: 1600px; margin: 0 auto; padding: 0 40px; height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-stretch: expanded;
  font-size: 17px; letter-spacing: .16em; text-transform: uppercase; color: var(--noir);
}
.brand img { height: 30px; width: auto; }

.nav { display: flex; }
.nav-links { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; align-items: center; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--noir);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta-mobile { display: none; }

.header-right { display: flex; align-items: center; gap: 20px; }
.header-shop {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--noir); padding: 11px 20px; transition: background .3s, color .3s;
}
.header-shop:hover { background: var(--noir); color: var(--ivory); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; padding: 10px 8px; }
.nav-toggle span { height: 1.5px; background: var(--noir); transition: transform .3s, opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  background: var(--noir); overflow: hidden;
}
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .92;
  transform: scale(1.04); transition: transform 8s var(--ease); }
.hero.in .hero-img img { transform: scale(1); }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,.32) 0%, rgba(10,9,8,0) 34%, rgba(10,9,8,.62) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 40px 72px; max-width: 1600px; margin: 0 auto; color: var(--ivory); }
.hero .label { color: rgba(245,241,232,.72); }
.hero h1 {
  font-size: clamp(46px, 9vw, 150px); line-height: .9; color: var(--ivory);
  margin: 18px 0 22px; letter-spacing: 0;
}
.hero-sub { font-size: clamp(15px, 1.5vw, 20px); max-width: 540px; color: rgba(245,241,232,.9); line-height: 1.55; font-weight: 300; }
.hero-actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.scroll-cue { position: absolute; right: 40px; bottom: 72px; z-index: 2; color: rgba(245,241,232,.7);
  writing-mode: vertical-rl; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }

/* =========================================================================
   SECTION SHELLS
   ========================================================================= */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section-ivory { background: var(--ivory); }
.section-paper { background: var(--paper); }
.section-noir { background: var(--noir); color: var(--ivory); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head .h { max-width: 760px; }
.section-title { font-size: clamp(30px, 4.2vw, 62px); line-height: .98; margin-top: 16px; }
.section-noir .section-title, .section-noir h2, .section-noir h3 { color: var(--ivory); }
.section-noir .label { color: rgba(245,241,232,.62); }
.lead { font-size: clamp(17px, 2vw, 22px); font-weight: 300; line-height: 1.5; color: var(--ink); max-width: 720px; }

/* =========================================================================
   COLORWAY STRIP  (type moment)
   ========================================================================= */
.colorways {
  display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.colorway {
  padding: 34px 20px; text-align: center; border-right: 1px solid var(--line-soft);
  transition: background .4s var(--ease);
}
.colorway:last-child { border-right: 0; }
.colorway:hover { background: var(--ivory); }
.cw-swatch { display: block; width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 16px; border: 1px solid var(--line); box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.cw-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-stretch: expanded; text-transform: uppercase; letter-spacing: .1em; font-size: 15px; }
.cw-idx { display: block; font-size: 10px; letter-spacing: .24em; color: var(--faint); margin-top: 6px; }

/* =========================================================================
   PRODUCT GRID
   ========================================================================= */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px 8px; }
.product-grid.g4 { grid-template-columns: repeat(4, 1fr); }
.product-grid.g3 { grid-template-columns: repeat(3, 1fr); }

.product-card { display: block; background: var(--ivory); }
.product-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper); }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .6s var(--ease), transform 1.2s var(--ease); }
.product-media .p-hover { opacity: 0; }
.product-card:hover .p-primary { opacity: 0; transform: scale(1.03); }
.product-card:hover .p-hover { opacity: 1; transform: scale(1.03); }
.product-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  background: rgba(245,241,232,.86); color: var(--ink); padding: 5px 10px;
}
.product-view {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; text-align: center;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  background: var(--noir); color: var(--ivory); padding: 14px; opacity: 0; transform: translateY(100%);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.product-card:hover .product-view { opacity: 1; transform: none; }
.product-info { padding: 16px 4px 26px; display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.product-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-stretch: expanded; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; line-height: 1.25; }
.product-color { display: block; font-family: 'Manrope', sans-serif; font-weight: 500; text-transform: none; letter-spacing: .04em; font-size: 11px; color: var(--muted); margin-top: 5px; }
.product-price { font-size: 14px; font-weight: 600; white-space: nowrap; }

/* =========================================================================
   HENLEY SPOTLIGHT BAND
   ========================================================================= */
.spotlight { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; min-height: 620px; }
.spotlight-media { position: relative; overflow: hidden; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-body { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(40px, 6vw, 96px); }
.spotlight-body h2 { font-size: clamp(34px, 4.4vw, 64px); margin: 20px 0 24px; }
.spotlight-price { font-size: 15px; letter-spacing: .1em; margin: 4px 0 30px; color: var(--muted); }
.spotlight-thumbs { display: flex; gap: 10px; margin-top: 40px; }
.spotlight-thumbs img { width: 96px; height: 120px; object-fit: cover; }

/* =========================================================================
   EDITORIAL SPLIT
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 6vw, 90px); }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { aspect-ratio: 4/5; overflow: hidden; background: var(--paper); }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.split-media:hover img { transform: scale(1.04); }
.split-body h2 { font-size: clamp(30px, 3.6vw, 54px); margin: 18px 0 22px; }
.split-body p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0 0 26px; }

/* =========================================================================
   LOOKBOOK MASONRY
   ========================================================================= */
.masonry { columns: 3; column-gap: 8px; }
.masonry-item { break-inside: avoid; margin-bottom: 8px; position: relative; overflow: hidden; }
.masonry-item img { width: 100%; height: auto; transition: transform 1.4s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-cap {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 16px;
  background: linear-gradient(0deg, rgba(10,9,8,.55), transparent);
  color: var(--ivory); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0; transition: opacity .4s var(--ease);
}
.masonry-item:hover .masonry-cap { opacity: 1; }

.lb-break { position: relative; overflow: hidden; margin: 8px 0; }
.lb-break img { width: 100%; height: clamp(340px, 60vh, 700px); object-fit: cover; }

/* =========================================================================
   INSTAGRAM
   ========================================================================= */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.ig-frame { border: 1px solid var(--line); background: var(--ivory); min-height: 560px; overflow: hidden; display: flex; }
.ig-frame iframe { width: 100%; border: 0; min-height: 560px; }
.ig-tile {
  border: 1px solid var(--line); background: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 30px; gap: 18px; min-height: 560px;
}
.ig-tile h3 { font-size: 24px; }
.ig-tile .label { color: var(--muted); }

/* =========================================================================
   NEWSLETTER BAND
   ========================================================================= */
.news { text-align: center; }
.news h2 { font-size: clamp(30px, 4vw, 58px); margin: 18px 0 18px; }
.news p { color: rgba(245,241,232,.72); max-width: 520px; margin: 0 auto 34px; font-weight: 300; }
.news-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; border: 1px solid rgba(245,241,232,.28); }
.news-form input {
  flex: 1; background: transparent; border: 0; color: var(--ivory); padding: 16px 20px;
  font-family: 'Manrope', sans-serif; font-size: 14px; letter-spacing: .04em;
}
.news-form input::placeholder { color: rgba(245,241,232,.5); }
.news-form input:focus { outline: none; }
.news-form button {
  background: var(--ivory); color: var(--noir); border: 0; padding: 0 28px; cursor: pointer;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  transition: background .3s, color .3s; white-space: nowrap;
}
.news-form button:hover { background: var(--terra); color: var(--ivory); }
.news-fine { font-size: 11px; letter-spacing: .1em; color: rgba(245,241,232,.5); margin-top: 18px; }

/* =========================================================================
   PAGE HERO (interior)
   ========================================================================= */
.page-hero { padding: 168px 0 60px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(42px, 7vw, 104px); line-height: .92; margin: 16px 0 20px; }
.page-hero p { color: var(--muted); max-width: 640px; font-size: 17px; }

/* =========================================================================
   SHOP FILTER CHIPS
   ========================================================================= */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; align-items: center; }
.chip {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 9px 18px; border: 1px solid var(--line); background: transparent; color: var(--ink);
  cursor: pointer; transition: background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--noir); }
.chip.active { background: var(--noir); color: var(--ivory); border-color: var(--noir); }

/* =========================================================================
   STORY
   ========================================================================= */
.story-block { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 56px 0; border-top: 1px solid var(--line); }
.story-block h2 { font-size: clamp(26px, 3vw, 44px); margin-bottom: 20px; }
.story-block p { color: var(--muted); font-size: 17px; line-height: 1.75; max-width: 640px; }
.founder { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.founder-media { aspect-ratio: 4/5; overflow: hidden; background: var(--paper); }
.founder-media img { width: 100%; height: 100%; object-fit: cover; }
.founder-body h2 { font-size: clamp(28px, 3.4vw, 50px); margin: 16px 0 22px; }
.founder-body p { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 26px; }
.cross-link { display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--line); padding: 16px 22px; transition: border-color .3s, background .3s; }
.cross-link:hover { border-color: var(--noir); background: var(--ivory); }
.cross-link .label { color: var(--terra); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ivory); border: 1px solid var(--line); color: var(--ink);
  padding: 14px 16px; font-family: 'Manrope', sans-serif; font-size: 15px;
  transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--noir); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-side h3 { font-size: 15px; letter-spacing: .1em; margin-bottom: 22px; }
.contact-line { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-line .cl { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 5px; }
.contact-line .cv { font-size: 15px; }
.flash { padding: 16px 20px; margin-bottom: 26px; font-size: 14px; letter-spacing: .02em; border: 1px solid var(--noir); }
.flash-success { background: var(--noir); color: var(--ivory); }
.flash-error { background: #f6e5e0; border-color: #b25a3e; color: #7a2f18; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--noir); color: var(--ivory); padding: 80px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(245,241,232,.14); }
.footer-brand .brand { color: var(--ivory); margin-bottom: 20px; }
.footer-tag { color: rgba(245,241,232,.66); max-width: 320px; font-weight: 300; line-height: 1.55; }
.footer-div { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(245,241,232,.5); margin-top: 22px; }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: rgba(245,241,232,.6); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(245,241,232,.85); font-size: 14px; transition: color .25s; }
.footer-col a:hover { color: var(--terra); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 30px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 11px; letter-spacing: .1em; color: rgba(245,241,232,.5); }
.footer-socials { display: flex; gap: 22px; }
.footer-socials a { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,241,232,.7); transition: color .25s; }
.footer-socials a:hover { color: var(--ivory); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .product-grid.g4 { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .container, .container-wide { padding: 0 22px; }
  .header-inner { padding: 0 22px; height: 66px; }
  .nav, .header-shop { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: block; position: fixed; inset: 66px 0 auto 0; background: var(--bone);
    border-bottom: 1px solid var(--line); padding: 22px 22px 30px;
  }
  .nav.open .nav-links { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav.open .nav-links a { display: block; padding: 12px 0; font-size: 15px; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-cta-mobile { display: block; margin-top: 16px; }
  .nav-cta-mobile .btn { width: 100%; }
  .section { padding: 72px 0; }
  .colorways { grid-template-columns: repeat(3, 1fr); }
  .colorway:nth-child(3) { border-right: 0; }
  .product-grid.g4, .product-grid.g3 { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 420px; }
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-media { order: -1; }
  .ig-grid { grid-template-columns: 1fr; }
  .story-block { grid-template-columns: 1fr; gap: 16px; }
  .founder { grid-template-columns: 1fr; }
  .founder-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .hero-inner { padding-bottom: 48px; }
  .scroll-cue { display: none; }
}
@media (max-width: 520px) {
  .product-grid.g4, .product-grid.g3, .product-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 1; }
  .footer-top { grid-template-columns: 1fr; }
}
