:root {
  --bg: #f6f3ef;
  --bg-deep: #ebe4db;
  --ink: #161412;
  --ink-soft: #5c574f;
  --line: rgba(22, 20, 18, 0.14);
  --accent: #c1121f;
  --accent-hover: #9b0e18;
  --paper: #fffdf9;
  --font-display: "Fraunces", "Source Serif 4", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --header-h: 4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(1.1rem, 3.5vw, 2.75rem);
  --max: 92rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --mobile-cta-h: 0px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 35% at 0% 0%, rgba(193, 18, 31, 0.05), transparent 55%),
    linear-gradient(180deg, #faf7f3 0%, var(--bg) 40%, var(--bg-deep) 100%);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: var(--mobile-cta-h);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ul, ol, figure, dl, dd, dt, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  overflow-wrap: balance;
  text-wrap: balance;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 100;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header — always readable, no mix-blend */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--pad);
  color: var(--ink);
  background: rgba(250, 247, 243, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(22, 20, 18, 0.08);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 243, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(22, 20, 18, 0.06);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.logo em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

.nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 1;
  padding: 0.35rem 0;
  transition: color 0.25s var(--ease);
}

.nav a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav a:not(.nav-phone):hover {
  color: var(--accent);
}

.nav a:not(.nav-phone):hover::after {
  transform: scaleX(1);
}

.nav-phone {
  margin-left: 0.35rem;
  padding: 0.55rem 1rem !important;
  border: 1px solid var(--accent) !important;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-phone:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.text-link:hover { border-bottom-color: var(--accent); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: end;
  padding: calc(var(--header-h) + 1rem) var(--pad) 2.5rem;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.82) 0%, rgba(10, 8, 7, 0.48) 50%, rgba(10, 8, 7, 0.58) 100%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.5) 0%, rgba(10, 8, 7, 0.28) 38%, rgba(10, 8, 7, 0.86) 100%);
}

.hero-rail {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 0.85rem;
  height: min(58vh, 28rem);
  align-self: end;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-bottom: 1rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 10ch;
  margin-bottom: 1.1rem;
}

.hero-lead {
  max-width: 28rem;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-year {
  position: absolute;
  right: var(--pad);
  bottom: -0.12em;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 600;
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
}

.reveal-child {
  opacity: 0;
  transform: translateY(1.4rem);
  animation: rise 0.9s var(--ease-out) forwards;
  animation-delay: calc(0.12s + var(--d, 0) * 0.1s);
}

/* ========== INDEX STRIP ========== */
.index-strip {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) 1.3fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.index-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.index-list a {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), background 0.35s var(--ease);
}

.index-list a:hover {
  padding-left: 0.75rem;
  background: linear-gradient(90deg, rgba(193, 18, 31, 0.06), transparent 55%);
}

.index-list .idx {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.15rem;
}

.index-list strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
}

.index-list em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ========== BATH ========== */
.bath {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0 var(--pad) clamp(4rem, 9vw, 7rem);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.bath-sticky {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding-right: 1rem;
}

.bath-sticky h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  margin-bottom: 1.1rem;
}

.bath-sticky > p {
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 28rem;
  line-height: 1.65;
}

.bath-stage {
  display: grid;
  gap: 1rem;
}

.bath-shot {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.bath-shot img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.bath-shot:hover img {
  transform: scale(1.04);
}

.bath-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.5rem;
  padding: 0.5rem 0 0 8%;
}

.bath-points li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.bath-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
}

.stagger-list.is-visible li {
  opacity: 1;
  transform: none;
}

.stagger-list.is-visible li:nth-child(1) { transition-delay: 0.05s; }
.stagger-list.is-visible li:nth-child(2) { transition-delay: 0.1s; }
.stagger-list.is-visible li:nth-child(3) { transition-delay: 0.15s; }
.stagger-list.is-visible li:nth-child(4) { transition-delay: 0.2s; }
.stagger-list.is-visible li:nth-child(5) { transition-delay: 0.25s; }
.stagger-list.is-visible li:nth-child(6) { transition-delay: 0.3s; }

