:root {
  --yellow: #f5c400;
  --yellow-bright: #ffd21a;
  --yellow-deep: #d8aa00;
  --black: #080808;
  --black-soft: #111214;
  --charcoal: #1a1b1e;
  --ink: #111214;
  --muted: #62666c;
  --line: #dedfe2;
  --surface: #f4f4f2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --container: 1240px;
  --radius: 4px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  cursor: pointer;
}

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

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.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: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.utility-bar {
  position: relative;
  z-index: 40;
  color: #dfe0e3;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.83rem;
}

.utility-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
  color: #a9abb0;
  letter-spacing: 0.02em;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease;
}

.utility-links a:hover {
  color: var(--yellow);
}

.utility-links svg {
  width: 15px;
  height: 15px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.99);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  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;
  gap: 13px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.19rem;
  line-height: 0.95;
  letter-spacing: 0.06em;
}

.brand-name b {
  margin-top: 5px;
  color: var(--yellow);
  font-weight: inherit;
  letter-spacing: 0.19em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #dadadd;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: color 160ms ease;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--white);
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  padding: 11px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--black);
  background: var(--yellow-bright);
  border-color: var(--yellow-bright);
  transform: translateY(-2px);
}

.button-small {
  min-height: 45px;
  padding-inline: 19px;
  font-size: 0.81rem;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.48);
}

.button-ghost:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-dark:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 32%, rgba(0, 0, 0, 0.32) 67%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 35%);
}

.hero-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black, transparent 57%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 86px 112px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 3px;
  display: inline-block;
  background: currentColor;
  transform: skewX(-24deg);
}

.eyebrow.dark {
  color: #8c6d00;
}

.hero h1,
.section h2,
.upgrades h2,
.booking h2,
.legal-hero h1 {
  margin-bottom: 24px;
  font-family: Impact, "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 0.97;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(4rem, 7vw, 7.15rem);
  text-wrap: balance;
}

.hero h1 em,
.section h2 em,
.upgrades h2 em,
.booking h2 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 32px;
  color: #d2d3d5;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 50px;
  color: #c1c3c7;
  font-size: 0.81rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-services span {
  position: relative;
  padding-left: 17px;
}

.hero-services span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  transform: translateY(-50%) rotate(45deg);
}

.hero-edge {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: -1px;
  width: 42%;
  height: 12px;
  background: var(--yellow);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.capability-strip {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--black-soft);
}

.capability-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-item svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.capability-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.capability-item b {
  color: var(--white);
  font-size: 0.95rem;
}

.capability-item span {
  margin-top: 4px;
  color: #999ca2;
  font-size: 0.82rem;
}

.section {
  padding-block: 118px;
}

.section h2,
.upgrades h2,
.booking h2 {
  font-size: clamp(3rem, 5vw, 5.35rem);
}

.about {
  position: relative;
  overflow: hidden;
}

.about::after {
  content: "BBG";
  position: absolute;
  z-index: -1;
  top: 30px;
  right: -30px;
  color: #f0f0ed;
  font-family: Impact, sans-serif;
  font-size: clamp(12rem, 25vw, 27rem);
  letter-spacing: -0.04em;
  line-height: 0.8;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: 90px;
}

.about-copy {
  padding-top: 42px;
}

.about-copy .lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.55;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--yellow);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-card {
  position: relative;
  min-height: 270px;
  padding: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 115px;
  height: 115px;
  background: var(--yellow);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: transform 220ms ease;
}

.value-card:hover {
  color: var(--white);
  background: var(--black);
  transform: translateY(-6px);
}

.value-card:hover::after {
  transform: translate(-8px, -8px);
}

.value-card .number {
  display: block;
  margin-bottom: 45px;
  color: #9b7b00;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.value-card:hover .number {
  color: var(--yellow);
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.36rem;
  line-height: 1.25;
}

.value-card p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
}

.value-card:hover p {
  color: #bfc1c4;
}

.services {
  background: var(--surface);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

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

.section-intro > p {
  margin-bottom: 14px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d2d3d5;
  border-left: 1px solid #d2d3d5;
}

.service-card {
  position: relative;
  min-height: 380px;
  padding: 42px 38px;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid #d2d3d5;
  border-bottom: 1px solid #d2d3d5;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 1;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  color: var(--black);
  background: var(--yellow);
  clip-path: polygon(0 0, 83% 0, 100% 17%, 100% 100%, 17% 100%, 0 83%);
}

.service-icon svg {
  width: 29px;
  height: 29px;
}

.service-index {
  position: absolute;
  top: 44px;
  right: 38px;
  color: #9b9ea3;
  font-family: Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.service-card h3 {
  max-width: 320px;
  margin-bottom: 14px;
  font-size: 1.4rem;
  line-height: 1.24;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

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

.service-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
  font-size: 0.92rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--yellow-deep);
}

.service-card.featured {
  min-height: 430px;
  color: var(--white);
  background: var(--black);
}

.service-card.featured p,
.service-card.featured li {
  color: #b9bbc0;
}

.service-card.featured .service-index {
  color: var(--yellow);
}

.service-card.callout {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--yellow);
}

