@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../assets/fonts/TitilliumWeb-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../assets/fonts/TitilliumWeb-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --bg: #eef4e9;
  --surface: #fffdf8;
  --surface-2: #edf5e9;
  --glass: rgba(255, 253, 248, 0.78);
  --glass-strong: rgba(255, 253, 248, 0.92);
  --ink: #142014;
  --muted: #5c6759;
  --line: rgba(16, 33, 13, 0.14);
  --green: #296216;
  --green-deep: #10210d;
  --gold: #c48d26;
  --gold-soft: rgba(196, 141, 38, 0.14);
  --cream: #f5f1e8;
  --white-on-dark: #fff8eb;
  --danger: #b73a2b;
  --shadow: 0 28px 70px rgba(5, 14, 6, 0.16);
  --shadow-soft: 0 16px 38px rgba(5, 14, 6, 0.1);
  --shadow-glow: 0 0 0 1px rgba(196, 141, 38, 0.16), 0 22px 54px rgba(5, 14, 6, 0.13);
  --radius: 8px;
  --radius-lg: 22px;
  --max: 1360px;
  --font-heading: "Montserrat", "Arial Black", sans-serif;
  --font-body: "Titillium Web", Arial, sans-serif;
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86) 0%, rgba(238, 246, 233, 0.88) 42%, rgba(246, 240, 229, 0.82) 100%),
    linear-gradient(180deg, #fbfcf7 0%, var(--bg) 48%, #f4efe4 100%);
}

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

