:root {
  --coffee: #402615;
  --berkeley: #7d5e3c;
  --mountain: #878679;
  --mojave: #bea683;
  --almond: #d6c8b1;
  --frosted: #b7c7c9;
  --frosted-deep: #91a7aa;

  /* Cool supporting tones derived from the approved palette */
  --blue-mist: #eef3f3;
  --blue-haze: #dce6e7;
  --soft-grey: #e7ebeb;
  --deep-grey: #5f6b6d;
  --charcoal-grey: #455052;
  --white: #ffffff;
  --paper: #f8faf9;
  --cream: #f3f6f6;
  --ink: #384345;
  --line: rgba(95, 107, 109, 0.18);
  --shadow: 0 22px 70px rgba(69, 80, 82, 0.12);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  background: var(--frosted);
  color: var(--coffee);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--coffee);
  color: var(--white);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.announcement {
  background: var(--deep-grey);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  letter-spacing: .06em;
}

.announcement__inner {
  min-height: 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.announcement a {
  color: var(--blue-haze);
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(248, 250, 249, .95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(64, 38, 21, .07);
}

.header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 225px;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--charcoal-grey);
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--deep-grey);
  transition: right .2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--coffee);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 23px;
  border: 1px solid var(--frosted-deep);
  border-radius: 999px;
  background: var(--frosted-deep);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--deep-grey);
  border-color: var(--deep-grey);
  box-shadow: 0 12px 28px rgba(69,80,82,.16);
}

.button--small {
  min-height: 43px;
  padding: 9px 18px;
  font-size: 13px;
}

.button--secondary {
  background: var(--frosted);
  border-color: var(--blue-haze);
  color: var(--coffee);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--frosted-deep);
  border-color: var(--frosted-deep);
}

.button--ghost {
  background: transparent;
  color: var(--coffee);
}

.button--light {
  background: var(--blue-mist);
  border-color: var(--cream);
  color: var(--coffee);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  color: var(--charcoal-grey);
  font-weight: 750;
  text-underline-offset: 5px;
  text-decoration-color: var(--frosted-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 84px 0 96px;
  background:
    radial-gradient(circle at 85% 15%, rgba(183,199,201,.78), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(220,230,231,.82), transparent 30%),
    linear-gradient(120deg, var(--paper) 0 54%, var(--blue-mist) 54% 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 70px;
}

.hero__copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--deep-grey);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about h2,
.booking h2,
.faq h2,
.closing-cta h2,
.legal-content h1,
.status-card h1 {
  margin: 0;
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(64px, 7.4vw, 105px);
}

.hero h1 em {
  color: var(--deep-grey);
  font-weight: 400;
}

.hero__intro {
  max-width: 570px;
  margin: 29px 0 0;
  color: var(--deep-grey);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 35px;
}

.hero__note {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--mountain);
  font-size: 12px;
  line-height: 1.6;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  min-height: 480px;
  display: grid;
  place-items: center;
  align-content: center;
  overflow: hidden;
  padding: 60px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 49% 49% 26px 26px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.visual-card::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -32%;
  width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--frosted);
  opacity: .48;
  filter: blur(2px);
}

.visual-card__halo {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 280px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 1px solid rgba(95,107,109,.22);
  border-radius: 50%;
}

.visual-card img {
  position: relative;
  z-index: 2;
  width: 330px;
  mix-blend-mode: multiply;
}

.visual-card p {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  color: var(--deep-grey);
  font-family: var(--serif);
  font-size: 18px;
  text-align: center;
}

