:root {
  --ink: #111210;
  --ink-soft: #282a25;
  --paper: #f4f0e7;
  --paper-light: #fbf9f3;
  --gold: #d7a755;
  --gold-light: #f1d18e;
  --muted: #77776f;
  --line: rgba(17, 18, 16, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --green: #25d366;
  --shadow: 0 24px 60px rgba(20, 18, 13, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

button,
input {
  font: inherit;
}

button,
label,
input[type="radio"] {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}

[hidden] {
  display: none !important;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-paper {
  color: var(--ink);
  background: var(--paper);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100% - 48px, 1320px);
  height: 104px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(215, 167, 85, 0.75);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 23px;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button-gold {
  padding: 0 30px;
  color: var(--ink);
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.text-link-dark {
  border-color: var(--line);
  color: var(--ink);
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.eyebrow-dark {
  color: #936d2f;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

.section-paper h2 em,
.location-section h2 em {
  color: #a47831;
}

.hero {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: center;
  padding: 150px max(24px, calc((100vw - 1320px) / 2)) 70px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(68px, 7.2vw, 112px);
}

.hero-description {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  margin-top: 40px;
  align-items: stretch;
  gap: 30px;
}

.hero-details {
  display: flex;
  margin: 58px 0 0;
  gap: 64px;
}

.hero-details div {
  padding-left: 14px;
  border-left: 1px solid var(--line-light);
}

.hero-details dt {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 21px;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  top: -18px;
  right: 18px;
  bottom: 18px;
  left: -18px;
  border: 1px solid rgba(215, 167, 85, 0.27);
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 1;
  height: min(65vw, 620px);
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 18, 16, 0.46));
  content: "";
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 32px;
  display: flex;
  width: 122px;
  height: 122px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 18, 16, 0.3);
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  line-height: 1.05;
}

.hero-badge span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-badge strong {
  margin: 6px 0;
  font-family: var(--serif);
  font-size: 27px;
}

.promise-bar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  background: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.promise-bar i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 120px max(24px, calc((100vw - 1200px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.experience-intro h2,
.booking-intro h2,
.location-section h2 {
  font-size: clamp(54px, 6vw, 82px);
}

.section-heading > p {
  max-width: 440px;
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.85;
}

.services-grid {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.service-card {
  display: grid;
  min-height: 152px;
  grid-template-columns: 55px minmax(0, 1fr) 100px 42px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.service-card:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.44);
}

.service-number {
  color: #a67b38;
  font-family: var(--serif);
  font-size: 17px;
}

.service-card h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 600;
  line-height: 1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-time {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #8a652e;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.service-card > a:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.experience {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: 120px max(24px, calc((100vw - 1320px) / 2));
}

.experience-intro > p:last-child,
.booking-intro > p {
  max-width: 510px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: end;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery figure:hover img {
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.025);
}

.gallery-main {
  height: 590px;
}

.gallery-small {
  height: 400px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(55px, 8vw, 130px);
  padding: 130px max(24px, calc((100vw - 1250px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 167, 85, 0.1), transparent 28%),
    var(--ink-soft);
}

.booking-intro {
  position: sticky;
  top: 50px;
  height: fit-content;
}

.booking-benefits {
  display: grid;
  margin: 46px 0 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.booking-benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.booking-benefits span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(215, 167, 85, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 11px;
}

.booking-panel {
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.form-step {
  padding: 44px 46px;
  border-bottom: 1px solid var(--line);
}

.form-step:last-child {
  border-bottom: 0;
}

.step-heading {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-start;
  gap: 16px;
}

.step-heading > span {
  color: #9c7434;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.step-heading p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.step-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}

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

.service-option {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--white);
  transition: border-color 160ms ease, background 160ms ease;
}

.service-option:hover {
  border-color: rgba(167, 122, 50, 0.55);
}

.service-option.is-selected {
  border-color: var(--gold);
  background: #fffaf0;
}

.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.service-option strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-option i {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: transparent;
  font-size: 10px;
  font-style: normal;
}

.service-option.is-selected i {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.quick-dates {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.quick-date {
  min-height: 72px;
  padding: 8px 4px;
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, background 160ms ease;
}

.quick-date:hover,
.quick-date.is-selected {
  border-color: var(--gold);
  background: #fff8e8;
}

.quick-date span,
.quick-date small {
  display: block;
}

.quick-date span {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.quick-date small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-label {
  display: block;
  margin: 0 0 8px;
  color: #686861;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 167, 85, 0.15);
}

.field::placeholder {
  color: #aaa9a2;
}

.slots-area {
  min-height: 86px;
  margin-top: 22px;
}

.slots-placeholder,
.slots-loading,
.slots-empty,
.slots-error {
  margin: 0;
  padding: 20px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.slots-error {
  border-color: rgba(164, 60, 48, 0.3);
  color: #94443a;
  background: #fff5f3;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.time-slot {
  height: 42px;
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.time-slot:hover,
.time-slot.is-selected {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.time-slot:disabled {
  border-color: transparent;
  cursor: not-allowed;
  color: #b4b3ac;
  background: #eceae4;
  text-decoration: line-through;
}

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

.form-error {
  min-height: 20px;
  margin: 16px 0 0;
  color: #a43c30;
  font-size: 12px;
  font-weight: 600;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.privacy-note {
  margin: 12px 0 0;
  color: #8f8e87;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.booking-success {
  min-height: 720px;
  padding: 64px 50px;
  text-align: center;
}

.booking-success .eyebrow {
  justify-content: center;
  margin-top: 25px;
}

.success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-size: 30px;
  box-shadow: 0 12px 30px rgba(215, 167, 85, 0.3);
}

.booking-success h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.booking-success > p:not(.eyebrow) {
  max-width: 470px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.appointment-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px 0 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.appointment-summary div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.appointment-summary dt {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.appointment-summary dd {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.whatsapp-button {
  width: 100%;
  color: #082c18;
  background: var(--green);
}

.whatsapp-button:hover {
  color: #062313;
  background: #54e384;
}

.new-booking-button {
  margin-top: 20px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding: 110px max(24px, calc((100vw - 1200px) / 2));
}

.location-card {
  padding: 32px 0 4px 34px;
  border-left: 1px solid var(--line);
}

.location-card p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card strong {
  display: block;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.site-footer {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: space-between;
  padding: 28px max(24px, calc((100vw - 1320px) / 2));
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.55);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer > a:last-child:hover {
  color: var(--gold-light);
}

.brand-footer {
  color: var(--white);
  text-transform: none;
}

.reveal {
  animation: reveal-up 650ms ease both;
}

.reveal-delay {
  animation-delay: 130ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.85fr;
    gap: 55px;
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(62px, 8.4vw, 90px);
  }

  .hero-visual img {
    min-height: 500px;
  }

  .experience {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
  }

  .gallery-main {
    height: 500px;
  }

  .gallery-small {
    height: 330px;
  }

  .booking-section {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 48px;
  }

  .form-step {
    padding: 36px 32px;
  }

  .time-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 32px);
    height: 86px;
  }

  .desktop-nav {
    display: none;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    font-size: 26px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .hero {
    display: block;
    padding: 130px 20px 70px;
  }

  .hero-copy {
    max-width: 680px;
  }

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

  .hero-visual {
    width: calc(100% - 8px);
    max-width: none;
    margin: 82px 0 0 8px;
  }

  .hero-visual img {
    height: min(118vw, 660px);
    min-height: 480px;
  }

  .hero-badge {
    right: -8px;
  }

  .promise-bar {
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 24px 18px;
  }

  .promise-bar i:nth-of-type(2) {
    display: none;
  }

  .section,
  .experience,
  .booking-section,
  .location-section {
    padding: 85px 20px;
  }

  .section-heading,
  .experience,
  .booking-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading h2,
  .experience-intro h2,
  .booking-intro h2,
  .location-section h2 {
    font-size: clamp(50px, 13vw, 74px);
  }

  .services-grid {
    margin-top: 50px;
  }

  .service-card {
    min-height: 138px;
    grid-template-columns: 36px minmax(0, 1fr) 42px;
    gap: 15px;
  }

  .service-time {
    display: none;
  }

  .service-card:hover {
    padding-right: 8px;
    padding-left: 8px;
  }

  .experience {
    gap: 50px;
  }

  .gallery-main {
    height: 460px;
  }

  .gallery-small {
    height: 310px;
  }

  .booking-section {
    gap: 48px;
  }

  .booking-intro {
    position: static;
  }

  .location-section {
    gap: 35px;
  }

  .location-card {
    padding-left: 24px;
  }
}

@media (max-width: 560px) {
  .site-header .button-small {
    min-height: 38px;
    padding: 0 16px;
    font-size: 10px;
  }

  .brand-copy {
    display: none;
  }

  .hero h1 {
    font-size: clamp(56px, 17.5vw, 78px);
  }

  .hero-description {
    margin-top: 25px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

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

  .hero-actions .text-link {
    width: fit-content;
  }

  .hero-details {
    gap: 26px;
  }

  .hero-details dd {
    font-size: 18px;
  }

  .hero-visual {
    margin-top: 65px;
  }

  .hero-visual img {
    min-height: 420px;
  }

  .hero-badge {
    width: 102px;
    height: 102px;
  }

  .hero-badge strong {
    font-size: 23px;
  }

  .promise-bar span {
    width: calc(50% - 18px);
  }

  .promise-bar i {
    display: none;
  }

  .service-card p {
    font-size: 11px;
  }

  .gallery {
    gap: 9px;
  }

  .gallery-main {
    height: 390px;
  }

  .gallery-small {
    height: 250px;
  }

  .form-step {
    padding: 32px 20px;
  }

  .service-options,
  .fields-row {
    grid-template-columns: 1fr;
  }

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

  .time-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-success {
    min-height: 650px;
    padding: 48px 20px;
  }

  .booking-success h3 {
    font-size: 40px;
  }

  .appointment-summary dd {
    font-size: 18px;
  }

  .site-footer {
    min-height: 190px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }

  .brand-footer .brand-copy {
    display: flex;
  }
}

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

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