@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fraunces-latin-italic.woff2") format("woff2");
}

:root {
  --navy: #172b44;
  --navy-deep: #0d1c2d;
  --navy-black: #08131f;
  --navy-light: #274461;
  --gold: #c3a566;
  --gold-light: #e0c98f;
  --gold-dark: #725a2f;
  --ivory: #f4f1e9;
  --paper: #e9e5dc;
  --ink: #13263c;
  --paper-muted: #52606d;
  --muted: #aeb8c3;
  --line: rgba(195, 165, 102, 0.3);
  --line-light: rgba(244, 241, 233, 0.15);
  --shadow: 0 32px 90px rgba(2, 9, 16, 0.32);
  --shell: 1240px;
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 800ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-deep);
  color: var(--ivory);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

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

button {
  border: 0;
}

address {
  font-style: normal;
}

::selection {
  background: var(--gold);
  color: var(--navy-black);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.shell {
  width: min(var(--shell), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 10rem);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--ivory);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

/* Opening sequence */
.intro {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  background: var(--navy);
  pointer-events: none;
  animation: intro-away 2.35s var(--ease) forwards;
}

.no-js .intro,
.intro-seen .intro {
  display: none;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  width: min(72vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(195, 165, 102, 0.18);
  border-radius: 50%;
  animation: intro-orbit 1.7s var(--ease) both;
}

.intro::after {
  width: min(48vw, 570px);
  animation-delay: 100ms;
}

.intro__mark {
  position: relative;
  z-index: 1;
  width: min(84vw, 720px);
  max-width: 100%;
  opacity: 0;
  transform: scale(0.96);
  animation: intro-logo 900ms 180ms var(--ease) forwards;
}

.intro__mark img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.intro__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: line-draw 1.1s 250ms var(--ease) forwards;
}

.intro__line--top { top: 22%; }
.intro__line--bottom { bottom: 22%; }

@keyframes intro-logo {
  to { opacity: 1; transform: scale(1); }
}

@keyframes line-draw {
  to { transform: scaleX(1); }
}

@keyframes intro-orbit {
  from { opacity: 0; transform: scale(0.7) rotate(-15deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes intro-away {
  0%, 72% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line-light);
  background: rgba(8, 19, 31, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: clamp(126px, 17vw, 175px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 9px;
  width: 27px;
  height: 1px;
  background: currentColor;
  transition: transform 300ms var(--ease), top 300ms var(--ease);
}

.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 27px; width: 19px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; width: 27px; transform: rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 7rem 2rem 3rem;
  background:
    linear-gradient(rgba(8, 19, 31, 0.94), rgba(8, 19, 31, 0.98)),
    radial-gradient(circle at 85% 20%, var(--navy-light), transparent 38%);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1.5rem);
  transition: opacity 350ms ease, transform 350ms var(--ease), visibility 350ms;
}

.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.site-nav a {
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
  color: var(--ivory);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 10vw, 4rem);
  line-height: 1.1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 300ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { width: 3rem; }

.no-js .nav-toggle { display: none; }
.no-js .site-header {
  position: static;
  height: auto;
  background: var(--navy-black);
}
.no-js .header__inner {
  flex-wrap: wrap;
  padding-block: 0.75rem;
}
.no-js .site-nav {
  position: static;
  flex-basis: 100%;
  visibility: visible;
  opacity: 1;
  transform: none;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 0.5rem 1rem;
  padding: 0;
  background: none;
}
.no-js .site-nav a { width: auto; font: inherit; font-size: 0.74rem; }

.booking--nav { display: none; }

/* Shared type and controls */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.display-title {
  margin: 0;
  color: var(--ivory);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 9.5vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  word-spacing: 0.09em;
  line-height: 0.98;
}

.display-title em,
.final-cta h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--gold);
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.button--gold {
  background: var(--gold);
  color: var(--navy-black);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  border-color: rgba(195, 165, 102, 0.5);
  background: rgba(195, 165, 102, 0.14);
  color: var(--gold-light);
  box-shadow: none;
}

.button:disabled:hover { transform: none; }
.button--compact { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.66rem; }
.button--large { min-width: min(100%, 270px); min-height: 60px; }

.booking {
  display: inline-grid;
  justify-items: start;
  gap: 0.45rem;
}

.booking__note {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.025em;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding-block: 0.4rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0.28);
  transform-origin: left;
  background: currentColor;
  transition: transform 300ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after { transform: scaleX(1); }
.text-link span { transition: transform 220ms var(--ease); }
.text-link:hover span { transform: translate(0.2rem, 0.2rem); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 3.75rem) 0 5rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 25%, rgba(67, 96, 122, 0.5), transparent 31%),
    linear-gradient(128deg, var(--navy) 0%, var(--navy-deep) 67%, var(--navy-black) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 55%);
}

