:root {
  --bg: #f6f0ea;
  --paper: #fcf7f1;
  --paper-strong: #fffaf5;
  --ink: #171312;
  --ink-soft: #2a2321;
  --charcoal: #141112;
  --charcoal-2: #1d1718;
  --blush: #d2a9ab;
  --blush-soft: #ecd7d3;
  --sand: #d7c3b1;
  --line: rgba(36, 27, 24, 0.10);
  --line-dark: rgba(255, 244, 236, 0.12);
  --text: #5e5048;
  --text-light: rgba(255, 245, 236, 0.72);
  --shadow: 0 24px 80px rgba(18, 14, 13, 0.10);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.32);
  --max: 1240px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.65), transparent 18%),
    linear-gradient(180deg, #1a1516 0 980px, #f6f0ea 980px 100%);
}

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

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

p,
li {
  color: var(--text);
  line-height: 1.72;
}

h1,
h2,
h3,
strong {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  width: min(calc(100% - 32px), var(--max));
  min-height: calc(100vh - 36px);
  margin: 18px auto 0;
  padding: 22px 22px 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 16% 22%, rgba(210,169,171,0.18), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(210,169,171,0.12), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(145deg, #171213, #21191b 68%, #261e1f);
  color: #fff6f0;
  box-shadow: var(--shadow-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  top: -90px;
  right: -120px;
  background: rgba(210,169,171,0.12);
}

.hero::after {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -60px;
  background: rgba(236,215,211,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

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

.brand__seal {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5dfdf;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.brand__seal-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  line-height: 1;
}

.brand__wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: #181311;
}

.brand__subline,
.brand__city {
  color: #181311;
  font-size: 10px;
}

.brand__subline {
  margin-top: 4px;
}

.brand__city {
  margin-top: 5px;
}

.brand__seal--footer {
  width: 110px;
  height: 110px;
}

.brand__seal--footer .brand__wordmark {
  font-size: 30px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__links a {
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,245,236,0.82);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav__links a:hover {
  color: #fff7f1;
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.nav__cta {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.nav__toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav__toggle span {
  width: 18px;
  height: 1.5px;
  background: #fff4ec;
}

.nav__toggle.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav__toggle.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy {
  padding: 8px 4px 8px 6px;
}

.hero__kicker {
  margin: 0 0 18px;
  color: var(--blush-soft);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__copy h1 {
  max-width: 780px;
  font-size: clamp(60px, 8vw, 108px);
  line-height: 0.88;
  color: #fff7f1;
  margin-bottom: 18px;
}

.hero__headline-soft {
  color: rgba(255,245,236,0.82);
  font-style: italic;
}

.hero__lede {
  max-width: 580px;
  color: rgba(255,245,236,0.76);
  font-size: 18px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: var(--blush);
  color: #1a1313;
}

.btn--outline {
  border-color: rgba(255,255,255,0.18);
  color: #fff5ee;
  background: rgba(255,255,255,0.05);
}

.btn--ghost {
  color: var(--blush-soft);
  background: transparent;
  border-color: transparent;
}

.btn--outline-dark {
  border-color: rgba(36,27,24,0.12);
  color: var(--ink);
  background: rgba(255,255,255,0.56);
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__notes span,
.feature-band__items span,
.feature-band__footnote span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.hero__notes span {
  color: #f7e2dd;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.hero__numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-bottom: 18px;
}

.hero-stat {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}

.hero-stat--link {
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-stat--link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.hero-stat strong {
  display: block;
  color: #fff4ec;
  font-size: 18px;
  margin-bottom: 4px;
}

.hero-stat span {
  color: rgba(255,245,236,0.66);
  font-size: 13px;
}

.hero__signature {
  color: rgba(255,245,236,0.44);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__panel {
  display: block;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-visual__frame,
.hero-visual__card,
.hero-visual__contact {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.hero-visual__frame {
  background: #2b2322;
  border: 1px solid rgba(255,255,255,0.10);
}

.hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual__frame--large {
  top: 0;
  right: 0;
  width: 80%;
  height: 500px;
}

.hero-visual__frame--small {
  top: 286px;
  left: 0;
  width: 42%;
  height: 228px;
  z-index: 2;
}

.hero-visual__card {
  right: 22px;
  bottom: 84px;
  width: 72%;
  padding: 28px;
  background: rgba(255, 248, 242, 0.94);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--ink);
}

.hero-visual__card--link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-visual__card--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  background: rgba(255, 248, 242, 0.98);
}

.hero-visual__card h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.96;
  margin-bottom: 10px;
}

.hero-visual__contact {
  left: 18px;
  bottom: 0;
  width: 46%;
  padding: 18px 20px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.hero-visual__contact span {
  display: block;
  color: rgba(255,245,236,0.68);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.panel__label {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #96735f;
  font-weight: 700;
}

.contact-link {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff5ee;
}

.hero-visual__card .contact-link,
.hero-visual__card strong,
.hero-visual__card p,
.hero-visual__card span {
  color: var(--ink);
}

.panel__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(23,19,18,0.20), rgba(23,19,18,0.06));
  margin: 16px 0;
}

.panel__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.panel__detail span {
  color: #726158;
  font-size: 13px;
}

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

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 108px 0 0;
  position: relative;
  z-index: 1;
}

.trust-strip {
  margin-top: -18px;
  padding-top: 0;
}

.trust-strip__grid,
.booking-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-pill,
.flow-card {
  background: rgba(255,250,245,0.78);
  border: 1px solid rgba(36,27,24,0.08);
  box-shadow: var(--shadow);
}

.trust-pill {
  padding: 24px 24px 22px;
  border-radius: 28px;
}

.trust-pill__label,
.flow-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(210,169,171,0.16);
  color: #906f66;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trust-pill strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1.12;
  color: var(--ink);
}

.section__heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section__heading h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.96;
  color: var(--ink);
}

.section__heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 28px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #a57e73;
  font-weight: 700;
}

.section__aside {
  margin: 0;
}

.intro__grid,
.services__list,
.pricing__grid,
.details__grid,
.contact__actions {
  display: grid;
  gap: 18px;
}

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

.intro-card,
.service-card,
.price-card,
.promo-card,
.detail-card,
.contact__box,
.gallery-card {
  background: rgba(255,250,245,0.74);
  border: 1px solid rgba(36,27,24,0.08);
  box-shadow: var(--shadow);
}

.intro-card,
.service-card,
.price-card,
.detail-card {
  padding: 28px;
  border-radius: 28px;
}

.intro-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.16)),
    rgba(255,250,245,0.74);
}

.intro-card__index,
.service-card__meta {
  display: inline-block;
  margin-bottom: 18px;
  color: #9b766d;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.intro-card h3,
.service-card h3,
.price-card__head h3,
.promo-card h3,
.detail-card h2,
.contact__copy h2 {
  font-size: 34px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}

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

.booking-flow {
  padding-top: 92px;
}

.flow-card {
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.18)),
    rgba(255,250,245,0.78);
}

.flow-card h3 {
  margin: 16px 0 10px;
  font-size: 34px;
  line-height: 1;
  color: var(--ink);
}

.booking-flow__cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.price-card,
.promo-card {
  border-radius: 30px;
}

.price-card__head {
  margin-bottom: 16px;
}

.price-list {
  display: grid;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36,27,24,0.08);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  max-width: 72%;
}

