/* Northern Vector — design system v1
 * Tokens are locked per BRIEF.md section 2. Do not adjust hex values.
 */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/SourceSerif4-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/SourceSerif4-Semibold.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --graphite: #2A2D31;
  --black: #0E0F11;
  --cream: #F2EEE6;
  --cream-2: #E8E3D8;
  --brass: #9C7B3A;
  --brass-tint: #C2A064;
  --muted: #6B6E73;
  --hairline: #C9C4B8;

  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 10vw, 128px);

  --radius-sm: 2px;
  --radius-md: 4px;

  --ease: cubic-bezier(.2, .6, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section-y);
}
.section--tight {
  padding-block: clamp(48px, 7vw, 88px);
}
.section--dark {
  background: var(--graphite);
  color: var(--cream);
}
.section--cream2 {
  background: var(--cream-2);
}
.rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}
.section--dark .rule { background: rgba(201,196,184,0.18); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
  color: inherit;
}
.h-display {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 7.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.h-1 { font-size: clamp(34px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -0.01em; }
.h-2 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.12; }
.h-3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; }
.h-4 { font-family: var(--font-sans); font-weight: 600; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 16px;
}
.section--dark .eyebrow { color: var(--brass-tint); }

p { margin: 0 0 1em; }
.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--graphite);
  max-width: 62ch;
}
.section--dark .lede { color: var(--cream); }
.muted { color: var(--muted); }
.section--dark .muted { color: rgba(242,238,230,0.7); }

/* ---------- Links / buttons ---------- */
a.text-link {
  color: var(--brass);
  border-bottom: 1px solid currentColor;
  transition: color 200ms var(--ease);
}
a.text-link:hover { color: var(--graphite); }
.section--dark a.text-link { color: var(--brass-tint); }
.section--dark a.text-link:hover { color: var(--cream); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid var(--graphite);
  background: var(--graphite);
  color: var(--cream);
  border-radius: var(--radius-sm);
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
  min-height: 48px;
}
.btn:hover { background: var(--brass); border-color: var(--brass); color: var(--cream); }
.btn--ghost {
  background: transparent;
  color: var(--graphite);
  border-color: var(--graphite);
}
.btn--ghost:hover { background: var(--graphite); color: var(--cream); }
.section--dark .btn {
  background: var(--cream);
  color: var(--graphite);
  border-color: var(--cream);
}
.section--dark .btn:hover { background: var(--brass-tint); border-color: var(--brass-tint); color: var(--graphite); }
.section--dark .btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.section--dark .btn--ghost:hover { background: var(--cream); color: var(--graphite); }

/* Hero buttons follow dark-section conventions */
.hero .btn {
  background: var(--cream);
  color: var(--graphite);
  border-color: var(--cream);
}
.hero .btn:hover { background: var(--brass-tint); border-color: var(--brass-tint); color: var(--graphite); }
.hero .btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.hero .btn--ghost:hover { background: var(--cream); color: var(--graphite); }

/* ---------- Focus ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--dark :focus-visible { outline-color: var(--brass-tint); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  padding: 10px 16px;
  background: var(--graphite);
  color: var(--cream);
  z-index: 100;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242,238,230,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark { width: 28px; height: 28px; }
.brand__word {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--graphite);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}
.nav__link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--graphite);
  border-radius: var(--radius-sm);
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.nav__link:hover { color: var(--brass); }
.nav__link[aria-current="page"] {
  color: var(--brass);
}
.nav__link[aria-current="page"]::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--brass);
  margin-top: 4px;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--graphite);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: var(--graphite);
}
.nav__toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; }
  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    padding: 12px var(--gutter) 20px;
    gap: 2px;
  }
  .nav.is-open .nav__list { display: flex; }
  .nav__link { padding: 12px 8px; font-size: 16px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
  background: var(--graphite);
  color: var(--cream);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 800ms var(--ease);
}
.hero__video.is-visible { opacity: 1; }
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.hero__poster.is-visible { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,15,17,0.55) 0%,
    rgba(14,15,17,0.30) 35%,
    rgba(14,15,17,0.55) 100%
  );
  opacity: 0;
  transition: opacity 700ms var(--ease);
}
.hero__overlay.is-visible { opacity: 1; }

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(48px, 8vw, 96px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.hero__content.is-visible { opacity: 1; transform: none; }

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(42px, 7.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  max-width: 14ch;
}
.hero__sub {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--brass-tint);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.45;
  max-width: 58ch;
  margin: 0 0 32px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Hero intro overlay (sequence) ---------- */