button {
  cursor: pointer;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  min-height: 48px;
  padding: 7px clamp(14px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 150px;
  height: auto;
}

.topbar__status {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: var(--green-deep);
}

.topbar__status strong {
  font-size: 0.95rem;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.topbar__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 13px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.topbar__contact a:hover {
  color: var(--green);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(16, 33, 13, 0.72);
  border-radius: 999px;
  color: var(--green-deep);
  background: linear-gradient(180deg, #f1ce78 0%, #d39a32 52%, #a86e1c 100%);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    0 8px 18px rgba(80, 47, 9, 0.18),
    inset 0 1px 0 rgba(255, 243, 191, 0.66);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
  color: var(--green-deep);
  background: linear-gradient(180deg, #f6d989 0%, #c48d26 52%, #8f5b16 100%);
  box-shadow:
    0 12px 22px rgba(80, 47, 9, 0.24),
    inset 0 1px 0 rgba(255, 244, 194, 0.7);
  transform: translateY(-1px);
}

.topbar__socials {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 2px;
}

.topbar__social-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 33, 13, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(5, 14, 6, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topbar__social-link svg {
  width: 18px;
  height: 18px;
}

.topbar__social-link:hover,
.topbar__social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(196, 141, 38, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(5, 14, 6, 0.12);
  outline: none;
}

.topbar__social-link--instagram {
  border: 0;
  background:
    radial-gradient(circle at 30% 108%, #feda75 0 18%, #fa7e1e 34%, transparent 35%),
    linear-gradient(135deg, #4f5bd5, #d62976 52%, #fa7e1e);
}

.topbar__social-link--instagram rect,
.topbar__social-link--instagram circle:first-of-type {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.topbar__social-link--instagram circle:last-of-type {
  fill: #fff;
}

.topbar__social-link--tiktok path {
  fill: #111;
}

.topbar__social-link--youtube path:first-child {
  fill: #ff0033;
}

.topbar__social-link--youtube path:last-child {
  fill: #fff;
}

.booking-app {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 12px 0 48px;
}

.intro {
  position: relative;
  min-height: 215px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--cream);
  background: var(--green-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 56px rgba(5, 14, 6, 0.16);
}

.intro__image,
.intro__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro__image {
  object-fit: cover;
  object-position: center 42%;
}

.intro__overlay {
  background:
    linear-gradient(90deg, rgba(6, 17, 7, 0.88) 0%, rgba(6, 17, 7, 0.52) 46%, rgba(6, 17, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 17, 7, 0.62), rgba(6, 17, 7, 0.04));
}

.intro__content {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: clamp(22px, 4vw, 34px) clamp(24px, 5vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #f8d486;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow--dark {
  border-color: rgba(16, 33, 13, 0.14);
  color: var(--green);
  background: rgba(41, 98, 22, 0.08);
}

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

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

.intro h1 {
  max-width: 12ch;
  margin: 14px 0 10px;
  font-size: clamp(2.15rem, 3.8vw, 3rem);
  color: #fff;
}

.intro p {
  max-width: 38ch;
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.86);
  font-size: 1rem;
  line-height: 1.45;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
  margin-top: 12px;
}

.booking-layout[data-step="0"] {
  grid-template-columns: minmax(0, 1fr);
}

.booking-layout[data-step="0"] .summary,
.booking-layout[data-step="1"] .summary__media,
.booking-layout[data-step="1"] .estimate-box,
.booking-layout[data-step="1"] [data-summary-row="package"] {
  display: none;
}

.booking-layout[data-step="0"] .wizard-actions {
  display: none;
}

body.is-hospitality-contact {
  background: #f6f9f2;
}

.booking-app.is-hospitality-contact {
  padding-top: clamp(22px, 4vw, 46px);
}

.hospitality-contact-page {
  display: grid;
  gap: 18px;
}

.hospitality-contact__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border: 1px solid rgba(16, 33, 13, 0.14);
  border-radius: 50%;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(240, 247, 236, 0.86));
  color: var(--green-deep);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(5, 14, 6, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hospitality-contact__back:hover,
.hospitality-contact__back:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 141, 38, 0.42);
  box-shadow: 0 18px 32px rgba(5, 14, 6, 0.12);
  outline: none;
}

.hospitality-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

.hospitality-contact__form-card,
.hospitality-contact__panel {
  border: 1px solid rgba(16, 33, 13, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 251, 244, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 22px 52px rgba(5, 14, 6, 0.1);
}

.hospitality-contact__form-card {
  padding: clamp(24px, 3vw, 34px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.hospitality-contact__form-card h2 {
  max-width: 14ch;
  margin: 12px 0 0;
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.hospitality-contact__form-card > p {
  max-width: 56ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hospitality-contact__form {
  margin-top: 24px;
}

.hospitality-contact__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hospitality-contact__field {
  display: grid;
  gap: 8px;
}

.hospitality-contact__field--full {
  grid-column: 1 / -1;
}

.hospitality-contact__field label {
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hospitality-contact__field input,
.hospitality-contact__field textarea {
  width: 100%;
  border: 1px solid rgba(16, 33, 13, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hospitality-contact__field input {
  min-height: 54px;
  padding: 0 16px;
}

.hospitality-contact__field textarea {
  min-height: 144px;
  padding: 16px;
  resize: vertical;
}

.hospitality-contact__field input:focus,
.hospitality-contact__field textarea:focus {
  border-color: rgba(196, 141, 38, 0.58);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 0 4px rgba(196, 141, 38, 0.12);
  outline: none;
}

.hospitality-contact__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0.16em solid #17350e;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #d8a13d 0%, var(--gold) 48%, #a87420 100%);
  color: #161004;
  font-weight: 900;
  box-shadow:
    0 0 0.7em 0.08em rgba(23, 53, 14, 0.35),
    0 12px 26px rgba(196, 141, 38, 0.2),
    inset 0 0 0.6em rgba(255, 247, 226, 0.42);
}

.hospitality-contact__submit:hover,
.hospitality-contact__submit:focus-visible {
  filter: saturate(1.05) brightness(1.02);
  outline: none;
}

.hospitality-contact__note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hospitality-contact__note a,
.hospitality-contact__detail-list a {
  color: var(--gold);
  font-weight: 800;
}

.hospitality-contact__info {
  display: grid;
  gap: 18px;
}

.hospitality-contact__panel {
  padding: 26px 24px;
}

.hospitality-contact__panel h3 {
  margin: 14px 0 0;
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.hospitality-contact__detail-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hospitality-contact__detail-list li {
  display: grid;
  gap: 5px;
}

.hospitality-contact__detail-list span:first-child {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hospitality-contact__detail-list span:last-child,
.hospitality-contact__detail-list a {
  color: var(--green-deep);
  line-height: 1.5;
}

.hospitality-contact__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hospitality-contact__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(16, 33, 13, 0.12);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(41, 98, 22, 0.06);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hospitality-contact__socials {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hospitality-contact__social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border: 1px solid rgba(16, 33, 13, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--green-deep);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hospitality-contact__social:hover,
.hospitality-contact__social:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 141, 38, 0.32);
  box-shadow: 0 16px 28px rgba(5, 14, 6, 0.1);
  outline: none;
}

.hospitality-contact__social div {
  display: grid;
  gap: 2px;
}

.hospitality-contact__social strong {
  font-weight: 900;
}

.hospitality-contact__social div span {
  color: var(--muted);
}

.hospitality-contact__social > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hospitality-contact-page {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: clamp(20px, 3vw, 32px);
  background:
    radial-gradient(circle at 0% 8%, rgba(196, 141, 38, 0.16), transparent 26%),
    radial-gradient(circle at 100% 82%, rgba(72, 126, 42, 0.3), transparent 34%),
    linear-gradient(90deg, #07130a 0%, #0b1a0d 50%, #153118 100%);
  color: var(--white-on-dark);
  box-shadow: 0 26px 70px rgba(5, 14, 6, 0.24);
}

.hospitality-contact-page .hospitality-contact__back {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 241, 232, 0.84);
  box-shadow: none;
}

.hospitality-contact-page .hospitality-contact__back:hover,
.hospitality-contact-page .hospitality-contact__back:focus-visible {
  border-color: rgba(196, 141, 38, 0.34);
  color: var(--white-on-dark);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.hospitality-contact-page .site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  text-align: center;
}

.hospitality-contact-page .site-footer__form-card,
.hospitality-contact-page .site-footer__panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.hospitality-contact-page .site-footer__form-card {
  padding: clamp(28px, 3vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  text-align: center;
}

.hospitality-contact-page .site-footer__form-card .section-label,
.hospitality-contact-page .site-footer__panel .section-label {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  justify-content: center;
  color: #f3c66d;
}

.hospitality-contact-page .site-footer__form-card h2 {
  margin-inline: auto;
}

.hospitality-contact-page .hospitality-art-title {
  display: inline-grid;
  gap: 0.02em;
  isolation: isolate;
  position: relative;
  max-width: min(100%, 13ch);
  margin: 10px auto 0 !important;
  padding: 0.03em 0 0.22em !important;
  color: #fff8eb !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  font-weight: 900 !important;
  line-height: 0.94 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-wrap: balance;
}

.hospitality-contact-page .hospitality-art-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.02em;
  z-index: -1;
  width: min(88%, 420px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 141, 38, 0.92) 17%, #f2c46a 48%, rgba(38, 96, 42, 0.94) 82%, transparent 100%);
  box-shadow: 0 5px 12px rgba(196, 141, 38, 0.16);
  transform: translateX(-50%);
}

.hospitality-contact-page .hospitality-art-title span {
  display: block;
}

.hospitality-contact-page .hospitality-art-title span:first-child {
  color: #fff8eb;
  text-shadow:
    0 2px 0 rgba(6, 18, 8, 0.72),
    0 8px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.38);
}

.hospitality-contact-page .hospitality-art-title span:last-child {
  background: linear-gradient(100deg, #a86f14 0%, #c48d26 25%, #fff1bd 44%, #f4c45c 50%, #c48d26 66%, #8d6116 100%);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: #c48d26;
  font-size: 0.9em;
  font-style: italic;
  line-height: 1.06;
  padding-bottom: 0.08em;
  text-shadow: 0 14px 30px rgba(196, 141, 38, 0.26);
  -webkit-text-fill-color: transparent;
  animation: serviceArtTitleSheen 3.8s ease-in-out infinite;
}

.hospitality-contact-page .site-footer__form-card > p {
  max-width: 44ch;
  margin: 16px auto 0;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hospitality-contact-page .site-footer__form {
  margin-top: 24px;
}

.hospitality-contact-page .site-footer__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.hospitality-contact-page .site-footer__field {
  display: grid;
  gap: 8px;
  justify-items: stretch;
}

.hospitality-contact-page .site-footer__field--full {
  grid-column: 1 / -1;
}

.hospitality-contact-page .site-footer__field label {
  text-align: left;
  color: rgba(245, 241, 232, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hospitality-contact-page .site-footer__field input,
.hospitality-contact-page .site-footer__field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-on-dark);
  font: inherit;
  line-height: 1.5;
  text-align: left;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.hospitality-contact-page .site-footer__field input {
  min-height: 54px;
  padding: 0 16px;
}

.hospitality-contact-page .site-footer__field textarea {
  min-height: 128px;
  padding: 16px;
  resize: vertical;
}

.hospitality-contact-page .site-footer__field input::placeholder,
.hospitality-contact-page .site-footer__field textarea::placeholder {
  color: rgba(245, 241, 232, 0.34);
}

.hospitality-contact-page .site-footer__field input:focus,
.hospitality-contact-page .site-footer__field textarea:focus {
  border-color: rgba(196, 141, 38, 0.48);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(196, 141, 38, 0.12);
}

.hospitality-contact-page .btn--gold.site-footer__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #d8a13d 0%, var(--gold) 48%, #a87420 100%);
  color: #161004;
  font-weight: 900;
  box-shadow:
    0 12px 26px rgba(196, 141, 38, 0.2),
    inset 0 0 0.6em rgba(255, 247, 226, 0.42);
}

.hospitality-contact-page .site-footer__form-note {
  margin: 12px 0 0;
  color: rgba(245, 241, 232, 0.56);
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: center;
}

.hospitality-contact-page .site-footer__form-note a {
  color: #f3c66d;
  font-weight: 700;
}

.hospitality-contact-page .site-footer__form-note a:hover {
  color: var(--white-on-dark);
}

.hospitality-contact-page .site-footer__info {
  display: grid;
  gap: 18px;
  align-content: start;
  text-align: center;
}

.hospitality-contact-page .site-footer__panel {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.hospitality-contact-page .site-footer__panel h3,
.hospitality-contact-page .site-footer__panel h4 {
  margin: 0;
  color: var(--white-on-dark);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.hospitality-contact-page .site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.hospitality-contact-page .site-footer__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 241, 232, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hospitality-contact-page .site-footer__detail-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hospitality-contact-page .site-footer__detail-list li {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.hospitality-contact-page .site-footer__detail-list span:first-child {
  color: #f3c66d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hospitality-contact-page .site-footer__detail-list a,
.hospitality-contact-page .site-footer__detail-list span:last-child {
  color: var(--white-on-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hospitality-contact-page .site-footer__detail-list a:hover {
  color: #f3c66d;
}

.hospitality-contact-page .site-footer__socials {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hospitality-contact-page .site-footer__social {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.hospitality-contact-page .site-footer__social::before {
  content: none;
}

.hospitality-contact-page .site-footer__social-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(243, 198, 109, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 241, 189, 0.34), transparent 38%),
    linear-gradient(135deg, rgba(226, 176, 80, 0.24), rgba(181, 126, 32, 0.1));
  color: #f3c66d;
  box-shadow: 0 0 0 6px rgba(196, 141, 38, 0.09);
}

.hospitality-contact-page .site-footer__social-icon svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hospitality-contact-page .site-footer__social-icon svg rect,
.hospitality-contact-page .site-footer__social-icon svg circle {
  stroke: currentColor;
  fill: none;
}

.hospitality-contact-page .site-footer__social-icon svg path {
  stroke: currentColor;
  fill: none;
}

.hospitality-contact-page .site-footer__social:hover,
.hospitality-contact-page .site-footer__social:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 141, 38, 0.24);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  outline: none;
}

.hospitality-contact-page .site-footer__social > div {
  min-width: 0;
  justify-self: center;
}

.hospitality-contact-page .site-footer__social strong {
  display: block;
  color: var(--white-on-dark);
  font-size: 0.94rem;
  line-height: 1.1;
}

.hospitality-contact-page .site-footer__social > div span {
  display: block;
  margin-top: 4px;
  color: rgba(245, 241, 232, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hospitality-contact-page .site-footer__social-arrow {
  justify-self: end;
  color: #f3c66d !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wizard,
.summary {
  border: 1px solid rgba(16, 33, 13, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9) 0%, rgba(248, 250, 244, 0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.wizard {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.wizard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 120px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(105deg, transparent 8%, rgba(255, 247, 228, 0.22) 42%, transparent 72%);
  pointer-events: none;
}

.wizard > * {
  position: relative;
  z-index: 1;
}

.wizard__header {
  display: grid;
  place-items: center;
  min-height: clamp(94px, 9vw, 122px);
  padding: clamp(10px, 1.4vw, 16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 14%, rgba(196, 141, 38, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(8, 18, 9, 0.98) 0%, rgba(16, 33, 13, 0.96) 42%, rgba(41, 98, 22, 0.86) 100%);
  color: var(--cream);
  text-align: center;
}

.wizard__header-inner {
  display: grid;
  justify-items: center;
  gap: 3px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.wizard__brand-lockup {
  width: clamp(42px, 5vw, 64px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 32px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 18px rgba(196, 141, 38, 0.08));
}

.wizard__header h2,
.summary__top h2 {
  margin: 10px 0 0;
  color: var(--green-deep);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.booking-art-title {
  display: inline-grid;
  gap: 0.02em;
  isolation: isolate;
  max-width: min(92vw, 14ch);
  margin: 0 auto !important;
  padding: 0.02em 0 0.2em !important;
  position: relative;
  color: #fff8eb !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.1rem, 2.2vw, 1.8rem) !important;
  font-weight: 900 !important;
  line-height: 0.94 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-wrap: balance;
}

.booking-art-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.02em;
  z-index: -1;
  width: min(84%, 520px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 141, 38, 0.92) 17%, #f2c46a 48%, rgba(38, 96, 42, 0.94) 82%, transparent 100%);
  box-shadow: 0 5px 12px rgba(196, 141, 38, 0.16);
  transform: translateX(-50%);
}

.booking-art-title span {
  display: block;
}

.booking-art-title span:first-child {
  color: #fff8eb;
  text-shadow:
    0 2px 0 rgba(6, 18, 8, 0.72),
    0 8px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.38);
}

.booking-art-title span:last-child {
  background: linear-gradient(100deg, #a86f14 0%, #c48d26 25%, #fff1bd 44%, #f4c45c 50%, #c48d26 66%, #8d6116 100%);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: #c48d26;
  font-size: 0.9em;
  font-style: italic;
  line-height: 1.06;
  padding-bottom: 0.08em;
  text-shadow: 0 14px 30px rgba(196, 141, 38, 0.26);
  -webkit-text-fill-color: transparent;
  animation: serviceArtTitleSheen 3.8s ease-in-out infinite;
}

.wizard__header .eyebrow--dark {
  border-color: rgba(243, 198, 109, 0.36);
  color: #f3c66d;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

@keyframes serviceArtTitleSheen {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-art-title span:last-child,
  .project-art-title span:last-child {
    animation: none;
  }
}

.stepper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding: 10px clamp(12px, 1.7vw, 18px) 12px;
  border-bottom: 1px solid rgba(16, 33, 13, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(240, 247, 236, 0.7));
}

.stepper__item {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 3px;
  place-items: center;
  min-height: 52px;
  padding: 7px 6px;
  border: 1px solid rgba(16, 33, 13, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 247, 0.86) 54%, rgba(236, 246, 231, 0.72) 100%);
  color: var(--muted);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -12px 24px rgba(41, 98, 22, 0.045),
    0 20px 34px rgba(5, 14, 6, 0.12),
    0 8px 14px rgba(41, 98, 22, 0.06),
    0 2px 0 rgba(255, 255, 255, 0.76);
  transform: translateY(-1px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.stepper__item::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 48%),
    linear-gradient(115deg, transparent 18%, rgba(255, 241, 211, 0.24) 48%, transparent 74%);
  pointer-events: none;
}

.stepper__item::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -7px;
  left: 12%;
  z-index: -2;
  height: 14px;
  border-radius: 999px;
  background: rgba(5, 14, 6, 0.18);
  filter: blur(13px);
  opacity: 0.48;
  pointer-events: none;
}

.stepper__item:last-child {
  border-right: 1px solid rgba(16, 33, 13, 0.12);
}

.stepper__item span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 253, 248, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 16px rgba(5, 14, 6, 0.08);
}

.stepper__item strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.stepper__item.is-active,
.stepper__item.is-complete {
  color: var(--green);
  border-color: rgba(41, 98, 22, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 234, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -12px 24px rgba(41, 98, 22, 0.07),
    0 22px 40px rgba(41, 98, 22, 0.17),
    0 10px 18px rgba(196, 141, 38, 0.08),
    0 0 0 1px rgba(196, 141, 38, 0.12);
}

.stepper__item.is-active span {
  color: #fff;
  border-color: var(--green);
  background: linear-gradient(135deg, #2f6f1a, var(--green-deep));
  box-shadow:
    0 0 0 5px rgba(41, 98, 22, 0.1),
    0 10px 22px rgba(41, 98, 22, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.stepper__item:hover,
.stepper__item:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(196, 141, 38, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -10px 22px rgba(196, 141, 38, 0.055),
    0 26px 44px rgba(5, 14, 6, 0.16),
    0 12px 18px rgba(196, 141, 38, 0.1),
    0 0 0 1px rgba(196, 141, 38, 0.14);
  outline: none;
}

.form-alert {
  margin: 22px 24px 0;
  padding: 12px 14px;
  border: 1px solid rgba(183, 58, 43, 0.26);
  border-radius: var(--radius);
  color: var(--danger);
  background: rgba(183, 58, 43, 0.08);
  font-weight: 700;
}

.wizard-step {
  display: none;
  padding: clamp(18px, 2.1vw, 24px);
}

.wizard-step.is-active {
  display: block;
}

.step-copy {
  max-width: 760px;
  margin-bottom: 16px;
}

[data-step-panel="0"] .step-copy {
  max-width: 820px;
  margin-right: auto;
  margin-bottom: clamp(14px, 2vw, 20px);
  margin-left: auto;
  text-align: center;
}

.step-copy--art-title {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.step-copy h3 {
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.project-art-title {
  display: inline-grid;
  gap: 0.02em;
  isolation: isolate;
  max-width: min(92vw, 18.5ch);
  margin: 0 auto 8px !important;
  padding: 0.02em 0 0.26em !important;
  position: relative;
  color: #0b2510 !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.9rem, 3.8vw, 3.15rem) !important;
  font-weight: 900 !important;
  line-height: 0.94 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-shadow: none !important;
  text-wrap: balance;
}

.project-art-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: min(84%, 520px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 141, 38, 0.92) 17%, #f2c46a 48%, rgba(38, 96, 42, 0.94) 82%, transparent 100%);
  box-shadow: 0 10px 22px rgba(196, 141, 38, 0.16);
  transform: translateX(-50%);
}

.project-art-title span {
  display: block;
}

.project-art-title span:first-child {
  color: #0b2510;
  text-shadow:
    0 2px 0 rgba(255, 253, 248, 0.92),
    0 8px 0 rgba(35, 77, 33, 0.08),
    0 18px 34px rgba(7, 17, 8, 0.18);
}

.project-art-title span:last-child {
  background: linear-gradient(100deg, #a86f14 0%, #c48d26 25%, #fff1bd 44%, #f4c45c 50%, #c48d26 66%, #8d6116 100%);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: #c48d26;
  font-size: 0.9em;
  font-style: italic;
  line-height: 1.06;
  padding-bottom: 0.08em;
  text-shadow: 0 14px 30px rgba(196, 141, 38, 0.26);
  -webkit-text-fill-color: transparent;
  animation: serviceArtTitleSheen 3.8s ease-in-out infinite;
}

.step-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.category-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
  align-items: stretch;
}

.category-grid {
  align-items: start;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.category-card,
.package-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86) 0%, rgba(248, 251, 245, 0.76) 100%);
  color: inherit;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 30px rgba(5, 14, 6, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease, box-shadow 260ms ease, background 220ms ease;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.category-card::before,
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.5) 48%, transparent 62%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-115%);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(196, 141, 38, 0);
  transition: box-shadow 220ms ease;
}

.category-card:hover,
.category-card:focus-visible,
.category-card.is-selected {
  transform: translateY(-5px) scale(1.006);
  border-color: rgba(196, 141, 38, 0.78);
  box-shadow:
    0 34px 70px rgba(5, 14, 6, 0.18),
    0 14px 28px rgba(196, 141, 38, 0.12),
    0 0 0 1px rgba(196, 141, 38, 0.26),
    0 0 42px rgba(196, 141, 38, 0.18);
  outline: none;
}

.package-card:hover,
.package-card:focus-visible,
.package-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(196, 141, 38, 0.7);
  box-shadow:
    0 24px 52px rgba(5, 14, 6, 0.13),
    0 0 0 1px rgba(196, 141, 38, 0.22),
    0 0 34px rgba(196, 141, 38, 0.16);
  outline: none;
}

.category-card.is-selected,
.package-card.is-selected {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(250, 244, 232, 0.9));
}

.category-card:hover::before,
.category-card:focus-visible::before,
.package-card:hover::before,
.package-card:focus-visible::before {
  animation: card-sweep 900ms ease forwards;
}

.category-card.is-selected::after {
  box-shadow: inset 0 0 0 3px rgba(196, 141, 38, 0.62), inset 0 4px 0 rgba(41, 98, 22, 0.72);
}

.category-card img {
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background:
    linear-gradient(180deg, rgba(7, 17, 8, 0.06), rgba(255, 253, 248, 0.18));
  transform-origin: center center;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
}

.category-card:hover img,
.category-card:focus-visible img,
.category-card.is-selected img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.category-card__body {
  display: grid;
  gap: 4px;
  flex: 0 0 auto;
  min-height: 0;
  align-content: center;
  justify-items: center;
  padding: 12px 16px 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(246, 250, 243, 0.9));
  text-align: center;
}

.category-card strong,
.package-card h4 {
  color: var(--green-deep);
  font-size: 1rem;
}

.category-card strong,
.category-card small {
  max-width: 28ch;
  text-align: center;
}

.category-card strong {
  line-height: 1.25;
}

.category-card small,
.package-card p,
.package-card li,
.single-service-card li,
.service-control-card small,
.service-control-card__quantity span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.insight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: clamp(18px, 2.4vw, 26px);
  padding: 16px 18px;
  border: 1px solid rgba(41, 98, 22, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(238, 247, 233, 0.84), rgba(255, 253, 248, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.insight-strip strong {
  color: var(--green-deep);
}

.insight-strip span {
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.address-search-field {
  position: relative;
  z-index: 80;
}

.field label {
  color: var(--green-deep);
  font-weight: 700;
}

.field-label-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.field-mini-action {
  min-height: 30px;
  border: 1px solid rgba(41, 98, 22, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(238, 247, 233, 0.9);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.field-mini-action:hover,
.field-mini-action:focus-visible {
  border-color: rgba(196, 141, 38, 0.72);
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 141, 38, 0.12);
}

.field input,
.field select,
.field textarea,
.service-control-card__quantity input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 33, 13, 0.22);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.address-picker {
  position: relative;
  z-index: 20;
}

.address-search-control {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(16, 33, 13, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 245, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 16px 30px rgba(5, 14, 6, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.address-picker.is-open .address-search-control,
.address-search-control:focus-within {
  border-color: rgba(196, 141, 38, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 252, 246, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 0 3px rgba(196, 141, 38, 0.12),
    0 22px 42px rgba(5, 14, 6, 0.12);
}

.address-search-icon {
  position: relative;
  width: 20px;
  height: 20px;
  color: var(--green-deep);
}

.address-search-icon::before,
.address-search-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.address-search-icon::before {
  top: 2px;
  left: 2px;
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.address-search-icon::after {
  right: 2px;
  bottom: 2px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.field .address-search-control input {
  min-height: 36px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1rem;
}

.field .address-search-control input:focus {
  outline: none;
}

.address-clear {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(41, 98, 22, 0.08);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.address-clear:hover,
.address-clear:focus-visible {
  transform: scale(1.06);
  background: rgba(196, 141, 38, 0.16);
  color: #8d6116;
  outline: none;
}

.address-suggestion-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 60;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 13, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 251, 244, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 28px 58px rgba(5, 14, 6, 0.18);
  backdrop-filter: blur(18px) saturate(142%);
  -webkit-backdrop-filter: blur(18px) saturate(142%);
}

.address-suggestion-list {
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.address-suggestion-list::-webkit-scrollbar {
  width: 10px;
}

.address-suggestion-list::-webkit-scrollbar-track {
  background: rgba(16, 33, 13, 0.06);
  border-radius: 999px;
}

.address-suggestion-list::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 253, 248, 0.95);
  border-radius: 999px;
  background: rgba(16, 33, 13, 0.38);
}

.address-suggestion {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid rgba(16, 33, 13, 0.09);
  background: transparent;
  color: var(--ink);
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.address-suggestion:hover,
.address-suggestion:focus-visible,
.address-suggestion.is-active {
  background:
    linear-gradient(90deg, rgba(196, 141, 38, 0.13), rgba(41, 98, 22, 0.08));
  color: var(--green-deep);
  outline: none;
}

.address-suggestion.is-typed {
  background:
    linear-gradient(90deg, rgba(41, 98, 22, 0.08), rgba(196, 141, 38, 0.08));
}

.address-suggestion.is-typed .address-suggestion-pin {
  color: var(--gold);
}

.address-suggestion-pin {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 999px 2px;
  color: var(--green-deep);
  transform: rotate(-45deg);
}

.address-suggestion-pin::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.address-suggestion-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.address-suggestion-copy strong {
  overflow: hidden;
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.address-suggestion-copy small,
.address-empty small {
  color: var(--muted);
  line-height: 1.3;
}

.address-empty {
  display: grid;
  gap: 2px;
  padding: 18px 18px 16px;
  color: var(--green-deep);
}

.address-manual-option {
  display: flex;
  gap: 9px;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border: 0;
  border-top: 1px solid rgba(16, 33, 13, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(249, 244, 232, 0.84));
  color: var(--gold);
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.address-manual-option span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(196, 141, 38, 0.13);
  font-weight: 900;
}

.address-manual-option:hover,
.address-manual-option:focus-visible {
  background: rgba(196, 141, 38, 0.12);
  color: #8d6116;
  outline: none;
}

.field input[readonly] {
  cursor: default;
}

.field-hint {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.field-hint--above {
  margin: -2px 0 2px;
}

.travel-fee-field input[readonly] {
  border-color: rgba(16, 33, 13, 0.14);
  background: var(--surface-2);
  color: var(--green-deep);
  font-weight: 800;
}

.travel-fee-field.is-free input[readonly] {
  border-color: rgba(41, 98, 22, 0.36);
  background: rgba(41, 98, 22, 0.08);
}

.travel-fee-field.is-mid input[readonly] {
  border-color: rgba(196, 141, 38, 0.42);
  background: rgba(196, 141, 38, 0.1);
}

.travel-fee-field.is-far input[readonly],
.travel-fee-field.is-unknown input[readonly] {
  border-color: rgba(183, 58, 43, 0.28);
  background: rgba(183, 58, 43, 0.07);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.service-control-card__quantity input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(41, 98, 22, 0.14);
}

.text-button {
  justify-self: start;
  border: 0;
  padding: 4px 0;
  color: var(--gold);
  background: transparent;
  font-weight: 700;
}

.manual-address {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border: 1px dashed rgba(16, 33, 13, 0.22);
  border-radius: var(--radius);
  background: #fbfcf7;
}

.commercial-site-field {
  display: grid;
}

.booking-layout[data-category="commercial"] .wizard-step[data-step-panel="1"] .step-copy {
  max-width: 760px;
  margin-bottom: 20px;
}

.booking-layout[data-category="commercial"] .wizard-step[data-step-panel="1"] .step-copy h3 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.booking-layout[data-category="commercial"] .address-form-grid {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(16, 33, 13, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 251, 245, 0.93));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 20px 42px rgba(5, 14, 6, 0.08);
}

.booking-layout[data-category="commercial"] .address-form-grid::before {
  content: none;
}

.booking-layout[data-category="commercial"] .address-form-grid > * {
  position: relative;
  z-index: 1;
}

.booking-layout[data-category="commercial"] .address-form-grid > .address-search-field {
  display: grid;
  gap: 8px;
  padding: 24px clamp(18px, 2.4vw, 28px) 22px;
  border-bottom: 1px solid rgba(16, 33, 13, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  z-index: 90;
}

.booking-layout[data-category="commercial"] .commercial-detail-field,
.booking-layout[data-category="commercial"] .manual-address {
  margin-right: clamp(18px, 2.4vw, 28px);
  margin-left: clamp(18px, 2.4vw, 28px);
}

.booking-layout[data-category="commercial"] .manual-address,
.booking-layout[data-category="commercial"] .commercial-detail-field--sqft {
  margin-top: 24px;
}

.booking-layout[data-category="commercial"] .commercial-detail-field {
  width: min(100%, 460px);
  max-width: 460px;
  margin-top: 18px;
}

.booking-layout[data-category="commercial"] .commercial-detail-field--instructions {
  margin-bottom: 26px;
}

.booking-layout[data-category="commercial"] .commercial-detail-field--instructions textarea {
  min-height: 46px;
}

.booking-layout[data-category="commercial"] .commercial-detail-field--access label,
.booking-layout[data-category="commercial"] .commercial-detail-field--details label,
.booking-layout[data-category="commercial"] .commercial-detail-field--instructions label {
  max-width: 56ch;
}

.booking-layout[data-category="commercial"] .field input,
.booking-layout[data-category="commercial"] .field select,
.booking-layout[data-category="commercial"] .field textarea {
  border-color: rgba(16, 33, 13, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 253, 249, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.booking-layout[data-category="commercial"] .field input,
.booking-layout[data-category="commercial"] .field select {
  min-height: 42px;
}

.booking-layout[data-category="commercial"] .field textarea {
  min-height: 48px;
}

.booking-layout[data-category="commercial"] .field input:focus,
.booking-layout[data-category="commercial"] .field select:focus,
.booking-layout[data-category="commercial"] .field textarea:focus {
  border-color: rgba(196, 141, 38, 0.7);
  outline: 3px solid rgba(196, 141, 38, 0.14);
}

.booking-layout[data-category="commercial"] .address-search-control {
  min-height: 44px;
  border-radius: 7px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 22px rgba(5, 14, 6, 0.06);
}

.booking-layout[data-category="commercial"] .field .address-search-control input {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-layout[data-category="commercial"] .manual-address {
  width: min(calc(100% - clamp(36px, 4.8vw, 56px)), 760px);
  border-style: solid;
  border-color: rgba(196, 141, 38, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(249, 244, 232, 0.68));
}

.booking-layout[data-category="commercial"] .address-search-field .field-hint {
  max-width: 62ch;
}

.booking-layout[data-category="commercial"] .address-suggestion-panel {
  border-radius: 10px;
}

.booking-layout[data-category="commercial"] .address-suggestion-list {
  max-height: 216px;
}

.booking-layout[data-category="commercial"] .address-suggestion {
  min-height: 58px;
}

.booking-layout[data-category="commercial"] .address-manual-option {
  min-height: 44px;
  color: #c2184b;
}

.booking-layout[data-category="commercial"] .address-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-layout[data-category="commercial"] .address-form-grid > * {
  z-index: auto;
}

.booking-layout[data-category="commercial"] .manual-address,
.booking-layout[data-category="commercial"] .commercial-detail-field {
  width: auto;
  max-width: none;
  margin: 0;
}

.booking-layout[data-category="commercial"] .manual-address {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed rgba(16, 33, 13, 0.22);
  border-radius: var(--radius);
  background: #fbfcf7;
}

.booking-layout[data-category="commercial"] .field input,
.booking-layout[data-category="commercial"] .field select,
.booking-layout[data-category="commercial"] .field textarea {
  min-height: 44px;
  border-color: rgba(16, 33, 13, 0.22);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.booking-layout[data-category="commercial"] .commercial-detail-field--instructions {
  grid-column: 1 / -1;
}

[hidden] {
  display: none !important;
}

.package-card {
  display: grid;
  grid-template-rows: auto auto minmax(58px, auto) minmax(42px, auto) auto 1fr auto auto;
  align-content: start;
  min-height: 100%;
  padding: 14px;
  overflow: visible;
  text-align: left;
}

.package-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(164, 112, 28, 0.42);
  background: var(--gold);
  color: #fffdf8;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(196, 141, 38, 0.22);
  transform: translateX(-50%);
  white-space: nowrap;
}

.package-card h4 {
  width: 100%;
  justify-self: center;
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.12;
  text-align: center;
}

.package-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 -8px 12px;
  border: 1px solid rgba(16, 33, 13, 0.14);
  border-radius: 10px;
  background: #eef3e9;
  aspect-ratio: 160 / 105;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.package-card__media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.package-card__addon-stack {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: flex;
  gap: 6px;
  align-items: center;
  max-width: calc(100% - 18px);
}

.package-card__addon-thumb {
  display: block;
  width: clamp(48px, 4.6vw, 64px);
  height: clamp(38px, 3.65vw, 50px);
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(5, 14, 6, 0.25);
}

.package-card__addon-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.package-card__addon-stack--4 .package-card__addon-thumb {
  width: clamp(42px, 4vw, 56px);
}

.package-card__addon-thumb--floorplan img,
.package-card__addon-thumb--zillow img {
  object-fit: contain;
  padding: 4px;
}

.package-card__price {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 1.78rem;
  line-height: 1;
}

.package-card__price-stack {
  display: grid;
  gap: 4px;
  align-content: start;
  margin-bottom: 10px;
  min-height: 58px;
}

.package-card__price-stack small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.package-card__price-stack small:last-child {
  color: var(--green);
  text-transform: uppercase;
}

.package-card p {
  min-height: 42px;
  margin: 0 0 12px;
}

.package-card ul {
  display: grid;
  gap: 7px;
  margin: 8px 0 12px;
  padding: 0;
  list-style: none;
  align-content: start;
  min-height: 128px;
}

.package-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
}

.package-card li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 0.42em;
  border-radius: 999px;
  background: var(--green);
  font-weight: 700;
}

.package-card__includes-title {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.package-card__fineprint {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px dashed rgba(16, 33, 13, 0.16);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.28;
}

.package-card__select,
.single-service-card__select {
  display: inline-flex;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(41, 98, 22, 0.22);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--green-deep);
  background: rgba(238, 247, 233, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
}

.package-card.is-selected .package-card__select,
.single-service-card.is-selected .single-service-card__select {
  border-color: rgba(196, 141, 38, 0.62);
  color: #fff;
  background: var(--gold);
}

.package-card--gold {
  border-color: rgba(196, 141, 38, 0.52);
}

.booknow-alacarte {
  display: grid;
  margin-top: 24px;
}

.service-subsection {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(16, 33, 13, 0.13);
  border-radius: 14px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.76), rgba(247, 251, 244, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 28px rgba(5, 14, 6, 0.06);
}

.service-subsection__head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 0;
  color: var(--gold);
  text-align: center;
}

.service-subsection__head::before,
.service-subsection__head::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.service-subsection__head h5 {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card-grid,
.single-service-grid {
  display: grid;
  gap: 12px;
}

.service-card-grid--addons {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: 0;
}

.service-card-grid--addons .service-control-card {
  grid-column: span 3;
}

.service-card-grid--addons .service-control-card--quantity {
  grid-column: span 6;
}

.service-card-grid--addons .service-control-card:not(.service-control-card--quantity) {
  min-height: 178px;
  padding: 12px;
}

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

.service-control-card,
.single-service-card {
  position: relative;
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(16, 33, 13, 0.14);
  border-radius: 10px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 251, 245, 0.92));
  color: inherit;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-control-card {
  grid-template-rows: 1fr auto;
  min-height: 198px;
  cursor: pointer;
}

.single-service-card {
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 8px;
  min-height: 244px;
}

.service-control-card:hover,
.service-control-card:focus-within,
.service-control-card.is-selected,
.service-control-card:has(input[type="checkbox"]:checked),
.single-service-card:hover,
.single-service-card:focus-visible,
.single-service-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(196, 141, 38, 0.76);
  box-shadow:
    0 16px 32px rgba(5, 14, 6, 0.1),
    0 0 0 1px rgba(196, 141, 38, 0.12);
  outline: none;
}

.service-control-card input[type="checkbox"] {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin: 0;
  border: 1px solid rgba(16, 33, 13, 0.28);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.96);
  appearance: none;
}

.service-control-card input[type="checkbox"]::after {
  content: "";
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  transform: rotate(-45deg) translateY(-1px);
}

.service-control-card input[type="checkbox"]:checked {
  border-color: var(--green);
  background: var(--green);
}

.service-control-card input[type="checkbox"]:checked::after {
  opacity: 1;
}

.service-control-card__body,
.single-service-card {
  display: grid;
  gap: 8px;
}

.service-control-card__body {
  grid-template-rows: auto auto auto 1fr;
  padding-right: 26px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 22px;
  border: 1px solid rgba(41, 98, 22, 0.2);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--green);
  background: rgba(238, 247, 233, 0.86);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-control-card strong,
.single-service-card strong {
  color: var(--green-deep);
  font-size: 0.96rem;
  line-height: 1.18;
}

.service-control-card b,
.single-service-card b {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.04;
}

.service-control-card__quantity {
  display: grid;
  grid-template-columns: minmax(58px, 72px) auto;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}

.service-control-card__quantity input {
  min-height: 38px;
  padding: 8px 10px;
  text-align: center;
}

.single-service-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-service-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
}

.single-service-card li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.42em;
  border-radius: 999px;
  background: var(--green);
}

.single-service-card__note {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.25;
}

.schedule-request {
  width: min(100%, 820px);
  margin: 0 auto 12px;
}

.schedule-request__panel {
  display: grid;
  gap: 18px;
}

.schedule-request__intro {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.schedule-request__intro strong {
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.schedule-request__intro span {
  color: var(--muted);
  line-height: 1.35;
}

.form-grid--schedule-request {
  gap: 14px;
}

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

.review-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fbfcf7;
}

.review-block h4 {
  margin-bottom: 10px;
  color: var(--green-deep);
}

.review-block p {
  margin: 0 0 7px;
  color: var(--muted);
}

.review-block strong {
  color: var(--ink);
}

.confirm-note {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(196, 141, 38, 0.32);
  border-radius: var(--radius);
  background: rgba(196, 141, 38, 0.08);
  color: var(--green-deep);
  text-align: center;
}

.confirm-note strong {
  font-family: var(--font-heading);
  color: var(--gold-dark);
  text-transform: uppercase;
}

.confirm-note span {
  font-weight: 700;
}

#confirmAccuracy,
label:has(#confirmAccuracy),
.confirm-acknowledgement,
.confirm-checkbox,
.handoff-actions,
#copySummaryBtn,
#downloadSummaryBtn,
#emailSummaryBtn {
  display: none !important;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wizard-actions {
  justify-content: space-between;
  padding: 20px clamp(24px, 3vw, 34px) clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(16, 33, 13, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.34), rgba(237, 245, 232, 0.52));
}

.booking-layout[data-step="5"] .wizard-actions {
  justify-content: center;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 28px;
}

.booking-layout[data-step="5"] #backBtn {
  order: 1;
}

.booking-layout[data-step="5"] #submitBtn {
  order: 2;
  min-width: min(100%, 430px);
  min-height: 76px;
  padding: 0 42px;
  font-size: 1.24rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 0.85em 0.12em rgba(23, 53, 14, 0.58),
    0 18px 34px rgba(196, 141, 38, 0.34),
    inset 0 0 0.7em rgba(255, 247, 226, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.primary-button,
.secondary-button {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 0.16em solid #17350e;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #d8a13d 0%, var(--gold) 48%, #a87420 100%);
  color: #161004;
  box-shadow:
    0 0 0.7em 0.08em rgba(23, 53, 14, 0.48),
    0 12px 26px rgba(196, 141, 38, 0.26),
    inset 0 0 0.6em rgba(255, 247, 226, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-deep);
}

.primary-button:hover,
.secondary-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

@keyframes card-sweep {
  from {
    opacity: 0;
    transform: translateX(-115%);
  }
  35% {
    opacity: 0.66;
  }
  to {
    opacity: 0;
    transform: translateX(115%);
  }
}

.primary-button:disabled,
.secondary-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.summary {
  position: sticky;
  top: 74px;
  overflow: hidden;
  font-size: 0.88rem;
}

.summary__top {
  padding: 10px 12px 8px;
}

.summary .eyebrow {
  min-height: 24px;
  padding: 0 9px;
  font-size: 0.66rem;
}

.summary__top h2 {
  margin-top: 6px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.summary__media img {
  width: 100%;
  height: 84px;
  object-fit: cover;
}

.summary-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.summary-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 7px;
  padding: 6px 12px;
  border-bottom: 1px solid var(--line);
}

.summary-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.summary-list dd {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.summary-list dd span {
  display: block;
}

.estimate-box {
  margin: 8px 12px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 33, 13, 0.14);
  background: #fffdf8;
  color: var(--green-deep);
}

.estimate-box__header,
.estimate-line,
.estimate-total {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.estimate-box__header {
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(16, 33, 13, 0.2);
}

.estimate-box__header span {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.estimate-box__header small {
  border-radius: 999px;
  padding: 2px 7px;
  color: var(--green);
  background: rgba(41, 98, 22, 0.08);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.estimate-breakdown {
  display: grid;
  gap: 3px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(16, 33, 13, 0.2);
}

.estimate-line span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.18;
}

.estimate-line strong {
  color: var(--green-deep);
  font-size: 0.74rem;
  white-space: nowrap;
}

.estimate-line--empty span,
.estimate-line--empty strong {
  color: var(--muted);
}

.estimate-total {
  padding-top: 6px;
}

.estimate-total span {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.estimate-total strong {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 1.28rem;
}

.estimate-box p {
  display: none;
}

.summary__terms {
  padding: 0 12px 10px;
  text-align: center;
}

.summary__terms strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green-deep);
  font-size: 0.76rem;
}

.summary__terms ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.16;
  list-style-position: inside;
}

@media (max-width: 1040px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

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

  .summary {
    position: static;
  }

  .summary__media img {
    height: 220px;
  }
}

@media (max-width: 820px) {
  .topbar {
    gap: 8px 12px;
    justify-content: flex-start;
  }

  .topbar__contact {
    justify-content: flex-start;
  }

  .stepper {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .stepper__item {
    min-width: 118px;
  }

  .category-grid,
  .package-grid,
  .service-card-grid--addons,
  .single-service-grid,
  .form-grid,
  .hospitality-contact__grid,
  .review-grid,
  .manual-address {
    grid-template-columns: 1fr;
  }

  .service-card-grid--addons .service-control-card,
  .service-card-grid--addons .service-control-card--quantity {
    grid-column: auto;
  }

  .field--wide,
  .manual-address {
    grid-column: auto;
  }

  .booking-layout[data-category="commercial"] .address-form-grid,
  .booking-layout[data-category="commercial"] .manual-address {
    grid-template-columns: 1fr;
  }

  .wizard__header {
    display: grid;
  }

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

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

  .schedule-request {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .booking-app {
    width: min(calc(100% - 18px), var(--max));
    padding-top: 10px;
  }

  .intro {
    min-height: 250px;
  }

  .intro__content,
  .wizard-step,
  .wizard__header {
    padding: 18px;
  }

  .category-card {
    min-height: 0;
    border-radius: 20px;
  }

  .schedule-request__intro {
    text-align: left;
  }

  .hospitality-contact__form-card,
  .hospitality-contact__panel,
  .hospitality-contact-page .site-footer__form-card,
  .hospitality-contact-page .site-footer__panel {
    border-radius: 22px;
    padding: 22px;
  }

  .hospitality-contact__form-grid,
  .hospitality-contact__info,
  .hospitality-contact-page .site-footer__form-grid {
    grid-template-columns: 1fr;
  }

  .hospitality-contact__form-card h2,
  .hospitality-contact-page .site-footer__form-card h2 {
    max-width: 11ch;
  }

  .wizard-actions {
    padding: 16px 18px 18px;
  }

  .wizard-actions .primary-button,
  .wizard-actions .secondary-button {
    width: 100%;
  }
}
