:root {
  --ink: #111b24;
  --ink-2: #1a2731;
  --paper: #f5f1e8;
  --paper-2: #ece6da;
  --ivory: #fbf8f1;
  --brass: #b3965a;
  --stone: #716d65;
  --line: rgba(17, 27, 36, .2);
  --light-line: rgba(255, 255, 255, .2);
  --sans: "Instrument Sans", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --header-h: 94px;
  --gutter: clamp(20px, 3vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { background: var(--brass); color: var(--ink); }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--ink); color: white; padding: 12px 18px; }
.skip-link:focus { top: 16px; }
.section-shell { width: min(100%, 1600px); margin-inline: auto; padding-inline: var(--gutter); }
.section-space { padding-top: clamp(100px, 12vw, 190px); padding-bottom: clamp(100px, 12vw, 190px); }

.site-header {
  height: var(--header-h);
  width: 100%;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 40;
  background: rgba(245, 241, 232, .88);
  backdrop-filter: blur(16px);
}
.site-header.is-fixed { position: fixed; top: 0; animation: header-in .45s ease both; }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.site-logo { width: clamp(180px, 16vw, 250px); }
.site-logo img { width: 100%; }
.desktop-nav { display: flex; gap: clamp(24px, 3vw, 54px); align-items: center; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.desktop-nav a { position: relative; padding: 36px 0 34px; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 27px; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .35s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.button { min-height: 50px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid currentColor; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s; }
.button-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button-dark { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.button-dark:hover { background: transparent; color: var(--ink); }
.button-light { color: var(--ivory); border-color: rgba(255,255,255,.7); }
.button-light:hover { color: var(--ink); background: var(--ivory); border-color: var(--ivory); }
.menu-toggle { width: 42px; height: 42px; border: 0; background: transparent; padding: 11px 4px; cursor: pointer; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.menu-toggle span { height: 1px; background: var(--ink); display: block; transition: transform .3s; }
.menu-toggle span:first-child { width: 100%; }
.menu-toggle span:last-child { width: 66%; margin-left: auto; }

.menu-overlay { position: fixed; inset: 0; z-index: 80; background: var(--ink); color: var(--ivory); padding: 32px var(--gutter); display: grid; grid-template-rows: auto 1fr auto; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s ease, visibility .35s; }
.menu-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.menu-top, .menu-foot { display: flex; align-items: center; justify-content: space-between; }
.menu-top img { width: 230px; }
.menu-close { border: 1px solid rgba(255,255,255,.3); background: transparent; color: white; padding: 12px 20px; cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: .16em; }
.overlay-nav { align-self: center; max-width: 1100px; width: 100%; margin: auto; }
.overlay-nav a { display: flex; gap: 30px; align-items: baseline; border-bottom: 1px solid rgba(255,255,255,.16); padding: 14px 0; font-size: clamp(44px, 7vw, 104px); letter-spacing: -.06em; line-height: 1; }
.overlay-nav a span { font-size: 10px; letter-spacing: .1em; color: var(--brass); }
.overlay-nav a:hover { color: var(--brass); }
.menu-foot { color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }

.hero { min-height: calc(100svh - var(--header-h)); padding-top: 32px; padding-bottom: 28px; display: grid; grid-template-rows: auto 1fr auto; }
.hero-meta, .page-hero-meta { display: flex; align-items: center; justify-content: space-between; font-size: 9px; text-transform: uppercase; letter-spacing: .25em; color: var(--stone); }
.hero-stage {
  min-height: 760px;
  align-self: start;
  margin-top: 10px;
  padding: 64px 2vw 42px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(470px, 1.18fr);
  grid-template-rows: 1fr auto auto;
  column-gap: 7vw;
  align-items: center;
}
.hero-portrait { position: relative; grid-column: 2; grid-row: 1 / 4; width: 100%; height: 100%; max-height: 720px; margin: 0; overflow: hidden; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero-title { grid-column: 1; grid-row: 1; align-self: end; margin: 0 0 44px; font-weight: 400; letter-spacing: -.075em; line-height: .78; font-size: clamp(72px, 8.2vw, 128px); }
.hero-line { position: relative; display: block; white-space: nowrap; }
.line-two { color: rgba(17,27,36,.58); }
.hero-copy { grid-column: 1; grid-row: 2; width: min(100%, 430px); border-top: 1px solid var(--line); padding-top: 24px; }
.hero-copy p { color: var(--stone); font-size: clamp(14px, 1.2vw, 18px); line-height: 1.7; margin: 0 0 26px; }
.text-link { display: inline-flex; align-items: center; gap: 22px; border-bottom: 1px solid currentColor; padding-bottom: 6px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.text-link span { font-size: 15px; transition: transform .25s; }
.text-link:hover span { transform: translate(3px,-3px); }
.text-link.light { color: var(--ivory); }
.hero-index { grid-column: 1; grid-row: 3; margin-top: 38px; font-size: 9px; letter-spacing: .2em; color: var(--stone); }
.scroll-cue { justify-self: end; display: flex; gap: 14px; align-items: center; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.scroll-cue i { height: 1px; width: 70px; background: var(--ink); display: block; position: relative; }
.scroll-cue i::after { content:""; position:absolute; right:0; top:-2px; width:5px; height:5px; border-right:1px solid; border-bottom:1px solid; transform:rotate(-45deg); }

.gallery-band { background: var(--ink); padding: 18px; display: grid; grid-template-columns: .7fr 1.05fr .8fr 1.05fr .7fr; gap: 18px; min-height: 420px; }
.gallery-tile { min-width: 0; margin: 0; overflow: hidden; height: 340px; align-self: center; }
.gallery-tile.tile-tall { height: 390px; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-tile:nth-child(1) img { object-position: 55% 27%; }
.gallery-word { color: var(--ivory); border: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; justify-content: space-between; padding: 32px; }
.gallery-word img { width: 62px; height: 62px; filter: brightness(0) invert(1); }
.gallery-word p { font-family: var(--serif); font-size: 27px; font-style: italic; line-height: 1.05; margin: 0; }

.section-kicker { display: flex; gap: 18px; align-items: center; font-size: 9px; text-transform: uppercase; letter-spacing: .22em; color: var(--stone); margin-bottom: clamp(42px, 5vw, 78px); }
.section-kicker span { color: var(--brass); }
.section-kicker.light { color: rgba(255,255,255,.55); }
.display-title { font-size: clamp(54px, 7.3vw, 112px); line-height: .95; letter-spacing: -.065em; font-weight: 400; margin: 0; }
.intro-grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: 8vw; align-items: end; }
.intro-copy { color: var(--stone); font-size: 15px; line-height: 1.8; padding-bottom: 8px; }
.intro-copy p { margin: 0 0 24px; }

.gracea-section { background: #0a0a0a; color: var(--ivory); padding-top: clamp(100px, 11vw, 170px); overflow: hidden; }
.gracea-word { font-family: var(--serif); font-size: clamp(94px, 18vw, 290px); font-weight: 300; letter-spacing: .17em; line-height: .8; white-space: nowrap; margin-left: .17em; text-align: center; }
.gracea-word span { color: var(--brass); }
.gracea-subline { display: flex; justify-content: space-between; align-items: end; margin: 66px 0 70px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.22); }
.gracea-subline p { margin: 0; max-width: 510px; color: rgba(255,255,255,.65); font-size: 16px; }
.gracea-image { margin: 0; width: calc(100% - (var(--gutter) * 2)); height: min(70vw, 850px); margin-inline: auto; overflow: hidden; }
.gracea-image img { width: 100%; height: 100%; object-fit: cover; }
.brand-pillars { display: grid; grid-template-columns: repeat(3,1fr); padding-top: 50px; padding-bottom: 60px; }
.brand-pillars div { padding: 10px 30px; border-left: 1px solid rgba(255,255,255,.2); }
.brand-pillars strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 300; }
.brand-pillars span { color: rgba(255,255,255,.5); font-size: 11px; }

.rituals-head { display: grid; grid-template-columns: .55fr 1.45fr; column-gap: 6vw; align-items: start; margin-bottom: 90px; }
.rituals-head .section-kicker { margin-top: 13px; }
.rituals-head > p { grid-column: 2; max-width: 520px; margin: 34px 0 0 auto; color: var(--stone); font-size: 15px; line-height: 1.8; }
.ritual-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.2vw, 36px); align-items: start; }
.ritual-card { margin: 0; }
.ritual-card-offset { margin-top: 110px; }
.ritual-image { aspect-ratio: 4 / 5.35; overflow: hidden; background: var(--paper-2); }
.ritual-image img { width: 100%; height: 100%; object-fit: cover; }
.ritual-card figcaption { display: grid; grid-template-columns: 42px 1fr; column-gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); margin-top: 15px; }
.ritual-card figcaption > span { grid-row: 1 / 3; color: var(--brass); font-size: 9px; padding-top: 7px; }
.ritual-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 3vw, 46px); font-weight: 300; line-height: 1; }
.ritual-card p { margin: 13px 0 0; color: var(--stone); font-size: 12px; line-height: 1.65; max-width: 320px; }

.about-preview { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.image-caption { position: absolute; left: -20px; bottom: 60px; background: var(--paper); padding: 12px 18px; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; transform: rotate(-90deg); transform-origin: left bottom; }
.about-copy > p { color: var(--stone); max-width: 540px; font-size: 16px; line-height: 1.8; margin: 36px 0; }

.focus-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 4vw; align-items: start; margin-bottom: 70px; }
.focus-head .section-kicker { margin: 14px 0 0; }
.focus-list { border-top: 1px solid var(--line); }
.focus-item { border-bottom: 1px solid var(--line); }
.focus-item button { width: 100%; background: none; border: 0; padding: 26px 0; display: grid; grid-template-columns: 70px 1fr auto; text-align: left; align-items: center; cursor: pointer; }
.focus-number { color: var(--brass); font-size: 10px; }
.focus-name { font-size: clamp(32px, 4.7vw, 74px); letter-spacing: -.04em; }
.focus-item button i { font-style: normal; font-size: 22px; transition: transform .3s; }
.focus-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s ease; }
.focus-content p { overflow: hidden; margin: 0 0 0 70px; max-width: 590px; color: var(--stone); line-height: 1.75; }
.focus-item.is-open .focus-content { grid-template-rows: 1fr; }
.focus-item.is-open .focus-content p { margin-bottom: 30px; }
.focus-item.is-open button i { transform: rotate(45deg); }