.price-row strong {
  flex-shrink: 0;
}

.price-note {
  margin: 14px 0 0;
  font-size: 14px;
}

.promo-card {
  margin-top: 18px;
  padding: 30px;
  display: grid;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(210,169,171,0.18), rgba(255,250,245,0.90)),
    rgba(255,250,245,0.80);
}

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

.promo-card__prices div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(36,27,24,0.08);
}

.promo-card__prices span {
  display: block;
  margin-bottom: 8px;
  color: #816d62;
}

.promo-card__prices strong {
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
}

.promo-card__text {
  margin: 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  grid-column: span 4;
  border-radius: 28px;
  overflow: hidden;
}

.gallery-card--tall {
  grid-column: span 5;
}

.gallery-card--wide {
  grid-column: span 7;
}

.gallery-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.gallery-card--tall img,
.gallery-card--wide img {
  height: 540px;
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
}

.feature-band__content {
  padding: 34px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 26px;
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(210,169,171,0.16), transparent 26%),
    linear-gradient(145deg, #171213, #241c1d 72%, #2a2020);
  box-shadow: var(--shadow-dark);
}

.feature-band__content h2,
.feature-band__content p {
  color: #fff4ed;
}

.feature-band__text {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(255,245,236,0.72) !important;
}

.feature-band__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-band__items span {
  color: #f5ddd6;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.feature-band__media {
  margin: 0;
  max-width: 260px;
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.feature-band__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.feature-band__media figcaption {
  padding: 12px 14px 14px;
  color: rgba(255,245,236,0.76);
  font-size: 13px;
}

.feature-band__footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.feature-band__footnote span {
  color: #68564e;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(36,27,24,0.08);
}

.local-seo__grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.local-seo__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.local-seo__card,
.faq-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,250,245,0.74);
  border: 1px solid rgba(36,27,24,0.08);
  box-shadow: var(--shadow);
}

.local-seo__card h3,
.faq-card h3 {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 0.98;
  color: var(--ink);
}

.local-seo__list {
  margin: 0;
  padding-left: 20px;
}

.local-seo__list li {
  margin-bottom: 10px;
}

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

.details__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #8d6b60;
  font-weight: 700;
}

.hours {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(36,27,24,0.08);
}

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

.contact__box {
  padding: 34px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 24px;
}

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

.contact__quick-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact__quick-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(36,27,24,0.08);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.contact-tile {
  min-height: 144px;
  padding: 22px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(36,27,24,0.08);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-tile:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.80);
}

.contact-tile__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9c7a70;
  font-weight: 700;
}

.contact-tile strong {
  font-size: 22px;
  color: var(--ink);
}

.contact-tile--map {
  background:
    linear-gradient(135deg, rgba(210,169,171,0.18), rgba(255,255,255,0.82)),
    rgba(255,255,255,0.72);
}

