:root {
  --ink: #111111;
  --charcoal: #202020;
  --muted: #6c625b;
  --line: #e8e0d7;
  --paper: #fffaf2;
  --surface: #ffffff;
  --champagne: #f3d9a4;
  --gold: #b9872d;
  --ruby: #8f2338;
  --plum: #3b2638;
  --teal: #1f6b67;
  --night: #15131b;
  --shadow: 0 18px 50px rgba(26, 21, 18, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

p {
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

h4 {
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 250, 242, 0.16);
  background: rgba(21, 19, 27, 0.92);
  color: #fffaf2;
  backdrop-filter: blur(16px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 72px;
  padding: 0 22px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--champagne);
  color: var(--night);
  display: inline-flex;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 18px;
  font-size: 0.88rem;
}

.nav-links a {
  color: rgba(255, 250, 242, 0.78);
}

.nav-links a:hover {
  color: var(--champagne);
}

.nav-action {
  border: 1px solid rgba(243, 217, 164, 0.5);
  color: var(--champagne) !important;
  padding: 9px 13px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(21, 19, 27, 0.92), rgba(21, 19, 27, 0.52), rgba(21, 19, 27, 0.18)),
    var(--hero-image),
    #211722;
  background-position: center;
  background-size: cover;
  color: #fffaf2;
  min-height: 78vh;
  padding: 92px 22px 48px;
}

.hero.compact {
  min-height: 52vh;
}

.hero-inner {
  margin: 0 auto;
  max-width: var(--max);
}

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

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.hero p {
  color: #fffaf2;
}

.hero p {
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.1rem;
  margin-top: 18px;
  max-width: 660px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.search-panel {
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: 1.35fr 1.2fr 1fr auto;
  margin-top: 36px;
  max-width: 1080px;
  padding: 12px;
}

.field {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 12px 13px;
}

.field label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-hint {
  color: #8c7a69;
  font-size: 0.78rem;
  line-height: 1.3;
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  color: var(--ink);
  font: inherit;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 54%,
    calc(100% - 9px) 54%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.field.luxury-select {
  background: linear-gradient(135deg, #fff, #fff7ea);
  border-color: #d9bb78;
}

.custom-field {
  overflow: visible;
  position: relative;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: 14px;
  justify-content: space-between;
  min-height: 34px;
  padding: 0;
  text-align: left;
  width: 100%;
}

.custom-select-trigger span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-trigger::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--gold);
  content: "";
  flex: 0 0 auto;
}

.custom-select-menu {
  background: #fffdf8;
  border: 1px solid #d6bc84;
  box-shadow: 0 24px 60px rgba(21, 19, 27, 0.22);
  display: none;
  left: -14px;
  max-height: 380px;
  min-width: min(420px, 88vw);
  overflow: auto;
  padding: 8px;
  position: absolute;
  top: calc(100% + 15px);
  z-index: 50;
}

.budget-menu {
  min-width: min(360px, 88vw);
}

.custom-select.is-open .custom-select-menu {
  display: grid;
  gap: 3px;
}

.custom-select-menu::before {
  background: #fffdf8;
  border-left: 1px solid #d6bc84;
  border-top: 1px solid #d6bc84;
  content: "";
  height: 14px;
  left: 28px;
  position: absolute;
  top: -8px;
  transform: rotate(45deg);
  width: 14px;
}

.custom-select-menu button {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  padding: 10px 12px;
  position: relative;
  text-align: left;
  z-index: 1;
}

.custom-select-menu button:hover,
.custom-select-menu button[aria-selected="true"] {
  background: #f6ead8;
  color: #4a2b14;
}

.custom-select-group {
  color: var(--ruby);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 13px 12px 5px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.button.primary {
  background: var(--ruby);
  color: #fff;
}

.button.primary:hover {
  background: #741a2c;
}

.button.secondary {
  background: var(--night);
  color: #fffaf2;
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 72px 22px;
}

.section.tight {
  padding-bottom: 34px;
  padding-top: 34px;
}

.section-header {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-header p {
  max-width: 540px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.media {
  aspect-ratio: 16 / 10;
  background: var(--image), #ded2c2;
  background-position: center;
  background-size: cover;
}

.city-card .media {
  aspect-ratio: 4 / 5;
}

.card-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-row {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  gap: 9px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  background: #f6ead8;
  border: 1px solid #ead7bd;
  color: #5e4526;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 9px;
}

.badge.dark {
  background: rgba(21, 19, 27, 0.74);
  border-color: rgba(255, 250, 242, 0.22);
  color: #fffaf2;
}

.badge.green {
  background: #e5f2ed;
  border-color: #c8ded7;
  color: #19544f;
}

.price {
  color: var(--ruby);
  font-weight: 900;
}

.editorial-band {
  background: var(--night);
  color: #fffaf2;
}

.editorial-band .section {
  padding-bottom: 64px;
  padding-top: 64px;
}

.editorial-band h2,
.editorial-band h3,
.editorial-band p {
  color: #fffaf2;
}

.editorial-band p {
  color: rgba(255, 250, 242, 0.74);
}

.editorial-band .card h3 {
  color: var(--ink);
}

.editorial-band .card p {
  color: var(--muted);
}

.editorial-band .card {
  border-color: rgba(243, 217, 164, 0.48);
}

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

.countdown {
  background: #17141c;
  border: 1px solid rgba(243, 217, 164, 0.36);
  border-radius: var(--radius);
  color: #fffaf2;
  padding: 16px;
}

.countdown .place {
  color: var(--champagne);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  margin-top: 6px;
}

.countdown span:last-child {
  color: rgba(255, 250, 242, 0.68);
  display: block;
  font-size: 0.82rem;
  margin-top: 2px;
}

.form-section-title {
  border-top: 1px solid var(--line);
  color: var(--ruby);
  font-size: 0.78rem;
  font-weight: 900;
  grid-column: 1 / -1;
  letter-spacing: 0.12em;
  margin-top: 8px;
  padding-top: 18px;
  text-transform: uppercase;
}

.split {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
}

.sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 92px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.panel h3,
.panel h4 {
  margin-bottom: 12px;
}

.list-clean {
  color: var(--muted);
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-clean strong {
  color: var(--ink);
}

.filter-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 22px;
  padding: 12px;
}

.listing-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 280px minmax(0, 1fr);
}

.listing-row .media {
  aspect-ratio: auto;
  min-height: 100%;
}

.detail-hero {
  background: var(--night);
  color: #fffaf2;
}

.detail-hero-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 46px 22px;
}

.detail-hero h1,
.detail-hero p {
  color: #fffaf2;
}

.detail-hero p {
  color: rgba(255, 250, 242, 0.78);
}

.detail-image {
  aspect-ratio: 16 / 11;
  background: var(--hero-image), #392838;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
}

.spec-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.spec {
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.14);
  padding: 13px;
}

.spec span {
  color: rgba(255, 250, 242, 0.62);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec strong {
  display: block;
  margin-top: 3px;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.content-block h2,
.content-block h3 {
  margin-bottom: 14px;
}

.content-block p + p {
  margin-top: 12px;
}

.fact-table {
  border-collapse: collapse;
  width: 100%;
}

.fact-table th,
.fact-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
}

.fact-table th {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 38%;
}

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

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

.note {
  background: #f7ead7;
  border-left: 4px solid var(--gold);
  color: #5d4631;
  padding: 16px;
}

.footer {
  background: #100f14;
  color: #fffaf2;
  padding: 42px 22px;
}

.footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
}

.footer a,
.footer p {
  color: rgba(255, 250, 242, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-hero {
  --hero-image: url("https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=2200&q=80");
}

.city-hero {
  --hero-image: url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=2200&q=80");
}

.listing-hero {
  --hero-image: url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=2200&q=80");
}

.submit-hero {
  --hero-image: url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=2200&q=80");
}

.about-hero {
  --hero-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2200&q=80");
}

.event-hero {
  --hero-image: url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1800&q=80");
}

.venue-hero {
  --hero-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=80");
}

.img-london { --image: url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=900&q=80"); }
.img-nyc { --image: url("https://images.unsplash.com/photo-1490644658840-3f2e3f8c5625?auto=format&fit=crop&w=900&q=80"); }
.img-sydney { --image: url("https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?auto=format&fit=crop&w=900&q=80"); }
.img-dubai { --image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=900&q=80"); }
.img-dinner { --image: url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=900&q=80"); }
.img-cruise { --image: url("https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=900&q=80"); }
.img-party { --image: url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=900&q=80"); }
.img-family { --image: url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=900&q=80"); }
.img-rooftop { --image: url("https://images.unsplash.com/photo-1566417713940-fe7c737a9ef2?auto=format&fit=crop&w=900&q=80"); }
.img-fireworks { --image: url("https://images.unsplash.com/photo-1502759683299-cdcd6974244f?auto=format&fit=crop&w=900&q=80"); }
.img-hotel { --image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=900&q=80"); }

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .nav-links {
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

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

  .search-panel,
  .filter-bar,
  .split,
  .detail-hero-grid,
  .listing-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .countdown-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .sidebar {
    position: static;
  }

  .listing-row .media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.55rem;
  }

  .section {
    padding-bottom: 52px;
    padding-top: 52px;
  }

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

  .button {
    width: 100%;
  }
}
