/* ============================================================
   SWEET HOME REALTY — Editorial Landing
   Majority white, parchment as accent.
   Plotted developments across Karnataka.
   ============================================================ */

:root {
  --white:        #ffffff;
  --paper:        #fafaf7;
  --paper-2:      #f4f1e8;
  --parchment:    #ebe2c8;
  --parchment-2:  #d9c89f;
  --ivory:        #f7f1de;
  --ink:          #14110a;
  --ink-soft:     #2e2818;
  --ink-mute:     #5a4a2c;
  --sepia:        #6b5230;
  --rule:         #14110a;
  --rule-soft:    #c9c0a8;
  --gold:         #9a6f2c;
  --crimson:      #7a1f15;
  --crimson-deep: #5a1610;
  --shadow:       0 30px 60px -30px rgba(20,15,5,0.18);
  --shadow-sharp: 0 6px 20px -8px rgba(20,15,5,0.18), 0 1.5px 4px rgba(20,15,5,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.13  0 0 0 0 0.05  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
  z-index: 100;
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }

/* ============================================================
   PUBLICATION CHROME
   ============================================================ */
.chrome-top, .chrome-bottom {
  position: fixed;
  left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  font-weight: 500;
}
.chrome-top { top: 0; border-bottom: 1px solid var(--rule); padding: 18px 40px; }
.chrome-bottom { bottom: 0; border-top: 1px solid var(--rule); pointer-events: none; padding: 10px 40px; }
.chrome-bottom .left, .chrome-bottom .right { pointer-events: auto; }
.chrome-bottom .center { pointer-events: auto; }
.chrome-top .left, .chrome-bottom .left,
.chrome-top .right, .chrome-bottom .right { display: flex; gap: 24px; align-items: center; }

.brand-mark { display: flex; align-items: center; gap: 18px; }
.brand-mark .crest {
  width: 64px; height: 64px;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 38px;
  color: var(--ink);
  background: var(--white);
  font-weight: 500;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-mark .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 500;
  color: var(--ink);
  line-height: 0.95;
}
.brand-mark .name .tag {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 8px;
}

.cta-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  pointer-events: auto;
  cursor: pointer;
  border: 1px solid var(--ink);
  transition: all 0.25s ease;
  font-weight: 500;
}
.cta-pill:hover { background: var(--crimson); border-color: var(--crimson); }

/* ============================================================
   SPREAD LAYOUT
   ============================================================ */
.archive {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  height: 100vh;
  width: 100vw;
  scrollbar-width: none;
}
.archive::-webkit-scrollbar { display: none; }

.spread {
  flex: 0 0 100vw;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  padding: 130px 64px 80px;
  display: grid;
  overflow: hidden;
  background: var(--white);
}

.page-num {
  position: absolute;
  top: 26px; right: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  z-index: 5;
  font-weight: 500;
}

/* ============================================================
   SPREAD I — HERO
   ============================================================ */
.hero {
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: space-between;
  padding-right: 40px;
  border-right: 1px solid var(--rule);
  position: relative;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson);
  display: flex; align-items: center; gap: 14px;
  font-weight: 600;
}
.eyebrow::before { content: ""; width: 36px; height: 1.5px; background: var(--crimson); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(58px, 7.6vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-top: 24px;
}
.hero-title em { font-style: italic; color: var(--crimson); font-weight: 400; }

.hero-deck {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.trust-strip {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 26px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.trust-strip span { display: flex; align-items: center; gap: 8px; }
.trust-strip span::before { content: ""; width: 6px; height: 6px; background: var(--crimson); border-radius: 50%; }

.hero-cta { display: flex; gap: 14px; margin-top: 36px; }
.btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 16px 26px;
  background: var(--ink);
  color: var(--white);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 500;
}
.btn:hover { background: var(--crimson); border-color: var(--crimson); }
.btn .arrow { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--white); }

.hero-meta {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: end;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero-meta strong { color: var(--ink); display: block; font-weight: 600; margin-bottom: 4px; }

/* HERO RIGHT — projects as the actual hero imagery */
.hero-right {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sharp);
}
.hero-card .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--parchment-2);
  filter: contrast(1.05) saturate(0.95);
  transition: transform 0.8s ease;
}
.hero-card:hover .img { transform: scale(1.04); }

.hero-card .overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(to top, rgba(20,15,5,0.88) 0%, rgba(20,15,5,0.55) 50%, transparent 100%);
  color: var(--white);
  display: flex; justify-content: space-between; align-items: end;
  gap: 20px;
}
.hero-card .meta-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
  font-weight: 600;
}
.hero-card .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
}
.hero-card .name em {
  font-style: italic;
  display: block;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 4px;
}
.hero-card .loc {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
  opacity: 0.95;
}
.hero-card .stamp {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--crimson);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 11px;
  font-weight: 600;
}