.service-card.callout::before {
  content: "?";
  position: absolute;
  top: -40px;
  right: 22px;
  color: rgba(0, 0, 0, 0.07);
  font-family: Impact, sans-serif;
  font-size: 17rem;
  line-height: 1;
}

.service-card.callout p {
  color: #403600;
}

.service-card.callout .button {
  align-self: flex-start;
  margin-top: 18px;
}

.upgrades {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(470px, 0.95fr);
  min-height: 810px;
  color: var(--white);
  background: var(--black-soft);
}

.upgrades-image-wrap {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.upgrades-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, var(--black-soft) 100%);
}

.upgrades-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.image-tag {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 60px;
  min-width: 220px;
  padding: 20px 28px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: -14px 14px 0 rgba(0, 0, 0, 0.38);
}

.image-tag b,
.image-tag span {
  display: block;
}

.image-tag b {
  font-family: Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.07em;
}

.image-tag span {
  margin-top: 3px;
  font-size: 0.77rem;
  font-weight: 700;
}

.upgrades-content {
  align-self: center;
  padding: 90px clamp(48px, 7vw, 120px) 90px clamp(48px, 6vw, 100px);
}

.upgrades-content > p:not(.eyebrow, .fine-print) {
  max-width: 620px;
  color: #b9bbc0;
  font-size: 1.06rem;
}

.upgrade-list {
  margin: 36px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.upgrade-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.upgrade-list span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.upgrade-list p {
  margin: 0;
  color: #aeb0b4;
}

.upgrade-list b {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.fine-print {
  max-width: 620px;
  margin-bottom: 28px;
  color: #8f9297;
  font-size: 0.79rem;
  line-height: 1.55;
}

.process {
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--yellow) 0 42%, var(--black) 42% 100%);
}

.section-heading.centered {
  max-width: 830px;
  margin: 0 auto 66px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: #d7d8da;
}

.process-grid li {
  position: relative;
  padding-top: 83px;
}

.process-grid li > span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border: 8px solid var(--white);
  box-shadow: 0 0 0 1px #d7d8da;
  font-family: Impact, sans-serif;
}

.process-grid h3 {
  margin-bottom: 11px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.reviews {
  color: var(--white);
  background: var(--black);
}

.reviews-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.reviews-header h2 {
  margin-bottom: 0;
}

.rating-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 16px;
  min-width: 210px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rating-badge strong {
  grid-row: 1 / 3;
  font-family: Impact, sans-serif;
  font-size: 2.65rem;
  font-weight: 400;
  line-height: 1;
}

.stars {
  color: var(--yellow);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.rating-badge small {
  color: #96999e;
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(300px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding: 8px 3px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--yellow) #28292c;
  scrollbar-width: thin;
}

.review-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 33px 30px;
  background: var(--charcoal);
  border-top: 3px solid var(--yellow);
  scroll-snap-align: start;
}

.review-card blockquote {
  margin: 32px 0;
  color: #e7e7e8;
  font-size: 1rem;
  line-height: 1.72;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-card footer > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card footer div {
  display: flex;
  flex-direction: column;
}

.review-card footer b {
  font-size: 0.91rem;
}

.review-card footer small {
  color: #8f9298;
  font-size: 0.73rem;
}

.booking {
  position: relative;
  padding-block: 118px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.065) 0 25%, transparent 25% 100%),
    var(--black-soft);
}

.booking::after {
  content: "";
  position: absolute;
  top: 0;
  right: -180px;
  width: 500px;
  height: 100%;
  opacity: 0.12;
  background: repeating-linear-gradient(135deg, var(--yellow), var(--yellow) 9px, transparent 9px, transparent 30px);
  transform: skewX(-12deg);
}

.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 90px;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: #afb1b5;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list a > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--black);
  background: var(--yellow);
}

.contact-list a > span svg {
  width: 20px;
  height: 20px;
}

.contact-list div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-list small {
  color: #96999f;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-list b {
  margin-top: 2px;
  overflow-wrap: anywhere;
  font-size: 0.93rem;
}

.booking-form,
.booking-panel {
  padding: 40px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 22px 22px 0 var(--yellow);
}

