:root {
  color-scheme: dark;
  --ink: #f8f2e8;
  --muted: #c7b9a8;
  --soft: rgba(248, 242, 232, 0.72);
  --line: rgba(248, 242, 232, 0.16);
  --stage: #090707;
  --stage-2: #15100e;
  --wine: #4a0d1a;
  --ember: #e15b2d;
  --gold: #f3b75b;
  --sage: #7f9b78;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 8%, rgba(96, 18, 33, 0.55), transparent 28rem),
    radial-gradient(circle at 76% 22%, rgba(223, 93, 47, 0.22), transparent 22rem),
    linear-gradient(180deg, #060505 0%, #120d0c 46%, #090707 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 3vw, 46px);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(9, 7, 7, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(248, 242, 232, 0.28);
  background: rgba(9, 7, 7, 0.52);
  color: var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 11px;
  color: rgba(248, 242, 232, 0.82);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(248, 242, 232, 0.1);
  outline: none;
}

.site-nav .nav-cta {
  color: #170d09;
  background: var(--gold);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #170d09;
  background: #ffd284;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(9, 7, 7, 0.62);
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 70px) clamp(42px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 49% 46%;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 5, 5, 0.9) 0%, rgba(6, 5, 5, 0.44) 48%, rgba(6, 5, 5, 0.76) 100%),
    linear-gradient(180deg, rgba(6, 5, 5, 0.4) 0%, rgba(6, 5, 5, 0.12) 44%, rgba(6, 5, 5, 0.94) 100%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 13vw, 12.4rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(248, 242, 232, 0.86);
  font-size: clamp(1.12rem, 2.4vw, 1.65rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(248, 242, 232, 0.22);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  border-color: transparent;
  background: var(--gold);
  color: #170d09;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffd284;
}

.button.ghost {
  background: rgba(9, 7, 7, 0.44);
  backdrop-filter: blur(14px);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(248, 242, 232, 0.42);
  background: rgba(248, 242, 232, 0.1);
}

.hero-feature {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(24px, 7vw, 80px);
  width: min(330px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(9, 7, 7, 0.56);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
}

.hero-feature > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-feature strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.hero-feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-feature .mobile-feature-kicker,
.mobile-intro-title {
  display: none;
}

.hero-feature .desktop-feature-copy,
.hero-feature .mobile-feature-copy {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.hero-feature .mobile-feature-copy {
  display: none;
}

.intro-statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(74, 13, 26, 0.2), rgba(248, 242, 232, 0.025) 48%, rgba(9, 7, 7, 0.18)),
    rgba(248, 242, 232, 0.03);
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0;
}

.intro-copy {
  display: grid;
  gap: 16px;
  max-width: 690px;
  padding-left: clamp(22px, 4vw, 52px);
  border-left: 1px solid rgba(243, 183, 91, 0.34);
}

.intro-copy p {
  margin: 0;
  color: rgba(248, 242, 232, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.68;
}

.intro-lead .section-kicker {
  margin-bottom: 18px;
}

.intro-lede {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 1.85vw, 2rem);
  line-height: 1.26;
  text-wrap: balance;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-note {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
  outline: none;
}

.project-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  margin-bottom: 30px;
}

.spotlight-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--stage-2);
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 52% 50%;
}

.spotlight-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--soft);
  font-size: 1.08rem;
}

.spotlight-copy .spotlight-quote {
  max-width: 680px;
  margin-bottom: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 183, 91, 0.34);
  font-size: clamp(2rem, 2.45vw, 2.8rem);
  line-height: 1.1;
  text-wrap: balance;
}

.quote-credit {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-row span,
.archive-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(248, 242, 232, 0.16);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-card,
.archive-card {
  border: 1px solid var(--line);
  background: rgba(248, 242, 232, 0.045);
  border-radius: var(--radius);
  overflow: hidden;
}

.project-card img,
.archive-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-card:nth-child(2) img {
  object-position: 58% 45%;
}

.project-card-content,
.archive-content {
  padding: 24px;
}

.project-card p,
.archive-content p {
  color: var(--muted);
}

.card-expandable p:last-child,
.archive-content p:last-child {
  margin-bottom: 0;
}

.project-highlights {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  list-style: none;
}

.project-highlights li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
}

