:root {
  --ink: #080706;
  --ink-2: #100f0d;
  --ink-3: #171410;
  --coal: #201c17;
  --ivory: #f7f1e6;
  --ivory-2: #ece1cf;
  --muted: rgba(247, 241, 230, 0.7);
  --muted-strong: rgba(247, 241, 230, 0.84);
  --muted-dark: rgba(8, 7, 6, 0.66);
  --gold: #c7a15a;
  --gold-2: #e2c37d;
  --sage: #64796b;
  --sage-dark: #1e3229;
  --line: rgba(247, 241, 230, 0.13);
  --line-dark: rgba(8, 7, 6, 0.13);
  --gold-line: rgba(199, 161, 90, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--ivory);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

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

.container {
  width: min(var(--max), 90vw);
  margin-inline: auto;
}

section {
  scroll-margin-top: 90px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4.6vw, 4.55rem);
  line-height: 0.98;
  font-weight: 500;
  color: var(--ivory);
}

.display--dark {
  color: var(--ink);
}

.eyebrow,
.num {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow {
  color: var(--gold);
}

.eyebrow--small {
  font-size: 0.64rem;
  letter-spacing: 0.24em;
}

.num {
  color: var(--muted-dark);
  margin-bottom: 10px;
}

.num--gold {
  color: var(--gold);
}

.lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

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

.button--primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.button--ghost {
  border: 1px solid var(--gold-line);
  color: var(--ivory);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-2);
}

.utility {
  background: #040403;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.utility__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.utility__inner span,
.utility__inner a {
  position: relative;
}

.utility__inner span + span::before,
.utility__inner a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 7, 6, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 260ms ease, border-color 260ms ease, padding 260ms ease;
}

.nav.is-scrolled {
  background: rgba(8, 7, 6, 0.96);
  border-bottom-color: var(--line);
}

.nav__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
}

.nav__logo-img {
  height: 54px;
  width: auto;
  transition: height 260ms ease, opacity 260ms ease;
}

.nav.is-scrolled .nav__logo-img {
  height: 44px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.nav__links a {
  position: relative;
  padding: 8px 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-strong);
  transition: color 220ms ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 260ms ease, left 260ms ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--gold-2);
  outline: none;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  left: 0;
  width: 100%;
}

.nav__cta {
  padding: 11px 18px !important;
  border: 1px solid var(--gold-line);
  color: var(--gold-2) !important;
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  border-color: var(--gold);
  color: var(--ink) !important;
  background: var(--gold);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav__burger.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav__burger.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(700px, calc(100vh - 150px), 820px);
  min-height: clamp(700px, calc(100svh - 150px), 820px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 19% 18%, rgba(199, 161, 90, 0.18), transparent 28%),
    linear-gradient(135deg, #070604 0%, #10100d 48%, #1e2f27 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98) 0%, rgba(8, 7, 6, 0.88) 42%, rgba(8, 7, 6, 0.26) 78%, rgba(8, 7, 6, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.06) 0%, rgba(8, 7, 6, 0.75) 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  --slide-duration: 7400ms;
  --slide-fade: 1500ms;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.86) contrast(1.02);
  opacity: 0;
  transform: scale(1.10) translate3d(-1.2%, -0.8%, 0);
  transition: opacity var(--slide-fade) cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, transform;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroKenBurns calc(var(--slide-duration) + var(--slide-fade)) cubic-bezier(.33, 0, .67, 1) forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.10) translate3d(-1.2%, -0.8%, 0);
  }
}

.hero__indicators {
  position: absolute;
  right: max(28px, 5vw);
  bottom: 32px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  pointer-events: auto;
}

.hero__indicator {
  position: relative;
  width: 38px;
  height: 18px;
  padding: 8px 0;
  cursor: pointer;
  background: none;
  border: 0;
  overflow: hidden;
}

.hero__indicator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(247, 241, 230, 0.24);
  transform: translateY(-50%);
  transition: background 240ms ease;
}

