:root {
  --black: #050505;
  --black-soft: #0d0c0a;
  --gold: #c6a667;
  --gold-bright: #d29a58;
  --gold-deep: #b87f3d;
  --ivory: #fbf8f2;
  --paper: #faf7f1;
  --white: #fffdf8;
  --stone: #d7d0c6;
  --muted: #a99f92;
  --ink: #11100e;
  --ink-soft: #3e382f;
  --line-gold: rgba(198, 166, 103, 0.58);
  --line-gold-soft: rgba(198, 166, 103, 0.28);
  --line-dark: rgba(17, 16, 14, 0.13);
  --shadow-soft: 0 20px 52px rgba(22, 18, 13, 0.11);
  --container: min(100% - 88px, 1180px);
  --header-container: min(100% - 60px, 1180px);
  --header-height: 125px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.visually-hidden {
  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;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ivory);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(5, 5, 5, 0.07);
  border-bottom: 1px solid rgba(255, 253, 248, 0.04);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  background: rgba(5, 5, 5, 0.94);
  border-bottom-color: var(--line-gold-soft);
}

.site-header__inner {
  width: var(--header-container);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}

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

.brand-mark span {
  display: grid;
  gap: 2px;
}

.brand-mark strong {
  font-family: var(--font-heading);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-mark small {
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark--header {
  color: var(--white);
}

.brand-mark--header img {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.86;
}

.brand-mark--header small {
  color: rgba(255, 253, 248, 0.9);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  line-height: 1.1;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

.site-nav__cta {
  padding: 10px 14px;
  border: 1px solid rgba(198, 166, 103, 0.72);
  color: var(--white);
}

.site-nav__cta:hover {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-gold);
  background: transparent;
  color: var(--gold);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle__line {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  height: clamp(500px, 60vw, 780px);
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__veil,
.values-showcase__image,
.values-showcase__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image,
.values-showcase__image {
  object-fit: cover;
  z-index: -2;
}

.hero__image {
  object-position: center center;
  filter: saturate(0.92) brightness(0.78);
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.18) 45%, rgba(5, 5, 5, 0.58)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.36) 42%, rgba(5, 5, 5, 0.78));
}

.hero__content {
  max-width: 920px;
  padding-top: 84px;
  text-align: center;
}

.eyebrow {
  color: var(--gold-bright);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 17px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  color: var(--white);
  font-size: 3.34rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.25rem;
}

.hero__rule {
  width: 118px;
  height: 1px;
  display: block;
  margin: 28px auto 32px;
  background: var(--gold-bright);
}

.hero__statement {
  color: var(--white);
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 1.56;
}

.hero__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 31px;
  padding: 12px 22px;
  border: 1px solid rgba(198, 166, 103, 0.78);
  background: rgba(5, 5, 5, 0.24);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero__cta:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--black);
}

.section--purpose,
.section--principles,
.section--consultation {
  background: var(--paper);
  color: var(--ink);
}

.section--purpose {
  padding-block: 43px 40px;
}

.purpose {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(320px, 320px);
  gap: 28px 36px;
  align-items: center;
}

.purpose__mark {
  align-self: center;
}

.purpose__mark img {
  width: 63px;
}

.purpose__copy h2 {
  max-width: 420px;
  color: var(--ink);
  font-size: 1.72rem;
  line-height: 1.21;
}

.purpose__image {
  justify-self: end;
  width: 100%;
  max-width: 492px;
}

.purpose__image img {
  width: 100%;
  aspect-ratio: 320 / 214;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(22, 18, 13, 0.14);
}

.section--principles {
  padding-block: 0 70px;
}

.center-heading {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 42px;
}

.center-heading span {
  height: 1px;
  background: var(--line-gold);
}

.center-heading .eyebrow {
  margin: 0;
  white-space: nowrap;
}

.principles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.principle {
  min-height: 310px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 15px;
  padding: 0 22px;
  text-align: center;
  border-left: 1px solid var(--line-dark);
}

