:root {
  --ink: #071419;
  --ink-soft: #10262a;
  --ivory: #f5f0e6;
  --paper: #fffdf8;
  --gold: #c79a38;
  --gold-bright: #e4ba58;
  --gold-pale: #ead8ab;
  --muted: #6e746f;
  --line: rgba(7, 20, 25, 0.16);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 30px 80px rgba(3, 13, 16, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: min(92rem, calc(100% - 4rem));
  margin: 0 auto;
  padding: 1.5rem 0;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--gold-bright);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.brand small {
  display: block;
  margin-top: -0.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header nav { display: flex; gap: 2rem; }

.site-header nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 1px;
  background: var(--gold-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  color: var(--ink);
  background: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover { background: #efca70; transform: translateY(-2px); }
.button:focus-visible,
.card-button:focus-visible,
.quiet-button:focus-visible,
.dialog-close:focus-visible { outline: 3px solid #77c6d3; outline-offset: 3px; }
.button-small { min-height: 2.65rem; padding: 0.65rem 1rem; font-size: 0.7rem; }
.button-dark { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--gold-bright); }

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: 9.5rem max(4vw, calc((100vw - 92rem) / 2)) 5rem;
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 38%, rgba(35, 100, 103, 0.2), transparent 34%),
    linear-gradient(125deg, #061116 0%, #0b2125 62%, #071419 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.65;
}

.hero-copy,
.hero-portrait { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote { font-family: var(--serif); }

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.8rem, 7.1vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.87;
}

h1 em { color: var(--gold-bright); font-weight: 400; }

.hero-lede {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.text-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.text-link-button {
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.hero-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
}

.hero-portrait {
  width: min(100%, 33rem);
  justify-self: center;
}

.portrait-frame {
  padding: clamp(0.65rem, 1.5vw, 1.05rem);
  background: linear-gradient(135deg, #f3cb65, #7c5213 42%, #e6b34c 70%, #6e4510);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.24);
  transform: rotate(1.5deg);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border: 0.28rem solid #2e1d08;
  filter: saturate(0.93) contrast(1.04);
}

.portrait-plaque {
  position: relative;
  z-index: 2;
  width: 82%;
  margin: -2.2rem auto 0;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: var(--gold-bright);
  border: 1px solid #735217;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.portrait-plaque span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-plaque strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.98rem;
}

.hero-seal {
  position: absolute;
  right: -1rem;
  bottom: 3.2rem;
  display: grid;
  width: 5.2rem;
  height: 5.2rem;
  place-items: center;
  color: var(--gold-bright);
  background: #8f1f20;
  border: 0.25rem double var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  transform: rotate(-9deg);
}

.dispatch-strip {
  overflow: hidden;
  color: var(--ink);
  background: var(--gold-bright);
  border-block: 1px solid #98701d;
}

.dispatch-strip div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 2rem;
  font-family: var(--serif);
  font-size: 0.93rem;
  font-style: italic;
}

.dispatch-strip i { font-size: 0.55rem; }

.section { padding: clamp(5rem, 9vw, 9rem) max(4vw, calc((100vw - 84rem) / 2)); }

.section-heading { margin-bottom: 3rem; }
.section-heading.centered { max-width: 48rem; margin-inline: auto; text-align: center; }
.section-heading h2,
.standards h2,
.house h2,
.oracle h2,
.valentino h2,
.stories h2,
.manifesto h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5.2vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.section-heading > p:last-child { max-width: 40rem; margin: 1.2rem auto 0; color: var(--muted); }
.split-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: end; gap: 4rem; }
.split-heading > p:last-child { margin: 0; }

.why { background: var(--paper); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.principles article { position: relative; min-height: 15rem; padding: 2rem 2.25rem; border-right: 1px solid var(--line); }
.principles article:last-child { border-right: 0; }
.principle-number { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.16em; }
.principles h3 { margin: 2.2rem 0 0.6rem; font-size: 2rem; font-weight: 400; }
.principles p { max-width: 18rem; margin: 0; color: var(--muted); }

.services { background: #eee7da; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
  position: relative;
  display: flex;
  min-height: 33rem;
  flex-direction: column;
  padding: 1.7rem;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(7, 20, 25, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-card:hover { box-shadow: 0 20px 45px rgba(25, 22, 13, 0.1); transform: translateY(-5px); }
.service-card.featured { color: var(--paper); background: var(--ink-soft); border-color: var(--gold); }
.service-card.catastrophic { background: #d8c49d; }
.card-ribbon {
  position: absolute;
  top: 0;
  right: 1.4rem;
  padding: 0.42rem 0.75rem;
  color: var(--ink);
  background: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.card-topline { display: flex; justify-content: space-between; font-size: 0.65rem; letter-spacing: 0.14em; opacity: 0.65; text-transform: uppercase; }
.duck-medallion {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  margin: 3rem 0 1.5rem;
  color: var(--ink);
  background: var(--gold-bright);
  border: 0.25rem double rgba(7, 20, 25, 0.6);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.6rem;
}
.service-card h3 { margin: 0; font-size: 2.1rem; font-weight: 400; line-height: 1; }
.card-intro { min-height: 4.8rem; color: inherit; opacity: 0.75; }
.service-card ul { display: grid; gap: 0.55rem; margin: 0 0 2.2rem; padding: 1.4rem 0 0; border-top: 1px solid currentColor; list-style: none; opacity: 0.78; }
.service-card li::before { margin-right: 0.6rem; color: var(--gold); content: "◆"; font-size: 0.52rem; }
.card-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 0.9rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-top: 1px solid currentColor;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.card-button span { color: var(--gold); font-size: 1.2rem; transition: transform 160ms ease; }
.card-button:hover span { transform: translate(3px, -3px); }

.standards {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  color: var(--paper);
  background: #741c1e;
}
.standards .eyebrow { color: var(--gold-bright); }
.standards-copy > p:not(.eyebrow) { max-width: 39rem; color: rgba(255, 255, 255, 0.72); font-family: var(--serif); font-size: 1.15rem; }
.standards-signoff { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.standards-signoff span { display: grid; width: 3.4rem; height: 3.4rem; place-items: center; border: 1px solid var(--gold-bright); border-radius: 50%; color: var(--gold-bright); }
.standards-signoff p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; line-height: 1.45; }
.standards-oath { padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(35, 4, 6, 0.18); }
.standards-oath > p { color: var(--gold-bright); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.standards-oath blockquote { margin: 2.5rem 0; font-size: clamp(2rem, 3.4vw, 3.3rem); font-style: italic; line-height: 1.12; }
.standards-oath > span { color: rgba(255, 255, 255, 0.52); font-size: 0.78rem; }

.house { display: grid; grid-template-columns: 0.83fr 1.17fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); background: var(--paper); }
.house-art { position: relative; }
.house-art::before { position: absolute; z-index: 0; inset: -1.2rem 1.2rem 1.2rem -1.2rem; border: 1px solid var(--gold); content: ""; }
.house-art img { position: relative; z-index: 1; width: 100%; box-shadow: var(--shadow); }
.art-caption { position: relative; z-index: 2; display: block; padding-top: 0.8rem; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.house-copy .large-copy { max-width: 34rem; margin: 1.5rem 0 1rem; font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.38; }
.house-copy > p:not(.eyebrow):not(.large-copy):not(.motto) { max-width: 39rem; color: var(--muted); }
.house-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 2.5rem 0; border-block: 1px solid var(--line); }
.house-facts div { padding: 1.2rem 1rem; border-right: 1px solid var(--line); }
.house-facts div:first-child { padding-left: 0; }
.house-facts div:last-child { border-right: 0; }
.house-facts dt { font-family: var(--serif); font-size: 2.3rem; line-height: 1; }
.house-facts dd { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase; }
.motto { color: #8f1f20; font-family: var(--serif); font-size: 1.05rem; font-style: italic; }

.oracle {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 35%, rgba(199, 154, 56, 0.15), transparent 34%),
    #05090a;
}
.oracle-art { position: relative; }
.oracle-art::before { position: absolute; inset: -1rem 1rem 1rem -1rem; border: 1px solid rgba(228, 186, 88, 0.5); content: ""; }
.oracle-art img { position: relative; width: 100%; border: 1px solid rgba(228, 186, 88, 0.25); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.oracle .art-caption { color: rgba(255, 255, 255, 0.42); }
.oracle-copy > p:not(.eyebrow) { max-width: 35rem; color: rgba(255, 255, 255, 0.64); font-family: var(--serif); font-size: 1.15rem; }
.oracle-copy .button { margin-top: 1rem; }
.oracle-reading { margin-top: 2rem; padding: 1.25rem 0 0; border-top: 1px solid rgba(228, 186, 88, 0.34); }
.oracle-reading span { color: var(--gold-bright); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.oracle-reading p { max-width: 31rem; margin: 0.55rem 0 0; color: var(--paper); font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); font-style: italic; line-height: 1.35; }

.valentino { position: relative; display: grid; min-height: 48rem; grid-template-columns: 1.2fr 0.8fr; align-items: end; overflow: hidden; color: var(--paper); background: linear-gradient(115deg, #061115 0%, #0e292d 58%, #171008 100%); }
.valentino-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(213, 157, 65, 0.18), transparent 27%),
    url("./assets/valentino-top-hat.webp");
  background-position: center, 17% center;
  background-repeat: no-repeat;
  background-size: cover, auto 100%;
}
.valentino-backdrop::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 13, 16, 0.08) 0%, rgba(4, 13, 16, 0.2) 45%, rgba(4, 13, 16, 0.94) 76%); content: ""; }
.valentino-copy { position: relative; z-index: 1; grid-column: 2; padding: clamp(2rem, 5vw, 5rem) 0; }
.valentino-copy > p:not(.eyebrow):not(.valentino-line):not(.valentino-answer) { color: rgba(255, 255, 255, 0.66); font-family: var(--serif); font-size: 1.2rem; }
.valentino-line { color: var(--gold-bright); font-family: var(--serif); font-size: 1.12rem; font-style: italic; }
.quiet-button { padding: 0.7rem 0; color: var(--paper); background: transparent; border: 0; border-bottom: 1px solid var(--gold); cursor: pointer; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.valentino-answer { max-width: 30rem; margin-top: 1.5rem; color: var(--gold-pale); font-family: var(--serif); font-size: 1.12rem; font-style: italic; }

.story-premiere {
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 15%, rgba(228, 186, 88, 0.17), transparent 28%),
    linear-gradient(135deg, #071419, #102b2f 62%, #071419);
}
.premiere-heading { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 4rem; margin-bottom: 3rem; }
.premiere-heading h2 { max-width: 12ch; margin: 0; font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 400; letter-spacing: -0.055em; line-height: 0.92; }
.premiere-heading > p { max-width: 36rem; margin: 0; color: rgba(255, 255, 255, 0.65); font-family: var(--serif); font-size: 1.15rem; }
.premiere-grid { display: grid; grid-template-columns: 1.15fr 0.925fr 0.925fr; gap: 1px; background: rgba(228, 186, 88, 0.34); border: 1px solid rgba(228, 186, 88, 0.34); }
.premiere-card { display: flex; min-height: 24rem; flex-direction: column; align-items: flex-start; padding: clamp(1.5rem, 3vw, 2.5rem); color: var(--paper); background: #0a1b20; border: 0; cursor: pointer; text-align: left; transition: background 180ms ease, transform 180ms ease; }
.premiere-card:hover { z-index: 1; background: #14343a; transform: translateY(-4px); }
.premiere-card:focus-visible { z-index: 1; outline: 3px solid #77c6d3; outline-offset: -3px; }
.premiere-card-lead { background: #7d2021; }
.premiere-card-lead:hover { background: #982a2b; }
.premiere-card span { color: var(--gold-bright); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.premiere-card strong { max-width: 10ch; margin-top: auto; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.8rem); font-weight: 400; letter-spacing: -0.04em; line-height: 0.96; }
.premiere-card em { margin-top: 1.5rem; color: rgba(255, 255, 255, 0.68); font-size: 0.72rem; font-style: normal; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.archive-link { display: inline-block; margin-top: 2rem; color: var(--gold-bright); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-underline-offset: 0.4rem; text-transform: uppercase; }

.stories { background: #eee7da; }
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.story-card { display: grid; min-height: 34rem; grid-template-columns: 0.86fr 1.14fr; overflow: hidden; background: var(--paper); border: 1px solid var(--line); }
.story-card-featured { color: var(--paper); background: var(--ink-soft); border-color: var(--gold); }
.story-card img { width: 100%; height: 100%; object-fit: cover; }
.story-card-featured img { object-position: 50% 22%; }
.story-card:nth-child(2) img { object-position: 38% center; }
.story-card:nth-child(3) img { object-position: center 20%; }
.story-card:nth-child(4) img { object-position: center 18%; }
.story-card-copy { display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.5rem); }
.story-kicker { margin: 0 0 1.5rem; color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.story-card h3 { margin: 0; font-size: clamp(2rem, 3.4vw, 3.5rem); font-weight: 400; letter-spacing: -0.04em; line-height: 0.98; }
.story-card-copy > p:not(.story-kicker) { color: var(--muted); font-family: var(--serif); font-size: 1.02rem; }
.story-card-featured .story-card-copy > p:not(.story-kicker) { color: rgba(255, 255, 255, 0.65); }
.story-link { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: auto; padding: 1rem 0; color: inherit; background: transparent; border: 0; border-top: 1px solid currentColor; cursor: pointer; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.story-link span { color: var(--gold); font-size: 1.2rem; transition: transform 160ms ease; }
.story-link:hover span { transform: translate(3px, -3px); }

.story-dialog { width: min(62rem, calc(100% - 2rem)); max-height: calc(100svh - 2rem); padding: 0; color: var(--ink); background: var(--paper); border: 1px solid var(--gold); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55); }
.story-dialog::backdrop { background: rgba(2, 10, 13, 0.9); backdrop-filter: blur(8px); }
.story-dialog .dialog-close { position: sticky; z-index: 3; top: 1rem; float: right; margin: 1rem 1.2rem -4rem 0; color: var(--ink); }
.story-reader { padding: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 8vw, 7rem); }
.story-reader > .story-kicker { max-width: 44rem; margin-inline: auto; }
.story-reader > h2 { max-width: 44rem; margin: 0 auto clamp(3rem, 6vw, 5rem); font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.7rem); font-weight: 400; letter-spacing: -0.055em; line-height: 0.92; }
.story-body { max-width: 44rem; margin: 0 auto; }
.story-body p,
.story-body li { font-family: var(--serif); font-size: clamp(1.08rem, 1.7vw, 1.25rem); line-height: 1.82; }
.story-body p { margin: 0 0 1.5rem; }
.story-body ul { margin: 0 0 2rem; padding-left: 1.4rem; }
.story-body blockquote { margin: 2.6rem 0; padding-left: 1.5rem; color: #741c1e; border-left: 2px solid var(--gold); font-size: clamp(1.55rem, 3vw, 2.4rem); font-style: italic; line-height: 1.35; }
.story-body .story-break { margin: 3rem 0; color: #741c1e; font-size: clamp(1.55rem, 3vw, 2.5rem); font-style: italic; text-align: center; }
.pantheon-body h3 { margin: 3.2rem 0 0.35rem; font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 400; line-height: 1.08; }
.pantheon-body h3::before { display: block; margin-bottom: 0.85rem; color: var(--gold); content: "◆"; font-size: 0.65rem; }
.pantheon-body p strong { font-family: var(--sans); font-size: 0.76em; letter-spacing: 0.08em; text-transform: uppercase; }

.manifesto { color: var(--ink); background: var(--gold-bright); text-align: center; }
.manifesto .eyebrow { color: rgba(7, 20, 25, 0.65); }
.manifesto h2 { max-width: 19ch; margin-inline: auto; }
.manifesto-punchline { margin: 1.6rem 0 0; font-family: var(--serif); font-size: clamp(3.4rem, 7vw, 7.5rem); font-style: italic; letter-spacing: -0.05em; line-height: 1; }
.manifesto > p:not(.eyebrow):not(.manifesto-punchline) { max-width: 41rem; margin: 2rem auto; font-family: var(--serif); font-size: 1.15rem; }

footer { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; padding: 4rem max(4vw, calc((100vw - 84rem) / 2)); color: var(--paper); background: var(--ink); }
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer-brand strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.footer-brand p { margin: 0.25rem 0 0; color: rgba(255, 255, 255, 0.48); }
.footer-links { display: flex; justify-content: flex-end; gap: 1.5rem; }
.footer-links a,
.footer-links button { align-self: flex-start; padding: 0; color: rgba(255, 255, 255, 0.66); background: transparent; border: 0; cursor: pointer; font-size: 0.7rem; letter-spacing: 0.12em; text-decoration: none; text-transform: uppercase; }
.origin-note { grid-column: 1 / -1; margin: 2rem 0 0; padding-top: 1.3rem; color: rgba(255, 255, 255, 0.42); border-top: 1px solid rgba(255, 255, 255, 0.13); font-family: var(--serif); font-size: 0.82rem; }
.origin-note span { float: right; }

.booking-dialog {
  width: min(44rem, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--gold);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48);
}
.booking-dialog::backdrop { background: rgba(2, 10, 13, 0.86); backdrop-filter: blur(8px); }
.booking-dialog h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 7vw, 4.8rem); font-weight: 400; letter-spacing: -0.04em; line-height: 1; }
.dialog-close { position: absolute; top: 1rem; right: 1.2rem; color: var(--ink); background: transparent; border: 0; cursor: pointer; font-family: var(--serif); font-size: 2rem; }
.dialog-intro { max-width: 35rem; color: var(--muted); }
.booking-dialog form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.booking-dialog label { display: grid; gap: 0.4rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.booking-dialog label:first-child,
.booking-dialog label:last-of-type,
.booking-dialog form .button,
.booking-dialog form small { grid-column: 1 / -1; }
.booking-dialog input,
.booking-dialog select,
.booking-dialog textarea { width: 100%; padding: 0.85rem 0.9rem; color: var(--ink); background: white; border: 1px solid rgba(7, 20, 25, 0.28); border-radius: 0; font-size: 1rem; letter-spacing: normal; text-transform: none; }
.booking-dialog input:focus,
.booking-dialog select:focus,
.booking-dialog textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.booking-dialog form small { color: var(--muted); font-size: 0.7rem; text-align: center; }
.booking-success { text-align: center; }
.success-seal { display: grid; width: 5rem; height: 5rem; place-items: center; margin: 0 auto 2rem; color: var(--paper); background: #741c1e; border: 0.3rem double var(--gold-bright); border-radius: 50%; font-size: 1.5rem; }
.booking-success .eyebrow { margin-top: 0; }
.booking-success > p:not(.eyebrow):not(.docket) { max-width: 33rem; margin: 1.5rem auto; color: var(--muted); }
.docket { margin: 2rem auto; padding: 0.7rem; background: var(--ivory); border: 1px solid var(--line); font-family: monospace; font-size: 0.82rem; letter-spacing: 0.11em; }

.quack-toast {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: 1rem;
  max-width: min(26rem, calc(100% - 2rem));
  padding: 1rem 1.2rem;
  color: var(--paper);
  background: #741c1e;
  border: 1px solid var(--gold-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  font-family: var(--serif);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}
.quack-toast.visible { opacity: 1; transform: translateY(0); }

[hidden] { display: none !important; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; width: calc(100% - 2rem); }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr 0.72fr; gap: 2.5rem; padding-inline: 2rem; }
  .split-heading { grid-template-columns: 1fr; gap: 1rem; }
  .service-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .card-intro { min-height: 0; }
  .standards { grid-template-columns: 1fr; }
  .house { gap: 3rem; }
  .oracle { gap: 3rem; }
  .valentino { grid-template-columns: 0.85fr 1.15fr; }
}

@media (max-width: 720px) {
  .site-header { padding-block: 1rem; }
  .brand small { display: none; }
  .header-cta { padding-inline: 0.75rem; }
  .hero { grid-template-columns: 1fr; gap: 4rem; padding: 8rem 1.25rem 4.5rem; }
  h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .hero-lede { font-size: 1.05rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-portrait { width: min(88%, 26rem); }
  .hero-seal { right: -0.8rem; }
  .section { padding: 5rem 1.25rem; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 0; padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles article:last-child { border-bottom: 0; }
  .house { grid-template-columns: 1fr; }
  .house-art { width: calc(100% - 1.2rem); margin-left: 1.2rem; }
  .house-facts { grid-template-columns: 1fr; }
  .house-facts div { padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .house-facts div:last-child { border-bottom: 0; }
  .oracle { grid-template-columns: 1fr; }
  .oracle-art { width: calc(100% - 1rem); margin-left: 1rem; }
  .premiere-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .premiere-grid { grid-template-columns: 1fr; }
  .premiere-card { min-height: 18rem; }
  .story-card { min-height: 30rem; }
  .valentino { min-height: 46rem; grid-template-columns: 1fr; align-items: end; }
  .valentino-backdrop { background-position: center, center 10%; background-size: cover, auto 76%; }
  .valentino-backdrop::after { background: linear-gradient(0deg, rgba(4, 13, 16, 0.98) 8%, rgba(4, 13, 16, 0.2) 75%); }
  .valentino-copy { grid-column: 1; padding-bottom: 0; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.25rem; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .origin-note { grid-column: 1; }
  .origin-note span { display: block; float: none; margin-top: 0.5rem; }
  .booking-dialog form { grid-template-columns: 1fr; }
  .booking-dialog label,
  .booking-dialog label:first-child,
  .booking-dialog label:last-of-type,
  .booking-dialog form .button,
  .booking-dialog form small { grid-column: 1; }
  .story-card { min-height: 0; grid-template-columns: 1fr; }
  .story-card img { height: 17rem; }
  .story-card-copy { min-height: 22rem; }
  .story-dialog { width: 100%; max-height: 100svh; border-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