.hero__indicator-progress {
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 0;
  background: var(--gold-2);
  transform: translateY(-50%);
  transition: width 220ms ease;
}

.hero__indicator.is-active .hero__indicator-progress {
  animation: heroIndicatorFill var(--slide-duration) linear forwards;
}

.hero__indicator.is-active::before {
  background: rgba(247, 241, 230, 0.42);
}

.hero__indicator:hover::before,
.hero__indicator:focus-visible::before {
  background: rgba(247, 241, 230, 0.6);
}

.hero__indicator:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

@keyframes heroIndicatorFill {
  from { width: 0; }
  to { width: 100%; }
}

.hero.is-paused .hero__slide.is-active {
  animation-play-state: paused;
}

.hero.is-paused .hero__indicator.is-active .hero__indicator-progress {
  animation-play-state: paused;
}

.hero__inner {
  display: flex;
  align-items: flex-end;
  padding: clamp(42px, 6vh, 78px) 0 clamp(56px, 8vh, 96px);
}

.hero__content {
  max-width: 720px;
}

.hero__logo {
  width: min(252px, 70vw);
  margin-bottom: clamp(22px, 4vh, 34px);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.45));
}

.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.15rem, 6.15vw, 6rem);
  line-height: 0.92;
  font-weight: 500;
  max-width: 820px;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__lead {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__scroll span {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}

.proof-strip__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  white-space: nowrap;
}

.about {
  padding: clamp(100px, 13vw, 172px) 0;
  background:
    linear-gradient(115deg, rgba(100, 121, 107, 0.14), transparent 40%),
    var(--ivory);
  color: var(--ink);
}

.about__grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 260px;
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
}

.about__copy {
  max-width: 760px;
}

.about__copy .lede {
  margin: 26px 0 20px;
}

.about__copy p:not(.lede) {
  color: var(--muted-dark);
  font-size: 1rem;
}

.about__note {
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  position: sticky;
  top: 116px;
}

.about__note svg {
  color: var(--gold);
  margin-bottom: 26px;
}

.about__note p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}

.section-head {
  max-width: 790px;
  margin-bottom: clamp(44px, 7vw, 78px);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head__lead {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.5;
}

.section-head--center .section-head__lead {
  margin-inline: auto;
}

.services,
.team,
.gallery,
.booking {
  padding: clamp(100px, 13vw, 178px) 0;
}

.services {
  background:
    radial-gradient(circle at 80% 16%, rgba(100, 121, 107, 0.2), transparent 28%),
    var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  transition: background 260ms ease, transform 260ms ease;
  contain: layout style;
}

.service-card:hover {
  background: rgba(199, 161, 90, 0.055);
  transform: translateY(-4px);
}

.service-card span {
  display: block;
  margin-bottom: 32px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--gold);
  font-style: italic;
}

.service-card h3 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
}

.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.standard {
  position: relative;
  padding: clamp(100px, 13vw, 178px) 0;
  background:
    linear-gradient(rgba(8, 7, 6, 0.78), rgba(8, 7, 6, 0.92)),
    url("public/images/Gallery/Newpage_Photography (King_s Protocol)-1.jpg") center / cover no-repeat;
  border-block: 1px solid var(--line);
}

.standard__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.85fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.standard__intro {
  position: sticky;
  top: 118px;
}

.standard__intro p:last-child {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted-strong);
}

.standards-list {
  display: grid;
  gap: 18px;
}

.standard-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--gold-line);
  background: rgba(8, 7, 6, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  contain: layout style;
}

.standard-row svg {
  color: var(--gold-2);
  margin-top: 4px;
}

.standard-row h3 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.standard-row p {
  color: var(--muted);
}

.process {
  padding: clamp(95px, 12vw, 160px) 0;
  background:
    linear-gradient(90deg, rgba(100, 121, 107, 0.13), transparent 34%),
    var(--ink-2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-steps li {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--ink-2);
}

.process-steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-2);
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.process-steps p {
  color: var(--muted);
}