.hero-intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--cream-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gutter);
  transition: opacity 900ms var(--ease);
}
.hero-intro.is-fading { opacity: 0; pointer-events: none; }
.hero-intro.is-hidden { display: none; }
.hero-intro__horizon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1100ms var(--ease);
  opacity: 0.85;
}
.hero-intro.step-2 .hero-intro__horizon { transform: scaleX(1); }

.hero-intro__mark {
  width: clamp(96px, 14vw, 168px);
  height: clamp(96px, 14vw, 168px);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.hero-intro__mark .stroke {
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.4;
  stroke-linejoin: miter;
  stroke-linecap: butt;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1500ms var(--ease), fill-opacity 600ms var(--ease) 1100ms;
  fill-opacity: 0;
}
.hero-intro__mark .stroke--shadow { stroke: var(--graphite); }
.hero-intro.step-1 .hero-intro__mark .stroke { stroke-dashoffset: 0; }
.hero-intro.step-3 .hero-intro__mark .stroke { fill-opacity: 1; fill: var(--brass); }
.hero-intro.step-3 .hero-intro__mark .stroke--shadow { fill: var(--graphite); }
.hero-intro__mark .horizon-line {
  stroke: var(--graphite);
  stroke-width: 0.8;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1000ms var(--ease) 200ms;
}
.hero-intro.step-1 .hero-intro__mark .horizon-line { stroke-dashoffset: 0; }

.hero-intro__word {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.01em;
  color: var(--graphite);
  margin: 8px 0 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  position: relative;
  z-index: 2;
}
.hero-intro.step-3 .hero-intro__word { opacity: 1; transform: none; }

.hero-intro__tag {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 17px);
  letter-spacing: 0.02em;
  color: var(--brass);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 700ms var(--ease) 250ms, transform 700ms var(--ease) 250ms;
  position: relative;
  z-index: 2;
}
.hero-intro.step-4 .hero-intro__tag { opacity: 1; transform: none; }

/* ---------- Reusable section pieces ---------- */
.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.eyebrow-rule::after {
  content: "";
  height: 1px;
  background: var(--hairline);
  flex: 1;
}
.section--dark .eyebrow-rule::after { background: rgba(201,196,184,0.25); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .grid-12 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ---------- Three tenets ---------- */
.tenets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.tenet h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--graphite);
}
.tenet h3 .accent { color: var(--brass); }
.tenet p { color: var(--graphite); font-size: 16.5px; line-height: 1.55; margin: 0; }
@media (max-width: 880px) {
  .tenets { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- How we work strip ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.step {
  padding: 36px 32px;
  border-right: 1px solid var(--hairline);
}
.step:last-child { border-right: 0; }
.step__num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--graphite);
}
.step p { margin: 0; color: var(--graphite); }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .step:last-child { border-bottom: 0; }
}

