@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --site-header-height: 64px;
  --bg: #fffaf6;
  --surface: #ffffff;
  --surface-soft: #f7f2fb;
  --mint: #edf8f4;
  --cream: #fff8dc;
  --ink: #18151a;
  --muted: #6f6b75;
  --faint: #8b8792;
  --line: #e6e0ea;
  --primary: #ad2364;
  --primary-2: #ff5a93;
  --primary-dark: #68133f;
  --teal: #0f766e;
  --olive: #8b9254;
  --amber: #f0a300;
  --purple: #3f2364;
  --shadow-sm: 0 8px 24px rgba(35, 24, 45, 0.08);
  --shadow-md: 0 18px 45px rgba(35, 24, 45, 0.12);
  --shadow-lg: 0 28px 70px rgba(35, 24, 45, 0.16);
  --radius: 8px;
  --container: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 90, 147, 0.08), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(15, 118, 110, 0.08), transparent 28rem),
    var(--bg);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

body.modal-open,
body.filters-open,
body.map-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  object-fit: cover;
}

[class*="js-icon-"] svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--primary);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: visible;
}

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

.narrow {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(230, 224, 234, 0.7);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  width: min(1280px, calc(100% - 36px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  white-space: nowrap;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.brand span {
  letter-spacing: 0;
}

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

.nav-menu {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px;
}

.nav-indicator {
  position: absolute;
  z-index: 0;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 0;
  border-radius: 999px;
  background: #f3edf5;
  opacity: 0;
  transition:
    transform 280ms var(--ease),
    width 280ms var(--ease),
    opacity 180ms ease;
}

.nav-link,
.more-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  color: #28242c;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.more-toggle:hover,
.more-toggle[aria-expanded="true"] {
  color: var(--primary);
}

.more-wrap {
  position: relative;
}

.more-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 224px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.more-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.more-menu a {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
}

.more-menu a:hover {
  color: var(--primary);
  background: #fff1f6;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 80;
  display: grid;
  gap: 4px;
  max-height: calc(100dvh - var(--site-header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 20px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-125%);
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease);
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel a {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 13px 12px;
  font-weight: 800;
}

.mobile-panel a:hover {
  background: #fff1f6;
  color: var(--primary);
}

.mobile-more {
  display: grid;
  gap: 2px;
}

.mobile-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  padding: 13px 12px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.mobile-more summary::-webkit-details-marker {
  display: none;
}

.mobile-more summary:hover {
  color: var(--primary);
  background: #fff1f6;
}

.mobile-more[open] summary svg {
  transform: rotate(180deg);
}

.mobile-more a {
  margin-left: 10px;
  padding-block: 10px;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  color: var(--surface);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.button-primary:hover {
  color: var(--surface);
}

.button-secondary {
  border-color: rgba(139, 146, 84, 0.5);
  color: var(--olive);
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
  border-color: var(--olive);
  color: #6b713e;
}

.button-dark {
  color: var(--surface);
  background: var(--primary-dark);
}

.button-ghost {
  border-color: var(--line);
  color: var(--primary);
  background: var(--surface);
}

.button-small {
  min-height: 38px;
  padding: 10px 15px;
  font-size: 13px;
}

.button-wide {
  width: 100%;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-hand .hand-icon {
  transform-origin: 65% 65%;
  transition: transform 160ms ease;
}

/* .button-hand::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  opacity: 0;
  transform: translate(10px, -50%) scale(0.6);
} */

.button-hand:hover .hand-icon {
  animation: fingerTap 860ms ease-in-out infinite;
}

.button-hand:hover::after {
  animation: tapPulse 860ms ease-in-out infinite;
}

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

.display,
h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: clamp(24px, 2.6vw, 32px);
}

p {
  margin: 0;
}

.lead {
  color: #4f4b55;
  font-size: clamp(17px, 2vw, 21px);
}

.muted {
  color: var(--muted);
}

.mt-10 {
  margin-top: 10px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.centered-actions {
  justify-content: center;
}

.breadcrumb-muted {
  color: var(--muted);
}

.article-cover {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  margin-top: 28px;
}

.map-large {
  min-height: 220px;
  margin-top: 24px;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--mint), rgba(237, 248, 244, 0.58));
}

.section-cream {
  background: linear-gradient(180deg, var(--cream), rgba(255, 248, 220, 0.44));
}

.section-blush {
  background: linear-gradient(180deg, #fff3f8, rgba(255, 243, 248, 0.25));
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head .lead {
  margin-top: 14px;
}

.section-head.row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.section-head.row > p {
  max-width: 460px;
}

.title-rule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.title-rule::before,
.title-rule::after {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 146, 84, 0.65));
}

.title-rule::after {
  background: linear-gradient(90deg, rgba(139, 146, 84, 0.65), transparent);
}

.hero-home {
  position: relative;
  z-index: 20;
  min-height: min(780px, calc(100vh - 64px));
  display: grid;
  align-items: center;
  padding: 64px 0 46px;
  overflow: visible;
  background: url(../img/hero-bg.png) center top / cover no-repeat;
  /* background:
    radial-gradient(circle at 75% 16%, rgba(255, 90, 147, 0.08), transparent 28rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    url("../img/hero-bg.png") center top / cover no-repeat,
    #fff; */
}

.hero-home::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -8% -1px -8%;
  height: 84px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: rgba(255, 250, 246, 0.94);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 56px;
}

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

.hero-home .reveal {
  opacity: 1;
  transform: none;
}

.hero-copy h1 span {
  color: var(--olive);
}

.hero-copy .lead {
  max-width: 680px;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.chip,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.filter-chip {
  border: 0;
  color: var(--muted);
  background: #f5f3f5;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: var(--primary);
  background: #ffeaf2;
}

.hero-collage {
  position: relative;
  min-height: 560px;
}

.collage-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.collage-img img {
  width: 100%;
  height: 100%;
}

.collage-main {
  inset: 0 16% 0 10%;
}

.collage-side {
  top: 12%;
  right: 0;
  width: 32%;
  height: 45%;
}

.collage-round {
  left: 0;
  bottom: 8%;
  width: 35%;
  height: 35%;
  border-radius: 999px;
}

.collage-badge {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 170px;
  border-radius: var(--radius);
  padding: 16px;
  color: var(--surface);
  background: rgba(104, 19, 63, 0.92);
  box-shadow: var(--shadow-md);
}

.search-panel {
  width: min(980px, calc(100% - 32px));
  margin: -28px auto 0;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr auto;
  gap: 10px;
  border: 1px solid rgba(230, 224, 234, 0.88);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.search-panel-compact {
  width: min(980px, calc(100% - 32px));
  grid-template-columns: 1fr 1.15fr 0.72fr auto;
}

.hero-search-panel {
  position: relative;
  z-index: 40;
  margin-top: 26px;
  margin-bottom: 0;
}

.search-panel .button {
  align-self: end;
  min-height: 48px;
  padding-inline: 22px;
}

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

.field label,
.form-field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.field-control,
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.field-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.field {
  position: relative;
}

.date-range-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 260;
  width: min(330px, calc(100vw - 40px));
  display: none;
  border: 1px solid rgba(173, 35, 100, 0.16);
  border-radius: 14px;
  padding: 14px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-lg);
}

.date-range-popover.is-open {
  display: block;
}

body.date-picker-open .hero-home {
  z-index: 300;
}

body.date-picker-open .hero-search-panel {
  z-index: 320;
}

.date-range-head,
.date-range-week,
.date-range-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.date-range-head {
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--ink);
  text-align: center;
}

.date-range-head strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.date-nav {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--primary);
  background: transparent;
  font-size: 22px;
}

.date-nav:hover {
  background: #fff1f6;
}

.date-range-week {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.date-range-grid {
  gap: 2px;
}

.date-range-grid button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.date-range-grid button:hover,
.date-range-grid button.is-in-range {
  color: var(--primary-dark);
  background: #ffeaf2;
}

.date-range-grid button.is-start,
.date-range-grid button.is-end {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 18px rgba(173, 35, 100, 0.18);
}

.date-range-grid button.is-start {
  border-radius: 999px 0 0 999px;
}

.date-range-grid button.is-end {
  border-radius: 0 999px 999px 0;
}

.date-range-grid button.is-outside {
  color: #b5afb9;
}

input:focus,
select:focus,
textarea:focus,
.field-control:focus,
.field-control:hover {
  border-color: rgba(255, 90, 147, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 90, 147, 0.11);
}

.field-control svg,
.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(230, 224, 234, 0.65);
  border-top: 1px solid rgba(230, 224, 234, 0.7);
  border-bottom: 1px solid rgba(230, 224, 234, 0.7);
}

.stats-strip-animated {
  position: relative;
  overflow: hidden;
}

.stats-strip-animated::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: translateX(-100%);
  animation: statSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.stat {
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.stats-strip-animated .stat {
  transform: translateY(8px);
  animation: statRise 700ms var(--ease) forwards;
}

.stats-strip-animated .stat:nth-child(2) {
  animation-delay: 70ms;
}

.stats-strip-animated .stat:nth-child(3) {
  animation-delay: 140ms;
}

.stats-strip-animated .stat:nth-child(4) {
  animation-delay: 210ms;
}

.stat strong {
  display: block;
  color: #42404a;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  font-weight: 600;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--olive);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 40px);
}

.about-split,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.blob-frame {
  position: relative;
  aspect-ratio: 1 / 0.86;
  border-radius: 42% 58% 54% 46% / 48% 36% 64% 52%;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(139, 146, 84, 0.18), 0 0 0 18px rgba(255, 214, 120, 0.2);
}

.blob-frame img {
  width: 100%;
  height: 100%;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.metric {
  display: flex;
  gap: 12px;
  align-items: center;
}

.metric svg {
  width: 34px;
  height: 34px;
  color: var(--olive);
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  min-height: 260px;
  height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.gallery-grid .tall {
  grid-row: span 2;
}

.feature-grid,
.benefit-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature,
.benefit,
.testimonial,
.blog-card,
.venue-card,
.area-card,
.highlight-card,
.form-panel,
.faq-item,
.contact-card,
.price-step,
.terms-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature,
.benefit,
.testimonial,
.contact-card,
.price-step,
.terms-card {
  padding: 26px;
}

.feature-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
}

.feature {
  text-align: center;
}

.feature h3,
.benefit h3,
.testimonial h3 {
  font-family: Manrope, sans-serif;
  font-size: 21px;
  line-height: 1.25;
}

.feature p,
.benefit p,
.testimonial p {
  margin-top: 10px;
  color: var(--muted);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-person img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.steps-band {
  position: relative;
  min-height: 300vh;
  overflow: clip;
  background: linear-gradient(180deg, #fffdf0, #fff9cf);
}

.pinned-steps-inner {
  position: sticky;
  top: 64px;
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  padding: 54px 0;
}

.stepper-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 64px;
}

.step-list {
  display: grid;
  gap: 28px;
}

.step-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  opacity: 0.48;
  transform: translateX(-8px);
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--surface);
  background: var(--primary);
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(173, 35, 100, 0.15);
}

.step-item:not(.is-active) .step-number {
  background: #bfbfc5;
  box-shadow: none;
}

.step-item.is-active {
  opacity: 1;
  transform: translateX(0);
}

.step-item h3 {
  font-size: clamp(26px, 3.4vw, 42px);
}

.step-art {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.step-visual {
  grid-area: 1 / 1;
  width: min(420px, 100%);
  height: auto;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 320ms ease, transform 360ms var(--ease);
}

.step-visual.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.partner-marquee {
  max-width: 100%;
  overflow: hidden;
  overflow-x: clip;
  contain: layout paint;
  padding: 26px 0 30px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  animation: partnerTicker 28s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.logo-word {
  min-width: max-content;
  color: #55515a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.6vw, 38px);
  text-align: center;
  filter: grayscale(1);
  opacity: 0.82;
}

@keyframes statRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statSheen {
  0%,
  45% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes partnerTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.faq-list {
  width: min(650px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 16px 18px;
  background: var(--surface);
  text-align: left;
  font-weight: 800;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.vendor-cta {
  position: relative;
  overflow: hidden;
}

.vendor-collage {
  display: grid;
  grid-template-columns: 0.72fr 0.48fr;
  gap: 10px;
  align-items: end;
}

.vendor-collage img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.vendor-collage img:nth-child(1) {
  grid-row: span 2;
  height: 310px;
}

.vendor-collage img:nth-child(2),
.vendor-collage img:nth-child(3) {
  height: 150px;
}

.listing-hero,
.page-hero {
  padding: 48px 0;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(173, 35, 100, 0.94), rgba(104, 19, 63, 0.88)),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero {
  min-height: 340px;
  display: grid;
  align-items: center;
}

.page-hero p,
.listing-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 104px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}

.filters-head h2 {
  font-family: Manrope, sans-serif;
  font-size: 18px;
}

.filter-city {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.filters-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.map-strip {
  min-height: 62px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  border: 1px solid #e5eef0;
  border-radius: var(--radius);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='80' viewBox='0 0 300 80'%3E%3Crect width='300' height='80' fill='%23f8fcfb'/%3E%3Cg fill='none' stroke='%23d6e8e4' stroke-width='1'%3E%3Cpath d='M0 28c35 22 61-15 101 8s60 18 94-3 71-10 105 8'/%3E%3Cpath d='M0 54c44-14 71-13 103 2s70 5 102-13 55-8 95 4'/%3E%3Cpath d='M38 0v80M94 0v80M150 0v80M206 0v80M262 0v80' opacity='.65'/%3E%3C/g%3E%3Ccircle cx='150' cy='40' r='6' fill='%23ff5a93'/%3E%3C/svg%3E") center/cover;
	}

.map-view {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  padding: 28px;
  background: rgba(24, 21, 26, 0.52);
}

.map-view.is-open {
  display: block;
}

.map-view-panel {
  width: min(1800px, 100%);
  height: calc(100vh - 56px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.map-view-topbar {
  display: grid;
  grid-template-columns: 260px minmax(240px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.map-location {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
}

.map-view-layout {
  height: calc(100% - 73px);
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
}

.map-results {
  min-width: 0;
  overflow: auto;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.map-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.map-canvas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 26%, rgba(134, 214, 232, 0.35) 0 3%, transparent 3.2%),
    radial-gradient(circle at 42% 58%, rgba(172, 235, 203, 0.42) 0 4%, transparent 4.2%),
    linear-gradient(30deg, transparent 47%, rgba(102, 137, 181, 0.36) 48%, transparent 50%),
    linear-gradient(-24deg, transparent 47%, rgba(102, 137, 181, 0.34) 48%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(52, 92, 131, 0.1) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(90deg, rgba(52, 92, 131, 0.08) 0 1px, transparent 1px 92px),
    #eef1ea;
}

.map-close-text {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.map-city-label {
  position: absolute;
  left: 44%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #37323a;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-shadow: 0 2px 0 #fff;
}

.map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -100%) rotate(45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--amber);
  box-shadow: 0 5px 12px rgba(24, 21, 26, 0.2);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: #fff;
}

.map-pin-1 {
  left: 38%;
  top: 36%;
}

.map-pin-2 {
  left: 55%;
  top: 42%;
}

.map-pin-3 {
  left: 62%;
  top: 58%;
}

.map-pin-4 {
  left: 48%;
  top: 64%;
}

.map-pin-5 {
  left: 70%;
  top: 50%;
}

.map-pin-6 {
  left: 30%;
  top: 68%;
}

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

.accordion-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  padding: 16px 18px;
  background: var(--surface);
  font-weight: 900;
  text-align: left;
}

.accordion-button svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.accordion.is-open .accordion-button svg {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
  padding: 0 18px 18px;
}

.accordion.is-open .accordion-panel {
  display: grid;
  gap: 10px;
}

.search-inline {
  position: relative;
}

.search-inline input {
  padding-left: 38px;
}

.search-inline svg {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 17px;
  height: 17px;
  color: var(--primary-2);
  transform: translateY(-50%);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check-row input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--primary-2);
}

.nested-checks {
  display: grid;
  gap: 9px;
  padding-left: 24px;
}

.filter-actions {
  position: sticky;
  bottom: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 22px rgba(24, 21, 26, 0.08);
}

.mobile-filter-button {
  display: none;
  margin-bottom: 14px;
}

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

.venue-card {
  position: relative;
  overflow: visible;
  color: inherit;
  transition: transform 180ms var(--ease), box-shadow 180ms ease;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.venue-media {
  position: relative;
  height: 162px;
  overflow: visible;
  background: #eee;
}

.venue-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1000ms ease;
}

.venue-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.venue-ribbon {
  position: absolute;
  inset: 12px auto auto -5px;
  z-index: 2;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 14px);
  color: #fff;
  background: linear-gradient(90deg, var(--amber), #f28d00);
  border-radius: 0 999px 999px 0;
  padding: 6px 14px 6px 16px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(24, 21, 26, 0.14);
}

.venue-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  border-top: 6px solid #b66a00;
  border-left: 6px solid transparent;
}

.badge-stack {
  position: absolute;
  z-index: 3;
  left: -5px;
  bottom: 10px;
  display: grid;
  gap: 4px;
  justify-items: start;
}

.badge-stack span,
.badge {
  --ribbon-bg: var(--primary-2);
  --ribbon-fold: #b91b5c;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 7px 14px 7px 16px;
  color: #fff;
  background: var(--ribbon-bg);
  border-radius: 0 3px 3px 0;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(24, 21, 26, 0.15);
}

.badge-stack span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  border-top: 6px solid var(--ribbon-fold);
  border-left: 6px solid transparent;
}

.badge-stack span:nth-child(even) {
  --ribbon-bg: var(--primary);
  --ribbon-fold: #6f1745;
}

.badge-stack span:nth-child(3n) {
  --ribbon-bg: var(--amber);
  --ribbon-fold: #b66a00;
}

.venue-body {
  display: grid;
  gap: 9px;
  padding: 14px 14px 15px;
}

.venue-body h3 {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.venue-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.venue-meta svg {
  width: 16px;
  height: 16px;
  color: var(--faint);
}

.quote-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 900;
}

.venue-quote-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--primary);
  background: #fff1f6;
  font-size: 13px;
  font-weight: 900;
  transition: color 160ms ease, background 160ms ease, transform 160ms var(--ease);
}

.venue-card:hover .venue-quote-button {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: translateY(-1px);
}

.venue-quote-button svg {
  width: 16px;
  height: 16px;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  color: var(--surface);
  background: #1f1726;
  overflow: hidden;
}

.detail-gallery {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 3px;
  opacity: 1;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 21, 26, 0.9) 0%, rgba(24, 21, 26, 0.64) 42%, rgba(24, 21, 26, 0.24) 100%),
    linear-gradient(180deg, rgba(24, 21, 26, 0.12), rgba(24, 21, 26, 0.32));
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  align-content: center;
  padding: 72px 0;
}

.detail-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.detail-tags span {
  color: #fff;
  font-weight: 900;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 70;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 -8px 28px rgba(24, 21, 26, 0.1);
  backdrop-filter: blur(16px);
}

.immersive {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.tour-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 380px;
  border-radius: var(--radius);
  background: #1a1620;
  box-shadow: var(--shadow-md);
}

.tour-frame img {
  width: 100%;
  height: 100%;
  opacity: 0.78;
  object-fit: cover;
}

.tour-controls {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour-controls span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.44);
}

.tour-strip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 236px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.tour-strip img {
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
}

.highlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 420px;
  gap: 60px;
  align-items: start;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.highlight-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
}