.booking-frame-wrap {
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f8f8f7;
}

.booking-frame {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
  background: var(--white);
}

.booking-fallback {
  display: inline-flex;
  gap: 6px;
  margin-top: 16px;
  color: #3e4146;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-underline-offset: 4px;
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  font-family: Impact, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.form-head small {
  color: var(--muted);
  font-size: 0.72rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: #2b2d31;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: #f8f8f7;
  border: 1px solid #cdd0d3;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-form textarea {
  min-height: 125px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.22);
}

.booking-form input[aria-invalid="true"],
.booking-form select[aria-invalid="true"],
.booking-form textarea[aria-invalid="true"] {
  border-color: #b42318;
}

.booking-form .check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--yellow-deep);
}

.form-note {
  margin: 13px 0 0;
  color: #74777d;
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  color: #b9bbc0;
  background: #050505;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: 90px;
  padding-block: 82px 66px;
}

.footer-brand > p {
  max-width: 420px;
  margin: 24px 0;
  color: #92959a;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.social-links a {
  color: var(--white);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-links a:hover {
  color: var(--yellow);
}

.footer-nav {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr 0.8fr;
  gap: 50px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #989ba0;
  font-size: 0.88rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #74777c;
  font-size: 0.73rem;
}

.chat-launcher {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--black);
  background: var(--yellow);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.28);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.chat-launcher:hover {
  background: var(--yellow-bright);
  transform: translateY(-3px);
}

.chat-launcher svg {
  width: 22px;
  height: 22px;
}

.chat-window {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 90px;
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d8dade;
  border-radius: 5px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transform-origin: bottom right;
}

.chat-window[hidden] {
  display: none;
}

.chat-window.is-opening {
  animation: chat-in 180ms ease both;
}

@keyframes chat-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--white);
  background: var(--black);
  border-bottom: 4px solid var(--yellow);
}

.chat-header > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-header h2,
.chat-header p {
  margin: 0;
}

.chat-header h2 {
  font-size: 0.98rem;
}

.chat-header p {
  color: #aeb0b5;
  font-size: 0.72rem;
}

.chat-status {
  width: 10px;
  height: 10px;
  display: block;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.15);
}

.chat-header button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  line-height: 1;
}

.chat-messages {
  height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 18px 16px;
  background: #f5f5f3;
}

.chat-message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 3px;
  font-size: 0.86rem;
  line-height: 1.5;
  white-space: pre-line;
}

.chat-message.bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid #e0e1e3;
}

.chat-message.user {
  align-self: flex-end;
  color: var(--black);
  background: var(--yellow);
}

.chat-message a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.quick-replies {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 11px 12px;
  border-top: 1px solid #e1e2e4;
  scrollbar-width: none;
}

.quick-replies::-webkit-scrollbar {
  display: none;
}

.quick-replies button {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #3f4247;
  background: var(--white);
  border: 1px solid #cfd1d4;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
}

.quick-replies button:hover {
  border-color: var(--yellow-deep);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #e1e2e4;
}

.chat-form input {
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  background: #f7f7f6;
  border: 1px solid #d4d6d9;
  border-radius: 2px;
  font-size: 0.86rem;
}

.chat-form button {
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border: 0;
}

.chat-form button svg {
  width: 19px;
  height: 19px;
}