.project-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.archive-content strong {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-strip {
  padding: clamp(42px, 7vw, 86px) 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #050404;
}

.marquee-title {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 6.8rem);
  line-height: 0.95;
}

.photo-ribbon {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(210px, 27vw, 380px);
  gap: 12px;
  overflow-x: auto;
  padding: 0 clamp(18px, 5vw, 70px) 14px;
  scroll-snap-type: x proximity;
}

.photo-ribbon button {
  display: block;
  height: clamp(260px, 34vw, 480px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.photo-ribbon button:hover img,
.photo-ribbon button:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.12);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.archive-card {
  display: grid;
  min-height: 100%;
}

.archive-card.is-empty {
  border-style: dashed;
}

.archive-card img {
  height: 190px;
  filter: saturate(0.92);
}

.archive-content {
  display: grid;
  align-content: start;
  gap: 12px;
}

.archive-content h3 {
  margin-bottom: 0;
  font-size: 1.26rem;
  line-height: 1.08;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  border: 1px solid var(--line);
  background: rgba(248, 242, 232, 0.045);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(74, 13, 26, 0.9), rgba(9, 7, 7, 0.4)),
    url("assets/featured/freo-social-2026.jpg") center / cover;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: rgba(9, 7, 7, 0.3);
}

.play-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border: 1px solid rgba(248, 242, 232, 0.45);
  color: var(--gold);
  font-weight: 900;
  border-radius: 50%;
}

.video-content {
  padding: 20px;
}

.video-content .eyebrow {
  margin-bottom: 8px;
  font-size: 0.66rem;
}

.video-content h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.16;
}

.video-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.read-more-toggle {
  display: none;
  justify-self: start;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.read-more-toggle:focus-visible {
  outline: 2px solid rgba(243, 183, 91, 0.7);
  outline-offset: 4px;
}

.press-section {
  padding-top: clamp(64px, 8vw, 112px);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.press-column {
  display: grid;
  grid-template-rows: auto repeat(3, 1fr);
  gap: 12px;
  min-width: 0;
}

.press-column h3 {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.press-column blockquote {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 220px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(248, 242, 232, 0.045);
  border-radius: var(--radius);
}

.press-column blockquote p {
  margin: 0;
  color: rgba(248, 242, 232, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.42;
}

.press-column .translation {
  margin-top: -8px;
  color: rgba(248, 242, 232, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.42;
}

.press-column cite {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.press-column cite span {
  font-style: italic;
  text-transform: none;
}

.booking-page {
  min-height: 100svh;
  padding: clamp(118px, 11vw, 150px) 0 clamp(48px, 8vw, 92px);
}

.booking-form-section,
.newsletter-section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.booking-form-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 62px);
  align-items: start;
  padding: 0 0 clamp(46px, 7vw, 82px);
}

.form-intro {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  align-content: start;
  padding-top: 8px;
}

.form-intro img {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
  object-position: 66% 50%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-intro h2 {
  max-width: 8.8ch;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.98;
}

.newsletter-copy h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
}

.form-intro p:not(.eyebrow),
.newsletter-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
}

.form-panel,
.newsletter-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(248, 242, 232, 0.18);
  background: rgba(248, 242, 232, 0.045);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

label,
.full-field,
.check-field {
  display: grid;
  gap: 8px;
}

.bot-field {
  display: none;
}

label span,
.full-field span {
  color: rgba(248, 242, 232, 0.78);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid rgba(248, 242, 232, 0.16);
  background: rgba(7, 6, 6, 0.72);
  color: var(--ink);
  font: inherit;
  border-radius: var(--radius);
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(243, 183, 91, 0.78);
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 183, 91, 0.14);
}

::placeholder {
  color: rgba(199, 185, 168, 0.58);
}

.check-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(30px, 5vw, 56px);
  margin-bottom: clamp(48px, 7vw, 92px);
  padding: clamp(34px, 6vw, 76px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 6, 6, 0.94) 0%, rgba(7, 6, 6, 0.58) 54%, rgba(74, 13, 26, 0.3) 100%),
    linear-gradient(180deg, rgba(7, 6, 6, 0.18), rgba(7, 6, 6, 0.9)),
    url("assets/featured/freo-social-2026.jpg") center / cover;
  background-blend-mode: multiply;
  border-radius: var(--radius);
}

