/* ════════════════════════════════════════════════════════════════════
   SILT — Luxury Beverage Atelier
   Sage · Sand · Black — matched to the SILT visual language
   ════════════════════════════════════════════════════════════════════ */

:root{
  --bone:      #E8DCC0;   /* warm sand base */
  --paper:    #F2E8CE;   /* lighter cream */
  --paper-2: #DDCDA8;    /* deeper sand panel */
  --sage:    #5D6B4E;    /* PDF sage */
  --moss:    #3F4A33;    /* darker sage */
  --moss-2: #2D3525;     /* deep moss */
  --ink:     #1A1816;    /* warm black */
  --ink-2:  #2C2823;     /* warm dark */
  --rust:    #B85C3F;    /* terracotta accent */
  --brass:   #B89456;    /* gold */
  --rule:    rgba(26,24,22,0.18);
  --rule-2: rgba(26,24,22,0.08);
  --paper-rule: rgba(242,232,206,0.2);
  --muted:   rgba(26,24,22,0.6);

  --display: "Bricolage Grotesque", "Helvetica Neue", system-ui, sans-serif;
  --italic:   "Cormorant Garamond", Georgia, serif;
  --body:    "DM Sans", "Helvetica Neue", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html,body{ background: var(--bone); color: var(--ink); }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:none; background:none; border:none; color:inherit; }
em, i{ font-style:italic; font-family: var(--italic); font-weight: 400; }

::selection{ background: var(--ink); color: var(--bone); }

/* ─── Grain overlay ─────────────────────────────────────────── */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:9000;
  opacity:0.32; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.35  0 0 0 0 0.3  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 7s steps(8) infinite;
}
@keyframes grain{
  0%,100%{ transform: translate(0,0) }
  10%   { transform: translate(-3%, -2%) }
  20%   { transform: translate(2%, 3%) }
  30%   { transform: translate(-1%, 4%) }
  40%   { transform: translate(3%, -2%) }
  50%   { transform: translate(-3%, 1%) }
  60%   { transform: translate(4%, 3%) }
  70%   { transform: translate(-2%, -4%) }
  80%   { transform: translate(2%, 2%) }
  90%   { transform: translate(-3%, -1%) }
}