.principle:first-child {
  border-left: 0;
}

.principle svg {
  width: 58px;
  height: 58px;
  margin-bottom: 2px;
  stroke: var(--gold-bright);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.principle h3 {
  max-width: 160px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.principle p {
  max-width: 158px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.86;
}

.values-showcase {
  position: relative;
  min-height: 346px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding-block: 34px 38px;
}

.values-showcase__image {
  object-position: center 54%;
  filter: saturate(0.72) brightness(0.42);
}

.values-showcase__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.92)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.9));
}

.values-showcase__content {
  position: relative;
  z-index: 1;
}

.values-showcase__heading {
  text-align: center;
  margin-bottom: 28px;
}

.values-showcase__heading .eyebrow {
  margin-bottom: 11px;
}

.values-showcase__heading h2 {
  color: var(--white);
  font-size: 2.55rem;
  line-height: 1.05;
}

.values-showcase__heading h2 span {
  color: var(--gold-bright);
}

.epic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
}

.epic-value {
  min-height: 176px;
  padding: 0 34px;
  text-align: center;
  border-left: 1px solid var(--line-gold-soft);
}

.epic-value:first-child {
  border-left: 0;
}

.epic-value span {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.88;
  margin-bottom: 18px;
}

.epic-value h3 {
  color: var(--gold-bright);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.epic-value h3::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 112px;
  height: 1px;
  margin: 0 auto 12px;
  background: var(--line-gold);
}

.epic-value p {
  max-width: 150px;
  margin-inline: auto;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}

.section--consultation {
  padding-block: 28px;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(400px, 1.12fr);
  gap: 58px;
  align-items: center;
}

.consultation__copy {
  padding-left: 18px;
}

.consultation__copy .eyebrow {
  margin-bottom: 16px;
}

.consultation__copy h2 {
  max-width: 340px;
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1.18;
}

.consultation__copy p:not(.eyebrow) {
  max-width: 310px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.9;
}

.booking-card {
  width: 100%;
  max-width: 510px;
  justify-self: center;
  padding: 18px 20px 16px;
  background: var(--white);
  border: 1px solid rgba(17, 16, 14, 0.08);
  border-radius: 5px;
  box-shadow: var(--shadow-soft);
}