.chat-disclaimer {
  margin: 0;
  padding: 0 14px 11px;
  color: #7d8086;
  font-size: 0.65rem;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 24px;
  max-width: min(520px, calc(100% - 32px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--black);
  border-left: 5px solid var(--yellow);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  font-size: 0.85rem;
  transform: translateX(-50%);
}

.toast[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-body {
  background: var(--surface);
}

.legal-hero {
  position: relative;
  padding-block: 95px 86px;
  overflow: hidden;
  color: var(--white);
  background: var(--black-soft);
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 370px;
  height: 260px;
  opacity: 0.18;
  background: repeating-linear-gradient(135deg, var(--yellow), var(--yellow) 8px, transparent 8px, transparent 28px);
  transform: skewX(-15deg);
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #b9bbc0;
}

.legal-wrap {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  align-items: start;
  justify-content: center;
  gap: 70px;
  padding-block: 90px 120px;
}

.legal-nav {
  position: sticky;
  top: 120px;
  padding: 24px;
  background: var(--white);
  border-top: 4px solid var(--yellow);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.legal-nav h2 {
  margin-bottom: 15px;
  font-family: inherit;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.legal-nav a:hover {
  color: var(--black);
}

.legal-content {
  padding: 50px clamp(28px, 6vw, 68px);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.07);
}

.legal-content .updated {
  margin-bottom: 42px;
  padding-bottom: 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
}

.legal-content section {
  scroll-margin-top: 120px;
  margin-bottom: 42px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: #4f5359;
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content a {
  color: #725a00;
  border-bottom: 1px solid var(--yellow-deep);
  font-weight: 700;
}

.legal-callout {
  padding: 20px 22px;
  background: #fff9dc;
  border-left: 4px solid var(--yellow);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 20px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.84rem;
  }

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

  .upgrades-content {
    padding-inline: 48px;
  }

  .booking-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 60px;
  }

  .footer-main {
    gap: 55px;
  }
}

@media (max-width: 960px) {
  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 126px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 24px 48px;
    overflow-y: auto;
    visibility: hidden;
    background: rgba(8, 8, 8, 0.99);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .primary-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .primary-nav > a:not(.button) {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.05rem;
  }

  .primary-nav .button {
    margin-top: 24px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.74) 64%, rgba(0, 0, 0, 0.35) 100%);
  }

  .capability-grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .capability-item,
  .capability-item:first-child {
    padding: 18px 10px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .capability-item:last-child {
    border-bottom: 0;
  }

  .about-grid,
  .section-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .value-card {
    min-height: 230px;
  }

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

  .service-card.featured {
    min-height: 380px;
  }

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

  .upgrades-image-wrap {
    min-height: 600px;
  }

  .upgrades-image-wrap::after {
    background: linear-gradient(0deg, var(--black-soft) 0%, transparent 25%);
  }

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

  .process-grid::before {
    display: none;
  }

  .reviews-header {
    align-items: flex-start;
  }

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

  .booking-form,
  .booking-panel {
    max-width: 760px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .legal-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
  }

  .legal-nav h2 {
    width: 100%;
  }
}

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

  .utility-inner {
    min-height: 36px;
    justify-content: center;
  }

  .utility-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .utility-links a {
    font-size: 0.72rem;
  }

  .utility-links a:last-child {
    display: none;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand-mark {
    width: 49px;
    height: 49px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .primary-nav {
    top: 110px;
  }

  .hero {
    min-height: 690px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.78) 68%, rgba(0, 0, 0, 0.38) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent);
  }

  .hero-content {
    padding-block: 90px 72px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.75rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-services {
    margin-top: 32px;
  }

  .hero-edge {
    width: 70%;
  }

  .section,
  .booking {
    padding-block: 84px;
  }

  .section h2,
  .upgrades h2,
  .booking h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .about::after {
    display: none;
  }

  .about-grid {
    gap: 8px;
  }

  .value-grid {
    margin-top: 54px;
  }

  .value-card {
    padding: 32px 26px;
  }

  .value-card .number {
    margin-bottom: 30px;
  }

  .section-intro {
    margin-bottom: 40px;
  }

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

  .service-card,
  .service-card.featured {
    min-height: 350px;
    padding: 34px 28px;
  }

  .service-index {
    top: 36px;
    right: 28px;
  }

  .upgrades-image-wrap {
    min-height: 470px;
  }

  .upgrades-image-wrap img {
    object-position: 55% center;
  }

  .image-tag {
    right: 16px;
    bottom: 24px;
  }

  .upgrades-content {
    padding: 72px 20px 82px;
  }

  .upgrade-list > div {
    grid-template-columns: 36px 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-grid li {
    padding: 2px 0 0 74px;
  }

  .process-grid li > span {
    top: 0;
  }

  .reviews-header {
    display: grid;
  }

  .rating-badge {
    justify-self: start;
  }

  .review-track {
    grid-template-columns: repeat(5, 84vw);
  }

  .review-card {
    min-height: 325px;
  }

  .booking::after {
    display: none;
  }

  .booking-grid {
    gap: 54px;
  }

  .booking-form,
  .booking-panel {
    padding: 28px 20px;
    box-shadow: 10px 10px 0 var(--yellow);
  }

  .booking-frame,
  .booking-frame-wrap {
    min-height: 980px;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

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

  .footer-main {
    padding-block: 68px 50px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-nav > div:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    min-height: 86px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding-block: 18px;
  }

  .chat-launcher {
    right: 16px;
    bottom: 16px;
    width: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .chat-launcher span {
    display: none;
  }

  .chat-window {
    right: 16px;
    bottom: 82px;
  }

  .legal-hero {
    padding-block: 72px 65px;
  }

  .legal-wrap {
    padding-block: 50px 84px;
  }

  .legal-nav {
    display: none;
  }

  .legal-content {
    padding: 34px 22px;
  }
}

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

  *,
  *::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;
  }
}