/* ---------- Capability snapshot (numbers band) ---------- */
.cap-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cap {
  padding: 40px 28px;
  border-right: 1px solid rgba(201,196,184,0.22);
}
.cap:last-child { border-right: 0; }
.cap__num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  color: var(--brass-tint);
  margin-bottom: 10px;
}
.cap__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: rgba(242,238,230,0.78);
  line-height: 1.45;
}
@media (max-width: 880px) {
  .cap-band { grid-template-columns: repeat(2, 1fr); }
  .cap { border-right: 0; border-bottom: 1px solid rgba(201,196,184,0.18); }
  .cap:nth-child(odd) { border-right: 1px solid rgba(201,196,184,0.22); }
  .cap:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 520px) {
  .cap-band { grid-template-columns: 1fr; }
  .cap { border-right: 0; border-bottom: 1px solid rgba(201,196,184,0.18); }
  .cap:last-child { border-bottom: 0; }
}

/* ---------- Services list ---------- */
.svc-list { display: grid; gap: 0; }
.svc {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
  align-items: center;
}
.svc:last-child { border-bottom: 1px solid var(--hairline); }
.svc__num {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--brass);
  padding-top: 4px;
  align-self: start;
}
.svc__head h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0 0 12px;
  line-height: 1.2;
}
.svc__outcome { color: var(--muted); font-size: 15.5px; margin: 0; line-height: 1.6; }
.svc__list { margin: 0; padding-left: 18px; }
.svc__list li { margin-bottom: 8px; line-height: 1.5; }
.svc__list li::marker { color: var(--brass); }
.svc__media { width: 100%; }
.svc__media-frame {
  position: relative;
  background: var(--cream-2);
  border-top: 1px solid var(--brass);
  padding: 14px;
  overflow: hidden;
}
.svc__media-frame picture,
.svc__media-frame img { display: block; width: 100%; height: auto; }
@media (max-width: 880px) {
  .svc { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; align-items: start; }
  .svc__num { padding-top: 0; }
  .svc__media-frame { padding: 10px; }
}

/* ---------- Industries blocks ---------- */
.ind {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
  border-top: 1px solid var(--hairline);
}
.ind:first-child { border-top: 0; }
.ind--alt { grid-template-columns: 7fr 5fr; }
.ind--alt .ind__text { order: 2; }
.ind--alt .ind__media { order: 1; }
.ind__text h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  margin: 0 0 14px;
}
.ind__text p { font-size: 17.5px; line-height: 1.55; max-width: 46ch; }
.ind__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.ind__media--text {
  background: var(--cream-2);
  padding: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.ind__media--text .quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--graphite);
  max-width: 22ch;
  text-align: center;
}
@media (max-width: 880px) {
  .ind, .ind--alt { grid-template-columns: 1fr; }
  .ind--alt .ind__text { order: 1; }
  .ind--alt .ind__media { order: 2; }
}

/* ---------- Approach blocks ---------- */
.approach-block {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(24px, 5vw, 72px);
  padding-block: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--hairline);
}
.approach-block:first-of-type { border-top: 0; }
.approach-block__num {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.approach-block h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  margin: 0;
  line-height: 1.15;
}
.approach-block p { font-size: 17px; line-height: 1.6; max-width: 60ch; }
@media (max-width: 880px) {
  .approach-block { grid-template-columns: 1fr; gap: 16px; }
}

.fullbleed {
  width: 100%;
  margin-block: clamp(40px, 6vw, 88px);
}
.fullbleed img {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* ---------- Insights empty state ---------- */
.empty-panel {
  background: var(--cream-2);
  padding: clamp(48px, 9vw, 120px) var(--gutter);
  text-align: center;
}
.empty-panel p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--graphite);
  max-width: 28ch;
  margin: 0 auto;
}

.coming-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: clamp(40px, 6vw, 80px);
}
.coming-card {
  border: 1px solid var(--hairline);
  padding: 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--cream);
}
.coming-card .topic {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.coming-card .title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--graphite);
}
.coming-card .meta { font-size: 13.5px; color: var(--muted); }
@media (max-width: 720px) {
  .coming-up { grid-template-columns: 1fr; }
}

