/* =========================================================
   BLITZ HOME CLEANING
   FULL VISUAL REHAUL
   ========================================================= */

:root {
  --charcoal: #212121;
  --charcoal-deep: #151515;
  --charcoal-soft: #2a2a2a;

  --cream: #faf7f7;
  --cream-dark: #eee9e5;
  --white: #ffffff;

  --gold: #e2bc6c;
  --gold-light: #f2d99d;
  --gold-deep: #b98f47;

  --text-soft: #77706c;
  --line: rgba(33, 33, 33, 0.13);
  --line-light: rgba(250, 247, 247, 0.14);

  --container: 1400px;

  --sans: "DM Sans", sans-serif;
  --serif: "Italiana", serif;
}



/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--cream);
  color: var(--charcoal);

  font-family: var(--sans);

  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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



/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: relative;
  z-index: 1000;

  background: var(--cream);
}

.header-inner {
  min-height: 105px;

  width: min(calc(100% - 70px), 1480px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;

  border-bottom: 1px solid var(--line);
}

.brand {
  width: 210px;
}

.brand img {
  height: 64px;

  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  justify-self: center;

  display: flex;
  align-items: center;
  gap: 48px;
}

.desktop-nav a {
  position: relative;

  padding: 42px 0 39px;

  color: #4e4945;

  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 28px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transform: translateX(-50%);

  transition: width 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-book {
  min-width: 190px;
  min-height: 55px;

  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  border: 1px solid var(--charcoal);

  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.header-book:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.header-book span {
  color: var(--gold-deep);
  font-size: 1rem;
}

.nav-toggle,
.mobile-nav {
  display: none;
}



/* =========================================================
   SHARED
   ========================================================= */

.eyebrow,
.hero-kicker,
.page-label,
.cta-small {
  display: inline-block;

  color: var(--gold-deep);

  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-index {
  color: #928a84;

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-index.light {
  color: var(--gold);
}

.section {
  padding: 150px 0;
}



/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  min-height: 58px;

  padding: 0 28px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  border: 1px solid transparent;

  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  transition: 0.25s ease;
}

.button-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.button-gold:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.button-ghost {
  border-color: rgba(250, 247, 247, 0.3);
  color: var(--cream);
}

.button-ghost:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.button-light-outline {
  border-color: rgba(250, 247, 247, 0.35);
  color: var(--cream);
}

.button-light-outline:hover {
  background: var(--cream);
  color: var(--charcoal);
}



/* =========================================================
   HOME HERO
   ========================================================= */

.home-hero {
  position: relative;

  min-height: 760px;

  margin: 0 35px;

  overflow: hidden;

  background: var(--charcoal);
  color: var(--cream);

  border-radius: 0 0 110px 110px;
}

.home-hero::before {
  content: "B";

  position: absolute;
  right: -80px;
  top: -180px;

  color: transparent;

  font-family: var(--serif);
  font-size: 64rem;
  line-height: 1;

  -webkit-text-stroke: 1px rgba(226, 188, 108, 0.12);

  pointer-events: none;
}

.home-hero::after {
  content: "";

  position: absolute;
  right: 18%;
  top: 120px;

  width: 220px;
  height: 220px;

  border: 1px solid rgba(226, 188, 108, 0.38);
  border-radius: 50%;

  box-shadow:
    0 0 0 55px rgba(226, 188, 108, 0.03),
    0 0 0 110px rgba(226, 188, 108, 0.02);
}

.hero-grid {
  min-height: 760px;

  display: grid;
  grid-template-columns: 1.3fr 0.7fr;

  position: relative;
  z-index: 2;
}

.hero-main {
  padding:
    120px
    clamp(45px, 7vw, 110px)
    95px;
}

.hero-main h1 {
  max-width: 900px;

  margin: 35px 0 35px;

  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.hero-main h1 em {
  display: block;

  margin-top: 14px;

  color: var(--gold);

  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 560px;

  margin: 0;

  color: rgba(250, 247, 247, 0.63);

  font-size: 1rem;
  line-height: 1.9;
}

.hero-buttons {
  margin-top: 42px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-side {
  position: relative;

  margin: 70px 55px 70px 0;

  padding: 45px 42px;

  align-self: stretch;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: rgba(250, 247, 247, 0.06);

  border: 1px solid rgba(250, 247, 247, 0.12);
  border-radius: 100px 0 100px 0;

  backdrop-filter: blur(12px);
}

.hero-side::before {
  content: "";

  position: absolute;
  top: -1px;
  left: 55px;

  width: 85px;
  height: 3px;

  background: var(--gold);
}

.hero-side-number {
  color: var(--gold);

  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.hero-side-content > span {
  color: var(--gold);

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-side-content ul {
  margin: 28px 0 0;
  padding: 0;

  list-style: none;
}

.hero-side-content li {
  position: relative;

  padding: 14px 0 14px 22px;

  color: rgba(250, 247, 247, 0.75);

  font-size: 0.83rem;
}

.hero-side-content li::before {
  content: "✦";

  position: absolute;
  left: 0;

  color: var(--gold);

  font-size: 0.62rem;
}

.hero-mark {
  width: 105px;

  align-self: flex-end;
}



/* =========================================================
   MOVING STRIP
   ========================================================= */

.statement-strip {
  position: relative;
  z-index: 5;

  margin-top: -1px;

  overflow: hidden;

  background: transparent;
}

.statement-track {
  width: max-content;

  padding: 30px 0 26px;

  display: flex;
  align-items: center;
  gap: 42px;

  color: var(--charcoal);

  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

.statement-track i {
  color: var(--gold-deep);

  font-size: 0.48rem;
}



/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  position: relative;

  padding-top: 180px;
  padding-bottom: 190px;
}

.about-section::before {
  content: "";

  position: absolute;
  top: 90px;
  right: -150px;

  width: 430px;
  height: 430px;

  border: 1px solid rgba(226, 188, 108, 0.24);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 110px minmax(420px, 1fr) minmax(320px, 440px);
  gap: clamp(45px, 7vw, 110px);
}

.about-title h2 {
  margin: 0;

  font-size: clamp(4rem, 6vw, 7.4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.about-title h2 span {
  display: block;

  margin-top: 15px;

  color: var(--gold-deep);

  font-family: var(--serif);
  font-weight: 400;
}

.about-copy {
  position: relative;

  padding-top: 15px;
}

.about-copy::before {
  content: "";

  position: absolute;
  left: -38px;
  top: 14px;

  width: 1px;
  height: 100%;

  background: linear-gradient(
    to bottom,
    var(--gold),
    transparent
  );
}

.about-copy p {
  color: var(--text-soft);

  font-size: 0.96rem;
  line-height: 1.85;
}

.about-copy .about-lead {
  margin-top: 0;

  color: var(--charcoal);

  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.5;
}

.inline-link {
  margin-top: 30px;

  display: inline-flex;
  align-items: center;
  gap: 25px;

  color: var(--charcoal);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inline-link span {
  width: 45px;
  height: 45px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--gold-deep);
  border-radius: 50%;

  color: var(--gold-deep);

  transition: 0.25s ease;
}

.inline-link:hover span {
  background: var(--gold);
  color: var(--charcoal);
}



/* =========================================================
   BRAND IMAGE BREAK
   ========================================================= */

.brand-break {
  position: relative;

  width: min(calc(100% - 70px), 1500px);
  margin: 0 auto 160px;

  min-height: 720px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  background: var(--cream-dark);

  border-radius: 140px 0 140px 0;

  overflow: hidden;
}

.brand-break-image {
  position: relative;

  min-height: 720px;

  overflow: hidden;
}

.brand-break-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.brand-break-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(33, 33, 33, 0.38),
      transparent 50%
    );
}

.image-label {
  position: absolute;
  left: 35px;
  bottom: 35px;
  z-index: 3;

  padding: 14px 20px;

  background: var(--gold);
  color: var(--charcoal);

  border-radius: 40px;

  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.brand-break-copy {
  position: relative;

  padding: 80px clamp(45px, 6vw, 90px);

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: var(--cream);
}

.brand-break-copy::before {
  content: "✦";

  position: absolute;
  top: 55px;
  right: 60px;

  color: var(--gold);

  font-size: 2.7rem;
}

.brand-break-copy h2 {
  margin: 28px 0;

  font-size: clamp(3.7rem, 5vw, 6.3rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.brand-break-copy h2 em {
  display: block;

  color: var(--gold-deep);

  font-family: var(--serif);
  font-weight: 400;
}

.brand-break-copy p {
  max-width: 400px;

  color: var(--text-soft);

  line-height: 1.85;
}



/* =========================================================
   SERVICE PREVIEW
   ========================================================= */

.services-preview {
  padding-top: 30px;
}

.section-header {
  margin-bottom: 80px;

  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-header h2 {
  margin: 20px 0 0;

  max-width: 900px;

  font-size: clamp(3.8rem, 5vw, 6.2rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.text-arrow-link {
  padding-bottom: 8px;

  border-bottom: 1px solid var(--charcoal);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-preview-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;

  border: 0;
}

.service-preview-row {
  position: relative;

  min-height: 430px;

  padding: 42px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  overflow: hidden;

  border: 1px solid var(--line);

  background: var(--white);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.service-preview-row:nth-child(1) {
  border-radius: 0 100px 0 100px;
}

.service-preview-row:nth-child(2) {
  border-radius: 100px 0 100px 0;
}

.service-preview-row::before {
  content: "";

  position: absolute;
  right: -80px;
  bottom: -80px;

  width: 240px;
  height: 240px;

  border: 1px solid rgba(226, 188, 108, 0.3);
  border-radius: 50%;

  transition: transform 0.45s ease;
}

.service-preview-row:hover {
  transform: translateY(-10px);

  background: var(--charcoal);
  color: var(--cream);
}

.service-preview-row:hover::before {
  transform: scale(1.25);
}

.service-preview-number {
  color: var(--gold-deep);

  font-family: var(--serif);
  font-size: 2.8rem;
}

.service-type {
  margin-top: 70px;

  display: block;

  color: var(--gold-deep);

  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-preview-row h3 {
  margin: 8px 0 20px;

  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 400;
}

.service-preview-row p {
  max-width: 460px;

  margin: 0;

  color: var(--text-soft);

  line-height: 1.75;
}

.service-preview-row:hover p {
  color: rgba(250, 247, 247, 0.58);
}

.service-preview-row strong {
  margin-top: auto;

  padding-top: 45px;

  color: var(--gold-deep);

  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.row-arrow {
  position: absolute;
  right: 35px;
  top: 35px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 50%;
}



/* =========================================================
   WHY BLITZ
   ========================================================= */

.why-section {
  position: relative;

  margin: 150px 35px 0;

  padding: 160px 0;

  overflow: hidden;

  background: var(--charcoal);
  color: var(--cream);

  border-radius: 120px 120px 0 0;
}

.why-section::before {
  content: "BLITZ";

  position: absolute;
  left: -20px;
  bottom: -80px;

  color: transparent;

  font-family: var(--serif);
  font-size: 18vw;
  line-height: 1;

  -webkit-text-stroke: 1px rgba(250, 247, 247, 0.045);
}

.why-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 120px;
}

.why-heading h2 {
  margin: 30px 0 0;

  font-size: clamp(4rem, 6vw, 7.4rem);
  font-weight: 500;
  line-height: 0.87;
  letter-spacing: -0.06em;
}

.why-heading h2 em {
  display: block;

  margin-top: 12px;

  color: var(--gold);

  font-family: var(--serif);
  font-weight: 400;
}

.why-list {
  border: 0;
}

.why-list article {
  position: relative;

  padding: 28px 0;

  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;

  border-bottom: 1px solid var(--line-light);
}

.why-list article:first-child {
  border-top: 1px solid var(--line-light);
}

.why-list article > span {
  color: var(--gold);

  font-family: var(--serif);
  font-size: 1.3rem;
}

.why-list h3 {
  margin: 0 0 8px;

  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.why-list p {
  max-width: 500px;

  margin: 0;

  color: rgba(250, 247, 247, 0.52);

  line-height: 1.7;
}



/* =========================================================
   AREA CHECKER
   ========================================================= */

.area-section {
  padding: 170px 0;

  background: var(--cream);
}

.area-grid {
  position: relative;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.area-heading {
  position: relative;

  padding-left: 50px;
}

.area-heading::before {
  content: "";

  position: absolute;
  left: 0;
  top: 5px;

  width: 3px;
  height: 100%;

  background: linear-gradient(
    var(--gold),
    transparent
  );
}

.area-heading h2 {
  margin: 28px 0 22px;

  font-size: clamp(4rem, 5vw, 6.2rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.area-heading h2 em {
  display: block;

  color: var(--gold-deep);

  font-family: var(--serif);
  font-weight: 400;
}

.area-heading p {
  max-width: 450px;

  color: var(--text-soft);

  line-height: 1.75;
}

.area-checker {
  position: relative;

  padding: 55px;

  background: var(--charcoal);
  color: var(--cream);

  border-radius: 90px 0 90px 0;

  box-shadow: 30px 30px 0 var(--gold);
}

.area-checker::before {
  content: "✦";

  position: absolute;
  right: 35px;
  top: 30px;

  color: var(--gold);

  font-size: 1.5rem;
}

.area-checker label {
  display: block;

  margin-bottom: 14px;

  color: var(--gold);

  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.area-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.area-input-row input {
  min-height: 66px;

  padding: 0 22px;

  border: 1px solid rgba(250, 247, 247, 0.25);

  background: rgba(250, 247, 247, 0.06);
  color: var(--cream);

  outline: none;
}

.area-input-row input::placeholder {
  color: rgba(250, 247, 247, 0.35);
}

.area-input-row input:focus {
  border-color: var(--gold);
}

.area-input-row button {
  min-width: 130px;

  border: 0;

  background: var(--gold);
  color: var(--charcoal);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-result {
  min-height: 48px;

  padding-top: 18px;

  color: rgba(250, 247, 247, 0.7);

  font-size: 0.8rem;
}

.area-result.success {
  color: var(--gold-light);
}

.area-result.error {
  color: #e5a4a4;
}

.area-tags {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tags span {
  padding: 8px 13px;

  border: 1px solid rgba(250, 247, 247, 0.15);
  border-radius: 30px;

  color: rgba(250, 247, 247, 0.55);

  font-size: 0.62rem;
}



/* =========================================================
   HOME CTA
   ========================================================= */

.home-cta {
  position: relative;

  padding: 0 35px 35px;

  background: var(--cream);
}

.home-cta-inner {
  position: relative;

  padding: 120px 50px;

  overflow: hidden;

  background: var(--gold);
  color: var(--charcoal);

  border-radius: 0 130px 0 130px;

  text-align: center;
}

.home-cta-inner::before {
  content: "✦";

  position: absolute;
  left: 7%;
  top: 20%;

  color: rgba(33, 33, 33, 0.22);

  font-size: 5rem;
}

.home-cta-inner::after {
  content: "✦";

  position: absolute;
  right: 8%;
  bottom: 16%;

  color: rgba(33, 33, 33, 0.15);

  font-size: 3.5rem;
}

.home-cta .cta-small {
  color: var(--charcoal);
}

.home-cta h2 {
  margin: 30px auto 45px;

  font-size: clamp(4.5rem, 7vw, 8rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.home-cta h2 em {
  display: block;

  font-family: var(--serif);
  font-weight: 400;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.home-cta .button-gold {
  background: var(--charcoal);
  color: var(--cream);
}

.home-cta .button-light-outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.home-cta .button-light-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.home-cta-inner > p {
  margin-top: 25px;

  color: rgba(33, 33, 33, 0.65);

  font-size: 0.7rem;
}



/* =========================================================
   SERVICES PAGE HERO
   ========================================================= */

.page-hero {
  position: relative;

  margin: 0 35px;

  padding: 120px 0 135px;

  overflow: hidden;

  background: var(--charcoal);
  color: var(--cream);

  border-radius: 0 0 120px 0;
}

.page-hero::after {
  content: "✦";

  position: absolute;
  right: 10%;
  top: 80px;

  color: rgba(226, 188, 108, 0.3);

  font-size: 8rem;
}

.page-hero-grid {
  margin-top: 80px;

  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 110px;
  align-items: end;
}

.page-hero h1 {
  margin: 0;

  font-size: clamp(4.5rem, 7vw, 8.2rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.page-hero h1 em {
  display: block;

  color: var(--gold);

  font-family: var(--serif);
  font-weight: 400;
}

.page-hero-grid > div p {
  color: rgba(250, 247, 247, 0.58);

  line-height: 1.85;
}

.payment-note {
  margin-top: 28px;

  display: inline-block;

  color: var(--gold);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}



/* =========================================================
   PRICING
   ========================================================= */

.pricing-section {
  padding: 150px 0;
}

.pricing-category {
  margin-bottom: 180px;

  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
}

.pricing-category-heading {
  position: sticky;
  top: 35px;

  align-self: start;
}

.pricing-category-heading > span {
  color: var(--gold-deep);

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.pricing-category-heading h2 {
  margin: 26px 0 22px;

  font-size: clamp(3.7rem, 5vw, 5.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.pricing-category-heading h2 em {
  display: block;

  color: var(--gold-deep);

  font-family: var(--serif);
  font-weight: 400;
}

.pricing-category-heading p {
  color: var(--text-soft);

  line-height: 1.75;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.price-card {
  position: relative;

  min-height: 390px;

  padding: 48px;

  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;

  border: 1px solid var(--line);

  background: var(--white);
}

.price-card:nth-child(odd) {
  border-radius: 0 90px 0 90px;
}

.price-card:nth-child(even) {
  border-radius: 90px 0 90px 0;
}

.price-card::after {
  content: "";

  position: absolute;
  right: -80px;
  bottom: -80px;

  width: 220px;
  height: 220px;

  border: 1px solid rgba(226, 188, 108, 0.32);
  border-radius: 50%;
}

.dark-card {
  background: var(--charcoal);
  color: var(--cream);
}

.price-card-top {
  grid-column: 1 / -1;

  display: flex;
  justify-content: space-between;
  align-items: start;
}

.price-card-top > span {
  color: var(--gold-deep);

  font-family: var(--serif);
  font-size: 1.5rem;
}

.price-card-top strong {
  color: var(--gold-deep);

  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
}

.dark-card .price-card-top strong {
  color: var(--gold);
}

.price-card h3 {
  margin: 15px 0 8px;

  align-self: end;

  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
}

.price-description {
  align-self: end;

  color: var(--text-soft);

  line-height: 1.7;
}

.dark-card .price-description {
  color: rgba(250, 247, 247, 0.52);
}

.price-card ul {
  margin: 20px 0 0;
  padding: 0;

  list-style: none;
}

.price-card li {
  padding: 10px 0;

  border-bottom: 1px solid var(--line);

  font-size: 0.78rem;
}

.dark-card li {
  border-color: var(--line-light);
}

.price-link {
  position: absolute;
  right: 45px;
  bottom: 35px;

  display: inline-flex;
  align-items: center;
  gap: 18px;

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}



/* =========================================================
   INCLUDED
   ========================================================= */

.clean-includes {
  margin-bottom: 180px;

  padding: 80px;

  background: var(--cream-dark);

  border-radius: 100px 0 100px 0;
}

.clean-includes h2 {
  max-width: 720px;

  margin: 20px 0 55px;

  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;

  background: rgba(33, 33, 33, 0.1);
}

.included-grid span {
  min-height: 120px;

  padding: 28px;

  display: flex;
  align-items: flex-end;

  background: var(--cream);

  font-size: 0.8rem;
}



/* =========================================================
   DEEP INCLUDES
   ========================================================= */

.deep-category {
  padding-top: 30px;
}

.deep-includes {
  margin-bottom: 140px;

  padding: 90px;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;

  background: var(--charcoal);
  color: var(--cream);

  border-radius: 0 120px 0 120px;
}

.deep-includes h2 {
  margin: 22px 0 0;

  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.deep-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;

  background: var(--line-light);
}

.deep-list span {
  padding: 25px;

  background: var(--charcoal);

  color: rgba(250, 247, 247, 0.62);

  font-size: 0.77rem;
}



/* =========================================================
   ADDON
   ========================================================= */

.addon-banner {
  position: relative;

  padding: 65px 75px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  overflow: hidden;

  background: var(--gold);

  border-radius: 100px 0 100px 0;
}

.addon-banner::after {
  content: "✦";

  position: absolute;
  right: 20%;
  top: 18px;

  color: rgba(33, 33, 33, 0.17);

  font-size: 6rem;
}

.addon-banner > div > span {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.addon-banner h2 {
  margin: 8px 0;

  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 400;
}

.addon-banner p {
  margin: 0;
}

.addon-banner > strong {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 400;
}



/* =========================================================
   SERVICES CTA
   ========================================================= */

.service-bottom-cta {
  margin: 0 35px 35px;

  padding: 125px 0;

  background: var(--charcoal);
  color: var(--cream);

  border-radius: 120px 0 120px 0;

  text-align: center;
}

.service-bottom-cta > .container > span {
  color: var(--gold);

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-bottom-cta h2 {
  margin: 30px auto 45px;

  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.service-bottom-cta h2 em {
  display: block;

  color: var(--gold);

  font-family: var(--serif);
  font-weight: 400;
}



/* =========================================================
   BOOKING PAGE
   ========================================================= */

.booking-page {
  background: var(--cream-dark);
}

.booking-header {
  margin: 0 35px;

  padding: 100px 0 105px;

  background: var(--charcoal);
  color: var(--cream);

  border-radius: 0 0 120px 0;
}

.booking-header h1 {
  margin: 30px 0 20px;

  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.booking-header h1 em {
  display: block;

  color: var(--gold);

  font-family: var(--serif);
  font-weight: 400;
}

.booking-header p {
  max-width: 550px;

  color: rgba(250, 247, 247, 0.55);

  line-height: 1.75;
}

.booking-section {
  padding: 100px 0 140px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 35px;
  align-items: start;
}

.booking-form {
  background: transparent;
}

.booking-step {
  margin-bottom: 24px;

  padding: 48px;

  background: var(--cream);

  border: 0;
  border-radius: 0 65px 0 65px;
}

.step-heading {
  margin-bottom: 35px;

  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
}

.step-heading > span {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--gold-deep);
  border-radius: 50%;

  color: var(--gold-deep);

  font-family: var(--serif);
}

.step-heading h2 {
  margin: 0;

  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.step-heading p {
  margin: 6px 0 0;

  color: var(--text-soft);

  font-size: 0.82rem;
}



/* =========================================================
   BOOKING CHOICES
   ========================================================= */

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.choice-card {
  position: relative;

  min-height: 200px;

  padding: 28px;

  border: 1px solid var(--line);

  background: var(--white);

  border-radius: 40px 0 40px 0;

  cursor: pointer;

  transition: 0.25s ease;
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card:hover {
  transform: translateY(-4px);
}

.choice-card.selected {
  background: var(--charcoal);
  color: var(--cream);
}

.choice-card.selected::after {
  content: "✦";

  position: absolute;
  right: 22px;
  top: 20px;

  color: var(--gold);
}

.choice-small {
  display: block;

  margin-bottom: 30px;

  color: var(--gold-deep);

  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.choice-card strong {
  display: block;

  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.choice-card p {
  margin: 10px 0 0;

  color: var(--text-soft);

  font-size: 0.77rem;
}

.choice-card.selected p {
  color: rgba(250, 247, 247, 0.52);
}



/* =========================================================
   FREQUENCY
   ========================================================= */

.frequency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.small-choice {
  min-height: 72px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 35px;

  background: var(--white);

  cursor: pointer;
}

.small-choice input {
  position: absolute;
  opacity: 0;
}

.small-choice.selected {
  background: var(--gold);

  border-color: var(--gold);
}



/* =========================================================
   FORMS
   ========================================================= */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label,
.contact-form label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  border: 1px solid var(--line);

  background: var(--white);
  color: var(--charcoal);

  outline: none;

  border-radius: 0 22px 0 22px;
}

.form-field input,
.form-field select,
.contact-form input,
.contact-form select {
  min-height: 60px;

  padding: 0 18px;
}

.form-field textarea,
.contact-form textarea {
  padding: 17px;

  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold-deep);

  box-shadow:
    inset 4px 0 0 var(--gold);
}



/* =========================================================
   BOOKING SLOTS
   ========================================================= */

.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.slot-option {
  position: relative;

  min-height: 160px;

  padding: 26px;

  border: 1px solid var(--line);

  background: var(--white);

  border-radius: 45px 0 45px 0;

  cursor: pointer;

  transition: 0.25s ease;
}

.slot-option input {
  position: absolute;
  opacity: 0;
}

.slot-name {
  display: block;

  margin-bottom: 28px;

  color: var(--gold-deep);

  font-family: var(--serif);
  font-size: 1.5rem;
}

.slot-option strong {
  display: block;

  font-size: 1rem;
}

.slot-availability {
  display: block;

  margin-top: 9px;

  color: var(--text-soft);

  font-size: 0.72rem;
}

.slot-option.selected {
  background: var(--charcoal);
  color: var(--cream);

  transform: translateY(-4px);
}

.slot-option.selected .slot-availability {
  color: var(--gold);
}

.slot-option.unavailable {
  opacity: 0.28;

  filter: grayscale(1);

  pointer-events: none;
}



/* =========================================================
   ADDON
   ========================================================= */

.addon-choice {
  min-height: 95px;

  padding: 23px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;

  border: 1px solid var(--line);
  border-radius: 0 35px 0 35px;

  background: var(--white);

  cursor: pointer;
}

.addon-choice input {
  width: 20px;
  height: 20px;

  accent-color: var(--gold-deep);
}

.addon-choice > div strong {
  display: block;

  font-family: var(--serif);
  font-size: 1.25rem;
}

.addon-choice > div span {
  color: var(--text-soft);

  font-size: 0.72rem;
}

.addon-price {
  color: var(--gold-deep);

  font-family: var(--serif);
  font-size: 1.4rem;
}



/* =========================================================
   CUSTOMER FORM
   ========================================================= */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.booking-submit {
  width: 100%;

  margin-top: 15px;
}

.booking-payment-note {
  margin: 18px 0 0;

  text-align: center;

  color: var(--text-soft);

  font-size: 0.72rem;
}

.booking-message {
  margin-top: 22px;
  padding: 16px 18px;

  display: none;

  background: rgba(226, 188, 108, 0.18);

  border-left: 3px solid var(--gold-deep);

  font-size: 0.78rem;
}

.booking-message.show {
  display: block;
}



/* =========================================================
   BOOKING SUMMARY
   ========================================================= */

.booking-summary {
  background: transparent;
  color: inherit;
}

.summary-sticky {
  position: sticky;
  top: 25px;

  padding: 42px;

  overflow: hidden;

  background: var(--charcoal);
  color: var(--cream);

  border-radius: 80px 0 80px 0;
}

.summary-sticky::after {
  content: "";

  position: absolute;
  right: -80px;
  bottom: -80px;

  width: 230px;
  height: 230px;

  border: 1px solid rgba(226, 188, 108, 0.3);
  border-radius: 50%;
}

.summary-label {
  color: var(--gold);

  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.summary-icon {
  width: 70px;

  margin: 36px 0 30px;
}

.summary-sticky h2 {
  margin: 0 0 35px;

  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 400;
}

.summary-lines {
  border-top: 1px solid var(--line-light);
}

.summary-lines > div {
  padding: 18px 0;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--line-light);
}

.summary-lines span {
  color: rgba(250, 247, 247, 0.4);

  font-size: 0.69rem;
}

.summary-lines strong {
  text-align: right;

  font-size: 0.74rem;
}

.summary-total {
  padding: 35px 0;

  display: flex;
  justify-content: space-between;
  align-items: end;
}

.summary-total > span {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-total strong {
  color: var(--gold);

  font-family: var(--serif);
  font-size: 4.3rem;
  font-weight: 400;
  line-height: 1;
}

.summary-pay {
  position: relative;
  z-index: 2;

  padding: 22px;

  background: var(--gold);
  color: var(--charcoal);

  border-radius: 0 28px 0 28px;
}

.summary-pay span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.summary-pay p {
  margin: 7px 0 0;

  font-size: 0.72rem;
}



/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  min-height: calc(100vh - 105px);

  margin: 0 35px 35px;

  display: grid;
  grid-template-columns: 0.86fr 1.14fr;

  overflow: hidden;

  border-radius: 0 0 120px 0;
}

.contact-intro {
  position: relative;

  padding: 110px 7vw;

  overflow: hidden;

  background: var(--charcoal);
  color: var(--cream);
}

.contact-intro::after {
  content: "✦";

  position: absolute;
  right: 45px;
  bottom: 35px;

  color: rgba(226, 188, 108, 0.26);

  font-size: 8rem;
}

.contact-intro h1 {
  margin: 35px 0 30px;

  font-size: clamp(4.2rem, 6vw, 7.2rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.contact-intro h1 em {
  display: block;

  color: var(--gold);

  font-family: var(--serif);
  font-weight: 400;
}

.contact-intro > p {
  max-width: 470px;

  color: rgba(250, 247, 247, 0.55);

  line-height: 1.8;
}

.contact-details {
  margin-top: 80px;
}

.contact-details > div {
  padding: 20px 0;

  display: grid;
  grid-template-columns: 110px 1fr;

  border-bottom: 1px solid var(--line-light);
}

.contact-details span {
  color: var(--gold);

  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-wrap {
  padding: 100px 8vw;

  display: flex;
  align-items: center;

  background: var(--cream-dark);
}

.contact-form {
  width: 100%;

  padding: 55px;

  display: grid;
  gap: 25px;

  background: var(--cream);

  border-radius: 80px 0 80px 0;

  box-shadow: 25px 25px 0 var(--gold);
}

.contact-form .button {
  justify-self: start;
}



/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  margin-top: 0;

  padding: 100px 0 30px;

  background: var(--charcoal-deep);
  color: var(--cream);
}

.footer-main {
  padding-bottom: 75px;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 100px;
}

.footer-brand img {
  width: 220px;
}

.footer-brand p {
  max-width: 320px;

  margin-top: 20px;

  color: rgba(250, 247, 247, 0.42);

  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 90px;
}

.footer-links > div {
  min-width: 150px;
}

.footer-links > div > span {
  margin-bottom: 20px;

  display: block;

  color: var(--gold);

  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  margin: 11px 0;

  display: block;

  color: rgba(250, 247, 247, 0.5);

  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 22px;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid var(--line-light);

  color: rgba(250, 247, 247, 0.3);

  font-size: 0.67rem;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .desktop-nav,
  .header-book {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;

    border: 0;

    background: transparent;
  }

  .nav-toggle span {
    width: 25px;
    height: 1px;

    background: var(--charcoal);
  }

  .mobile-nav {
    padding: 20px 35px 30px;

    background: var(--cream);
  }

  .mobile-nav.open {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav a {
    padding: 17px 0;

    border-bottom: 1px solid var(--line);

    font-family: var(--serif);
    font-size: 1.4rem;
  }



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

  .hero-side {
    display: none;
  }



  .about-grid {
    grid-template-columns: 100px 1fr;
  }

  .about-copy {
    grid-column: 2;
  }



  .brand-break {
    grid-template-columns: 1fr;
  }

  .brand-break-image {
    min-height: 600px;
  }



  .why-grid,
  .area-grid,
  .pricing-category,
  .deep-includes,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .pricing-category-heading {
    position: static;
  }



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

  .booking-summary {
    order: -1;
  }

  .summary-sticky {
    position: static;
  }



  .contact-page {
    grid-template-columns: 1fr;
  }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

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

  .header-inner {
    min-height: 82px;

    width: calc(100% - 32px);
  }

  .brand {
    width: 170px;
  }

  .brand img {
    height: 52px;
  }



  .home-hero,
  .page-hero,
  .booking-header,
  .contact-page,
  .why-section,
  .service-bottom-cta {
    margin-left: 12px;
    margin-right: 12px;
  }



  .home-hero {
    min-height: auto;

    border-radius: 0 0 65px 65px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-main {
    padding: 85px 25px 95px;
  }

  .hero-main h1 {
    font-size: 4.3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }



  .statement-track {
    font-size: 1.15rem;
  }



  .section {
    padding: 100px 0;
  }

  .about-section {
    padding-top: 110px;
  }

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

  .about-copy {
    grid-column: auto;
  }

  .about-copy::before {
    display: none;
  }

  .about-title h2 {
    font-size: 3.8rem;
  }



  .brand-break {
    width: calc(100% - 24px);

    margin-bottom: 100px;

    border-radius: 70px 0 70px 0;
  }

  .brand-break-image {
    min-height: 430px;
  }

  .brand-break-copy {
    padding: 70px 30px;
  }

  .brand-break-copy h2 {
    font-size: 3.6rem;
  }



  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 3.8rem;
  }



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

  .service-preview-row {
    min-height: 390px;

    padding: 30px;
  }

  .service-preview-row:nth-child(1),
  .service-preview-row:nth-child(2) {
    border-radius: 0 65px 0 65px;
  }



  .why-section {
    padding: 100px 0;

    border-radius: 70px 70px 0 0;
  }

  .why-grid {
    gap: 65px;
  }

  .why-heading h2 {
    font-size: 4rem;
  }



  .area-section {
    padding: 110px 0;
  }

  .area-grid {
    gap: 60px;
  }

  .area-heading {
    padding-left: 25px;
  }

  .area-heading h2 {
    font-size: 3.8rem;
  }

  .area-checker {
    padding: 35px 22px;

    border-radius: 55px 0 55px 0;

    box-shadow: 14px 14px 0 var(--gold);
  }

  .area-input-row {
    grid-template-columns: 1fr;
  }

  .area-input-row button {
    min-height: 58px;
  }



  .home-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-cta-inner {
    padding: 85px 25px;

    border-radius: 0 70px 0 70px;
  }

  .home-cta h2 {
    font-size: 4rem;
  }

  .cta-actions {
    flex-direction: column;
  }



  .page-hero {
    padding: 85px 0 100px;

    border-radius: 0 0 70px 0;
  }

  .page-hero h1 {
    font-size: 4.3rem;
  }



  .pricing-section {
    padding: 100px 0;
  }

  .pricing-category {
    margin-bottom: 110px;

    gap: 55px;
  }

  .pricing-options {
    gap: 18px;
  }

  .price-card {
    min-height: 500px;

    padding: 30px;

    grid-template-columns: 1fr;
  }

  .price-card:nth-child(odd),
  .price-card:nth-child(even) {
    border-radius: 0 60px 0 60px;
  }

  .price-link {
    position: static;

    margin-top: 30px;
  }



  .clean-includes {
    padding: 50px 25px;

    border-radius: 60px 0 60px 0;
  }

  .clean-includes h2 {
    font-size: 3.2rem;
  }

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



  .deep-includes {
    padding: 55px 25px;

    gap: 55px;

    border-radius: 0 65px 0 65px;
  }

  .deep-list {
    grid-template-columns: 1fr;
  }



  .addon-banner {
    padding: 45px 28px;

    align-items: flex-start;
    flex-direction: column;
    gap: 30px;

    border-radius: 60px 0 60px 0;
  }



  .booking-header {
    padding: 80px 0 90px;

    border-radius: 0 0 70px 0;
  }

  .booking-header h1 {
    font-size: 4rem;
  }



  .booking-section {
    padding: 60px 0 100px;
  }

  .booking-step {
    padding: 32px 20px;

    border-radius: 0 45px 0 45px;
  }

  .choice-grid,
  .frequency-grid,
  .slot-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }



  .summary-sticky {
    padding: 32px 25px;

    border-radius: 55px 0 55px 0;
  }



  .contact-page {
    border-radius: 0 0 70px 0;
  }

  .contact-intro {
    padding: 80px 28px;
  }

  .contact-intro h1 {
    font-size: 4rem;
  }

  .contact-form-wrap {
    padding: 70px 25px;
  }

  .contact-form {
    padding: 35px 22px;

    border-radius: 55px 0 55px 0;

    box-shadow: 12px 12px 0 var(--gold);
  }



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

    gap: 55px;
  }

  .footer-links {
    flex-direction: column;

    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }

}



/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .hero-main h1 {
    font-size: 3.65rem;
  }

  .about-title h2,
  .section-header h2,
  .why-heading h2,
  .area-heading h2,
  .home-cta h2,
  .page-hero h1,
  .booking-header h1,
  .contact-intro h1 {
    font-size: 3.35rem;
  }

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

}

.regular-interest {
  display: block;
  cursor: pointer;
}

.regular-interest input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.regular-interest-box {
  min-height: 110px;

  padding: 24px 26px;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;

  border: 1px solid var(--line);
  border-radius: 0 35px 0 35px;

  background: var(--white);

  transition: 0.25s ease;
}

.regular-check {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--charcoal);
  border-radius: 50%;

  flex-shrink: 0;
}

.regular-interest-box strong {
  display: block;

  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.regular-interest-box p {
  margin: 7px 0 0;

  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.6;
}

.regular-interest input:checked + .regular-interest-box {
  background: var(--charcoal);
  color: var(--cream);

  border-color: var(--charcoal);
}

.regular-interest input:checked + .regular-interest-box .regular-check {
  background: var(--gold);
  border-color: var(--gold);
}

.regular-interest input:checked + .regular-interest-box .regular-check::after {
  content: "✓";

  color: var(--charcoal);

  font-size: 0.8rem;
  font-weight: 700;
}

.regular-interest input:checked + .regular-interest-box p {
  color: rgba(250, 247, 247, 0.55);
}

.regular-interest-options {
  display: grid;
  gap: 12px;
}

/* =========================================
   BOOKING SUMMARY - STICKY
========================================= */

.booking-layout {
  align-items: start;
  overflow: visible !important;
}

.booking-section {
  overflow: visible !important;
}

.booking-summary {
  position: sticky;
  top: 20px;

  align-self: start;

  height: fit-content;
  max-height: calc(100vh - 40px);

  overflow-y: auto;
  overflow-x: hidden;
}

.summary-sticky {
  position: static;
  height: auto;
}

/* =========================================
   COMPACT BOOKING SUMMARY
========================================= */

.summary-sticky {
  padding: 30px 34px;
}

.summary-sticky h2 {
  margin: 22px 0 24px;

  font-size: 2.15rem;
  line-height: 1;
}

.summary-lines > div {
  padding: 14px 0;
}

.summary-lines span {
  font-size: 0.66rem;
}

.summary-lines strong {
  font-size: 0.72rem;
}

.summary-total {
  padding: 24px 0;
}

.summary-total strong {
  font-size: 3.3rem;
}

.summary-pay {
  padding: 16px 18px;
}

.summary-pay p {
  margin-top: 5px;
}

.booking-summary {
  position: sticky;
  top: 18px;

  align-self: start;

  height: fit-content;
}

.summary-sticky {
  position: static;
}

.date-message {
  min-height: 20px;
  margin-top: 8px;

  color: #a94442;

  font-size: 0.76rem;
  line-height: 1.5;
}

.date-message.show {
  display: block;
}

/* =========================================
   COMPACT FOOTER
========================================= */

.site-footer {
  padding: 55px 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;

  padding-bottom: 38px;
}

.footer-brand img {
  max-width: 220px;
}

.footer-brand p {
  max-width: 420px;
  margin: 22px 0 0;

  font-size: 1rem;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 55px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-heading {
  margin-bottom: 6px;
}

.footer-links a {
  line-height: 1.35;
}


/* =========================================
   BOTTOM FOOTER ROW
========================================= */

.footer-bottom {
  position: relative;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  gap: 20px;

  padding-top: 18px;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.footer-credit {
  justify-self: center;

  display: flex;
  align-items: center;
  gap: 5px;

  white-space: nowrap;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--gold);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

  .site-footer {
    padding: 45px 0 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;

    padding-bottom: 30px;
  }

  .footer-links {
    gap: 35px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;

    align-items: start;
  }

  .footer-credit {
    justify-self: start;
    white-space: normal;
  }

  .footer-bottom > span:last-child {
    justify-self: start;
  }

}

/* =========================================
   CONFIRMATION PAGE
========================================= */

.confirmation-page {
  background: var(--cream);
}

.confirmation-section {
  min-height: calc(100vh - 90px);
  padding: 90px 0 100px;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.7fr);
  gap: 80px;
  align-items: center;
}

.confirmation-content {
  max-width: 700px;
}

.confirmation-symbol {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 32px;

  border-radius: 50%;

  background: var(--gold);

  color: var(--charcoal);

  font-size: 1.4rem;
  font-weight: 700;
}

.confirmation-content h1 {
  margin: 18px 0 25px;

  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
}

.confirmation-content h1 em {
  color: var(--gold-deep);
  font-style: italic;
}

.confirmation-lead {
  max-width: 620px;

  margin: 0;

  color: var(--text-soft);

  font-size: 1.05rem;
  line-height: 1.8;
}

.confirmation-note {
  max-width: 520px;

  margin-top: 38px;
  padding: 22px 24px;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;

  border: 1px solid var(--line);
  border-radius: 0 35px 0 35px;

  background: var(--white);
}

.confirmation-note-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gold);

  color: var(--charcoal);
}

.confirmation-note strong {
  display: block;

  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.confirmation-note p {
  margin: 5px 0 0;

  color: var(--text-soft);

  font-size: 0.78rem;
}

.confirmation-actions {
  margin-top: 38px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.confirmation-contact-link {
  color: var(--charcoal);

  font-size: 0.82rem;
  font-weight: 600;

  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
}

.confirmation-contact-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}


/* =========================================
   CONFIRMATION SUMMARY
========================================= */

.confirmation-summary {
  padding: 34px 36px;

  background: var(--charcoal);

  color: var(--cream);

  border-radius: 0 70px 0 70px;

  box-shadow:
    14px 14px 0 var(--gold);
}

.confirmation-summary .summary-label {
  color: var(--gold);
}

.confirmation-summary h2 {
  margin: 20px 0 25px;

  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.05;
}

.confirmation-summary .summary-lines > div {
  padding: 13px 0;

  border-bottom:
    1px solid rgba(250, 247, 247, 0.12);
}

.confirmation-summary .summary-lines span {
  color: rgba(250, 247, 247, 0.55);
}

.confirmation-summary .summary-lines strong {
  color: var(--cream);
}

.confirmation-summary .summary-total {
  padding: 24px 0 18px;
}

.confirmation-summary .summary-total span {
  color: rgba(250, 247, 247, 0.55);
}

.confirmation-summary .summary-total strong {
  color: var(--gold);
}

.confirmation-summary .summary-pay {
  margin-top: 5px;
}


/* =========================================
   CONFIRMATION MOBILE
========================================= */

@media (max-width: 900px) {

  .confirmation-section {
    padding: 65px 0 80px;
  }

  .confirmation-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .confirmation-summary {
    max-width: 600px;
  }

}


@media (max-width: 600px) {

  .confirmation-section {
    padding: 50px 0 65px;
  }

  .confirmation-symbol {
    width: 50px;
    height: 50px;

    margin-bottom: 25px;
  }

  .confirmation-content h1 {
    font-size: 3.4rem;
  }

  .confirmation-note {
    padding: 20px;
  }

  .confirmation-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .confirmation-summary {
    padding: 28px 26px;

    border-radius: 0 45px 0 45px;

    box-shadow:
      9px 9px 0 var(--gold);
  }

  .confirmation-summary h2 {
    font-size: 1.9rem;
  }

}

.confirmation-reference {
  margin: 20px 0 26px;
  padding: 16px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border: 1px solid rgba(250, 247, 247, 0.12);

  background: rgba(255, 255, 255, 0.035);
}

.confirmation-reference span {
  color: rgba(250, 247, 247, 0.55);

  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.confirmation-reference strong {
  color: var(--gold);

  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

/* =====================================================
   PRIVACY POLICY
===================================================== */

.privacy-page {
  background: var(--cream);
}

.privacy-hero {
  padding: 110px 0 85px;
  background: var(--charcoal);
  color: var(--cream);
}

.privacy-hero .page-label {
  color: var(--gold);
}

.privacy-hero h1 {
  max-width: 780px;
  margin: 18px 0 22px;

  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
}

.privacy-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.privacy-hero p {
  max-width: 700px;
  margin: 0;

  color: rgba(250, 247, 247, 0.72);

  font-size: 1.08rem;
  line-height: 1.75;
}

.privacy-section {
  padding: 100px 0 120px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 30px;

  padding: 28px;

  border: 1px solid var(--line);

  background: var(--white);
}

.privacy-sidebar .summary-label {
  display: block;
  margin-bottom: 8px;

  color: var(--gold-deep);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-sidebar strong {
  display: block;

  color: var(--charcoal);

  font-size: 1rem;
}

.privacy-sidebar p {
  margin: 25px 0 18px;

  color: var(--text-soft);

  font-size: 0.9rem;
  line-height: 1.65;
}

.privacy-email {
  color: var(--charcoal);

  font-size: 0.85rem;
  font-weight: 600;

  text-decoration: none;
  word-break: break-word;
}

.privacy-email:hover {
  color: var(--gold-deep);
}

.privacy-content {
  max-width: 850px;
}

.privacy-block {
  position: relative;

  padding: 0 0 55px;
  margin: 0 0 55px;

  border-bottom: 1px solid var(--line);
}

.privacy-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;

  border-bottom: 0;
}

.privacy-number {
  display: inline-block;
  margin-bottom: 14px;

  color: var(--gold-deep);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.privacy-block h2 {
  margin: 0 0 22px;

  color: var(--charcoal);

  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.privacy-block h3 {
  margin: 32px 0 12px;

  color: var(--charcoal);

  font-size: 1rem;
  font-weight: 700;
}

.privacy-block p {
  margin: 0 0 17px;

  color: var(--text-soft);

  font-size: 1rem;
  line-height: 1.8;
}

.privacy-block ul {
  margin: 20px 0 24px;
  padding-left: 22px;
}

.privacy-block li {
  margin-bottom: 10px;

  color: var(--text-soft);

  line-height: 1.65;
}

.privacy-block a {
  color: var(--charcoal);

  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-block a:hover {
  color: var(--gold-deep);
}


/* =====================================================
   PRIVACY RESPONSIVE
===================================================== */

@media (max-width: 900px) {

  .privacy-hero {
    padding: 90px 0 70px;
  }

  .privacy-section {
    padding: 75px 0 90px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .privacy-sidebar {
    position: static;
  }

}


@media (max-width: 600px) {

  .privacy-hero {
    padding: 75px 0 60px;
  }

  .privacy-hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .privacy-section {
    padding: 60px 0 75px;
  }

  .privacy-sidebar {
    padding: 22px;
  }

  .privacy-block {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

}

/* =====================================================
   MOBILE BOOKING SUMMARY
===================================================== */

@media (max-width: 800px) {

  .booking-layout {
    display: block;
  }

  .booking-summary {
    position: static !important;
    top: auto !important;
    width: 100%;
    margin-top: 45px;
  }

  .summary-sticky {
    position: static !important;
    top: auto !important;
    width: 100%;
  }

}

/* =====================================================
   MOBILE BOOKING SUBMIT POSITION
===================================================== */

/* Hidden on desktop */
.mobile-booking-submit {
  display: none;
}


@media (max-width: 800px) {

  /* Hide original button inside the form */
  .desktop-booking-submit,
  .desktop-booking-payment-note {
    display: none !important;
  }


  /* Summary stays naturally underneath the form */
  .booking-summary {
    position: static !important;
    top: auto !important;

    width: 100%;
    margin-top: 40px;
  }


  .summary-sticky {
    position: static !important;
    top: auto !important;

    width: 100%;
  }


  /* New submit area sits underneath summary */
  .mobile-booking-submit {
    display: block;

    width: 100%;
    margin-top: 30px;
  }


  .mobile-booking-submit .booking-submit {
    width: 100%;
  }


  .mobile-booking-submit .booking-payment-note {
    margin-top: 20px;
    text-align: center;
  }

}