.floating-note {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 17px 19px;
  border: 1px solid rgba(64,38,21,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 40px rgba(64,38,21,.11);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.floating-note span {
  margin-top: 2px;
  color: var(--mountain);
  font-size: 11px;
}

.floating-note--top {
  top: 42px;
  right: -15px;
}

.floating-note--bottom {
  bottom: 43px;
  left: -25px;
}

.hero__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__decor--one {
  top: 9%;
  right: -7%;
  width: 290px;
  aspect-ratio: 1;
  border: 1px solid rgba(64,38,21,.14);
}

.hero__decor--two {
  right: 33%;
  bottom: -150px;
  width: 300px;
  aspect-ratio: 1;
  background: rgba(183,199,201,.42);
  filter: blur(1px);
}

.trust-strip {
  background: var(--deep-grey);
  color: var(--white);
}

.trust-strip__grid {
  min-height: 103px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.trust-strip__grid > div:last-child {
  border-right: 0;
}

.trust-strip span {
  color: var(--blue-haze);
  font-family: var(--serif);
  font-size: 20px;
}

.trust-strip strong {
  font-size: 13px;
  letter-spacing: .04em;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.12fr .68fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-heading h2,
.about h2,
.booking h2,
.faq h2,
.closing-cta h2 {
  font-size: clamp(45px, 5vw, 67px);
}

.section-heading > p {
  margin: 0;
  color: var(--mountain);
}

.section-heading--centred {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--blue-mist);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(145,167,170,.62);
  box-shadow: var(--shadow);
}

.service-card--featured {
  background: var(--soft-grey);
}

.service-card--blue {
  background: var(--frosted);
}

.service-card--wide {
  min-height: 260px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 60px;
  background: var(--blue-haze);
}

.service-card__number {
  margin-bottom: 50px;
  color: var(--deep-grey);
  font-family: var(--serif);
  font-size: 18px;
}

.service-card__label {
  margin: 0 0 10px;
  color: var(--deep-grey);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 560px;
  margin: 0 0 17px;
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.06;
}

.service-card > p,
.service-card > div > p:not(.service-card__label) {
  margin: 0;
  color: #5e5148;
}

.service-card ul {
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid rgba(64,38,21,.12);
  color: #54463d;
  font-size: 14px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--deep-grey);
}

.card-link {
  margin-top: auto;
  color: var(--charcoal-grey);
  font-weight: 750;
  text-decoration: none;
}

.card-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform .2s ease;
}

.card-link:hover span {
  transform: translateX(5px);
}

.about {
  overflow: hidden;
  background: var(--charcoal-grey);
  color: rgba(255,255,255,.82);
}

.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.about__art {
  position: relative;
  min-height: 590px;
}

.arch {
  position: absolute;
  border-radius: 260px 260px 24px 24px;
}

.arch--back {
  inset: 0 80px 40px 0;
  background: var(--deep-grey);
}

.arch--front {
  inset: 55px 0 0 80px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.5), transparent 28%),
    var(--frosted);
  box-shadow: -25px 25px 0 var(--frosted-deep);
}

.arch--front::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(64,38,21,.24);
  border-radius: inherit;
}

.arch--front img {
  position: relative;
  z-index: 2;
  width: 235px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: .85;
}

.about__caption {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 38px;
  max-width: 250px;
  padding: 20px 24px;
  border-radius: 14px;
  background: var(--blue-mist);
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  box-shadow: var(--shadow);
}

.about .eyebrow {
  color: var(--blue-haze);
}

.about h2 {
  color: var(--blue-mist);
}

.about__copy .lead {
  margin: 30px 0 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.42;
}

.about__copy > p:not(.eyebrow):not(.lead) {
  color: rgba(255,255,255,.66);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 40px;
}

.values > div {
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.23);
}

.values span {
  color: var(--blue-haze);
  font-family: var(--serif);
  font-size: 20px;
}

.values p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.journey {
  background: var(--paper);
}

.journey__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
}

.journey__grid::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--soft-grey);
}

.journey-step {
  position: relative;
  padding: 0 27px;
  text-align: center;
}

.journey-step span {
  position: relative;
  z-index: 2;
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  margin: 0 auto 27px;
  border: 1px solid var(--mojave);
  border-radius: 50%;
  background: var(--paper);
  color: var(--deep-grey);
  font-family: var(--serif);
  font-size: 18px;
}

.journey-step:nth-child(even) span {
  background: var(--frosted);
  border-color: var(--blue-haze);
  color: var(--coffee);
}

