:root {
  --ink: #20211f;
  --muted: #696f69;
  --paper: #f5f5f2;
  --surface: #ffffff;
  --line: #d8dad5;
  --green: #1f5c4c;
  --green-2: #d7e8df;
  --red: #a33a2f;
  --gold: #c39245;
  --shadow: 0 18px 50px rgba(31, 33, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f5f2;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 237, 0.94);
  border-bottom: 1px solid rgba(32, 33, 31, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 700;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  color: #3d423d;
  font-size: 15px;
}

.nav a {
  padding: 10px 0;
}

.top-actions,
.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ghost-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
}

.primary-button {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(31, 92, 76, 0.22);
}

.secondary-button {
  color: var(--green);
  background: #fff;
  border-color: rgba(31, 92, 76, 0.24);
}

.ghost-button {
  color: var(--ink);
  background: transparent;
  border-color: rgba(32, 33, 31, 0.18);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  min-height: min(760px, calc(100svh - 104px));
  padding: clamp(44px, 8vw, 92px) clamp(18px, 6vw, 72px);
  overflow: hidden;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 17, 16, 0.78), rgba(15, 17, 16, 0.42) 48%, rgba(15, 17, 16, 0.25)),
    url("/assets/hero-hutong-bungalow.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content,
.quick-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 38px;
}

.hero-seal {
  display: block;
  width: clamp(84px, 10vw, 124px);
  height: clamp(84px, 10vw, 124px);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
}

.quick-panel,
.text-panel,
.booking-form,
.schedule-panel,
.contact-item,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quick-panel {
  padding: 22px;
  color: var(--ink);
  align-self: center;
  background: rgba(255, 255, 255, 0.94);
}

.quick-panel h2,
.schedule-panel h3 {
  margin: 0;
  font-size: 20px;
}

.contact-item small {
  display: block;
  color: var(--muted);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-grid,
.booking-layout,
.contact-grid {
  display: grid;
  gap: 20px;
}

.about-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.text-panel,
.booking-form,
.schedule-panel,
.map-panel {
  padding: 24px;
}

.fact-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.fact-list div {
  display: grid;
  gap: 4px;
}

.fact-list dt {
  color: var(--green);
  font-weight: 800;
}

.fact-list dd {
  margin: 0;
  color: var(--muted);
}

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

.service-catalog-heading {
  margin-bottom: 16px;
}

.service-catalog-heading h3 {
  margin: 4px 0 0;
  font-size: 26px;
}

.service-card {
  min-height: 278px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.service-card > p {
  min-height: 48px;
}

.service-prices {
  display: grid;
  gap: 8px;
  margin: 18px 0 14px;
  border-top: 1px solid var(--line);
}

.service-prices > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
}

.service-prices span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.service-prices strong {
  color: var(--red);
  font-size: 23px;
  letter-spacing: 0;
}

.service-meta {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 5px 10px;
  color: var(--green);
  background: var(--green-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.booking-section {
  background: #eef2ed;
}

.booking-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.booking-mode-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: min(100%, 360px);
  margin-bottom: 22px;
  padding: 4px;
  border: 1px solid rgba(31, 92, 76, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.booking-mode-switch button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--muted);
  border-radius: calc(var(--radius) - 2px);
  font-weight: 800;
}

.booking-mode-switch button.active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 6px 16px rgba(31, 92, 76, 0.2);
}

.availability-state {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  background: var(--green-2);
  color: var(--green);
  font-size: 14px;
}

.availability-state strong,
.availability-state small {
  display: block;
}

.availability-state small {
  margin-top: 2px;
  color: var(--muted);
}

.availability-state.empty {
  color: #7b551f;
  border-color: var(--gold);
  background: #fff7e7;
}

.availability-state.error {
  color: var(--red);
  border-color: var(--red);
  background: #fff1ef;
}

.status-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: currentColor;
}

.slot-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.slot-fieldset legend {
  margin-bottom: 8px;
  color: #3c403b;
  font-weight: 700;
}

.slot-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.slot-option {
  position: relative;
  display: block;
  min-width: 0;
}

.slot-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.slot-option span {
  display: grid;
  min-height: 54px;
  padding: 9px 10px;
  place-content: center;
  text-align: center;
  border: 1px solid #cfc8ba;
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.slot-option strong {
  font-size: 17px;
}

.slot-option small {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 10px;
}

.slot-option input:checked + span {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 6px 16px rgba(31, 92, 76, 0.2);
}

.slot-option input:checked + span small {
  color: rgba(255, 255, 255, 0.82);
}

.slot-option input:focus-visible + span {
  outline: 3px solid rgba(192, 141, 62, 0.34);
  outline-offset: 2px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #3c403b;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #cfc8ba;
  border-radius: var(--radius);
  background: #fff;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.consent-field {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--green);
}

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

.text-button {
  min-height: 38px;
  padding: 8px 4px;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.primary-button:disabled,
.secondary-button:disabled {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.55;
}

.waitlist-panel {
  margin-top: 4px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
}

.waitlist-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1.25fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.waitlist-heading h3,
.waitlist-heading p {
  margin-top: 0;
}

.waitlist-heading h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.waitlist-heading > p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.form-message.error {
  color: var(--red);
}

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

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 20px;
}

.contact-button {
  color: inherit;
  text-align: left;
}

.contact-button em {
  display: block;
  margin-top: 2px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: 24px;
  align-items: center;
  box-shadow: none;
}

.map-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.map-facts {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.map-facts div {
  display: grid;
  gap: 3px;
}

.map-facts dt {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.map-facts dd {
  margin: 0;
  font-weight: 700;
}

.map-figure {
  margin: 0;
}

.map-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 576 / 430;
  border: 1px solid rgba(32, 33, 31, 0.14);
  border-radius: var(--radius);
  object-fit: cover;
}

.map-figure figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.contact-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: -8px 0 0;
  color: var(--green);
  font-weight: 700;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 28px 18px;
  color: var(--muted);
  background: #20211f;
}

.footer a {
  color: #fff;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .top-actions {
    grid-column: 2;
    grid-row: 1;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 0;
  }

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

}