/* ---------- About — three threads ---------- */
.thread-grid { display: grid; gap: clamp(40px, 6vw, 80px); }
.thread {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.thread--alt { grid-template-columns: 7fr 5fr; }
.thread--alt .thread__text { order: 2; }
.thread--alt .thread__media { order: 1; }
.thread__text p { font-size: 17px; max-width: 46ch; }
.thread__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-md);
}
@media (max-width: 880px) {
  .thread, .thread--alt { grid-template-columns: 1fr; }
  .thread--alt .thread__text { order: 1; }
  .thread--alt .thread__media { order: 2; }
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 18px;
  max-width: 680px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--graphite);
}
.field input,
.field textarea {
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  background: var(--cream);
  color: var(--graphite);
  border-radius: var(--radius-sm);
  transition: border-color 200ms var(--ease);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--brass);
  outline: none;
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--font-sans); }
.field--optional label::after {
  content: " (optional)";
  color: var(--muted);
  font-weight: 400;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__status {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  display: none;
}
.form__status.is-success {
  display: block;
  background: var(--cream-2);
  border-left: 3px solid var(--brass);
  color: var(--graphite);
}
.form__status.is-error {
  display: block;
  background: #f9ecec;
  border-left: 3px solid #a13b3b;
  color: #5a1f1f;
}

/* ---------- Bookings + CTA ---------- */
.bookings-placeholder {
  border: 1px dashed var(--hairline);
  background: var(--cream-2);
  padding: 40px 28px;
  text-align: center;
  border-radius: var(--radius-md);
}
.bookings-placeholder p { margin: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 80px);
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--cream-2);
  padding: 32px;
  border-radius: var(--radius-md);
}
.contact-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 16px;
}
.contact-card dl { margin: 0; display: grid; gap: 10px; }
.contact-card dt {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.contact-card dd { margin: 0 0 6px; font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--graphite);
  color: var(--cream);
  padding-block: clamp(56px, 7vw, 96px);
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--brass-tint); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.site-footer__brand .brand__word { color: var(--cream); }
.site-footer__brand .tagline {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--brass-tint);
  margin-top: 14px;
  font-size: 15px;
  max-width: 28ch;
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-tint);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 15px; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(201,196,184,0.18);
  font-size: 13.5px;
  color: rgba(242,238,230,0.6);
}
@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---------- Page header (non-home) ---------- */
.page-head {
  padding-block: clamp(72px, 10vw, 144px) clamp(32px, 5vw, 64px);
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
}
.page-head__inner { max-width: 920px; }
.page-head h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 14px 0 24px;
}
.page-head .lede { font-size: clamp(18px, 1.7vw, 22px); color: var(--graphite); }

/* ---------- CTA panel ---------- */
.cta-panel {
  background: var(--graphite);
  color: var(--cream);
  padding-block: clamp(64px, 9vw, 120px);
}
.cta-panel h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 22ch;
}
.cta-panel .stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.fade-in.is-visible { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  .hero-intro { display: none; }
  .hero__video { display: none; }
  .hero__poster { opacity: 1; }
  .hero__overlay { opacity: 1; }
  .hero__content { opacity: 1; transform: none; }
}

/* ---------- Misc ---------- */
.tagline {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.01em;
}
.section--dark .tagline { color: var(--brass-tint); }

.callout {
  background: var(--cream-2);
  padding: 32px;
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.callout p:last-child { margin-bottom: 0; }

.founder-note {
  background: var(--cream-2);
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brass);
}
.founder-note p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--graphite);
}
.founder-note p:last-child { margin-bottom: 0; }
.founder-note .signoff {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--brass);
  letter-spacing: 0.04em;
  margin-top: 24px;
  font-style: normal;
}

/* tiny utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.max-prose { max-width: 62ch; }
.col-span-7 { grid-column: span 7; }
.col-span-5 { grid-column: span 5; }
.col-span-12 { grid-column: span 12; }
@media (max-width: 880px) {
  .col-span-7, .col-span-5 { grid-column: 1 / -1; }
}