.journey-step h3 {
  margin: 0;
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.journey-step p {
  margin: 10px 0 0;
  color: var(--mountain);
  font-size: 14px;
}

.booking {
  position: relative;
  overflow: hidden;
  background: var(--frosted);
}

.booking::before {
  content: "";
  position: absolute;
  top: -190px;
  left: -150px;
  width: 410px;
  aspect-ratio: 1;
  border: 1px solid rgba(64,38,21,.14);
  border-radius: 50%;
}

.booking__grid {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.booking__intro {
  position: sticky;
  top: 130px;
}

.booking__intro > p:not(.eyebrow) {
  max-width: 470px;
  color: #536163;
}

.booking__contact {
  margin-top: 36px;
  padding-top: 27px;
  border-top: 1px solid rgba(64,38,21,.2);
}

.booking__contact span {
  display: block;
  color: var(--deep-grey);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.booking__contact a {
  display: inline-block;
  margin-top: 6px;
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-size: 25px;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.booking__notice {
  max-width: 470px;
  margin-top: 32px;
  padding: 20px;
  border-left: 3px solid var(--berkeley);
  background: rgba(255,255,255,.56);
}

.booking__notice strong {
  color: var(--coffee);
}

.booking__notice p {
  margin: 5px 0 0;
  color: #5b6565;
  font-size: 12px;
}

.booking-form-wrap {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-progress span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mountain);
  font-size: 11px;
  font-weight: 750;
}

.form-progress i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--almond);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 12px;
  font-style: normal;
}

.form-progress span.is-active {
  color: var(--coffee);
}

.form-progress span.is-active i {
  border-color: var(--coffee);
  background: var(--coffee);
  color: var(--white);
}

.form-step {
  display: none;
  padding-top: 30px;
}

.form-step.is-active {
  display: block;
  animation: formEnter .3s ease;
}

@keyframes formEnter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-kicker {
  margin: 0;
  color: var(--deep-grey);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-step h3 {
  margin: 5px 0 28px;
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
}

.field {
  margin-bottom: 20px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 750;
}

.field label span {
  color: var(--mountain);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(64,38,21,.2);
  border-radius: 11px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 10px 14px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
  padding: 13px 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--deep-grey);
  box-shadow: 0 0 0 4px rgba(190,166,131,.22);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #9b3e35;
}

.field-error {
  display: block;
  min-height: 17px;
  margin-top: 4px;
  color: #8d3028;
  font-size: 11px;
}

.field--hidden {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #4f443d;
  font-size: 12px;
  line-height: 1.55;
  cursor: pointer;
}

.checkbox input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--coffee);
}

.checkbox a {
  color: var(--charcoal-grey);
  font-weight: 750;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  margin-top: 28px;
}

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

.form-actions .button {
  min-width: 145px;
}

.form-disclaimer {
  margin: 17px 0 0;
  color: var(--mountain);
  font-size: 10px;
  line-height: 1.55;
}

.faq {
  background: var(--blue-mist);
}

.faq__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.faq__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq__intro p:last-child {
  color: var(--mountain);
}

.faq__intro a {
  color: var(--charcoal-grey);
  font-weight: 750;
}

.accordion details {
  border-bottom: 1px solid var(--almond);
}

.accordion summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-size: 22px;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: var(--deep-grey);
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 300;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  max-width: 690px;
  margin: -4px 0 25px;
  color: var(--mountain);
}

.closing-cta {
  padding: 70px 0;
  background: var(--deep-grey);
  color: var(--white);
}

.closing-cta__inner {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 35px;
}

.closing-cta img {
  width: 86px;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.closing-cta .eyebrow {
  color: var(--blue-haze);
}

.closing-cta h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(35px, 4.5vw, 55px);
}

.site-footer {
  padding: 78px 0 22px;
  background: var(--charcoal-grey);
  color: rgba(255,255,255,.7);
}

.footer__top {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding-bottom: 55px;
}

.footer-logo {
  width: 330px;
  padding: 17px;
  border-radius: 12px;
  background: var(--white);
}

.footer-logo img {
  width: 100%;
}