.newsletter-form {
  background: rgba(7, 6, 6, 0.66);
  backdrop-filter: blur(14px);
}

.booking {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) auto;
  gap: 34px;
  align-items: end;
  margin: clamp(30px, 7vw, 80px) auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(248, 242, 232, 0.2);
  background:
    linear-gradient(135deg, rgba(74, 13, 26, 0.92), rgba(8, 7, 6, 0.76)),
    url("assets/featured/duke-of-george-2026.jpg") center / cover;
  background-blend-mode: multiply;
  border-radius: var(--radius);
}

.booking h2 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 4.8vw, 5.1rem);
  line-height: 0.98;
}

.booking p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(248, 242, 232, 0.82);
  font-size: 1.08rem;
}

.booking-actions {
  justify-content: flex-end;
}

.bio-section {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(70px, 9vw, 128px);
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  padding-top: clamp(28px, 5vw, 54px);
  border-top: 1px solid rgba(243, 183, 91, 0.34);
}

.bio-heading {
  position: sticky;
  top: 96px;
}

.bio-heading h2 {
  max-width: 8ch;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 5.4rem);
}

.bio-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.bio-copy p {
  margin: 0;
  color: rgba(248, 242, 232, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}

.bio-copy p:first-child {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2vw, 1.9rem);
  line-height: 1.34;
}

.tour-outro {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  min-height: clamp(280px, 38vw, 560px);
  display: grid;
  align-items: end;
  margin: 0 auto clamp(34px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(6, 5, 5, 0.08), rgba(6, 5, 5, 0.62) 82%),
    linear-gradient(90deg, rgba(6, 5, 5, 0.72), rgba(6, 5, 5, 0.14) 48%, rgba(6, 5, 5, 0.54)),
    url("assets/featured/end-of-tour-outro.jpg") center / cover;
  border-radius: var(--radius);
}

.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 28px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer > div {
  display: grid;
  gap: 4px;
}