.team {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 46px) clamp(22px, 3vw, 34px);
}

.officer {
  text-align: center;
  contain: layout style;
}

.officer__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--coal);
}

.officer__portrait::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(199, 161, 90, 0.28);
  pointer-events: none;
  transition: inset 260ms ease, border-color 260ms ease;
}

.officer__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 360ms ease, filter 360ms ease;
}

.officer:hover .officer__portrait img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.06);
}

.officer:hover .officer__portrait::after {
  inset: 8px;
  border-color: var(--gold);
}

.officer h3 {
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 500;
}

.officer__title {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.officer__bio {
  max-width: 280px;
  margin-inline: auto;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.engagements {
  padding: clamp(95px, 12vw, 160px) 0;
  background: var(--ivory);
  color: var(--ink);
}

.engagements__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.event-list {
  border-top: 1px solid var(--line-dark);
}

.event-list li {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.event-list span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.event-list strong {
  color: var(--muted-dark);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery {
  background:
    radial-gradient(circle at 18% 10%, rgba(199, 161, 90, 0.12), transparent 26%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 52%, var(--ink-2) 100%);
  border-block: 1px solid var(--line);
}

.deck {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.deck__stage {
  position: relative;
  height: calc(min(420px, 78vw) * 1.25 + 60px);
  max-width: 100%;
  overflow: clip;
  contain: paint;
  perspective: 1400px;
}

.deck__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, 78vw);
  aspect-ratio: 4 / 5;
  contain: layout style;
  margin: 0;
  padding: 0;
  border: 1px solid var(--gold-line);
  background: var(--ink-3);
  color: var(--ivory);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0) scale(0.6);
  filter: brightness(0.55) saturate(0.82);
  transition:
    transform 720ms cubic-bezier(.22, .61, .36, 1),
    opacity 720ms cubic-bezier(.22, .61, .36, 1),
    filter 720ms cubic-bezier(.22, .61, .36, 1),
    box-shadow 720ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform, opacity, filter;
}

.deck__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.deck__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 7, 6, 0.86) 100%);
  pointer-events: none;
}

.deck__card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(199, 161, 90, 0.28);
  pointer-events: none;
  transition: inset 260ms ease, border-color 260ms ease;
}

.deck__card.is-active {
  z-index: 6;
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-in;
  transform: translate3d(-50%, -50%, 0) scale(1);
  filter: brightness(1) saturate(1);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5);
}

.deck__card.is-active:hover::after,
.deck__card.is-active:focus-visible::after {
  inset: 8px;
  border-color: rgba(226, 195, 125, 0.58);
}

.deck__card.is-prev,
.deck__card.is-next {
  z-index: 5;
  opacity: 0.6;
  pointer-events: auto;
  filter: brightness(0.78) saturate(0.9);
}

.deck__card.is-prev {
  transform: translate3d(calc(-50% - 76%), -50%, 0) rotateY(10deg) scale(0.84);
}

.deck__card.is-next {
  transform: translate3d(calc(-50% + 76%), -50%, 0) rotateY(-10deg) scale(0.84);
}

.deck__card.is-far-prev,
.deck__card.is-far-next {
  z-index: 4;
  opacity: 0.22;
  pointer-events: auto;
  filter: brightness(0.55) saturate(0.82);
}

.deck__card.is-far-prev {
  transform: translate3d(calc(-50% - 130%), -50%, 0) rotateY(18deg) scale(0.7);
}

.deck__card.is-far-next {
  transform: translate3d(calc(-50% + 130%), -50%, 0) rotateY(-18deg) scale(0.7);
}

.deck__card.is-prev:hover,
.deck__card.is-next:hover,
.deck__card.is-far-prev:hover,
.deck__card.is-far-next:hover {
  opacity: 0.94;
  filter: brightness(0.96) saturate(0.96);
}

.deck__card:focus-visible {
  outline: none;
}

.deck__card:focus-visible::after {
  inset: 8px;
  border-color: var(--gold);
}