.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 96px auto 24px;
  padding: 24px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(36,27,24,0.10);
}

.footer__brandmark {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer p {
  margin: 4px 0 0;
}

.mobile-booking-bar {
  display: none;
}

@media (min-width: 1280px) {
  .hero {
    padding: 28px 28px 42px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 46px;
  }

  .hero__copy {
    padding-top: 18px;
  }

  .hero__copy h1 {
    max-width: 660px;
    font-size: clamp(56px, 6.1vw, 92px);
    line-height: 0.94;
    margin-bottom: 24px;
  }

  .hero__lede {
    max-width: 560px;
  }

  .hero__numbers {
    max-width: 660px;
  }

  .hero-visual {
    min-height: 690px;
  }

  .hero-visual__frame--large {
    width: 78%;
    height: 470px;
  }

  .hero-visual__frame--small {
    display: none;
  }

  .hero-visual__card {
    right: 16px;
    bottom: 58px;
    width: 78%;
    padding: 24px;
  }

  .hero-visual__contact {
    left: 24px;
    width: 52%;
  }
}

@media (max-width: 1100px) {
  .hero__layout,
  .section__heading--split,
  .trust-strip__grid,
  .booking-flow__grid,
  .pricing__grid,
  .feature-band__content,
  .local-seo__grid,
  .faq-grid,
  .details__grid,
  .contact__box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 640px;
    margin-top: 18px;
  }

  .hero-visual__frame--large {
    width: 72%;
  }

  .hero-visual__card {
    width: 70%;
  }

  .hero-visual__contact {
    width: 52%;
  }

  .hero__numbers,
  .intro__grid,
  .services__list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

  .gallery-card,
  .gallery-card--tall,
  .gallery-card--wide {
    grid-column: auto;
  }

  .gallery-card img,
  .gallery-card--tall img,
  .gallery-card--wide img {
    height: 360px;
  }

  .promo-card__prices {
    grid-template-columns: 1fr;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(28,22,23,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-dark);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    text-align: center;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 92px;
  }

  .hero {
    width: min(calc(100% - 20px), var(--max));
    min-height: auto;
    padding: 14px 14px 24px;
    border-radius: 28px;
  }

  .section,
  .footer {
    width: min(calc(100% - 20px), var(--max));
  }

  .section {
    padding-top: 72px;
  }

  .trust-strip {
    margin-top: -8px;
  }

  .nav {
    margin-bottom: 28px;
  }

  .brand__seal {
    width: 100px;
    height: 100px;
  }

  .brand__wordmark {
    font-size: 28px;
  }

  .brand__subline,
  .brand__city {
    font-size: 9px;
  }

  .hero__copy h1 {
    font-size: 48px;
  }

  .hero__headline-soft {
    display: block;
    margin-top: 4px;
  }

  .hero__kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }

  .hero__lede {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero__notes {
    margin-bottom: 18px;
  }

  .hero__notes span {
    width: 100%;
    justify-content: center;
  }

  .hero__numbers {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero-stat {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .hero__signature {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero__actions,
  .booking-flow__cta,
  .contact__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-visual__frame,
  .hero-visual__card,
  .hero-visual__contact {
    position: static;
    width: auto;
  }

  .hero-visual__frame--large,
  .hero-visual__frame--small {
    height: auto;
  }

  .hero-visual__frame--large img {
    aspect-ratio: 4 / 5;
  }

  .hero-visual__frame--small img {
    aspect-ratio: 4 / 3;
  }

  .hero-visual__frame--small {
    display: none;
  }

  .hero-visual__card {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-visual__card h2 {
    font-size: 34px;
  }

  .hero-visual__contact {
    padding: 16px 18px;
    border-radius: 20px;
  }

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

  .gallery-card img,
  .gallery-card--tall img,
  .gallery-card--wide img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .feature-band__media {
    max-width: none;
    justify-self: stretch;
  }

  .feature-band__media img {
    height: 220px;
  }

  .trust-pill,
  .flow-card {
    padding: 20px;
    border-radius: 22px;
  }

  .contact__quick-notes span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-strip__grid,
  .booking-flow__grid {
    gap: 14px;
  }

  .intro-card,
  .service-card,
  .price-card,
  .promo-card,
  .detail-card,
  .contact__box,
  .feature-band__content {
    padding: 22px;
  }

  .flow-card h3,
  .trust-pill strong,
  .intro-card h3,
  .service-card h3,
  .price-card__head h3,
  .promo-card h3,
  .detail-card h2,
  .contact__copy h2 {
    font-size: 30px;
  }

  .price-row {
    flex-direction: column;
    gap: 6px;
  }

  .price-row span {
    max-width: none;
  }

  .footer,
  .footer__brandmark {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-booking-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(23, 18, 19, 0.94);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
  }

  .mobile-booking-bar__item {
    min-height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background: rgba(255,255,255,0.06);
    color: #fff5ee;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .mobile-booking-bar__item:first-child {
    background: var(--blush);
    color: #1a1313;
  }
}