.cred-card {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  z-index: 10;
  max-width: 220px;
}
.cred-card .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 6px;
}
.cred-card .text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  right: 40px; bottom: 90px;
  display: flex; align-items: center; gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
  z-index: 5;
  font-weight: 500;
}
.scroll-cue .arrow {
  width: 56px; height: 1.5px; background: var(--ink);
  position: relative;
  animation: arrowPulse 2.4s ease-in-out infinite;
}
.scroll-cue .arrow::after {
  content: "";
  position: absolute; right: 0; top: -3.5px;
  border-left: 7px solid var(--ink);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
@keyframes arrowPulse {
  0%,100% { transform: translateX(0); opacity: 0.7; }
  50%     { transform: translateX(8px); opacity: 1; }
}

/* ============================================================
   SPREAD II — STRENGTH + ABOUT
   ============================================================ */
.about {
  grid-template-columns: 0.95fr 1.25fr;
  gap: 64px;
  align-items: stretch;
}

.about-left {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--rule);
  padding-right: 56px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--crimson); font-weight: 400; }

.numbers-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 32px 0;
  border-top: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
}
.num-cell {
  padding: 22px 18px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.num-cell:nth-child(2n) { border-right: none; }
.num-cell:nth-last-child(-n+2) { border-bottom: none; }
.num-cell .figure {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 0.9;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.num-cell .figure sup {
  font-size: 0.4em;
  color: var(--crimson);
  vertical-align: top;
  margin-left: 2px;
  font-weight: 600;
}
.num-cell .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 4px;
}
.num-cell .sub {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}

.signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--crimson);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: end;
}
.signature .small {
  font-family: 'IBM Plex Mono', monospace;
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.about-right { display: flex; flex-direction: column; }

.dropcap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 92px;
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--crimson);
  font-weight: 500;
}

.body-prose {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink);
  text-align: justify;
  hyphens: auto;
}
.body-prose p + p { margin-top: 16px; text-indent: 2em; }

.about-pull {
  margin-top: 32px;
  padding: 22px 28px;
  background: var(--paper-2);
  border-left: 3px solid var(--crimson);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
}
.about-pull .attribution {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 12px;
  font-weight: 500;
}

/* ============================================================
   SPREAD III — VISION / MISSION DIPTYCH
   ============================================================ */
.diptych { grid-template-columns: 1fr 1fr; gap: 0; }
.panel {
  padding: 0 56px;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.panel + .panel { border-left: 1px solid var(--rule); }
.panel-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mute);
  margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 12px;
}
.panel-num span {
  font-family: 'IBM Plex Mono', monospace;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--crimson);
  font-weight: 600;
}
.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 0.95;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.panel-title em { font-style: italic; color: var(--crimson); font-weight: 400; }
.panel-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 42ch;
}
.panel-pull {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  display: flex; justify-content: space-between;
  letter-spacing: 0.05em;
}
.compass-rose {
  position: absolute;
  bottom: 30px; right: 56px;
  width: 60px; height: 60px;
  opacity: 0.65;
}

/* ============================================================
   SPREAD IV — FEATURED PROJECTS
   ============================================================ */
.projects {
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  gap: 32px;
}
.projects-header {
  display: flex; justify-content: space-between; align-items: end;
  border-bottom: 1.5px solid var(--rule);
  padding-bottom: 22px;
}
.projects-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.projects-header h2 em { font-style: italic; color: var(--crimson); font-weight: 400; }
.projects-header .meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
  line-height: 1.7;
  font-weight: 500;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.project {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sharp);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(20,15,5,0.25); }

.project-img {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--parchment-2);
  position: relative;
  filter: contrast(1.04) saturate(0.95);
}
.project-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(20,15,5,0.25) 100%);
}
.project-stamp {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  font-weight: 600;
  color: var(--crimson);
  border: 1px solid var(--rule);
  z-index: 2;
}
.project-status {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--crimson);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 11px;
  font-weight: 600;
  z-index: 2;
}

