:root {
  --ink: #09151d;
  --ink-soft: #122b39;
  --ocean: #0d3a53;
  --ocean-bright: #2f6f8e;
  --paper: #f0eee8;
  --paper-2: #e3e0d7;
  --stone: #a7a196;
  --white: #f8f8f5;
  --line-dark: rgba(9, 21, 29, 0.18);
  --line-light: rgba(248, 248, 245, 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --pad: clamp(22px, 4vw, 64px);
  --max: 1520px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--ocean); color: var(--white); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #d9c8ac, #6ec4e7);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 88px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, min-height .35s ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(9, 21, 29, .82);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,.10);
}
.brand {
  width: 132px;
  height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
}
.brand img {
  width: 108px;
  height: auto;
  object-fit: contain;
  transform: translateY(10px) scale(1.32);
  transform-origin: top center;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(22px, 3vw, 48px);
}
.desktop-nav a,
.header-cta {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 600;
}
.desktop-nav a { opacity: .76; transition: opacity .25s ease; }
.desktop-nav a:hover { opacity: 1; }
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.35);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.header-cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media,
.hero-shade,
.hero-vein { position: absolute; inset: 0; }
.hero-media { z-index: -3; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  animation: heroBreath 14s ease-in-out infinite alternate;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,14,19,.93) 0%, rgba(5,14,19,.68) 43%, rgba(5,14,19,.18) 74%, rgba(5,14,19,.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35));
}
.hero-vein {
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 64% 29%, rgba(120,192,215,.20), transparent 12%),
    linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.18) 48.08%, transparent 48.24% 100%);
  mix-blend-mode: screen;
  opacity: .75;
}
.hero-copy {
  width: min(1060px, 100%);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 144px var(--pad) 108px;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248,248,245,.72);
}
.eyebrow.dark { color: rgba(9,21,29,.62); }
.hero h1,
.visit-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
}
.hero h1 {
  max-width: 980px;
  font-size: clamp(4rem, 8.2vw, 9.4rem);
  line-height: .86;
  text-wrap: balance;
}
.hero h1 em,
.display-title em,
.visit-content h2 em {
  font-weight: 400;
  color: #b6d9e6;
}
.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(248,248,245,.78);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.65;
}
.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 28px;
  margin-top: 34px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--white);
}
.button-light:hover { background: transparent; color: var(--white); }
.button-dark {
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}
.button-dark:hover { background: transparent; color: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 6px;
}
.dark-link { color: var(--ink); border-bottom-color: rgba(9,21,29,.36); }
.hero-index {
  position: absolute;
  right: var(--pad);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(248,248,245,.66);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-index span:first-child { font-family: var(--serif); font-size: 28px; letter-spacing: 0; color: var(--white); }
.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(248,248,245,.62);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-cue span { font-size: 16px; }

.intro-section,
.story-section,
.selection-section {
  padding: clamp(90px, 12vw, 190px) var(--pad);
}
.intro-section { background: var(--paper); }
.intro-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(120px, .42fr) 1.58fr;
  gap: clamp(30px, 6vw, 110px);
  align-items: start;
}
.section-marker,
.selection-index {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(9,21,29,.52);
}
.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 400;
  text-wrap: balance;
}
.display-title em { color: var(--ocean-bright); }
.body-copy {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(9,21,29,.69);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.7;
}
.material-stage {
  width: min(var(--max), 100%);
  margin: clamp(64px, 10vw, 140px) auto 0;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: clamp(18px, 3vw, 48px);
  align-items: end;
}
.material-main,
.material-side,
.slab-photo { margin: 0; }
.material-main { min-height: 620px; }
.material-side { transform: translateY(12%); }
.material-main img,
.material-side img,
.slab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.material-main img { min-height: 620px; }
.material-side img { min-height: 420px; }
.material-main figcaption,
.material-side figcaption,
.slab-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.material-main figcaption span,
.material-side figcaption span,
.slab-photo figcaption { color: rgba(9,21,29,.52); }
.material-main figcaption strong,
.material-side figcaption strong { font-weight: 600; }
.material-index {
  width: min(var(--max), 100%);
  margin: clamp(110px, 13vw, 190px) auto 0;
  border-top: 1px solid var(--line-dark);
}
.material-row {
  min-height: 110px;
  display: grid;
  grid-template-columns: 80px minmax(260px, 1.1fr) 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s ease, padding .3s ease;
}
.material-row:hover { background: rgba(13,58,83,.055); padding-left: 14px; padding-right: 14px; }
.material-row span {
  font-family: var(--serif);
  font-size: 30px;
  color: rgba(9,21,29,.34);
}
.material-row strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.5vw, 3rem);
  letter-spacing: -.035em;
}
.material-row small {
  justify-self: end;
  text-align: right;
  color: rgba(9,21,29,.52);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proof-band {
  background: var(--ink-soft);
  color: var(--white);
  padding: clamp(56px, 7vw, 100px) var(--pad);
}
.proof-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.proof-item {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px 24px;
  border-right: 1px solid var(--line-light);
}
.proof-item:last-child { border-right: 0; }
.proof-number {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.proof-item p {
  margin: 32px 0 0;
  color: rgba(248,248,245,.62);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-section { background: var(--paper-2); }
.story-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}
.sticky-photo {
  position: sticky;
  top: 120px;
  min-height: 620px;
  overflow: hidden;
  background: #ccd1ce;
}
.sticky-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transform: scale(1.03);
}
.photo-label {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(9,21,29,.78);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-content { padding-bottom: 12vh; }
.story-chapter {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line-dark);
  padding: 70px 0;
}
.story-chapter > span {
  margin-bottom: 34px;
  color: rgba(9,21,29,.48);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.story-chapter h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 400;
}
.story-chapter p {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(9,21,29,.68);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.72;
}
.story-chapter .text-link { align-self: flex-start; margin-top: 28px; }

.selection-section { background: var(--paper); }
.selection-head {
  width: min(var(--max), 100%);
  margin: 0 auto;
  max-width: 1240px;
}
.selection-composition {
  width: min(var(--max), 100%);
  margin: clamp(70px, 9vw, 130px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: clamp(38px, 7vw, 120px);
  align-items: center;
}
.slab-photo img { min-height: 620px; object-position: center; }
.selection-copy p {
  margin: 28px 0 0;
  color: rgba(9,21,29,.72);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.75;
}
.selection-copy .button { margin-top: 34px; }

.visit-section {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.visit-media,
.visit-overlay { position: absolute; inset: 0; }
.visit-media { z-index: -3; }
.visit-media img { width: 100%; height: 100%; object-fit: cover; }
.visit-overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(5,14,19,.95), rgba(5,14,19,.68) 54%, rgba(5,14,19,.32));
}
.visit-content {
  width: min(1050px, 100%);
  padding: 130px var(--pad);
}
.visit-content h2 {
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: .88;
}
.visit-content p:not(.eyebrow) {
  max-width: 630px;
  margin: 32px 0 0;
  color: rgba(248,248,245,.74);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.65;
}
.contact-line {
  color: var(--white);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 25px;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .7fr .8fr;
  gap: 48px;
  padding: 72px var(--pad) 32px;
  background: #071116;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
  width: 130px;
  height: 72px;
  object-fit: contain;
  object-position: top center;
  transform: scale(1.35);
  transform-origin: top center;
}
.footer-brand p,
.footer-address p {
  margin: 18px 0 0;
  color: rgba(248,248,245,.55);
  line-height: 1.7;
}
.footer-contact,
.footer-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact > span,
.footer-address > span {
  margin-bottom: 12px;
  color: rgba(248,248,245,.38);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-contact a { text-decoration: none; color: rgba(248,248,245,.78); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-bottom small,
.footer-bottom a {
  color: rgba(248,248,245,.42);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-whatsapp { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2,.65,.3,1), transform .75s cubic-bezier(.2,.65,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.image-reveal { position: relative; overflow: hidden; }
.image-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform-origin: top center;
  transform: scaleY(1);
  transition: transform 1s cubic-bezier(.75,0,.2,1) .1s;
  pointer-events: none;
}
.image-reveal.is-visible::after { transform: scaleY(0); }
.story-section .image-reveal::after { background: var(--paper-2); }

@keyframes heroBreath {
  from { transform: scale(1.07); }
  to { transform: scale(1.12); }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 150px 1fr auto; }
  .desktop-nav { display: none; }
  .material-stage { grid-template-columns: 1fr .72fr; }
  .story-layout { grid-template-columns: 1fr; gap: 76px; }
  .sticky-photo { position: relative; top: auto; min-height: 540px; }
  .sticky-photo img { height: 540px; }
  .story-content { padding-bottom: 0; }
  .story-chapter { min-height: auto; padding: 74px 0; }
}

@media (max-width: 820px) {
  :root { --pad: 22px; }
  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }
  .brand { width: 112px; height: 44px; }
  .brand img { width: 92px; transform: translateY(8px) scale(1.3); }
  .header-cta { min-height: 40px; padding: 0 13px; font-size: 9px; }
  .hero-copy { padding-top: 128px; padding-bottom: 130px; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 6.6rem); line-height: .9; }
  .hero-lead { max-width: 520px; font-size: 1rem; }
  .hero-index { display: none; }
  .scroll-cue { bottom: 86px; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .display-title { font-size: clamp(3.2rem, 13vw, 6rem); }
  .material-stage { grid-template-columns: 1fr; }
  .material-main,
  .material-main img,
  .material-side img { min-height: 0; }
  .material-main img { aspect-ratio: 4 / 3; }
  .material-side { width: 76%; margin-left: auto; transform: translateY(0); }
  .material-side img { aspect-ratio: 4 / 5; }
  .material-row {
    grid-template-columns: 56px 1fr;
    padding: 22px 0;
    min-height: auto;
  }
  .material-row small { grid-column: 2; justify-self: start; text-align: left; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .selection-composition { grid-template-columns: 1fr; }
  .slab-photo img { min-height: 0; aspect-ratio: 4 / 3; }
  .visit-content h2 { font-size: clamp(3.8rem, 15vw, 6.6rem); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-whatsapp {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 62px;
    padding: 10px 16px;
    color: var(--white);
    background: rgba(8,35,50,.94);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.16);
    text-decoration: none;
  }
  .mobile-whatsapp span {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .58;
  }
  .mobile-whatsapp strong { font-size: 13px; font-weight: 600; }
  .site-footer { padding-bottom: 104px; }
}

@media (max-width: 560px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { max-width: 138px; text-align: center; line-height: 1.2; }
  .hero-copy { justify-content: flex-end; padding-top: 116px; padding-bottom: 145px; }
  .hero h1 { font-size: clamp(3.4rem, 17.5vw, 5.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .material-side { width: 86%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 160px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .proof-item:last-child { border-bottom: 0; }
  .story-chapter h3 { font-size: clamp(3rem, 13vw, 5rem); }
  .sticky-photo,
  .sticky-photo img { min-height: 420px; height: 420px; }
  .photo-label { flex-direction: column; gap: 7px; }
  .selection-copy p { font-size: 1.04rem; }
  .visit-section { min-height: 84svh; }
  .visit-content { padding-top: 96px; padding-bottom: 116px; }
  .visit-actions { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-height: 720px) and (min-width: 821px) {
  .site-header { min-height: 68px; }
  .hero-copy { padding-top: 110px; padding-bottom: 74px; }
  .hero h1 { font-size: clamp(3.6rem, 7vw, 7rem); }
  .hero-lead { margin-top: 22px; }
  .hero-actions { margin-top: 24px; }
}

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