.highlight-card svg {
  width: 30px;
  height: 30px;
  color: var(--primary-2);
}

.highlight-card small {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.highlight-card strong {
  font-size: 24px;
}

.quote-card {
  border: 1px solid #f0dc8c;
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.quote-card-sticky {
  position: sticky;
  top: 92px;
}

.quote-card h3 {
  font-size: 27px;
  color: var(--ink);
}

.quote-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.phone-row {
  position: relative;
  display: block;
}

.country-code {
  display: none;
}

.phone-row::before {
  content: "+91";
  position: absolute;
  left: 14px;
  top: 0;
  z-index: 1;
  height: 48px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.phone-row input {
  padding-left: 56px;
}

.field-error {
  margin: 4px 0 0;
  color: #be185d;
  font-size: 12px;
  font-weight: 800;
}

.phone-row > .field-error {
  display: block;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid,
.phone-row.is-invalid input {
  border-color: rgba(255, 90, 147, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 90, 147, 0.12);
}

.areas-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}

.tab-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
}

.tab-button.is-active {
  color: var(--ink);
}

.tab-panel[hidden] {
  display: none;
}

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

.area-card {
  min-height: 180px;
  padding: 26px;
}

.area-card svg {
  width: 54px;
  height: 54px;
  color: var(--amber);
  margin-bottom: 18px;
}

.area-card h3 {
  font-family: Manrope, sans-serif;
  font-size: 21px;
}

.date-request {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.calendar-card,
.date-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.calendar-card {
  padding: 24px;
}

.calendar-head,
.week-row,
.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.calendar-head {
  grid-template-columns: 1fr 120px;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-head select {
  min-height: 44px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.week-row {
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.day-grid button {
  aspect-ratio: 1;
  border: 1px solid #efc3bc;
  border-radius: 7px;
  color: #8a6661;
  background: #f6d2cc;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms var(--ease);
}

.day-grid button.is-selected {
  color: #fff;
  border-color: var(--primary-2);
  background: var(--primary-2);
}

.day-grid button:not(:disabled):hover {
  transform: translateY(-2px);
  border-color: var(--primary-2);
}

.day-grid button:disabled {
  cursor: not-allowed;
  color: #aaa3a3;
  border-color: #eee4e3;
  background: #f3eeee;
  opacity: 0.58;
}

.calendar-blank {
  aspect-ratio: 1;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #f6d2cc;
}

.dot.mint {
  background: #bff2d8;
}

.dot.gold {
  background: #ffd86a;
}

.date-note {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

.date-note svg {
  width: 110px;
  height: 110px;
  margin: 0 auto;
}

.date-note .button-wide {
  min-height: 54px;
  justify-self: center;
  width: min(360px, 100%);
  box-shadow: 0 14px 28px rgba(173, 35, 100, 0.2);
}

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

.purple-cta {
  padding: 64px 0;
  color: #fff;
  background: var(--purple);
}

.purple-cta .quote-card {
  color: var(--ink);
}

.purple-cta .quote-card h3 {
  color: #2d2430;
  text-shadow: none;
}

.purple-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 54px;
  align-items: center;
}

.purple-cta ul,
.terms-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.purple-cta li,
.terms-list li {
  display: flex;
  gap: 12px;
}

.purple-cta li svg,
.terms-list li svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #ffce00;
}

.similar-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.similar-row .venue-card {
  scroll-snap-align: start;
}

.registration-shell {
  padding: 54px 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 90, 147, 0.1), transparent 30rem),
    linear-gradient(90deg, #fff, #f0ecff);
}

.registration-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: #efecff;
  box-shadow: var(--shadow-lg);
}

.registration-art {
  padding: 44px;
  background: #fff;
}

.registration-art h1 {
  color: #2510a8;
  font-family: Manrope, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
}

.registration-art p {
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
}

.registration-art svg {
  width: min(560px, 100%);
  height: auto;
  margin: 28px auto 0;
}

.registration-form {
  padding: 44px;
}

.form-panel {
  padding: 26px;
  box-shadow: none;
}

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

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

.upload-box {
  min-height: 138px;
  display: grid;
  place-items: center;
  border: 1px dashed #b9add5;
  border-radius: var(--radius);
  padding: 18px;
  background: #faf9ff;
  text-align: center;
}

.upload-box svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  color: var(--primary-2);
}

.price-hero {
  padding: 54px 0 34px;
  text-align: center;
  background: linear-gradient(180deg, #fff8e8, #fff);
}

.price-badge-art {
  width: min(420px, 92vw);
  margin: 0 auto 16px;
}

.price-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.price-flow::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #e5b45b 0 10px, transparent 10px 18px);
}

.price-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.price-step svg {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #e8c16a;
  border-radius: var(--radius);
  background: var(--surface);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid #f0dfb9;
  padding: 16px;
  text-align: left;
}

.comparison-table th {
  background: #fff6df;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card {
  overflow: hidden;
  transition: transform 180ms var(--ease), box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  height: 210px;
}

.blog-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.blog-card h3 {
  font-family: Manrope, sans-serif;
  font-size: 21px;
  line-height: 1.25;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.article-body {
  color: #38343d;
  font-size: 18px;
}

.article-body h2,
.article-body h3 {
  margin-top: 36px;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-top: 16px;
}

.article-body li + li {
  margin-top: 10px;
}

.sidebar-box {
  position: sticky;
  top: 90px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

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

.contact-card svg {
  width: 34px;
  height: 34px;
  color: var(--primary);
  margin-bottom: 14px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.footer {
  padding: 54px 0 26px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 32px;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
}

.footer p,
.footer a,
.footer-bottom {
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  display: block;
  margin-top: 8px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 18px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(24, 21, 26, 0.62);
}

.modal-backdrop.is-open {
  display: grid;
}

.location-modal,
.quote-modal,
.gallery-modal {
  width: min(900px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.location-modal {
  border-bottom: 4px solid var(--primary-2);
  padding: 28px 32px 34px;
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.close-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
}

.location-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 24px 0;
}

.use-location {
  border: 0;
  color: var(--primary-2);
  background: transparent;
  font-weight: 900;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  border-top: 1px solid #ffe2eb;
  padding-top: 26px;
}

.city-option {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  background: #f6f5f7;
  color: var(--ink);
  font-weight: 800;
}

.city-option:hover {
  color: var(--primary);
  background: #fff1f6;
}

.city-option svg {
  width: 22px;
  height: 22px;
  color: var(--faint);
}

.quote-modal {
  width: min(520px, 100%);
  padding: 30px;
}

.quote-modal form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.gallery-backdrop {
  align-items: start;
  justify-items: center;
  overflow-y: auto;
  padding: clamp(16px, 3vw, 32px);
  background: rgba(24, 21, 26, 0.68);
  backdrop-filter: blur(8px);
}

.gallery-backdrop.is-open {
  display: grid;
  animation: galleryBackdropIn 180ms ease both;
}

.gallery-modal {
  width: min(1080px, 100%);
  min-height: 0;
  max-height: min(86dvh, 820px);
  overflow: auto;
  border: 1px solid rgba(230, 224, 234, 0.92);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.gallery-backdrop.is-open .gallery-modal {
  animation: galleryPanelIn 220ms var(--ease) both;
}

.gallery-modal-head {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.gallery-title-block {
  min-width: 0;
}

.gallery-title-block .eyebrow {
  margin-bottom: 2px;
}

.gallery-modal-head h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.gallery-count {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(138px, 14vw, 205px);
  grid-auto-flow: dense;
  gap: 12px;
  padding: 18px;
}

.gallery-tile {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #ece7ef;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
}

.gallery-backdrop.is-open .gallery-tile {
  animation: galleryTileIn 420ms var(--ease) both;
  animation-delay: calc(var(--tile-index, 0) * 45ms);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 46%, rgba(24, 21, 26, 0.48));
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-tile::after {
  content: "View photo";
  position: absolute;
  z-index: 2;
  inset: auto 10px 10px auto;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(24, 21, 26, 0.72);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.gallery-tile:hover::before,
.gallery-tile:focus-visible::before,
.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
  opacity: 1;
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
  transform: translateY(0);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease), filter 260ms ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.gallery-tile.is-active {
  outline: 3px solid var(--primary-2);
  outline-offset: -3px;
}

.gallery-tile.is-featured,
.gallery-tile.is-wide {
  grid-column: span 2;
}

.gallery-tile.is-featured,
.gallery-tile.is-tall {
  grid-row: span 2;
}

.gallery-modal :focus-visible,
.gallery-viewer :focus-visible {
  outline: 3px solid #ffcc5c;
  outline-offset: 3px;
}

.gallery-viewer {
  --viewer-bg: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  display: none;
  place-items: center;
  padding: clamp(12px, 2vw, 24px);
  background: rgba(14, 12, 18, 0.84);
  backdrop-filter: blur(12px);
}

.gallery-viewer::before {
  content: "";
  position: absolute;
  inset: clamp(52px, 8vw, 110px);
  z-index: 0;
  border-radius: var(--radius);
  background-image: var(--viewer-bg);
  background-position: center;
  background-size: cover;
  filter: blur(34px) saturate(1.12);
  opacity: 0.28;
  transform: scale(1.04);
}

.gallery-viewer.is-open {
  display: grid;
  animation: galleryBackdropIn 180ms ease both;
}

.gallery-viewer-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 32px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
}

.gallery-viewer-top {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.gallery-viewer-count {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.gallery-viewer-close {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.gallery-viewer-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0 64px;
}

.gallery-viewer-figure {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.gallery-viewer-image {
  width: auto;
  height: auto;
  max-width: min(100%, 1100px);
  max-height: calc(100dvh - 194px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.gallery-viewer-image.is-switching {
  opacity: 0.2;
  transform: scale(0.985);
}

.gallery-viewer-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms var(--ease);
}

.gallery-viewer-nav span {
  font-size: 42px;
  line-height: 0.8;
}

.gallery-viewer-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.03);
}

.gallery-viewer-prev {
  left: 0;
}

.gallery-viewer-next {
  right: 0;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 8px 2px 2px;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: 0 0 76px;
  height: 58px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.72;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms var(--ease);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  border-color: #ffcc5c;
  opacity: 1;
  transform: translateY(-1px);
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 40px));
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fingerTap {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  45% {
    transform: translate(4px, 1px) rotate(8deg);
  }
}

@keyframes tapPulse {
  0%,
  100% {
    opacity: 0;
    transform: translate(10px, -50%) scale(0.6);
  }
  46% {
    opacity: 1;
    transform: translate(2px, -50%) scale(1.2);
  }
}

@keyframes galleryBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes galleryPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes galleryTileIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  .page-shell {
    padding-top: var(--site-header-height);
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
  }

  .header-inner {
    position: relative;
    width: min(1280px, calc(100% - 24px));
    padding-right: 52px;
  }

  .nav-menu,
  .nav-wrap > .button {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    position: absolute;
    top: 10px;
    right: 0;
  }

  .hero-grid,
  .about-split,
  .split,
  .stepper-layout,
  .immersive,
  .highlight-layout,
  .purple-cta-grid,
  .registration-card,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 480px;
  }

  .search-panel {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .search-panel-compact .button {
    grid-column: 1 / -1;
  }

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

  .filters-panel {
    position: fixed;
    inset: 64px 0 0 auto;
    z-index: 100;
    width: min(360px, 100%);
    max-height: calc(100vh - 64px);
    overflow: hidden;
    border-radius: 0;
    transform: translateX(105%);
    transition: transform 240ms var(--ease);
  }

  .filters-scroll {
    flex: 1 1 auto;
  }

  .filters-panel.is-open {
    transform: translateX(0);
  }

  .mobile-filter-button {
    display: inline-flex;
  }

  .venue-grid,
  .feature-grid,
  .benefit-grid,
  .blog-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quote-card-sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --site-header-height: 60px;
  }

  .header-inner {
    min-height: 60px;
  }

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

  .brand svg {
    width: 28px;
    height: 28px;
  }

  .hero-home {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-collage {
    min-height: 360px;
  }

  .collage-main {
    inset: 0 7% 0 7%;
  }

  .collage-side {
    width: 34%;
    height: 36%;
  }

  .collage-round {
    width: 34%;
    height: 34%;
  }

  .collage-badge {
    right: 0;
    width: 150px;
    padding: 12px;
  }

  .search-panel,
  .stats-strip,
  .metric-row,
  .partner-marquee,
  .price-flow,
  .date-request,
  .article-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .date-range-popover {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    transform: none;
  }

  .price-flow::before {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .section-head.row {
    display: block;
  }

  .section-head.row .button {
    margin-top: 18px;
  }

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

  .gallery-grid .tall {
    grid-row: span 1;
  }

  .gallery-modal {
    width: 100%;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .gallery-modal-head {
    padding: 14px 16px;
  }

  .gallery-modal-head h3 {
    font-size: 24px;
  }

  .gallery-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(118px, 34vw, 164px);
    gap: 8px;
    padding: 12px;
  }

  .gallery-tile.is-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-tile.is-wide {
    grid-column: span 2;
  }

  .gallery-tile.is-tall {
    grid-row: span 1;
  }

  .gallery-viewer {
    align-items: stretch;
    padding: 10px;
  }

  .gallery-viewer-shell {
    width: 100%;
    max-height: calc(100dvh - 20px);
    gap: 10px;
  }

  .gallery-viewer-stage {
    padding: 0;
  }

  .gallery-viewer-image {
    max-width: 100%;
    max-height: calc(100dvh - 168px);
  }

  .gallery-viewer-nav {
    top: auto;
    bottom: 12px;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.18);
    transform: none;
  }

  .gallery-viewer-nav:hover {
    transform: none;
  }

  .gallery-viewer-prev {
    left: 12px;
  }

  .gallery-viewer-next {
    right: 12px;
  }

  .gallery-thumb {
    flex-basis: 64px;
    height: 52px;
  }

  .venue-grid,
  .feature-grid,
  .benefit-grid,
  .blog-grid,
  .area-grid,
  .highlight-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .listing-toolbar {
    display: block;
  }

  .chip-row {
    margin-top: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .listing-toolbar h2 {
    font-size: clamp(27px, 7.8vw, 34px);
    line-height: 1.05;
    max-width: 12ch;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .listing-hero .lead {
    max-width: 31ch;
  }

  .venue-media {
    height: 190px;
  }

  .pinned-steps {
    min-height: 300vh;
    padding: 0;
  }

  .pinned-steps-inner {
    position: sticky;
    top: 60px;
    min-height: calc(100vh - 60px);
    padding: 22px 0 36px;
    align-items: start;
  }

  .pinned-steps .section-head {
    margin-bottom: 22px;
  }

  .pinned-steps .title-rule {
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.1;
  }

  .pinned-steps .title-rule::before,
  .pinned-steps .title-rule::after {
    width: 44px;
  }

  .pinned-steps .section-head .lead {
    margin-top: 8px;
    font-size: 14px;
  }

  .stepper-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .step-art {
    order: -1;
    min-height: 250px;
  }

  .step-visual {
    width: min(280px, 78vw);
  }

  .step-list {
    position: relative;
    width: min(330px, 100%);
    margin: 0 auto;
    gap: 15px;
  }

  .step-list::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 28px;
    bottom: 28px;
    border-left: 1px dashed rgba(24, 21, 26, 0.42);
  }

  .step-item {
    position: relative;
    z-index: 1;
    grid-template-columns: 38px 1fr;
    gap: 9px;
    opacity: 0.58;
    transform: none;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
    box-shadow: 0 0 0 6px rgba(173, 35, 100, 0.16);
  }

  .step-item:not(.is-active) .step-number {
    background: #c8c8ce;
  }

  .step-item h3 {
    margin-top: 2px;
    color: var(--muted);
    font-family: Manrope, sans-serif;
    font-size: 13px;
    line-height: 1.25;
  }

  .step-item .lead {
    display: none;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  .step-item.is-active {
    opacity: 1;
  }

  .step-item.is-active h3 {
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(22px, 6vw, 27px);
    line-height: 1.05;
  }

  .step-item.is-active .lead {
    display: block;
  }

  .about-split {
    gap: 30px;
  }

  .blob-frame {
    width: min(320px, 82vw);
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: 0 0 0 5px rgba(139, 146, 84, 0.13), 0 14px 38px rgba(35, 24, 45, 0.12);
  }

  .metric-row {
    gap: 14px;
    margin-top: 24px;
  }

  .metric {
    align-items: flex-start;
    gap: 10px;
  }

  .metric svg {
    width: 26px;
    height: 26px;
  }

  .metric strong {
    font-size: 20px;
  }

  .feature {
    padding: 18px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
  }

  .feature h3 {
    font-size: 18px;
  }

  .feature p {
    font-size: 14px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery img:nth-child(n + 2) {
    display: none;
  }

  .detail-hero,
  .detail-hero-content {
    min-height: 520px;
  }

  .tour-frame {
    min-height: 320px;
  }

  .tour-frame img {
    min-height: 320px;
    height: 100%;
  }

  .tour-strip {
    display: none;
  }

  .purple-cta-grid,
  .registration-form,
  .registration-art {
    padding: 28px 20px;
  }

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

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

  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-view {
    padding: 0;
  }

  .map-view-panel {
    width: 100%;
    height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .map-view-topbar {
    grid-template-columns: 1fr auto;
    gap: 0;
    padding: 10px;
  }

  .map-view-topbar .search-inline {
    grid-column: 1 / -1;
    order: 3;
    margin-top: 8px;
  }

  .map-view-layout {
    height: calc(100% - 126px);
    display: flex;
    flex-direction: column;
  }

  .map-canvas {
    order: 1;
    min-height: 58vh;
  }

  .map-results {
    order: 2;
    z-index: 2;
    max-height: 42vh;
    margin-top: -26px;
    overflow: auto;
    border: 0;
    border-radius: 18px 18px 0 0;
    background: var(--surface);
    box-shadow: 0 -14px 30px rgba(24, 21, 26, 0.16);
  }

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

  .map-close-text {
    right: 50%;
    top: auto;
    bottom: 18px;
    transform: translateX(50%);
  }

  .calendar-head {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    display: block;
  }
}

@media (max-width: 430px) {
  .container,
  .narrow {
    width: min(100% - 22px, var(--container));
  }

  h1 {
    font-size: clamp(38px, 14vw, 54px);
  }

  .listing-hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    overflow-wrap: anywhere;
  }

  .listing-hero p,
  .page-hero p,
  .listing-toolbar h2 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .listing-toolbar h2 {
    max-width: 12ch;
  }

  .listing-hero .lead {
    max-width: 31ch;
  }

  .hero-actions,
  .sticky-cta {
    align-items: stretch;
  }

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