/* ========== RIBBON SERVICES ========== */
.ribbon {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 9vw, 6.5rem);
  background: var(--ink);
  color: #f5f1eb;
}

.ribbon-head {
  padding: 0 var(--pad) 2rem;
  max-width: 36rem;
}

.ribbon-head .eyebrow { color: #f87171; }

.ribbon-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.ribbon-head p {
  color: rgba(245, 241, 235, 0.78);
  font-weight: 400;
}

.ribbon-hint {
  display: none;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.45);
}

.ribbon-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(17rem, 22rem);
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--pad) 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.ribbon-panel {
  scroll-snap-align: start;
  min-height: 24rem;
  padding: 1.75rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  transition: background 0.35s var(--ease);
}

.ribbon-panel:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ribbon-panel:hover,
.ribbon-panel.accent {
  background: rgba(193, 18, 31, 0.18);
}

.ribbon-panel span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #f87171;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.ribbon-panel h3 {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.ribbon-panel > p {
  color: rgba(245, 241, 235, 0.78);
  font-weight: 400;
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.6;
}

.ribbon-panel li {
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

/* ========== MASONRY BOND ========== */
.masonry-refs {
  display: grid;
  grid-template-columns: minmax(14rem, 0.75fr) 1.5fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.masonry-intro {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.masonry-intro h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}

.masonry-intro p:last-child {
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.65;
}

.bond {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 14rem 11rem 16rem;
  gap: 0.7rem;
}

.bond figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #2a241f;
}

.bond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.88);
}

.bond figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.bond figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.bond-a { grid-column: 1 / 4; grid-row: 1 / 3; }
.bond-b { grid-column: 4 / 7; grid-row: 1 / 2; }
.bond-c { grid-column: 4 / 6; grid-row: 2 / 3; }
.bond-d { grid-column: 1 / 5; grid-row: 3 / 4; }
.bond-e { grid-column: 5 / 7; grid-row: 2 / 4; }

/* ========== STORY ========== */
.story {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
  overflow: hidden;
}

.story-year {
  position: absolute;
  left: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 600;
  line-height: 0.8;
  color: rgba(22, 20, 18, 0.05);
  pointer-events: none;
  z-index: 0;
}

.story-copy {
  position: relative;
  z-index: 1;
  max-width: 32rem;
}

.story-copy h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.story-copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.9rem;
  line-height: 1.7;
}

.story-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  width: fit-content;
}

.story-meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.story-meta dd {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.story-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 26rem;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
}

/* ========== SPINE PROCESS ========== */
.spine {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  max-width: 52rem;
  margin: 0 auto;
}

.spine-rail {
  position: absolute;
  left: calc(var(--pad) + 1.55rem);
  top: 10rem;
  bottom: 4rem;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), var(--line));
}

.spine-head {
  margin-bottom: 2.5rem;
  padding-left: 4.5rem;
}

.spine-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.spine-steps {
  display: grid;
  gap: 0;
}

.spine-steps li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0 1.5rem 0;
  position: relative;
}

.spine-steps li > span {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.spine-steps li.is-visible > span,
.spine-steps .reveal.is-visible > span {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.spine-steps h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.spine-steps p {
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.65;
}

/* ========== CONTACT ========== */
.contact-hero {
  padding: clamp(4rem, 9vw, 7rem) var(--pad) clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 90% 0%, rgba(193, 18, 31, 0.07), transparent 42%),
    linear-gradient(180deg, #f3ece4 0%, var(--paper) 35%);
  border-top: 1px solid var(--line);
}

.contact-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.contact-top {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.contact-top h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 0.85rem;
  max-width: 16ch;
}

.contact-lead {
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-badge {
  width: 7.5rem;
  height: 7.5rem;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--accent);
  transform: rotate(-8deg);
}

.contact-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-badge strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
}

.contact-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 2rem;
}