.project-body {
  padding: 24px 28px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.project-name em {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0;
}
.project-loc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.project-loc::before {
  content: ""; width: 8px; height: 8px;
  border: 1.5px solid var(--crimson);
  border-radius: 50%;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 4px;
  border-top: 1px solid var(--rule-soft);
}
.spec {
  padding: 12px 14px 12px 0;
  border-right: 1px solid var(--rule-soft);
}
.spec:nth-child(2n) { border-right: none; padding-left: 14px; padding-right: 0; }
.spec:nth-child(n+3) { border-top: 1px solid var(--rule-soft); }
.spec .k {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 4px;
}
.spec .v {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

.project-cta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}
.project-cta .arrow {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  letter-spacing: 0;
  transition: transform 0.3s ease;
}
.project:hover .project-cta .arrow { transform: translateX(6px); color: var(--crimson); }

/* ============================================================
   SPREAD V — VISIT / CTA
   ============================================================ */
.visit {
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.visit-left { position: relative; }
.visit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-top: 18px;
}
.visit-title em { font-style: italic; color: var(--crimson); font-weight: 400; }
.visit-deck {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  max-width: 42ch;
}
.cta-row { display: flex; gap: 14px; margin-top: 36px; }
.visit-foot {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font-weight: 500;
}

.contact-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 40px 40px 32px;
  position: relative;
  box-shadow: var(--shadow);
}
.contact-card .stamp {
  position: absolute;
  top: -18px; right: 32px;
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1.5px solid var(--crimson);
  background: var(--white);
  color: var(--crimson);
  display: grid; place-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(-8deg);
  font-weight: 600;
  box-shadow: var(--shadow-sharp);
}
.contact-card .stamp strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  display: block;
  font-weight: 500;
  margin: 2px 0;
  letter-spacing: 0;
}
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.contact-card .sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 6px 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.contact-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule-soft);
  gap: 20px;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .k {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  white-space: nowrap;
}
.contact-row .v {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  text-align: right;
  font-weight: 500;
}

/* ============================================================
   SIDE NAV
   ============================================================ */
.spread-nav {
  display: flex; gap: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  pointer-events: auto;
}
.spread-nav button {
  background: none; border: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  border-right: 1px dotted var(--rule-soft);
  font-weight: 500;
}
.spread-nav button:last-child { border-right: none; }
.spread-nav button:hover { color: var(--ink); }
.spread-nav button.active { background: var(--ink); color: var(--white); }

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes drift  { from { transform: translate(0,0); } to { transform: translate(0,-4px); } }

.hero-left .eyebrow  { animation: fadeUp 0.8s ease 0.1s both; }
.hero-title          { animation: fadeUp 1.05s cubic-bezier(.2,.8,.2,1) 0.25s both; }
.hero-deck           { animation: fadeUp 0.85s ease 0.55s both; }
.trust-strip         { animation: fadeUp 0.85s ease 0.7s both; }
.hero-cta            { animation: fadeUp 0.85s ease 0.85s both; }
.hero-meta           { animation: fadeIn 0.85s ease 1s both; }
.hero-right .hero-card:nth-child(1) { animation: fadeUp 1.05s cubic-bezier(.2,.8,.2,1) 0.5s both; }
.hero-right .hero-card:nth-child(2) { animation: fadeUp 1.05s cubic-bezier(.2,.8,.2,1) 0.7s both; }
.cred-card           { animation: fadeUp 1s ease 1.1s both, drift 4s ease-in-out 2.1s infinite alternate; }
.scroll-cue          { animation: fadeIn 1s ease 1.4s both; }

/* ============================================================
   RESPONSIVE — tablet, phone, small phone
   ============================================================ */

/* TABLET */
@media (max-width: 1280px) and (min-width: 1025px) {
  .spread { padding: 110px 48px 60px; }
  .hero, .about { gap: 40px; }
  .hero-left { padding-right: 32px; }
  .about-left { padding-right: 40px; }
  .brand-mark .crest { width: 56px; height: 56px; font-size: 32px; }
  .brand-mark .name { font-size: 34px; }
}