.booking-card__title {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.booking-card__subtitle {
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.booking-card__dates,
.booking-card__times {
  display: grid;
  gap: 8px;
}

.booking-card__dates {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 14px;
}

.booking-card__times {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}

.booking-card__dates button,
.booking-card__times button {
  min-width: 0;
  border: 1px solid rgba(17, 16, 14, 0.08);
  border-radius: 4px;
  background: #f5f1ed;
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.booking-card__dates button {
  min-height: 38px;
  padding: 7px 4px;
  text-transform: uppercase;
}

.booking-card__dates span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.57rem;
  font-weight: 800;
}

.booking-card__times button {
  min-height: 38px;
  padding: 8px 4px;
}

.booking-card__dates button:hover,
.booking-card__times button:hover {
  border-color: rgba(198, 166, 103, 0.6);
}

.booking-card__dates button.is-selected {
  background: #f8f4ef;
}

.booking-card__times button.is-selected,
.booking-card__submit {
  background: linear-gradient(180deg, #d7a063, #bf7f3f);
  border-color: #bf7f3f;
  color: var(--black);
}

.booking-card__submit {
  width: 100%;
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 9px;
  border: 1px solid #bf7f3f;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.booking-card__submit svg,
.booking-card__note svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.booking-card__submit:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.booking-card__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.booking-card__note svg {
  color: var(--gold-bright);
}

.site-footer {
  background: linear-gradient(90deg, #070808, #10100f 50%, #070808);
  color: var(--muted);
  border-top: 1px solid rgba(198, 166, 103, 0.18);
  padding: 20px 30px 22px;
}

.site-footer__inner {
  width: min(100%, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.brand-mark--footer {
  align-items: flex-start;
  gap: 8px;
  color: var(--white);
}

.brand-mark--footer img {
  width: 34px;
}

.brand-mark--footer strong {
  color: var(--white);
  font-size: 1.06rem;
}

.brand-mark--footer small {
  color: var(--white);
  font-size: 0.51rem;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.site-footer__nav div {
  display: grid;
  gap: 4px;
  align-content: start;
}

.site-footer__nav p {
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__nav span {
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 500;
  line-height: 1.45;
}

.site-footer__nav a {
  transition: color 180ms ease;
}

.site-footer__nav a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.social-links a {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 166, 103, 0.7);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.63rem;
  font-weight: 700;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (min-width: 1180px) {
  .site-nav {
    gap: 34px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: 4.1rem;
  }

  .hero__statement {
    font-size: 1.72rem;
  }

  .purpose__copy h2 {
    font-size: 2.18rem;
    max-width: 520px;
  }

  .purpose {
    grid-template-columns: 76px minmax(0, 1fr) minmax(430px, 492px);
    column-gap: 64px;
  }

  .principle p {
    font-size: 0.81rem;
  }

  .consultation__copy h2 {
    font-size: 2.24rem;
    max-width: 410px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 88px, 1180px);
    --header-container: min(100% - 36px, 1180px);
  }

  .site-nav {
    gap: 20px;
    font-size: 0.61rem;
  }

  .site-nav__cta {
    padding: 9px 11px;
  }

  .purpose {
    grid-template-columns: 62px minmax(0, 1fr) minmax(320px, 320px);
    gap: 26px 36px;
  }

  .principle {
    padding-inline: 16px;
  }

  .consultation {
    grid-template-columns: 250px minmax(0, 404px);
    gap: 58px;
  }

  .site-footer {
    padding-inline: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 28px;
  }

  .site-footer__nav {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 30px, 1180px);
    --header-container: min(100% - 30px, 1180px);
    --header-height: 72px;
  }

  .brand-mark strong {
    font-size: 1.06rem;
  }

  .brand-mark small {
    font-size: 0.5rem;
  }

  .brand-mark img {
    width: 34px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    background: var(--black);
    border-bottom: 1px solid var(--line-gold);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding-block: 14px;
    border-bottom: 1px solid var(--line-gold-soft);
  }

  .site-nav__cta {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line-gold);
  }

  .hero {
    height: 580px;
    min-height: 580px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__content {
    padding-top: 58px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__statement {
    font-size: 1.25rem;
  }

  .hero__cta {
    margin-top: 26px;
  }

  .purpose,
  .consultation,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .purpose__mark {
    justify-self: start;
  }

  .purpose__copy h2,
  .consultation__copy h2,
  .consultation__copy p:not(.eyebrow) {
    max-width: none;
  }

  .purpose__image {
    justify-self: stretch;
    max-width: none;
  }

  .principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
  }

  .principle:nth-child(odd) {
    border-left: 0;
  }

  .principle {
    min-height: auto;
    padding-block: 0;
  }

  .epic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .epic-value:nth-child(odd) {
    border-left: 0;
  }

  .consultation__copy {
    padding-left: 0;
  }

  .booking-card {
    max-width: none;
  }

  .site-footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    height: 540px;
    min-height: 540px;
  }

  h1 {
    font-size: 2.52rem;
  }

  h2,
  .values-showcase__heading h2 {
    font-size: 1.82rem;
  }

  .section--purpose {
    padding-block: 50px 40px;
  }

  .section--principles {
    padding-bottom: 56px;
  }

  .center-heading {
    gap: 14px;
    margin-bottom: 34px;
  }

  .principles,
  .epic-grid,
  .booking-card__dates,
  .booking-card__times,
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .principle,
  .principle:nth-child(odd),
  .epic-value,
  .epic-value:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-top: 28px;
  }

  .principle:first-child,
  .epic-value:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .epic-value {
    border-top-color: var(--line-gold-soft);
  }

  .epic-value span {
    font-size: 4.6rem;
  }

  .booking-card {
    padding: 18px 16px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