/* ─── Custom cursor ─────────────────────────────────────────── */
.cursor{
  position: fixed; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink);
  pointer-events:none; z-index:10000;
  transform: translate(-50%,-50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring{
  position: fixed; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(26,24,22,0.4);
  pointer-events:none; z-index:9999;
  transform: translate(-50%,-50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s;
}
.cursor.hover{ width: 20px; height: 20px; }
.cursor-ring.hover{ width: 64px; height: 64px; border-color: var(--ink); }

/* ─── Loader ─────────────────────────────────────────────────── */
.loader{
  position: fixed; inset:0; z-index:11000;
  background: var(--bone);
  display:grid; place-items:center;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.loader.done{ opacity:0; visibility:hidden; }
.loader-cover{
  position:absolute; left:0; right:0; bottom:0; height:0;
  background: var(--sage);
  transition: height 0.9s var(--ease-2);
}
.loader.done .loader-cover{ height: 100%; }
.loader-inner{
  display:grid; gap: 36px; justify-items:center; width: min(360px, 80vw);
  position: relative; z-index: 2;
}
.loader-mark{
  font-family: var(--display);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 96;
  display:grid; gap: 0;
}
.lm-si, .lm-lt{ display:block; }
.loader-bar{
  width: 100%; height: 1px; background: rgba(26,24,22,0.15); position:relative; overflow:hidden;
}
.loader-bar span{
  position:absolute; inset:0; background: var(--ink);
  transform: scaleX(0); transform-origin:left;
  animation: loadbar 2s var(--ease-2) forwards;
}
@keyframes loadbar{ 0%{ transform: scaleX(0); } 100%{ transform: scaleX(1); } }
.loader-meta{
  display:flex; justify-content:space-between; width:100%;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 40px;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  padding: 12px 40px;
  background: rgba(232,220,192,0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.nav-brand{
  display:flex; align-items:center; gap: 16px;
}
.nav-mark{
  display: grid; gap: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-mark b{ display:block; font-weight: 700; }
.nav-tag{
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 16px;
  border-left: 1px solid var(--rule);
}
.nav-links{
  display: flex; gap: 36px;
}
.nav-links a{
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  position:relative;
  padding: 8px 0;
  display:inline-flex; gap: 6px; align-items:baseline;
}
.nav-links a i{
  font-family: var(--italic);
  font-style: italic;
  font-size: 12px;
  color: var(--sage);
  letter-spacing: 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0;
  height: 1px; width: 100%; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav-links a:hover::after{ transform: scaleX(1); transform-origin: left; }

.nav-cta{
  display:inline-flex; align-items:center; gap: 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--ink); color: var(--bone);
  transition: background 0.4s var(--ease), color 0.4s, padding 0.4s var(--ease);
}
.nav-cta svg{ width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.nav-cta:hover{ padding-right: 30px; }
.nav-cta:hover svg{ transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.hero{
  min-height: 100vh;
  padding: 110px 32px 60px;
  position: relative;
}
.hero-frame{
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 60px 56px;
  min-height: calc(100vh - 200px);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
.hero-frame::before{
  content:""; position:absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 10% 100%, rgba(93,107,78,0.16), transparent 60%);
  pointer-events: none;
}

.hero-left{
  display: flex; flex-direction: column;
  position: relative; z-index: 2;
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.hero-eyebrow .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(184,92,63,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(184,92,63,0.18); }
  50%{ box-shadow: 0 0 0 9px rgba(184,92,63,0); }
}

.hero-monogram{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(120px, 16vw, 240px);
  line-height: 0.84;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 96, "wght" 700;
}
.hm-row{ display: block; }

.hero-tag{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}

.hero-divider{
  width: 100px; height: 1px; background: var(--ink);
  margin-bottom: 28px;
}

.hero-place{
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 48px;
}
.hero-place em{
  font-family: var(--italic); font-style: italic;
  color: var(--sage);
  font-weight: 400;
}

.hero-meta{
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-meta > div{ display: flex; flex-direction: column; gap: 4px; }
.hero-meta b{
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 96;
}
.hero-meta span{
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

.hero-right{
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
}
.hero-image{
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--moss);
}
.hero-image img{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 1.6s var(--ease);
}
.hero-image::after{
  content:""; position: absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,18,15,0.35));
  pointer-events: none;
}
.hero-right:hover .hero-image img{ transform: scale(1.04); }
.hero-right figcaption{
  display:flex; align-items: center; gap: 10px;
  margin-top: 14px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.hero-right figcaption .bullet{ color: var(--rust); }

.hero-scroll{
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 28px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
}
.ss-line{
  display: inline-block; width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink), transparent);
  position: relative; overflow: hidden;
}
.ss-line::after{
  content:""; position: absolute; inset:0;
  background: linear-gradient(90deg, transparent, var(--bone), transparent);
  animation: shimmer 2.4s ease-in-out infinite;
}
@keyframes shimmer{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(100%); }
}

/* ════════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════════ */
.marquee{
  background: var(--sage);
  color: var(--bone);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--moss);
  border-bottom: 1px solid var(--moss);
}
.marquee.dark{ background: var(--moss-2); color: var(--bone); }
.marquee-track{
  display: flex; gap: 36px; white-space: nowrap;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.005em;
  animation: marquee 36s linear infinite;
}
.marquee-track.slow{ animation-duration: 64s; font-size: 40px; }
.marquee-track span{ font-style: normal; font-weight: 500; }
.marquee-track i{ color: rgba(232,220,192,0.5); font-style: normal; }
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════════
   CHAPTER MARK
   ════════════════════════════════════════════════════════════════════ */
.chapter{
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 60px;
}
.chapter b{
  font-family: var(--italic); font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0;
  font-weight: 500;
}
.chapter .rule{ flex: 0 0 90px; height: 1px; background: var(--ink); opacity: 0.4; }
.chapter.on-sage{ color: rgba(232,220,192,0.7); }
.chapter.on-sage b{ color: var(--bone); }
.chapter.on-sage .rule{ background: var(--bone); opacity: 0.4; }

.section-head{
  margin-bottom: 80px;
  max-width: 920px;
}
.section-head.on-sage{ color: var(--bone); }
.section-head p{
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
  margin-top: 20px;
}
.section-head.on-sage p{ color: rgba(232,220,192,0.75); }

.section-title{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.section-title em{
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: -0.01em;
}
.section-head.on-sage .section-title{ color: var(--bone); }
.section-head.on-sage .section-title em{ color: var(--paper-2); }
.section-title.big{ font-size: clamp(48px, 6vw, 96px); line-height: 1; }

/* ════════════════════════════════════════════════════════════════════
   CONCEPT
   ════════════════════════════════════════════════════════════════════ */
.concept{
  padding: 130px 40px 130px;
  background: var(--bone);
}
.concept-top{
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 80px;
  margin-bottom: 80px;
}
.concept-title{
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  color: var(--muted);
  letter-spacing: -0.02em;
}
.concept-title em{
  display: block;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: 1.1em;
  margin-top: 12px;
}
.concept-title .big{
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-top: 18px;
  font-variation-settings: "opsz" 96;
}

.concept-copy{
  padding-top: 60px;
}
.concept-copy .lede{
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--sage);
}
.concept-copy p:not(.lede){
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 42ch;
}

.concept-collage{
  display: grid;
  grid-template-columns: 4fr 3fr 4fr;
  grid-template-rows: 1fr;
  gap: 20px;
}
.concept-collage figure{
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  display: flex; flex-direction: column;
}
.concept-collage figure img{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  flex: 1;
  transition: transform 1.4s var(--ease);
}
.concept-collage figure:hover img{ transform: scale(1.04); }
.concept-collage figure figcaption{
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: var(--bone);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  padding: 6px 12px;
  background: rgba(45,53,37,0.55);
  backdrop-filter: blur(4px);
}
.concept-collage figure figcaption em{ font-style: italic; color: var(--bone); }
.cc-1{ grid-row: 1 / -1; aspect-ratio: auto; min-height: 520px; }
.cc-right{ display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.cc-2, .cc-3{ min-height: 0; }
.cc-4{ grid-row: 1 / -1; min-height: 520px; }

/* ════════════════════════════════════════════════════════════════════
   SILT — THE NAME
   ════════════════════════════════════════════════════════════════════ */
.silt{
  padding: 130px 40px;
  background: var(--sage);
  color: var(--bone);
  position: relative;
}
.silt-grid{
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-rows: auto auto;
  gap: 60px 60px;
  align-items: start;
}
.silt-acronym{
  grid-column: 1;
  grid-row: 1;
  border-top: 1px solid var(--paper-rule);
  padding-top: 32px;
}
.silt-eyebrow{
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: rgba(232,220,192,0.6);
  margin-bottom: 32px;
}
.silt-rows{ display: grid; gap: 10px; }
.silt-row{
  display: grid; grid-template-columns: 80px 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-rule);
}
.silt-row b{
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  color: var(--bone);
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 96;
}
.silt-row span{
  font-family: var(--italic);
  font-style: italic;
  font-size: 28px;
  color: var(--paper-2);
}
.silt-foot{
  margin-top: 32px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(232,220,192,0.8);
}
.silt-foot em{ color: var(--bone); font-size: 1.05em; }

.silt-images{
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.silt-img{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 1.4s var(--ease), filter 0.6s;
}
.silt-img:hover{ transform: scale(1.03); filter: brightness(1.05) contrast(1.05); }
.si-1{ grid-column: 1; grid-row: 1; aspect-ratio: 3/4; }
.si-2{ grid-column: 2 / span 2; grid-row: 1 / span 2; aspect-ratio: auto; min-height: 100%; }
.si-3{ grid-column: 1; grid-row: 2; aspect-ratio: 3/4; }
.si-4{ display: none; }

.silt-goal{
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 60px;
  border-top: 1px solid var(--paper-rule);
}
.silt-goal .label{
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(232,220,192,0.65);
  margin-bottom: 24px;
  display: block;
}
.silt-goal p{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.25;
  color: var(--bone);
  letter-spacing: -0.015em;
}
.silt-goal p em{
  font-family: var(--italic); font-style: italic; font-weight: 400;
  color: var(--paper-2);
}
.silt-goal p.small{
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(232,220,192,0.85);
  font-family: var(--body);
}

/* ════════════════════════════════════════════════════════════════════
   MANIFESTO
   ════════════════════════════════════════════════════════════════════ */
.manifesto{
  background: var(--moss-2);
  padding: 0;
}
.manifesto-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
  min-height: 100vh;
}
.m-tile{
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--moss);
}
.m-tile img{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(0.86);
  transition: transform 1.6s var(--ease), filter 0.6s;
}
.m-tile:hover img{ transform: scale(1.05); filter: brightness(1); }
.m-tile.m-text{
  background: var(--moss-2);
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  color: var(--bone);
  border-left: 1px solid rgba(232,220,192,0.08);
  border-right: 1px solid rgba(232,220,192,0.08);
}
.m-text p{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 4px 0;
}
.m-text p em{
  font-family: var(--italic); font-style: italic; font-weight: 400;
  color: var(--paper-2);
}
.m-text .m-footer{
  margin-top: 24px;
  font-family: var(--italic); font-style: italic;
  font-size: 16px;
  color: rgba(232,220,192,0.7);
  font-weight: 400;
}
.reveal-line{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-line.in{ opacity: 1; transform: none; }
.reveal-line:nth-child(1){ transition-delay: 0.0s; }
.reveal-line:nth-child(2){ transition-delay: 0.15s; }
.reveal-line:nth-child(3){ transition-delay: 0.3s; }
.reveal-line:nth-child(4){ transition-delay: 0.45s; }
.reveal-line:nth-child(5){ transition-delay: 0.7s; }

/* ════════════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════════════ */
.services{
  padding: 130px 40px;
  background: var(--bone);
}
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.service{
  display: flex; flex-direction: column;
  gap: 24px;
}
.s-image{
  aspect-ratio: 4/3;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}
.s-image img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease), filter 0.6s;
  filter: brightness(0.96);
}
.service:hover .s-image img{ transform: scale(1.05); filter: brightness(1.02); }
.s-body{ display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.s-num{
  font-family: var(--italic); font-style: italic;
  font-size: 18px;
  color: var(--sage);
}
.service h3{
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.service p{
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
}

/* ════════════════════════════════════════════════════════════════════
   HANDS — FOUNDERS
   ════════════════════════════════════════════════════════════════════ */
.hands{
  padding: 130px 40px;
  background: var(--sage);
  color: var(--bone);
}
.founders{
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 80px;
  margin: 60px 0 80px;
}
.founders-rule{
  width: 1px;
  background: rgba(232,220,192,0.18);
}
.founder{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.f-portrait{
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--moss);
  position: relative;
}
.f-portrait img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.8s var(--ease), transform 1.4s var(--ease);
}
.founder:hover .f-portrait img{ filter: grayscale(0) brightness(1.05); transform: scale(1.03); }

.f-body{ display: flex; flex-direction: column; }
.f-body h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--bone);
  font-variation-settings: "opsz" 96;
  margin-bottom: 4px;
}
.f-role{
  font-family: var(--italic); font-style: italic;
  font-size: 18px;
  color: var(--paper-2);
  margin-bottom: 28px;
}
.f-points{
  list-style: none;
  display: grid; gap: 8px;
  padding-top: 20px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(232,220,192,0.18);
  padding-top: 20px;
}
.f-points li{
  display: flex; gap: 12px;
  font-size: 15px;
  color: rgba(232,220,192,0.9);
  line-height: 1.5;
}
.f-points li span{ color: var(--rust); font-weight: 700; }
.founder blockquote{
  font-family: var(--italic); font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--bone);
  padding-left: 20px;
  border-left: 1px solid var(--paper-2);
}