.site-footer > div span:first-child {
  color: var(--ink);
  font-weight: 780;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(248, 242, 232, 0.16);
  color: var(--ink);
  text-decoration: none;
  border-radius: 50%;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.social-links svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links [fill="currentColor"] {
  stroke: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(248, 242, 232, 0.34);
  background: rgba(248, 242, 232, 0.08);
  color: var(--gold);
  outline: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-height: 0;
}

.lightbox p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.lightbox-close {
  justify-self: end;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(248, 242, 232, 0.1);
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero {
    min-height: 88svh;
  }

  .hero-feature {
    position: static;
    margin-top: 34px;
  }

  .project-spotlight,
  .bio-layout,
  .booking-form-section,
  .newsletter-section,
  .booking {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .form-intro {
    position: static;
  }

  .bio-heading {
    position: static;
  }

  .bio-heading h2 {
    max-width: none;
  }

  .project-grid,
  .press-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
  }

  section[id] {
    scroll-margin-top: 82px;
  }

  .site-header {
    min-height: 62px;
    padding: 10px 22px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: calc(100svh - 84px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(9, 7, 7, 0.96);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 16px;
    font-size: 0.82rem;
  }

  .brand {
    gap: 10px;
    font-size: 0.68rem;
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .brand span:last-child {
    max-width: none;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .hero {
    min-height: auto;
    padding: 92px 22px 26px;
    align-items: start;
  }

  .hero-content,
  .intro-lead,
  .intro-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-image {
    object-position: 88% 52%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 5, 5, 0.92) 0%, rgba(6, 5, 5, 0.58) 70%, rgba(6, 5, 5, 0.86) 100%),
      linear-gradient(180deg, rgba(6, 5, 5, 0.36) 0%, rgba(6, 5, 5, 0.22) 40%, rgba(6, 5, 5, 0.98) 100%);
  }

  h1 {
    max-width: 8ch;
    margin-bottom: 14px;
    font-size: clamp(2.65rem, 12vw, 4.45rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.65rem);
  }

  .hero-copy {
    max-width: min(100%, 20rem);
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.48;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 360px);
  }

  .hero-feature {
    width: min(100%, 20.5rem);
    margin-top: 22px;
    padding: 14px 0 0;
    border-width: 1px 0 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .button {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .hero-feature > span {
    margin-bottom: 6px;
    font-size: 0.62rem;
  }

  .hero-feature strong {
    margin-bottom: 6px;
    font-size: 1.16rem;
    line-height: 1.08;
  }

  .hero-feature p {
    max-width: 19rem;
    font-size: 0.92rem;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .hero-feature .desktop-feature-copy {
    display: none;
  }

  .hero-feature .desktop-feature-kicker,
  .hero-feature .desktop-feature-title {
    display: none;
  }

  .hero-feature .mobile-feature-kicker {
    display: block;
  }

  .hero-feature .mobile-feature-copy {
    display: inline;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    letter-spacing: 0;
    text-transform: none;
  }

  .section {
    width: min(var(--max), calc(100% - 44px));
    padding: 68px 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-note {
    max-width: none;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .intro-inner {
    width: min(var(--max), calc(100% - 44px));
    padding: 28px 0 34px;
  }

  .intro-lead {
    display: none;
  }

  .mobile-intro-title {
    display: block;
    max-width: min(100%, 20rem);
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .intro-copy {
    max-width: min(100%, 20rem);
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(243, 183, 91, 0.34);
  }

  .intro-copy p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .intro-lede {
    max-width: min(100%, 20rem);
    font-size: clamp(1.08rem, 4.5vw, 1.32rem);
    line-height: 1.2;
    text-wrap: auto;
    overflow-wrap: break-word;
  }

  .spotlight-copy .spotlight-quote {
    padding-top: 14px;
    font-size: clamp(1.55rem, 6.7vw, 2.18rem);
    line-height: 1.12;
  }

  .spotlight-media,
  .spotlight-media img {
    min-height: 300px;
  }

  .spotlight-media img {
    object-position: 50% 50%;
  }

  .spotlight-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .tag-row {
    margin-top: 18px;
  }

  .gallery-strip {
    padding: 34px 0 46px;
  }

  .marquee-title {
    width: min(var(--max), calc(100% - 44px));
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 11vw, 3.4rem);
  }

  .photo-ribbon {
    grid-auto-columns: min(74vw, 320px);
    padding-inline: 22px 44px;
  }

  .photo-ribbon button {
    height: 300px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .archive-grid,
  .video-grid,
  .press-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(268px, 76vw);
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -22px;
    padding: 4px 22px 22px;
    scroll-padding-inline: 22px;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(243, 183, 91, 0.62) rgba(248, 242, 232, 0.1);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .project-grid::-webkit-scrollbar,
  .archive-grid::-webkit-scrollbar,
  .video-grid::-webkit-scrollbar,
  .press-grid::-webkit-scrollbar,
  .photo-ribbon::-webkit-scrollbar {
    height: 6px;
  }

  .project-grid::-webkit-scrollbar-track,
  .archive-grid::-webkit-scrollbar-track,
  .video-grid::-webkit-scrollbar-track,
  .press-grid::-webkit-scrollbar-track,
  .photo-ribbon::-webkit-scrollbar-track {
    background: rgba(248, 242, 232, 0.08);
    border-radius: 999px;
  }

  .project-grid::-webkit-scrollbar-thumb,
  .archive-grid::-webkit-scrollbar-thumb,
  .video-grid::-webkit-scrollbar-thumb,
  .press-grid::-webkit-scrollbar-thumb,
  .photo-ribbon::-webkit-scrollbar-thumb {
    background: rgba(243, 183, 91, 0.62);
    border-radius: 999px;
  }

  .project-card,
  .archive-card,
  .video-card,
  .press-column {
    scroll-snap-align: start;
  }

  .press-grid {
    grid-auto-columns: minmax(280px, 80vw);
  }

  .press-column {
    grid-template-rows: auto repeat(3, minmax(0, auto));
  }

  .press-column blockquote {
    min-height: 190px;
  }

  .project-card img,
  .archive-card img {
    height: 215px;
  }

  .project-card-content,
  .archive-content,
  .video-content {
    padding: 26px;
  }

  .project-card p,
  .archive-content p,
  .video-content p {
    line-height: 1.58;
  }

  .project-card .card-expandable {
    position: relative;
    max-height: 8.9rem;
    overflow: hidden;
  }

  .copy-expandable {
    position: relative;
    max-height: 15rem;
    overflow: hidden;
  }

  .project-card .card-expandable:not(.is-expanded)::after,
  .copy-expandable:not(.is-expanded)::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2.6rem;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(24, 17, 15, 0), #18110f 86%);
  }

  .intro-copy.copy-expandable:not(.is-expanded)::after {
    background: linear-gradient(180deg, rgba(18, 13, 12, 0), #120d0c 86%);
  }

  .bio-copy.copy-expandable:not(.is-expanded)::after {
    background: linear-gradient(180deg, rgba(9, 7, 7, 0), #090707 86%);
  }

  .project-card .card-expandable.is-expanded,
  .copy-expandable.is-expanded {
    max-height: none;
    overflow: visible;
  }

  .card-expandable p {
    margin-bottom: 0;
  }

  .read-more-toggle {
    display: inline-flex;
    margin-top: 12px;
  }

  .press-column blockquote {
    padding: 24px;
  }

  .project-highlights li {
    font-size: 0.9rem;
  }

  .intro-inner > .read-more-toggle,
  .bio-layout > .read-more-toggle {
    justify-self: start;
  }

  .video-frame iframe,
  .video-placeholder {
    height: 100%;
  }

  .booking-page {
    padding-top: 88px;
  }

  .booking-form-section,
  .newsletter-section {
    width: min(var(--max), calc(100% - 44px));
  }

  .booking-form-section {
    gap: 22px;
  }

  .form-intro {
    padding-top: 0;
  }

  .form-intro img {
    aspect-ratio: 16 / 10;
    object-position: 64% 48%;
  }

  .form-intro h2 {
    max-width: 11ch;
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .form-panel,
  .newsletter-form {
    padding: 20px;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 1rem;
  }

  textarea {
    min-height: 150px;
  }

  .booking {
    width: min(var(--max), calc(100% - 44px));
    padding: 28px 22px;
  }

  .booking h2 {
    font-size: clamp(2.1rem, 10vw, 3.6rem);
  }

  .newsletter-section {
    padding: 28px 22px;
  }

  .bio-section {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .bio-copy {
    gap: 14px;
  }

  .bio-copy p,
  .bio-copy p:first-child {
    font-size: 1rem;
    line-height: 1.62;
  }

  .tour-outro {
    width: min(var(--max), calc(100% - 44px));
    min-height: 260px;
    background-position: center;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    padding: 24px 22px 30px;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .brand span:last-child {
    max-width: 128px;
  }

  .booking-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    width: auto;
  }

  .hero {
    padding-inline: 22px;
  }

  .hero-feature {
    padding: 16px;
  }

  .photo-ribbon {
    grid-auto-columns: 78vw;
  }

  .photo-ribbon button {
    height: 280px;
  }

  .form-panel,
  .newsletter-form {
    padding: 18px;
  }

  .check-field {
    gap: 10px;
  }
}