.manifesto { height: min(78vw, 920px); min-height: 650px; position: relative; color: white; overflow: hidden; }
.manifesto > img { width: 100%; height: 100%; object-fit: cover; }
.manifesto-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.08) 60%); }
.manifesto-copy { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: var(--gutter); }
.manifesto-copy span { font-size: 9px; text-transform: uppercase; letter-spacing: .22em; margin-bottom: 50px; }
.manifesto-copy blockquote { margin: 0; font-family: var(--serif); font-size: clamp(74px, 11vw, 170px); font-style: italic; line-height: .82; max-width: 1080px; }

.technology { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; align-items: center; }
.technology-copy > p { color: var(--stone); max-width: 610px; line-height: 1.8; margin: 35px 0 48px; }
.technology-media { margin: 0; }
.technology-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 60% center; }
.technology-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.technology-list li { display: flex; gap: 25px; border-bottom: 1px solid var(--line); padding: 18px 0; font-size: 13px; }
.technology-list span { color: var(--brass); font-size: 10px; }

.principles { border-top: 1px solid var(--line); }
.principle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle-card { background: var(--paper); padding: clamp(28px, 4vw, 60px); min-height: 420px; display: flex; flex-direction: column; }
.principle-card > span { color: var(--brass); font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.principle-card h3 { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 52px); line-height: 1; font-weight: 300; margin: auto 0 34px; }
.principle-card p { color: var(--stone); font-size: 13px; line-height: 1.7; margin: 0; }