.why-matters{
  border-top: 1px solid rgba(232,220,192,0.18);
  padding-top: 60px;
  max-width: 980px;
}
.why-matters .label{
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-2);
  margin-bottom: 24px;
  display: block;
}
.why-matters p{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  color: var(--bone);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.why-matters p em{
  font-family: var(--italic); font-style: italic;
  color: var(--paper-2);
  font-weight: 400;
}
.why-matters blockquote{
  font-family: var(--italic); font-style: italic;
  font-size: 18px;
  color: rgba(232,220,192,0.85);
  padding-left: 24px;
  border-left: 2px solid var(--rust);
}

/* ════════════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════════════ */
.stats{
  padding: 130px 40px;
  background: var(--bone);
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.stat{
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.stat-num{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 140px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 96;
}
.stat-num.italic{
  font-family: var(--italic); font-style: italic; font-weight: 500;
  color: var(--sage);
  font-size: clamp(56px, 7vw, 110px);
}
.stat-label{
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
  max-width: 22ch;
}
.stat-label em{
  font-family: var(--italic); font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--sage);
  font-size: 14px;
}

/* ════════════════════════════════════════════════════════════════════
   PROMISE
   ════════════════════════════════════════════════════════════════════ */
.promise{
  padding: 130px 40px;
  background: var(--moss);
  color: var(--bone);
  position: relative;
}
.promise-quote{
  max-width: 1100px;
  margin: 40px auto 100px;
  text-align: center;
}
.promise-quote .section-title{
  color: var(--bone);
}
.promise-quote .section-title em{
  color: var(--paper-2);
}
.promise-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(232,220,192,0.12);
  border-top: 1px solid rgba(232,220,192,0.12);
  border-bottom: 1px solid rgba(232,220,192,0.12);
  max-width: 1100px;
  margin: 0 auto;
}
.p-item{
  background: var(--moss);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.4s;
}
.p-item:hover{ background: var(--moss-2); }
.p-q{
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(232,220,192,0.65);
}
.p-a{
  font-family: var(--italic); font-style: italic;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--bone);
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════════ */
.contact{
  padding: 130px 40px;
  background: var(--bone);
}
.contact-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-left .section-title{ margin-bottom: 32px; }
.contact-sub{
  font-family: var(--italic); font-style: italic;
  font-size: 20px;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 56px;
  line-height: 1.4;
}
.contact-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  max-width: 620px;
}
.contact-form label{ display: flex; flex-direction: column; gap: 10px; }
.contact-form label.full{ grid-column: 1 / -1; }
.contact-form span{
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sage);
}
.contact-form input{
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  outline: none;
  cursor: none;
  transition: border-color 0.4s;
}
.contact-form input::placeholder{ color: rgba(26,24,22,0.3); }
.contact-form input:focus{ border-bottom-color: var(--ink); }
.contact-form button{
  grid-column: 1 / -1;
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 18px 32px;
  background: var(--ink); color: var(--bone);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  align-self: start; justify-self: start;
  transition: padding 0.4s var(--ease);
}
.contact-form button:hover{ padding-right: 40px; }
.contact-form button svg{ width: 18px; height: 18px; }
.contact-form button[disabled]{ opacity: 0.6; cursor: not-allowed; }
.form-status{
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 1em;
}
.form-status.is-ok{ color: var(--moss); }
.form-status.is-err{ color: var(--rust); }