.hero__grid {
  display: grid;
  gap: 3.2rem;
  align-items: center;
}

.hero__copy { position: relative; z-index: 2; }

.hero__title {
  margin: 0;
  color: var(--ivory);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 15vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.038em;
  word-spacing: 0.09em;
  line-height: 0.84;
}

.title-mask {
  display: block;
  overflow: hidden;
  padding: 0.08em 0 0.1em;
}

.title-mask > span { display: block; }
.title-mask--gold { color: var(--gold-light); font-style: italic; }
.title-mask--offset { padding-left: 0.7em; }

.js .title-mask > span {
  transform: translateY(115%);
  animation: title-rise 900ms 1.3s var(--ease) forwards;
}

.js .title-mask:nth-child(2) > span { animation-delay: 1.4s; }
.js .title-mask:nth-child(3) > span { animation-delay: 1.5s; }

@keyframes title-rise { to { transform: translateY(0); } }

.hero__lead {
  max-width: 39rem;
  margin: 1.75rem 0 1rem;
  color: #d8dee5;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.7;
}

.hero__location {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__location span {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(195, 165, 102, 0.12);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero__identity {
  position: relative;
  isolation: isolate;
  width: min(100%, 610px);
  min-height: clamp(330px, 78vw, 570px);
  display: grid;
  place-items: center;
  margin-inline: auto;
  padding: clamp(2rem, 8vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgba(195, 165, 102, 0.48);
  background:
    linear-gradient(145deg, rgba(39, 68, 97, 0.82), rgba(8, 19, 31, 0.88)),
    var(--navy);
  box-shadow: var(--shadow);
}

.hero__identity::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.22;
}

.hero__identity::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(244, 241, 233, 0.09);
  pointer-events: none;
}

.hero__identity img {
  position: absolute;
  z-index: 2;
  width: min(88%, 520px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.24));
}

.hero__monogram {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -54%);
  color: transparent;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(9rem, 35vw, 18rem);
  line-height: 1;
  letter-spacing: -0.12em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(195, 165, 102, 0.16);
}

.hero__identity-line {
  position: absolute;
  right: 12%;
  bottom: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 12px 0 rgba(195, 165, 102, 0.18);
}

.hero__orbit {
  position: absolute;
  z-index: -1;
  right: -34vw;
  border: 1px solid rgba(195, 165, 102, 0.18);
  border-radius: 50%;
}

.hero__orbit--one { width: 85vw; height: 85vw; top: 10%; }
.hero__orbit--two { width: 57vw; height: 57vw; top: 24%; right: -20vw; }

.hero__trace {
  position: absolute;
  z-index: -1;
  right: 15%;
  bottom: -10%;
  width: 1px;
  height: 48%;
  transform: rotate(32deg);
  background: linear-gradient(transparent, var(--gold), transparent);
  box-shadow: 26px 0 0 rgba(195, 165, 102, 0.14), 52px 0 0 rgba(195, 165, 102, 0.08);
}

.scroll-cue { display: none; }

/* Michael */
.michael {
  overflow: hidden;
  padding-block-end: clamp(7rem, 14vw, 12.5rem);
  background: var(--paper);
  color: var(--ink);
}

.michael::after {
  content: "MICHAEL";
  position: absolute;
  right: -0.08em;
  bottom: -0.34em;
  color: transparent;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 20vw, 16rem);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(23, 43, 68, 0.08);
  pointer-events: none;
}

.michael__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.michael__visual {
  position: relative;
  max-width: 570px;
}

.michael__image {
  aspect-ratio: 1088 / 1107;
  overflow: hidden;
  background: #bcae99;
  clip-path: polygon(0 0, 92% 0, 100% 9%, 100% 100%, 0 100%);
}

.michael__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.michael__visual::after {
  content: "";
  position: absolute;
  right: -0.7rem;
  bottom: -0.7rem;
  width: 55%;
  height: 64%;
  border-right: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
}

.vertical-label { display: none; }

.michael .kicker { color: var(--gold-dark); }
.michael .display-title { color: var(--ink); }
.michael .display-title em { color: var(--gold-dark); }

.michael__role {
  margin: 1.8rem 0 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.35;
}

.michael__role span {
  color: #586574;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.8rem;
  margin-top: 2.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(23, 43, 68, 0.18);
}

.about-copy__line {
  height: 1px;
  margin-top: 0.65rem;
  background: var(--gold-dark);
}