@media (max-width: 560px) {
  .topbar {
    gap: 10px;
    min-height: 64px;
    padding: 10px 14px;
  }

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

  .top-actions {
    gap: 6px;
  }

  .ghost-button,
  .primary-button,
  .secondary-button {
    min-height: 38px;
    padding: 8px 12px;
  }

  .hero {
    padding: 42px 16px;
  }

  .section {
    padding: 48px 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Polished launch theme */
:root {
  --ink: #1e211d;
  --muted: #667066;
  --paper: #f5f5f2;
  --paper-2: #e8ebe7;
  --line: #d8dad5;
  --green: #185543;
  --green-2: #d9eadf;
  --red: #9a3a30;
  --gold: #c08d3e;
  --copper: #7c4d33;
  --soft-shadow: 0 10px 30px rgba(31, 33, 31, 0.09);
}

body {
  background: var(--paper);
}

.topbar {
  background: rgba(250, 250, 248, 0.96);
}

.brand-mark {
  background: #fff;
  border: 1px solid rgba(32, 33, 31, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 20px rgba(154, 58, 48, 0.28);
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.ghost-button,
.primary-button,
.secondary-button {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-button {
  background: linear-gradient(135deg, #1f6a53, var(--green));
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover {
  box-shadow: 0 14px 30px rgba(31, 92, 76, 0.28);
}

.secondary-button:hover,
.ghost-button:hover {
  border-color: rgba(31, 92, 76, 0.38);
  box-shadow: var(--soft-shadow);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.ghost-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(192, 141, 62, 0.34);
  outline-offset: 2px;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(13, 16, 14, 0.82), rgba(13, 16, 14, 0.5) 47%, rgba(13, 16, 14, 0.28)),
    url("/assets/hero-hutong-bungalow.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(244, 239, 230, 0.95));
  pointer-events: none;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin: 0 0 28px;
}

.hero-details span {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-details strong {
  font-size: 15px;
}

.hero-details small {
  color: rgba(255, 255, 255, 0.72);
}

.quick-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.58);
}

.panel-kicker {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.text-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 244, 0.96));
}

.text-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--red), var(--gold));
}

.service-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.98));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(192, 141, 62, 0.15);
  content: attr(data-mark);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
}

.service-card:hover {
  box-shadow: 0 18px 42px rgba(31, 33, 31, 0.13);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #2d735d);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(31, 92, 76, 0.2);
}

.booking-section {
  background: linear-gradient(180deg, #eef3ee, #e8eee7);
}

.booking-layout {
  align-items: start;
}

input,
select,
textarea {
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #bba982;
}

.form-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 4px;
}

.form-head h3,
.form-head p {
  margin: 0;
}

.form-head p {
  color: var(--muted);
  font-size: 13px;
}

.form-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--copper));
  border-radius: 50%;
  font-weight: 900;
}

.contact-item {
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(31, 33, 31, 0.13);
}

.map-panel {
  background: linear-gradient(90deg, rgba(217, 234, 223, 0.72), rgba(255, 255, 255, 0.95));
}

.footer {
  background: linear-gradient(90deg, #1e211d, #27302a);
}

.language-button {
  width: 52px;
  padding-inline: 8px;
}

.booking-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.booking-steps li:last-child {
  border-bottom: 0;
}

.booking-steps > li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 800;
}

.booking-steps strong,
.booking-steps small {
  display: block;
}

.booking-steps small {
  margin-top: 2px;
  color: var(--muted);
}

.quick-call {
  margin-top: 2px;
}

#about,
#services,
#booking,
#contact {
  scroll-margin-top: 116px;
}

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

.booking-guide {
  display: grid;
  gap: 18px;
}

.booking-guide > h3 {
  font-size: 26px;
  line-height: 1.25;
}

.booking-guide-list {
  display: grid;
  gap: 2px;
}

.booking-guide-list > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.booking-guide-list > div > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.booking-guide-list p,
.booking-guide-list strong,
.booking-guide-list small {
  display: block;
  margin: 0;
}

.booking-guide-list small {
  margin-top: 3px;
  color: var(--muted);
}

.callout-number {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
}

.callout-number small {
  color: rgba(255, 255, 255, 0.72);
}

.callout-number strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    padding-bottom: 64px;
  }

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

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

  .three-fields,
  .waitlist-heading {
    grid-template-columns: 1fr;
  }

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

  .map-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .hero-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-details span {
    padding: 10px 8px;
  }

  .hero-details strong {
    font-size: 13px;
  }

  .hero-details small {
    font-size: 10px;
  }

  .quick-panel {
    display: none;
  }

  .booking-mode-switch {
    width: 100%;
  }

  .waitlist-panel {
    padding: 20px 16px;
  }

  .form-actions {
    display: grid;
    gap: 8px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .mobile-call {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 52px;
    padding: 8px 14px;
    color: #fff;
    background: var(--green);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(20, 32, 26, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-call.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-call > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--green);
    background: #fff;
    border-radius: 50%;
    font-weight: 900;
  }
}