/* PHONE & SMALL TABLET — centered editorial column */
@media (max-width: 1024px) {
  .archive {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    height: auto;
  }
  .spread {
    flex: 0 0 auto;
    height: auto;
    min-height: auto;
    width: 100vw;
    padding: 140px 24px 110px;
    scroll-snap-align: start;
    display: block;
    text-align: center;
  }

  /* TOP CHROME — centered brand */
  .chrome-top {
    padding: 16px 20px 14px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .chrome-top .left, .chrome-top .right {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  .chrome-top .right span:not(.cta-pill) { display: none; }

  .brand-mark { gap: 14px; justify-content: center; }
  .brand-mark .crest { width: 48px; height: 48px; font-size: 28px; border-width: 2px; }
  .brand-mark .name { font-size: 26px; line-height: 0.95; text-align: left; }
  .brand-mark .name .tag {
    font-size: 8.5px;
    margin-top: 5px;
    letter-spacing: 0.24em;
  }

  .cta-pill { padding: 9px 16px; font-size: 9px; letter-spacing: 0.2em; }

  /* BOTTOM CHROME — clean centered footer */
  .chrome-bottom {
    padding: 10px 16px;
    font-size: 9px;
    flex-direction: column;
    gap: 8px;
  }
  .chrome-bottom .left,
  .chrome-bottom .right {
    font-size: 8.5px;
    letter-spacing: 0.22em;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .chrome-bottom .center { order: -1; }

  .spread-nav { border-width: 1.5px; }
  .spread-nav button { padding: 8px 16px; font-size: 9.5px; letter-spacing: 0.22em; }

  .page-num {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 28px;
    font-size: 9.5px;
    letter-spacing: 0.3em;
    color: var(--ink-mute);
  }

  /* HERO — centered, single column */
  .hero, .about {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .hero-left, .about-left {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-right: 0;
    padding-bottom: 40px;
    align-items: center;
  }
  .about-right { align-items: center; }

  .eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.3em;
    justify-content: center;
  }
  .eyebrow::before { width: 28px; }

  .hero-title {
    font-size: clamp(42px, 9.5vw, 60px);
    line-height: 0.98;
    margin-top: 22px;
    text-align: center;
  }
  .hero-deck {
    font-size: 16px;
    margin: 24px auto 0;
    padding-top: 22px;
    max-width: 38ch;
    text-align: center;
    border-top: 1px solid var(--rule);
  }

  .trust-strip {
    gap: 16px 22px;
    margin: 24px auto 0;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
    margin: 30px auto 0;
    width: 100%;
    max-width: 320px;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    font-size: 10.5px;
  }

  /* HERO RIGHT — centered cards */
  .hero-right {
    grid-template-rows: auto auto;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-card { min-height: 280px; aspect-ratio: 4 / 3; }
  .hero-card .overlay { padding: 20px; text-align: left; }
  .hero-card .name { font-size: 22px; }
  .hero-card .name em { font-size: 12px; }
  .hero-card .loc { font-size: 12px; }
  .hero-card .stamp { font-size: 8.5px; padding: 6px 10px; top: 14px; right: 14px; letter-spacing: 0.2em; }
  .hero-card .meta-tag { font-size: 8.5px; }

  .scroll-cue { display: none; }

  /* ABOUT */
  .section-title {
    font-size: clamp(34px, 7.5vw, 50px);
    margin: 16px auto 24px;
    text-align: center;
  }

  .body-prose {
    font-size: 16px;
    line-height: 1.75;
    text-align: left;
    max-width: 56ch;
    margin: 0 auto;
  }
  .body-prose p + p { text-indent: 1.6em; }
  .dropcap::first-letter { font-size: 64px; padding: 4px 10px 0 0; }

  .about-pull {
    font-size: 17px;
    padding: 22px 24px;
    margin: 28px auto 0;
    max-width: 56ch;
    text-align: left;
    border-left: 3px solid var(--crimson);
  }
  .about-pull .attribution { text-align: left; }

  .numbers-bar {
    margin: 28px auto;
    max-width: 480px;
  }
  .num-cell {
    padding: 22px 16px;
    text-align: left;
  }
  .num-cell .figure { font-size: 44px; }
  .num-cell .label { font-size: 9px; letter-spacing: 0.2em; }
  .num-cell .sub { font-size: 12.5px; }

  .signature {
    font-size: 22px;
    padding-top: 22px;
    margin: 32px auto 0;
    max-width: 480px;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }
  .signature .small { font-size: 8.5px; letter-spacing: 0.22em; }
}

/* SMALL PHONE — under 480px */
@media (max-width: 480px) {
  .spread { padding: 130px 18px 110px; }

  .chrome-top { padding: 14px 16px 12px; gap: 10px; }
  .brand-mark { gap: 11px; }
  .brand-mark .crest { width: 40px; height: 40px; font-size: 22px; border-width: 1.8px; }
  .brand-mark .name { font-size: 20px; }
  .brand-mark .name .tag { font-size: 7.5px; letter-spacing: 0.22em; margin-top: 4px; }
  .cta-pill { padding: 8px 14px; font-size: 8.5px; letter-spacing: 0.18em; }

  .chrome-bottom { padding: 8px 14px; gap: 6px; }
  .chrome-bottom .left { display: none; }
  .spread-nav button { padding: 7px 12px; font-size: 9px; letter-spacing: 0.18em; }

  .hero-title { font-size: 38px; }
  .section-title { font-size: 30px; }
  .hero-deck { font-size: 15px; }
  .body-prose { font-size: 15.5px; }

  .trust-strip { gap: 12px 18px; }
  .trust-strip span { font-size: 9px; }

  .num-cell { padding: 16px 12px; }
  .num-cell .figure { font-size: 36px; }

  .hero-card { aspect-ratio: 4 / 3; min-height: 220px; }
  .hero-card .name { font-size: 20px; }

  .about-pull { font-size: 16px; padding: 18px 20px; }
  .signature { font-size: 19px; }
}