.footer__brand p {
  max-width: 390px;
  margin: 23px 0 0;
  color: rgba(255,255,255,.66);
  font-family: var(--serif);
  font-size: 20px;
}

.footer__links {
  display: grid;
  grid-template-columns: .8fr 1.4fr .9fr;
  gap: 30px;
}

.footer__links h3 {
  margin: 0 0 17px;
  color: var(--blue-haze);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer__links a,
.footer__links span {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 11px;
}

.footer__bottom p {
  margin: 0;
}

.mobile-booking {
  display: none;
}

.reveal,
html.js .reveal,
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Legal / status pages */
.legal-page {
  background: var(--blue-mist);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header__inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-content {
  padding: 85px 0 120px;
}

.legal-content__inner {
  max-width: 830px;
}

.legal-content h1,
.status-card h1 {
  font-size: clamp(48px, 7vw, 74px);
}

.legal-updated {
  color: var(--mountain);
}

.legal-alert {
  margin: 35px 0 45px;
  padding: 22px 25px;
  border-left: 4px solid var(--berkeley);
  background: var(--soft-grey);
}

.legal-alert p {
  margin: 5px 0 0;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content section h2 {
  color: var(--charcoal-grey);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.legal-content a {
  color: var(--deep-grey);
  font-weight: 700;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 15% 15%, rgba(183,199,201,.7), transparent 28%),
    var(--blue-mist);
}

.status-card {
  width: min(100%, 680px);
  padding: 60px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.status-card img {
  width: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
}

.status-card p:not(.eyebrow) {
  color: var(--mountain);
}

.status-card .button {
  margin: 20px 10px 0;
}

.status-card .text-link {
  display: block;
  margin-top: 22px;
}

/* Responsive */
@media (max-width: 1050px) {
  .site-nav {
    gap: 19px;
  }

  .hero__grid {
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(59px, 8vw, 84px);
  }

  .visual-card {
    min-height: 430px;
    padding: 45px;
  }

  .floating-note--top {
    right: 0;
  }

  .floating-note--bottom {
    left: 0;
  }

  .about__grid,
  .booking__grid,
  .faq__grid {
    gap: 55px;
  }

  .about__art {
    min-height: 510px;
  }
}

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

  .announcement__inner span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header__inner {
    min-height: 75px;
  }

  .brand img {
    width: 165px;
  }

  .menu-toggle {
    z-index: 102;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0 9px 14px;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 13px;
    font-weight: 750;
  }

  .menu-toggle__icon {
    width: 25px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-toggle__icon i {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    width: min(88vw, 410px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 95px 35px 45px;
    background: var(--blue-mist);
    box-shadow: -20px 0 50px rgba(64,38,21,.14);
    transform: translateX(105%);
    transition: transform .28s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a:not(.button) {
    padding: 15px 0;
    border-bottom: 1px solid var(--almond);
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
  }

  .site-nav .button {
    margin-top: 25px;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 85px;
    background:
      radial-gradient(circle at 95% 38%, rgba(183,199,201,.6), transparent 27%),
      var(--cream);
  }

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

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

  .hero h1 {
    margin-inline: auto;
  }

  .hero__intro,
  .hero__note {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    min-height: 480px;
    margin-top: 20px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid > div {
    min-height: 78px;
  }

  .trust-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    min-height: 400px;
  }

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

  .about__art {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .booking__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .booking__intro,
  .faq__intro {
    position: static;
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
  }

  .journey__grid::before {
    display: none;
  }

  .closing-cta__inner {
    grid-template-columns: 80px 1fr;
  }

  .closing-cta .button {
    grid-column: 2;
    justify-self: start;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 71px);
  }

  .hero__intro {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 17px;
  }

  .hero__visual {
    min-height: 395px;
  }

  .visual-card {
    min-height: 355px;
    padding: 42px 25px;
  }

  .visual-card img {
    width: 270px;
  }

  .visual-card p {
    font-size: 15px;
  }

  .floating-note {
    min-width: 155px;
    padding: 12px 14px;
  }

  .floating-note--top {
    top: 20px;
  }

  .floating-note--bottom {
    bottom: 5px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading h2,
  .about h2,
  .booking h2,
  .faq h2 {
    font-size: clamp(41px, 12vw, 54px);
  }

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

  .service-card {
    min-height: auto;
    padding: 29px 25px;
  }

  .service-card__number {
    margin-bottom: 30px;
  }

  .service-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__grid {
    gap: 55px;
  }

  .about__art {
    min-height: 400px;
  }

  .arch--back {
    inset: 0 55px 25px 0;
  }

  .arch--front {
    inset: 40px 0 0 55px;
    box-shadow: -15px 15px 0 var(--mojave);
  }

  .arch--front img {
    width: 175px;
  }

  .about__caption {
    right: 0;
    bottom: 18px;
    max-width: 205px;
    padding: 15px 17px;
    font-size: 17px;
  }

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

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

  .booking-form-wrap {
    padding: 25px 18px;
  }

  .form-progress {
    gap: 4px;
  }

  .form-progress span {
    gap: 5px;
    font-size: 9px;
  }

  .form-progress i {
    width: 23px;
    height: 23px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions .button {
    min-width: 0;
    padding-inline: 18px;
  }

  .booking__contact a {
    font-size: 21px;
  }

  .closing-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .closing-cta img {
    margin-inline: auto;
  }

  .closing-cta .button {
    grid-column: auto;
    justify-self: center;
  }

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

  .footer__bottom {
    flex-direction: column;
    padding-bottom: 62px;
  }

  .mobile-booking {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
  }

  .mobile-booking a {
    min-height: 51px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--coffee);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(64,38,21,.28);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .legal-header__inner {
    min-height: 75px;
  }

  .legal-header .brand img {
    width: 145px;
  }

  .legal-content {
    padding: 60px 0 90px;
  }

  .status-card {
    padding: 42px 24px;
  }
}

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

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


/* Cool-led visual rebalance */
.hero .eyebrow,
.section .eyebrow,
.booking .eyebrow,
.faq .eyebrow {
  color: var(--deep-grey);
}

.hero h1 em {
  color: var(--frosted-deep);
}

.site-nav > a:not(.button)::after,
.card-link::after {
  background: var(--frosted-deep);
}

.service-card__number,
.service-card__label,
.form-kicker,
.booking__contact span {
  color: var(--deep-grey);
}

.service-card li::before {
  background: var(--frosted-deep);
}

.about {
  background:
    radial-gradient(circle at 88% 18%, rgba(183,199,201,.16), transparent 24%),
    var(--charcoal-grey);
}

.about .eyebrow,
.closing-cta .eyebrow,
.footer__links h3 {
  color: var(--frosted);
}

.journey-step span {
  border-color: var(--frosted-deep);
  color: var(--deep-grey);
}

.journey-step:nth-child(even) span {
  background: var(--blue-haze);
  border-color: var(--blue-haze);
  color: var(--charcoal-grey);
}

.booking {
  background:
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.55), transparent 30%),
    linear-gradient(135deg, var(--blue-haze), var(--frosted));
}

.booking::before {
  border-color: rgba(95,107,109,.18);
}

.closing-cta {
  background: var(--frosted-deep);
}

.site-footer {
  background: var(--charcoal-grey);
}

.footer-logo {
  background: var(--white);
}

.mobile-booking a {
  background: var(--frosted-deep);
}

.mobile-booking a:hover,
.mobile-booking a:focus-visible {
  background: var(--deep-grey);
}

.legal-page,
.faq {
  background: var(--blue-mist);
}

.legal-alert {
  background: var(--blue-haze);
  border-left-color: var(--frosted-deep);
}

.status-page {
  background:
    radial-gradient(circle at 15% 15%, rgba(183,199,201,.75), transparent 28%),
    var(--blue-mist);
}

@media (max-width: 860px) {
  .site-nav {
    background: var(--blue-mist);
  }

  .hero {
    background:
      radial-gradient(circle at 95% 38%, rgba(183,199,201,.72), transparent 29%),
      var(--paper);
  }
}