.deck__controls {
  margin-top: clamp(40px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
}

.deck__nav {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-line);
  background: rgba(8, 7, 6, 0.68);
  color: var(--gold-2);
  cursor: pointer;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease, transform 160ms ease;
}

.deck__nav:hover,
.deck__nav:focus-visible {
  border-color: var(--gold);
  color: var(--ivory);
  background: var(--coal);
  outline: none;
}

.deck__nav:active {
  transform: scale(0.96);
}

.deck__count {
  min-width: 96px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--muted-strong);
  letter-spacing: 0.04em;
}

.deck__count span {
  margin: 0 6px;
  color: var(--gold);
  font-style: normal;
}

.gallery__caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 3;
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.gallery-modal {
  width: min(1120px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 0;
  border: 1px solid var(--gold-line);
  background: rgba(8, 7, 6, 0.97);
  color: var(--ivory);
}

.gallery-modal::backdrop {
  background: rgba(2, 2, 2, 0.84);
  backdrop-filter: blur(8px);
}

.gallery-modal__figure {
  margin: 0;
  padding: 28px;
}

.gallery-modal__figure img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  background: var(--ink);
}

.gallery-modal__figure figcaption {
  padding-top: 18px;
  color: var(--gold-2);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.gallery-modal__close,
.gallery-modal__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  background: rgba(16, 15, 13, 0.84);
  color: var(--gold-2);
  cursor: pointer;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.gallery-modal__close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
}

.gallery-modal__nav {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}

.gallery-modal__nav--prev {
  left: 18px;
}

.gallery-modal__nav--next {
  right: 18px;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible,
.gallery-modal__nav:hover,
.gallery-modal__nav:focus-visible {
  border-color: var(--gold);
  background: var(--coal);
  color: var(--ivory);
  outline: none;
}

.praise {
  padding: clamp(95px, 12vw, 160px) 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(100, 121, 107, 0.2), transparent 28%),
    var(--ink);
}