.contact-cta { padding-top: 0; }
.contact-cta-inner { min-height: 650px; background: var(--ink); color: var(--ivory); display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; padding: 80px 20px; position: relative; overflow: hidden; }
.contact-cta-inner::before { content:"C"; position:absolute; font-family:var(--serif); font-size:700px; line-height:1; color:rgba(255,255,255,.025); top:-160px; right:-20px; }
.contact-star { color: var(--brass); font-size: 26px; margin-bottom: 54px; }
.contact-cta p { margin: 0 0 24px; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.58); }
.contact-cta h2 { font-family: var(--serif); font-style: italic; font-size: clamp(80px, 12vw, 170px); line-height: .8; font-weight: 300; margin: 0 0 58px; }

.site-footer { background: #091118; color: var(--ivory); padding: 80px var(--gutter) 28px; overflow: hidden; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 65px; border-bottom: 1px solid rgba(255,255,255,.17); }
.footer-logo { width: clamp(220px, 24vw, 380px); }
.footer-top p { max-width: 320px; color: rgba(255,255,255,.5); font-size: 13px; margin: 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr 1.3fr; gap: 5vw; padding: 65px 0 110px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.68); font-size: 13px; }
.footer-label { display: block; color: var(--brass); text-transform: uppercase; font-size: 8px; letter-spacing: .24em; margin-bottom: 20px; }
.newsletter label { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }
.newsletter > div { display: flex; border-bottom: 1px solid rgba(255,255,255,.4); }
.newsletter input { width: 100%; border: 0; background: transparent; color: white; padding: 12px 0; outline: none; font-size: 13px; }
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button { border: 0; background: none; color: white; cursor: pointer; padding: 0 4px 0 18px; }
.form-note { color: var(--brass); font-size: 11px; min-height: 16px; }
.footer-word { font-size: clamp(80px, 16vw, 245px); line-height: .7; letter-spacing: -.07em; white-space: nowrap; text-align: center; color: rgba(255,255,255,.92); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.17); padding-top: 24px; margin-top: 50px; display: flex; justify-content: space-between; color: rgba(255,255,255,.38); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }

/* Inner pages */
.page-hero { padding-top: 46px; }
.page-hero-grid { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 7vw; min-height: 440px; padding: 50px 0 70px; }
.page-title, .contact-title { font-size: clamp(74px, 11vw, 172px); line-height: .8; letter-spacing: -.075em; font-weight: 400; margin: 0; }
.page-lead { color: var(--stone); font-size: 17px; line-height: 1.75; margin: 0 0 12px; max-width: 450px; }
.page-hero-image { height: min(62vw, 840px); margin: 0; overflow: hidden; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.statement-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 9vw; align-items: end; }
.statement-copy { color: var(--stone); line-height: 1.85; }
.statement-copy p { margin: 0 0 24px; }
.beliefs-section { background: var(--ink); color: var(--ivory); }
.beliefs-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--light-line); border-left: 1px solid var(--light-line); }
.belief { min-height: 360px; padding: 44px; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); display: flex; flex-direction: column; }
.belief > span { font-size: 9px; color: var(--brass); }
.belief h3 { margin: auto 0 24px; font-family: var(--serif); font-size: clamp(36px,4.5vw,66px); line-height: .95; font-weight: 300; max-width: 540px; }
.belief p { color: rgba(255,255,255,.55); max-width: 470px; margin: 0; font-size: 13px; }
.origin { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: center; }
.origin-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 62% center; }
.origin-copy p { color: var(--stone); line-height: 1.8; }
.founder-section { background: var(--paper-2); }
.founder-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 9vw; align-items: center; }
.founder-portrait { margin: 0; }
.founder-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.founder-portrait figcaption { margin-top: 14px; color: var(--stone); font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.founder-eyebrow { margin: 50px 0 22px; color: var(--brass); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.founder-copy .display-title { max-width: 680px; margin-bottom: 44px; }
.founder-biography { max-width: 650px; color: var(--stone); font-size: 15px; line-height: 1.85; }
.founder-biography p { margin: 0 0 22px; }
.founder-link { display: inline-flex; align-items: center; gap: 28px; margin-top: 24px; padding-bottom: 9px; border-bottom: 1px solid var(--ink); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.founder-link span { font-size: 15px; transition: transform .25s ease; }
.founder-link:hover span { transform: translate(3px,-3px); }
.timeline-list { border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: 110px .8fr 1fr; gap: 4vw; padding: 35px 0; border-bottom: 1px solid var(--line); align-items: start; }
.timeline-row > span { color: var(--brass); font-size: 11px; }
.timeline-row h3 { margin: 0; font-size: 24px; font-weight: 400; letter-spacing: -.02em; }
.timeline-row p { margin: 0; color: var(--stone); font-size: 13px; line-height: 1.7; max-width: 560px; }
.gracea-about { background:#0a0a0a; color:var(--ivory); display:grid; grid-template-columns:1.1fr .9fr; min-height:780px; }
.gracea-about-image img { width:100%; height:100%; object-fit:cover; }
.gracea-about-copy { padding:clamp(50px,8vw,130px); display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.gracea-about-copy > span { color:var(--brass); font-size:9px; text-transform:uppercase; letter-spacing:.22em; }
.gracea-word.compact { font-size:clamp(72px,10vw,160px); margin:65px 0 45px; text-align:left; }
.gracea-about-copy p { color:rgba(255,255,255,.58); line-height:1.8; max-width:520px; margin:0 0 40px; }

.contact-hero { padding-top: 46px; padding-bottom: 100px; }
.contact-title { margin-top: 100px; }
.contact-intro { margin: 70px 0 0 auto; padding-top: 24px; border-top: 1px solid var(--line); width: min(50%, 700px); display:flex; justify-content:space-between; gap:40px; color:var(--stone); font-size:13px; }
.contact-intro p, .contact-intro span { margin:0; max-width:330px; }
.contact-main { border-top: 1px solid var(--line); display:grid; grid-template-columns:.72fr 1.28fr; gap:10vw; }
.contact-details .section-kicker { margin-bottom:60px; }
.detail-block { border-top:1px solid var(--line); padding:22px 0 32px; display:grid; grid-template-columns:100px 1fr; font-size:14px; }
.detail-block > span { font-size:9px; text-transform:uppercase; letter-spacing:.16em; color:var(--brass); }
.detail-block p, .detail-block address { margin:0; color:var(--stone); line-height:1.7; }
.contact-form { background:var(--ivory); padding:clamp(30px,5vw,72px); }
.form-heading { display:flex; justify-content:space-between; gap:40px; margin-bottom:60px; }
.form-heading > span { font-family:var(--serif); font-size:clamp(50px,5vw,78px); line-height:1; }
.form-heading p { color:var(--stone); max-width:280px; font-size:12px; }
.contact-form label:not(.consent) { display:block; margin-bottom:35px; }
.contact-form label > span { display:block; font-size:9px; text-transform:uppercase; letter-spacing:.16em; margin-bottom:10px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width:100%; border:0; border-bottom:1px solid var(--line); background:transparent; padding:10px 0 12px; outline:none; border-radius:0; }
.contact-form textarea { resize:vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color:var(--brass); }
.consent { display:flex; gap:12px; align-items:flex-start; color:var(--stone); font-size:11px; margin-bottom:30px; }
.consent input { accent-color:var(--ink); margin-top:3px; }
.submit-button { gap:25px; cursor:pointer; }
.form-status { color:var(--brass); font-size:12px; min-height:18px; }
.form-status.is-error { color:#9a3f37; }
.form-trap { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.contact-image { height:min(60vw,800px); position:relative; overflow:hidden; color:white; }
.contact-image img { width:100%; height:100%; object-fit:cover; }
.contact-image::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.55),transparent 60%); }
.contact-image > div { position:absolute; z-index:1; left:var(--gutter); bottom:var(--gutter); }
.contact-image span { font-size:9px; text-transform:uppercase; letter-spacing:.22em; }
.contact-image p { font-family:var(--serif); font-style:italic; font-size:clamp(48px,7vw,100px); margin:16px 0 0; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-image { overflow: hidden; }
.reveal-image img { transform: scale(1.06); transition: transform 1.4s cubic-bezier(.2,.75,.25,1); }
.reveal-image.is-visible img { transform: scale(1); }

@media (max-width: 1100px) {
  :root { --header-h: 82px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-stage { min-height: 670px; grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); gap: 5vw; padding-top: 50px; }
  .hero-title { font-size: clamp(64px, 8.7vw, 96px); }
  .gallery-band { grid-template-columns: .8fr 1.2fr .8fr 1.2fr; }
  .gallery-band > :last-child { display: none; }
  .intro-grid, .statement-grid { grid-template-columns: 1fr; }
  .intro-copy, .statement-copy { max-width: 650px; margin-left: auto; }
  .focus-head { grid-template-columns: 1fr; }
  .contact-main { gap: 5vw; }
}

@media (max-width: 760px) {
  :root { --gutter: 18px; --header-h: 72px; }
  body::before { opacity: .035; }
  .site-header { padding: 0 18px; }
  .site-logo { width: 174px; }
  .header-cta { display: none; }
  .menu-toggle { width: 38px; }
  .menu-overlay { padding: 24px 20px; }
  .menu-top img { width: 180px; }
  .overlay-nav a { font-size: 48px; padding: 13px 0; }
  .menu-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero { min-height: auto; padding-top: 24px; padding-bottom: 24px; }
  .hero-meta span:last-child { display: none; }
  .hero-stage { min-height: 0; margin-top: 12px; padding: 34px 0 10px; display: flex; flex-direction: column; align-items: stretch; }
  .hero-portrait { order: 2; width: 100%; height: 118vw; max-height: 600px; margin-bottom: 32px; }
  .hero-title { order: 1; font-size: clamp(65px, 21vw, 84px); line-height: .8; margin: 0 0 40px; }
  .hero-line { color: var(--ink); text-shadow: none; }
  .line-two { font-size: 1em; color: rgba(17,27,36,.58); }
  .hero-copy { order: 3; position: static; width: 100%; padding: 22px 0 0; }
  .hero-copy p { font-size: 13px; }
  .hero-index { order: 4; display: block; margin-top: 28px; }
  .scroll-cue { display: none; }
  .gallery-band { grid-template-columns: 1fr 1fr; padding: 10px; gap: 10px; min-height: 0; }
  .gallery-tile, .gallery-tile.tile-tall { height: 260px; }
  .gallery-word { padding: 18px; }
  .gallery-word p { font-size: 22px; }
  .gallery-band > :nth-child(3) { grid-row: 2; }
  .gallery-band > :nth-child(4) { grid-row: 2; }
  .display-title { font-size: clamp(50px, 15.5vw, 72px); }
  .gracea-word { font-size: min(15.5vw, 64px); letter-spacing: .1em; margin-left: .1em; }
  .gracea-word.compact { font-size: min(15.5vw, 64px); letter-spacing: .1em; margin: 50px 0 40px; }
  .gracea-subline { flex-direction: column; align-items: flex-start; gap: 28px; margin: 45px 0; }
  .gracea-image { width: calc(100% - 20px); height: 105vw; }
  .brand-pillars { grid-template-columns: 1fr; padding-top: 30px; }
  .brand-pillars div { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding: 22px 0; }
  .rituals-head { grid-template-columns: 1fr; margin-bottom: 60px; }
  .rituals-head .section-kicker { margin-top: 0; }
  .rituals-head > p { grid-column: 1; margin: 26px 0 0; }
  .ritual-grid { grid-template-columns: 1fr; gap: 70px; }
  .ritual-card-offset { margin-top: 0; }
  .ritual-image { aspect-ratio: 4 / 5.15; }
  .about-preview, .technology, .origin, .founder-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-media { order: 2; }
  .about-copy { order: 1; }
  .image-caption { display: none; }
  .focus-item button { grid-template-columns: 44px 1fr auto; padding: 22px 0; }
  .focus-name { font-size: 32px; }
  .focus-content p { margin-left: 44px; font-size: 13px; }
  .manifesto { min-height: 600px; }
  .manifesto > img { object-position: 65% center; }
  .manifesto-copy blockquote { font-size: 78px; }
  .technology-media img { aspect-ratio: 1/1.2; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 340px; }
  .contact-cta-inner { min-height: 520px; }
  .contact-cta h2 { font-size: 84px; }
  .footer-top { flex-direction: column; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px 24px; padding-bottom: 80px; }
  .newsletter { grid-column: 1 / -1; }
  .footer-word { width: 100%; font-size: min(16vw, 68px); letter-spacing: -.075em; line-height: .8; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .page-hero-grid { grid-template-columns: 1fr; min-height: 440px; align-content: end; }
  .page-title, .contact-title { font-size: clamp(68px, 21vw, 95px); }
  .contact-title { font-size: clamp(52px, 15.4vw, 72px); }
  .page-hero-image { height: 125vw; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .belief { min-height: 310px; padding: 30px; }
  .founder-eyebrow { margin-top: 42px; }
  .founder-copy .display-title { margin-bottom: 34px; }
  .timeline-row { grid-template-columns: 60px 1fr; }
  .timeline-row p { grid-column: 2; }
  .gracea-about { grid-template-columns:1fr; }
  .gracea-about-image { height:110vw; }
  .gracea-about-copy { min-height:600px; }
  .contact-title { margin-top: 90px; }
  .contact-intro { width: 100%; flex-direction: column; }
  .contact-main { grid-template-columns: 1fr; gap: 80px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { flex-direction: column; }
  .contact-image { height: 120vw; min-height: 560px; }
  .contact-image img { object-position: 63% center; }
}

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