.contact-right{
  display: grid;
  gap: 32px;
  padding: 32px 36px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.cr-block .label{
  display: block;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.cr-block p, .cr-block a{
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}
.cr-block a:hover{ color: var(--sage); }
.cr-tagline{
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--italic); font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.5;
}
.cr-tagline em{ color: var(--sage); font-size: 22px; }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */
.footer{
  padding: 80px 40px 24px;
  background: var(--ink);
  color: var(--bone);
  text-align: center;
}
.footer-mark{
  font-family: var(--display);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.85;
  letter-spacing: -0.035em;
  color: var(--bone);
  font-variation-settings: "opsz" 96;
  display: inline-grid;
  margin-bottom: 28px;
}
.fm-row{ display: block; }
.footer-tag{
  font-family: var(--italic); font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--paper-2);
  margin-bottom: 56px;
}
.footer .marquee{
  margin: 0 -40px 40px;
}
.footer-bottom{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(232,220,192,0.55);
  padding-top: 32px;
  border-top: 1px solid rgba(232,220,192,0.12);
}
.footer-bottom a:hover{ color: var(--bone); }

/* ════════════════════════════════════════════════════════════════════
   REVEAL
   ════════════════════════════════════════════════════════════════════ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in{ opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1180px){
  .nav-links{ display: none; }
  .nav-tag{ display: none; }
}
@media (max-width: 1024px){
  .hero{ padding: 100px 20px 40px; }
  .hero-frame{ grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .hero-right{ min-height: 460px; }
  .hero-image{ min-height: 460px; }
  .concept-top{ grid-template-columns: 1fr; gap: 40px; }
  .concept-copy{ padding-top: 0; }
  .concept-collage{ grid-template-columns: 1fr 1fr; }
  .cc-1, .cc-4{ grid-row: auto; min-height: 360px; }
  .cc-1{ aspect-ratio: 3/4; }
  .silt-grid{ grid-template-columns: 1fr; }
  .silt-acronym, .silt-images, .silt-goal{ grid-column: 1; }
  .silt-images{ grid-row: auto; }
  .silt-goal{ grid-row: auto; grid-template-columns: 1fr; gap: 32px; }
  .manifesto-grid{ grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: auto; }
  .m-tile{ aspect-ratio: 4/3; }
  .m-tile.m-text{ aspect-ratio: auto; padding: 60px 24px; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .founders{ grid-template-columns: 1fr; gap: 60px; }
  .founders-rule{ width: 100%; height: 1px; }
  .founder{ grid-template-columns: 200px 1fr; gap: 28px; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .promise-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 680px){
  body{ cursor: auto; }
  .cursor, .cursor-ring{ display: none; }
  .nav{ padding: 16px 20px; }
  .nav.scrolled{ padding: 12px 20px; }
  .hero-frame{ padding: 32px 20px; }
  .hero-monogram{ font-size: clamp(96px, 26vw, 160px); }
  .hero-meta{ grid-template-columns: 1fr 1fr; gap: 20px; }
  .concept, .silt, .services, .hands, .stats, .promise, .contact{ padding: 90px 20px; }
  .concept-collage{ grid-template-columns: 1fr; }
  .cc-right{ grid-template-rows: auto auto; }
  .cc-1, .cc-4{ min-height: 320px; }
  .silt-row b{ font-size: 36px; }
  .silt-row span{ font-size: 20px; }
  .silt-images{ grid-template-columns: 1fr; }
  .si-1, .si-3{ aspect-ratio: 4/3; }
  .si-2{ grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }
  .manifesto-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .founder{ grid-template-columns: 1fr; gap: 20px; }
  .f-portrait{ max-width: 280px; }
  .stats-grid{ grid-template-columns: 1fr; }
  .contact-form{ grid-template-columns: 1fr; }
  .contact-right{ padding: 28px 24px; }
  .footer-mark{ font-size: 72px; }
  .footer-bottom{ flex-direction: column; align-items: center; text-align: center; }
  .footer .marquee{ margin: 0 -20px 32px; }
  .chapter{ flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
  .chapter .rule{ flex: 0 0 50px; }
}

/* ════════════════════════════════════════════════════════════════════
   SCROLL — smooth + section snap (each section fits the viewport)
   ════════════════════════════════════════════════════════════════════ */
html{ scroll-behavior: smooth; }
body{
  scroll-snap-type: y proximity;
  scroll-padding-top: 0;
}
.hero,
.concept,
.silt,
.manifesto,
.services,
.stats,
.promise,
.contact,
.footer{
  scroll-snap-align: start;
  min-height: 100vh;
}
.marquee{ scroll-snap-align: none; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  body{ scroll-snap-type: none; }
}