.praise__inner {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.praise__crest {
  color: var(--gold);
  margin-bottom: 32px;
}

.praise__quote {
  margin-bottom: 30px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  line-height: 1.28;
}

.praise__attr {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.booking {
  background:
    linear-gradient(120deg, rgba(199, 161, 90, 0.11), transparent 38%),
    var(--ink-2);
  border-top: 1px solid var(--line);
}

.booking__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.booking__copy p:last-child {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.booking__panel {
  border: 1px solid var(--gold-line);
  background: rgba(8, 7, 6, 0.48);
  box-shadow: var(--shadow);
}

.booking__link {
  display: block;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.booking__link:hover,
.booking__link:focus-visible {
  background: rgba(199, 161, 90, 0.07);
  outline: none;
}

.booking__link span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.booking__link strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 500;
}

.booking__brief {
  padding: 26px;
}

.booking__brief ul {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.booking__brief li {
  position: relative;
  padding-left: 18px;
}

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

.footer {
  position: relative;
  padding: 92px 0 68px;
  border-top: 1px solid var(--gold-line);
  background: #050403;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer__logo-img {
  height: 118px;
  width: auto;
}

.footer__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-block: 1px solid var(--line);
}

.footer__nav a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: var(--gold-2);
  outline: none;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer__url {
  color: var(--gold);
  transition: color 220ms ease;
}

.footer__url:hover,
.footer__url:focus-visible {
  color: var(--gold-2);
  outline: none;
}

.footer__signature {
  position: absolute;
  right: max(28px, 4vw);
  bottom: 24px;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.76;
  transition: color 220ms ease, opacity 220ms ease;
}

.footer__signature:hover,
.footer__signature:focus-visible {
  color: #8bd7bb;
  opacity: 1;
  outline: none;
}

@media (max-width: 1080px) {
  .standard__grid,
  .engagements__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .standard__intro {
    position: static;
    max-width: 680px;
  }

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

  .about__note {
    position: static;
    max-width: 520px;
  }

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

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

  .proof-strip__inner {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    overflow: hidden;
    padding-block: 18px;
    text-align: center;
  }
}

@media (max-width: 780px) {
  .utility {
    display: none;
  }

  .nav__inner {
    min-height: 74px;
  }

  .nav__logo-img,
  .nav.is-scrolled .nav__logo-img {
    height: 42px;
  }

  .nav__burger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 74px 0 auto 0;
    width: 100%;
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 28px 8vw;
    background: rgba(8, 7, 6, 0.98);
    border-top: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition:
      opacity 260ms ease,
      visibility 0s linear 260ms,
      transform 360ms cubic-bezier(.2,.7,.2,1);
    overflow-y: auto;
    overflow-x: clip;
    overscroll-behavior: contain;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 260ms ease,
      visibility 0s,
      transform 360ms cubic-bezier(.2,.7,.2,1);
  }

  .nav__links a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .nav__links a::after {
    display: none;
  }

  .nav__cta {
    margin-top: 18px;
    text-align: center;
  }

  .hero {
    min-height: calc(100vh - 118px);
    min-height: calc(100svh - 118px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.32) 0%, rgba(8, 7, 6, 0.78) 58%, rgba(8, 7, 6, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.62), rgba(8, 7, 6, 0.18));
  }

  .hero__indicators,
  .hero__scroll {
    display: none;
  }

  .hero__inner {
    align-items: flex-start;
    padding: clamp(26px, 7vw, 38px) 0 34px;
  }

  .hero__logo {
    width: min(168px, 52vw);
    margin-bottom: 20px;
  }

  .hero__title {
    max-width: 12.4ch;
    font-size: clamp(2.05rem, 9.3vw, 2.72rem);
    line-height: 1;
  }

  .hero__lead {
    max-width: 28ch;
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: 22px;
    align-items: stretch;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .service-grid,
  .team__grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-steps li {
    min-height: auto;
  }

  .event-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .deck__stage {
    height: calc(min(420px, 72vw) * 1.25 + 56px);
  }

  .deck__card {
    width: min(420px, 72vw);
  }

  .deck__card.is-far-prev,
  .deck__card.is-far-next {
    opacity: 0;
    pointer-events: none;
  }

  .deck__card.is-prev {
    transform: translate3d(calc(-50% - 46%), -50%, 0) rotateY(8deg) scale(0.72);
  }

  .deck__card.is-next {
    transform: translate3d(calc(-50% + 46%), -50%, 0) rotateY(-8deg) scale(0.72);
  }

  .deck__count {
    font-size: 1.25rem;
    min-width: 80px;
  }

  .gallery-modal {
    width: calc(100vw - 18px);
  }

  .gallery-modal__figure {
    padding: 18px;
  }

  .gallery-modal__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer__signature {
    position: static;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 40px, var(--max));
  }

  section {
    scroll-margin-top: 78px;
  }

  .about,
  .services,
  .team,
  .gallery,
  .booking,
  .standard,
  .process,
  .engagements,
  .praise {
    padding-block: clamp(72px, 18vw, 110px);
  }

  .display {
    font-size: clamp(2.1rem, 12vw, 3rem);
    line-height: 1.02;
  }

  .section-head {
    margin-bottom: clamp(32px, 8vw, 48px);
  }

  .section-head__lead,
  .lede {
    font-size: 1.05rem;
  }

  .standard-row {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .standard-row h3 {
    font-size: 1.35rem;
  }

  .standard-row p,
  .service-card p,
  .officer__bio,
  .process-steps p {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 26px 22px;
  }

  .process-steps li {
    padding: 26px 22px;
  }

  .process-steps span {
    margin-bottom: 22px;
  }

  .booking__link,
  .booking__brief {
    padding: 22px;
  }

  .booking__link strong {
    font-size: 1.3rem;
  }

  .footer {
    padding: 72px 0 56px;
  }

  .footer__logo-img {
    height: 92px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