.contact-tile {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 12.5rem;
  padding: 1.5rem 1.35rem;
  background: var(--paper);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

a.contact-tile:hover {
  background: #fff;
  transform: translateY(-3px);
}

.contact-tile.phone {
  background: linear-gradient(160deg, #1c1614 0%, #3a1c1c 100%);
  color: #fff;
}

.contact-tile.phone .tile-label,
.contact-tile.phone .tile-action {
  color: rgba(255, 255, 255, 0.7);
}

.contact-tile.phone:hover {
  background: linear-gradient(160deg, #241c19 0%, #4a2020 100%);
}

.tile-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.tile-value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.contact-tile.phone .tile-value {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
}

.tile-action {
  margin-top: auto;
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 600;
}

.tile-meta {
  margin-top: auto;
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact-map-block {
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(193, 18, 31, 0.05), transparent 45%),
    #fff;
}

.map-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.map-address {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.btn-map {
  min-height: 2.6rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.contact-map {
  overflow: hidden;
  min-height: 18rem;
  position: relative;
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(22, 20, 18, 0.04);
}

.contact-map iframe {
  width: 100%;
  height: 22rem;
  border: 0;
  filter: grayscale(0.35) contrast(1.04);
  transition: filter 0.4s var(--ease);
}

.contact-map-block:hover .contact-map iframe {
  filter: none;
}

/* Footer */
.site-footer {
  background: #161412;
  color: rgba(245, 241, 235, 0.72);
  padding: 0;
  margin-top: 0;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(193, 18, 31, 0.28), transparent 40%),
    linear-gradient(135deg, #1c1614, #2a1a1a);
}

.footer-cta-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f87171;
  margin-bottom: 0.55rem;
}

.footer-cta h2 {
  color: #f7f2eb;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 18ch;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-footer {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.btn-footer:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.9fr;
  gap: 2rem clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #f7f2eb;
  margin-bottom: 0.75rem;
}

.footer-brand p:last-child {
  max-width: 28rem;
  line-height: 1.65;
}

.footer-heading {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.5);
}

.footer-nav,
.footer-list {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a,
.footer-list a {
  color: #f7f2eb;
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover,
.footer-list a:hover,
.footer-bottom a:hover {
  color: #f87171;
}

.footer-list {
  color: rgba(245, 241, 235, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.25rem var(--pad) 1.75rem;
  font-size: 0.88rem;
}

.footer-bottom a {
  color: #f7f2eb;
}

/* Mobile sticky CTA — hidden on desktop */
.mobile-cta {
  display: none;
}

/* Reveals */
.reveal,
.reveal-right {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 0.08s);
}

.reveal { transform: translateY(1.4rem); }
.reveal-right { transform: translateX(2rem); }

.reveal.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ========== TABLET ========== */
@media (max-width: 980px) {
  :root {
    --pad: clamp(1.15rem, 4vw, 2rem);
  }

  .index-strip,
  .bath,
  .masonry-refs,
  .story {
    grid-template-columns: 1fr;
  }

  .bath-sticky,
  .masonry-intro {
    position: static;
    padding-right: 0;
  }

  .bond {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0.65rem;
  }

  .bond-a,
  .bond-b,
  .bond-c,
  .bond-d,
  .bond-e {
    grid-column: auto;
    grid-row: auto;
    min-height: 14rem;
  }

  .bond-a { grid-column: 1 / -1; min-height: 18rem; }
  .bond-d { grid-column: 1 / -1; }

  .spine-rail { left: calc(var(--pad) + 1.4rem); }

  .story-photo,
  .bath-shot {
    clip-path: none;
  }

  .bath-shot,
  .bath-shot img {
    min-height: 22rem;
  }

  .contact-board {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-year {
    font-size: clamp(6rem, 28vw, 10rem);
    opacity: 0.7;
  }

  .ribbon-scroll {
    grid-auto-columns: minmax(15.5rem, 70vw);
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: var(--pad);
  }
}

/* ========== MOBILE ========== */
@media (max-width: 780px) {
  :root {
    --header-h: 3.65rem;
    --pad: max(1rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
    --pad-x: max(1rem, env(safe-area-inset-left, 0px));
    --mobile-cta-h: calc(4.15rem + env(safe-area-inset-bottom, 0px));
  }

  body {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .page-grain {
    opacity: 0.02;
  }

  /* Header */
  .site-header {
    height: calc(var(--header-h) + var(--safe-top));
    padding:
      var(--safe-top)
      max(1rem, var(--safe-right))
      0
      max(1rem, var(--safe-left));
    background: rgba(250, 247, 243, 0.96);
  }

  .site-header.is-scrolled,
  body.nav-open .site-header {
    border-bottom-color: var(--line);
    background: rgba(250, 247, 243, 0.98);
  }

  .logo {
    font-size: 1.2rem;
    z-index: 2;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-right: -0.35rem;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle span {
    width: 1.4rem;
  }

  .nav {
    display: none;
    position: fixed;
    inset: calc(var(--header-h) + var(--safe-top)) 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0 calc(1.5rem + var(--safe-bottom));
    background: #faf7f3;
    color: var(--ink);
    border-bottom: 0;
    overflow-y: auto;
    z-index: 40;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 1rem max(1.15rem, var(--safe-left));
    font-size: 1.12rem;
    opacity: 1;
    border-bottom: 1px solid var(--line);
    min-height: 3.1rem;
    display: flex;
    align-items: center;
  }

  .nav a:not(.nav-phone)::after {
    display: none;
  }

  .nav-phone {
    margin: 1rem max(1.15rem, var(--safe-left)) 0 !important;
    justify-content: center;
    width: calc(100% - 2 * max(1.15rem, var(--safe-left)));
    border: 1px solid var(--accent) !important;
    color: #fff !important;
    background: var(--accent);
    font-weight: 600;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      calc(var(--header-h) + var(--safe-top) + 1.25rem)
      max(1rem, var(--safe-left))
      calc(2.25rem + var(--mobile-cta-h));
    align-items: end;
  }

  .hero-rail { display: none; }

  .hero-content {
    padding-left: 0;
    padding-bottom: 0;
    max-width: none;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(10, 8, 7, 0.35) 0%, rgba(10, 8, 7, 0.45) 40%, rgba(10, 8, 7, 0.88) 100%);
  }

  .brand-mark {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    margin-bottom: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
    max-width: 11ch;
    line-height: 1.05;
    margin-bottom: 0.9rem;
  }

  .hero-lead {
    font-size: 1.02rem;
    margin-bottom: 1.35rem;
    max-width: 32rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 3.05rem;
  }

  .hero-year {
    font-size: clamp(5.5rem, 34vw, 9rem);
    right: max(0.5rem, var(--safe-right));
    bottom: calc(var(--mobile-cta-h) * 0.15);
    opacity: 0.85;
  }

  .hero-media img {
    height: 100%;
    will-change: auto;
  }

  /* Index */
  .index-strip {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
    gap: 1.35rem;
  }

  .index-intro h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .index-list a {
    grid-template-columns: 2.6rem 1fr;
    grid-template-rows: auto auto;
    gap: 0.15rem 0.85rem;
    padding: 1rem 0;
    align-items: start;
  }

  .index-list a:hover {
    padding-left: 0;
  }

  .index-list .idx {
    grid-row: 1 / span 2;
    padding-top: 0.2rem;
  }

  .index-list strong {
    font-size: clamp(1.25rem, 5.5vw, 1.55rem);
  }

  .index-list em {
    grid-column: 2;
  }

  /* Bath */
  .bath {
    padding-bottom: 3rem;
    gap: 1.5rem;
  }

  .bath-sticky h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .bath-shot,
  .bath-shot img {
    min-height: 18rem;
    max-height: 70vw;
    object-fit: cover;
  }

  .bath-points {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 0;
  }

  .bath-points li {
    font-size: 0.98rem;
    padding: 0.7rem 0 0.7rem 1rem;
  }

  /* Ribbon */
  .ribbon {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .ribbon-head {
    padding-bottom: 1.25rem;
  }

  .ribbon-head h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .ribbon-hint {
    display: block;
  }

  .ribbon-scroll {
    grid-auto-columns: minmax(82vw, 19rem);
    gap: 0;
    padding-bottom: 0.5rem;
    overscroll-behavior-x: contain;
  }

  .ribbon-panel {
    min-height: 20rem;
    padding: 1.4rem 1.2rem;
  }

  .ribbon-panel span {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .ribbon-panel h3 {
    font-size: 1.55rem;
  }

  /* References bond */
  .masonry-refs {
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 1.35rem;
  }

  .masonry-intro h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .bond {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .bond-a,
  .bond-b,
  .bond-c,
  .bond-d,
  .bond-e {
    grid-column: auto;
    min-height: 15rem;
  }

  .bond-a { min-height: 17rem; }

  .bond figcaption {
    font-size: 1.05rem;
    left: 0.75rem;
    bottom: 0.65rem;
  }

  /* Story */
  .story {
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 1.5rem;
  }

  .story-year {
    display: none;
  }

  .story-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .story-photo,
  .story-photo img {
    min-height: 16rem;
  }

  .story-meta {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.85rem;
  }

  /* Spine */
  .spine {
    padding-top: 3rem;
    padding-bottom: 3rem;
    max-width: none;
  }

  .spine-rail {
    left: calc(max(1rem, var(--safe-left)) + 1.35rem);
    top: 8.5rem;
    bottom: 3rem;
  }

  .spine-head {
    padding-left: 4.1rem;
    margin-bottom: 1.5rem;
  }

  .spine-head h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .spine-steps li {
    grid-template-columns: 3.2rem 1fr;
    gap: 0.85rem;
    padding: 1.15rem 0;
  }

  .spine-steps h3 {
    font-size: 1.3rem;
  }

  .spine-steps p {
    font-size: 0.98rem;
  }

  /* Contact */
  .contact-hero {
    padding-top: 3rem;
    padding-bottom: 1.75rem;
  }

  .contact-top {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.35rem;
  }

  .contact-top h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    max-width: none;
  }

  .contact-lead {
    font-size: 1.02rem;
  }

  .contact-badge {
    display: none;
  }

  .contact-board {
    grid-template-columns: 1fr;
    margin-bottom: 1.25rem;
  }

  .contact-tile {
    min-height: 0;
    padding: 1.2rem 1.15rem;
    gap: 0.45rem;
  }

  .tile-value {
    font-size: 1.4rem;
  }

  .contact-tile.phone .tile-value {
    font-size: 1.7rem;
  }

  .map-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
  }

  .map-address {
    font-size: 1.1rem;
  }

  .btn-map {
    width: 100%;
    min-height: 2.9rem;
  }

  .contact-map iframe {
    height: 16rem;
  }

  /* Footer */
  .footer-cta,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    gap: 1.25rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-cta h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    max-width: none;
  }

  .footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-cta-actions .btn {
    width: 100%;
    min-height: 3rem;
  }

  .footer-grid {
    gap: 1.75rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.65rem;
    padding-bottom: calc(1.25rem + 0.25rem);
  }

  /* Sticky mobile CTA bar */
  .mobile-cta {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    gap: 0.5rem;
    padding:
      0.55rem
      max(0.7rem, var(--safe-right))
      calc(0.55rem + var(--safe-bottom))
      max(0.7rem, var(--safe-left));
    background: rgba(22, 20, 18, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.22);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    font-weight: 600;
    font-size: 0.95rem;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-cta-call {
    background: var(--accent);
    color: #fff;
  }

  .mobile-cta-mail {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
  }

  /* Touch: disable hover transforms that feel laggy */
  .btn:hover,
  a.contact-tile:hover,
  .bond figure:hover img,
  .bath-shot:hover img {
    transform: none;
  }

  .reveal-right {
    transform: translateY(1.2rem);
  }
}

/* Small phones */
@media (max-width: 400px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .brand-mark {
    font-size: 1.45rem;
  }

  .contact-tile.phone .tile-value {
    font-size: 1.45rem;
  }

  .ribbon-scroll {
    grid-auto-columns: 85vw;
  }
}

/* Short screens */
@media (max-height: 700px) and (max-width: 780px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + var(--safe-top) + 1rem);
    padding-bottom: calc(1.5rem + var(--mobile-cta-h));
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .hero-year {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .reveal-right,
  .reveal-child,
  .bath-shot img,
  .bond img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .stagger-list li {
    opacity: 1;
    transform: none;
  }
}