.about-copy p { margin: 0; }
.about-copy__label { color: var(--paper-muted); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.about-copy__body { max-width: 36rem; margin-top: 1rem; }
.about-copy__body p { color: var(--paper-muted); font-size: 0.96rem; line-height: 1.72; }
.about-copy__body p + p { margin-top: 0.85rem; }
.about-copy__body p:last-child { color: var(--ink); font-family: "Fraunces", Georgia, "Times New Roman", serif; font-size: 1.08rem; }

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(3.5rem, 8vw, 6.5rem);
}

/* Certifications */
.certifications {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background: var(--navy-deep);
}

.certifications::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 58%, rgba(195, 165, 102, 0.06) 58%);
  pointer-events: none;
}

.certifications__grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

.credentials {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.credentials::before,
.credentials::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-color: var(--gold);
}

.credentials::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.credentials::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }

.credentials-placeholder__seal {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.credentials-placeholder__seal::before {
  content: "";
  position: absolute;
  width: 4.7rem;
  height: 4.7rem;
  border: 1px dashed rgba(195, 165, 102, 0.45);
  border-radius: 50%;
}

.credentials p { margin: 0; }
.credentials__status { color: var(--gold); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.credentials__list { display: grid; gap: 0.65rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.credentials__list li { position: relative; padding-left: 1.4rem; color: var(--ivory); font-family: "Fraunces", Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 4vw, 2rem); line-height: 1.25; }
.credentials__list li::before { content: ""; position: absolute; top: 0.58em; left: 0; width: 0.45rem; height: 1px; background: var(--gold); }
.credentials__note { max-width: 36rem; margin-top: 1.35rem !important; padding-top: 1rem; border-top: 1px solid var(--line-light); color: var(--muted); font-size: 0.88rem; }

/* Access */
.access {
  background: var(--paper);
  color: var(--ink);
}

.access .kicker { color: var(--gold-dark); }
.access .display-title { color: var(--ink); }
.access .display-title em { color: var(--gold-dark); }

.address-block {
  padding: 1.4rem 0 0 1.4rem;
  border-top: 1px solid rgba(23, 43, 68, 0.18);
  border-left: 1px solid var(--gold-dark);
}

.address-block__label {
  margin: 0 0 0.55rem;
  color: var(--paper-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.address-block address {
  margin-bottom: 1rem;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.address-block .text-link { color: var(--gold-dark); }

.access__videos {
  display: grid;
  justify-items: center;
  gap: 2.5rem;
}

.video-story {
  width: min(100%, 430px);
  margin: 0;
}

.video-frame {
  position: relative;
  padding: 0.65rem;
  background: var(--navy);
  box-shadow: 0 28px 60px rgba(23, 43, 68, 0.22);
}

.video-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0.65rem;
  border: 1px solid rgba(244, 241, 233, 0.13);
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--navy-black);
  object-fit: cover;
}

.video-story figcaption {
  padding: 1.35rem 0.25rem 0;
}

.video-story figcaption span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-story figcaption strong {
  display: block;
  margin-top: 0.2rem;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  font-weight: 400;
}

.video-story figcaption p {
  margin: 0.4rem 0 0;
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.access__connector { display: none; }

/* Final call to action */
.final-cta {
  position: relative;
  min-height: min(760px, 86svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-block: 7rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(39, 68, 97, 0.75), transparent 42%),
    var(--navy-black);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: min(92vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(195, 165, 102, 0.2);
  border-radius: 50%;
}

.final-cta::after { width: min(68vw, 620px); }

.final-cta__lines {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 150%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(-9deg);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.38;
}

.final-cta__lines::before,
.final-cta__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: inherit;
}

.final-cta__lines::before { top: -24px; opacity: 0.5; }
.final-cta__lines::after { top: 24px; opacity: 0.25; }

.final-cta__inner { position: relative; z-index: 1; }
.final-cta .kicker { justify-content: center; }

.final-cta h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 11vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  word-spacing: 0.09em;
  line-height: 0.92;
}

.final-cta__text {
  max-width: 35rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.booking--center {
  display: grid;
  justify-items: center;
  width: fit-content;
  margin: 2.4rem auto 0;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms var(--ease);
}

.facebook-link__icon {
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  flex: 0 0 1.8rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.facebook-link:hover,
.facebook-link:focus-visible {
  color: var(--ivory);
  transform: translateY(-2px);
}

.facebook-link--cta {
  display: flex;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 0.64rem;
  opacity: 0.88;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line-light);
  background: var(--navy-black);
}

.footer__top,
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand--footer .brand__logo {
  width: min(220px, 70vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__contact {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.footer__top address {
  color: var(--muted);
  font-size: 0.8rem;
}

.facebook-link--footer {
  color: var(--gold-light);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  color: #7f8b98;
  font-size: 0.72rem;
}

.footer__bottom p { margin: 0; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__bottom a { transition: color 180ms ease; }
.footer__bottom a:hover { color: var(--gold-light); }

/* Progressive motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity var(--duration) ease, transform var(--duration) var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .access__videos > *:nth-child(2) { transition-delay: 80ms; }
.js .access__videos > *:nth-child(3) { transition-delay: 160ms; }

@media (hover: hover) {
  .button:not(:disabled):hover { transform: translateY(-3px); }
}

@media (min-width: 700px) {
  :root { --header-height: 84px; }
  .shell { width: min(var(--shell), calc(100% - 4rem)); }
  .hero__actions { flex-direction: row; align-items: center; gap: 2rem; }
  .hero__identity { width: min(90%, 610px); }
  .michael__grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(2rem, 5vw, 4rem); }
  .michael__content { grid-column: 2; grid-row: 1; }
  .michael__visual { grid-column: 1; grid-row: 1; }
  .about-copy { grid-template-columns: 3rem 1fr; gap: 1.15rem; }
  .credentials { grid-template-columns: auto 1fr; align-items: center; gap: 2.5rem; }
  .footer__top,
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer__top address { max-width: 32rem; text-align: right; }
  .footer__contact { justify-items: end; }
}

@media (min-width: 940px) {
  .section-heading { grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.55fr); align-items: end; gap: 4rem; }
  .certifications__grid { grid-template-columns: 0.75fr 1.25fr; align-items: center; gap: 5rem; }
  .access__videos { grid-template-columns: minmax(0, 1fr) 6rem minmax(0, 1fr); align-items: center; gap: 1.5rem; }
  .video-story--entrance { justify-self: end; }
  .video-story--inside { justify-self: start; margin-top: 6rem; }
  .access__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--gold-dark);
  }
  .access__connector span { width: 1.3rem; height: 1px; background: currentColor; }
  .access__connector i { width: 0.5rem; height: 0.5rem; border-top: 1px solid; border-right: 1px solid; transform: rotate(45deg); }
}

@media (min-width: 1080px) {
  :root { --header-height: 92px; }
  .nav-toggle { display: none; }
  .site-nav,
  .no-js .site-nav {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    padding: 0;
    background: none;
  }
  .site-nav a,
  .no-js .site-nav a {
    width: auto;
    padding: 0.45rem 0;
    color: #c3cbd3;
    font-family: "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .site-nav a::after { bottom: 0; }
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after { width: 100%; }
  .booking--nav { display: inline-grid; justify-items: center; }
  .booking--nav .booking__note { font-size: 0.54rem; }
  .hero { padding: calc(var(--header-height) + 3rem) 0 3rem; }
  .hero__grid { grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr); gap: clamp(2rem, 5vw, 6rem); }
  .hero__identity { width: 100%; }
  .hero__title { font-size: clamp(5.8rem, 8.3vw, 8.3rem); }
  .hero__copy { padding-top: 1rem; }
  .scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: max(2rem, calc((100vw - var(--shell)) / 2));
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #9aa7b3;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }
  .scroll-cue i { position: relative; width: 3rem; height: 1px; overflow: hidden; background: rgba(255,255,255,0.24); }
  .scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scroll-line 2s ease-in-out infinite; }
  @keyframes scroll-line { 0% { transform: translateX(-105%); } 55%, 100% { transform: translateX(105%); } }
  .vertical-label {
    position: absolute;
    top: 50%;
    left: -3rem;
    display: block;
    margin: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
    color: var(--paper-muted);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .michael__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(3rem, 6vw, 7rem); }
  .michael__content { grid-column: 2; grid-row: 1; padding-right: 2rem; }
  .section-heading--access { grid-template-columns: 1.4fr 0.6fr; }
}

@media (min-width: 1080px) and (max-height: 860px) {
  .scroll-cue { display: none; }
}

@media (max-width: 1079px) {
  .site-header.is-open {
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-nav {
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: var(--navy-black);
    background-image:
      linear-gradient(rgba(8, 19, 31, 0.94), rgba(8, 19, 31, 0.98)),
      radial-gradient(circle at 85% 20%, var(--navy-light), transparent 38%);
  }

  .site-nav a {
    padding: 0.85rem 0;
    font-family: 'Aptos', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(1rem, 4.8vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .brand__logo { width: 118px; }
  .brand--footer .brand__logo { width: min(200px, 76vw); }
  .hero__title { font-size: clamp(2.95rem, 15vw, 4rem); }
  .title-mask--offset { padding-left: 0.45em; }
  .hero__identity { width: calc(100% - 0.4rem); min-height: 300px; padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .intro { display: none; }
  .js [data-reveal],
  .js .title-mask > span {
    opacity: 1;
    transform: none;
  }
}
