:root {
  --black: #0c0b0b;
  --charcoal: #171515;
  --charcoal-2: #221f1e;
  --ivory: #f6f1e8;
  --paper: #fffdf8;
  --gold: #c7a469;
  --gold-light: #e3c58e;
  --crimson: #8d1f2d;
  --crimson-bright: #b5293e;
  --text: #1f1c1b;
  --muted: #746d67;
  --border: #dfd7ca;
  --shadow: 0 18px 50px rgba(21, 16, 12, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--paper);
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: var(--black);
  color: #d9d0c3;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  color: var(--gold-light);
  font-weight: 700;
}

.site-header {
  background: rgba(12, 11, 11, .96);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: inset 0 0 0 5px rgba(199, 164, 105, .08);
}

.brand strong {
  display: block;
  letter-spacing: .4px;
  font-size: 17px;
}

.brand small {
  display: block;
  font-size: 10px;
  color: #a9a19a;
  margin-top: 2px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: #ded8d1;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.ghost-btn,
.menu-btn {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  cursor: pointer;
}

.menu-btn {
  display: none;
}

.hero {
  position: relative;
  min-height: 690px;
  background:
    linear-gradient(rgba(9,7,7,.15), rgba(9,7,7,.45)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=2200&q=88") center/cover;
  color: white;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(181, 41, 62, .20), transparent 28%),
    linear-gradient(90deg, rgba(8,7,7,.82) 0%, rgba(8,7,7,.58) 47%, rgba(8,7,7,.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
}

.eyebrow,
.section-kicker {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.hero h1,
.section h2,
.newsletter h2 {
  font-family: "Playfair Display", serif;
  margin: 18px 0;
  line-height: .98;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(52px, 6.2vw, 86px);
  font-weight: 700;
  letter-spacing: -2px;
  color: #fffdf8;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .42);
}

.hero h1 span {
  color: var(--gold-light);
  font-style: italic;
}

.hero > .container > p,
.hero-content > p {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.7;
  color: #e5dfd7;
}

.search-panel {
  margin-top: 42px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  background: rgba(255, 253, 248, .97);
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: var(--text);
  gap: 2px;
}

.field {
  padding: 10px 15px;
  border-right: 1px solid var(--border);
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.field-control {
  display: flex;
  align-items: center;
  gap: 9px;
}

.field-control .icon {
  color: var(--crimson);
  font-weight: 800;
}

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

.search-btn,
.primary-btn,
.newsletter-form button {
  background: var(--crimson);
  color: white;
  border: 0;
  border-radius: 9px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.search-btn {
  min-height: 68px;
  padding: 0 24px;
}

.search-btn:hover,
.primary-btn:hover,
.newsletter-form button:hover {
  background: var(--crimson-bright);
  transform: translateY(-1px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  font-size: 13px;
  color: #e6dfd8;
}

.quick-links {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  box-shadow: var(--shadow);
  border-radius: 12px;
  overflow: hidden;
}

.quick-card {
  min-height: 125px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--border);
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card > span {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 21px;
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card strong {
  margin-bottom: 6px;
}

.quick-card small {
  color: var(--muted);
  line-height: 1.45;
}

.quick-card b {
  margin-left: auto;
  color: var(--crimson);
}

.section {
  padding: 110px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-head h2,
.newsletter h2 {
  font-size: clamp(38px, 4vw, 56px);
  margin: 10px 0 0;
  line-height: 1.08;
}

.section-head > a {
  color: var(--crimson);
  font-weight: 800;
  white-space: nowrap;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 260px;
}

.large-card {
  grid-row: span 2;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(10,8,8,.80) 100%);
}

.destination-card:hover {
  background-size: 106%;
  transition: background-size .6s ease;
}

.destination-content {
  position: absolute;
  inset: auto 26px 24px 26px;
  z-index: 1;
}

.destination-content span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.destination-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin: 6px 0;
}

.destination-content p {
  color: #eee7df;
  font-size: 14px;
  line-height: 1.55;
  max-width: 420px;
}

.destination-content a {
  display: inline-block;
  margin-top: 9px;
  font-weight: 800;
  font-size: 13px;
  color: var(--gold-light);
}

.section-dark {
  background: var(--charcoal);
  color: white;
}

.section-head.light > a {
  color: var(--gold-light);
}

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

.hotel-card {
  background: #fffdf8;
  color: var(--text);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.17);
}

.hotel-image {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.hotel-image img {
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: rgba(12,11,11,.84);
  color: var(--gold-light);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.heart {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  font-size: 22px;
  cursor: pointer;
}

.hotel-content {
  padding: 22px;
}

.hotel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.rating {
  background: var(--crimson);
  color: white;
  border-radius: 6px;
  padding: 5px 8px;
  font-weight: 800;
}

.hotel-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin: 15px 0 8px;
}

.hotel-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hotel-footer {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.hotel-footer small,
.hotel-footer strong {
  display: block;
}

.hotel-footer strong {
  font-size: 25px;
  line-height: 1;
}

.hotel-footer small {
  color: var(--muted);
  font-size: 10px;
}

.hotel-footer a {
  background: var(--crimson);
  color: white;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

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

.experience-card {
  border: 1px solid var(--border);
  background: white;
}

.experience-card img {
  height: 220px;
  object-fit: cover;
}

.experience-card > div {
  padding: 24px;
}

.experience-card span {
  color: var(--crimson);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.experience-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  margin: 10px 0;
}

.experience-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.experience-card a {
  font-weight: 800;
  color: var(--crimson);
}

.editorial {
  background: var(--ivory);
}

.editorial-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.editorial-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.05;
  margin: 16px 0;
}

.editorial-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.primary-btn {
  display: inline-block;
  padding: 15px 21px;
}

.editorial-list {
  border-top: 1px solid #cfc5b7;
}

.editorial-list a {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #cfc5b7;
}

.editorial-list > a > span {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 23px;
}

.editorial-list strong,
.editorial-list small {
  display: block;
}

.editorial-list strong {
  font-size: 17px;
  margin-bottom: 6px;
}

.editorial-list small {
  color: var(--muted);
  line-height: 1.5;
}

.newsletter {
  background: var(--crimson);
  color: white;
  padding: 72px 0;
}

.newsletter-inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.newsletter .section-kicker {
  color: var(--gold-light);
}

.newsletter p {
  color: #f0dfe2;
}

.newsletter-form {
  display: flex;
  background: white;
  padding: 7px;
  border-radius: 9px;
  min-width: 420px;
}

.newsletter-form input {
  border: 0;
  outline: 0;
  flex: 1;
  padding: 0 14px;
}

.newsletter-form button {
  padding: 14px 20px;
  background: var(--black);
}

footer {
  background: var(--black);
  color: #d8d1ca;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand {
  color: white;
}

.footer-grid p {
  color: #8f8882;
  max-width: 330px;
  line-height: 1.7;
}

.footer-grid h4 {
  color: white;
  margin: 0 0 18px;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 11px 0;
  font-size: 14px;
  color: #a9a19b;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #7f7974;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--black);
  color: white;
  padding: 14px 18px;
  border-radius: 9px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .25s ease;
  z-index: 2000;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    inset: 114px 20px auto 20px;
    background: var(--charcoal);
    padding: 20px;
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-btn {
    display: inline-block;
  }

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

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

  .field-destination,
  .search-btn {
    grid-column: span 2;
  }

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

  .large-card {
    grid-row: span 1;
  }

  .hotel-grid,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar a {
    display: none;
  }

  .nav-actions .ghost-btn {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-content {
    padding-top: 10px;
  }

  .search-panel {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .field-destination,
  .search-btn {
    grid-column: span 1;
  }

  .field {
    border-right: 0;
  }

  .trust-row {
    gap: 10px;
    flex-direction: column;
  }

  .quick-links {
    margin-top: -20px;
  }

  .quick-grid,
  .destination-grid,
  .hotel-grid,
  .experience-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .section {
    padding: 78px 0;
  }

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

  .destination-grid {
    grid-auto-rows: 280px;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    min-width: 0;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
}


/* Simplified destination-only search */
.search-panel-simple {
  width: min(900px, 100%);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 9px;
}

.search-panel-simple .field {
  border-right: 1px solid var(--border);
  border-bottom: 0;
  padding: 11px 18px;
}

.search-panel-simple .field-control input {
  font-size: 16px;
}

.search-panel-simple .search-btn {
  min-width: 220px;
  padding-inline: 26px;
}

@media (max-width: 720px) {
  .search-panel-simple {
    grid-template-columns: 1fr;
  }

  .search-panel-simple .field,
  .search-panel-simple .field-destination {
    grid-column: span 1;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .search-panel-simple .search-btn {
    grid-column: span 1;
    width: 100%;
    min-width: 0;
  }
}


/* Readability fixes for dark backgrounds */
.section-dark .section-head h2 {
  color: #fffdf8;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .28);
}

.section-dark .section-head.light > a {
  color: var(--gold-light);
}

.section-dark .section-kicker {
  color: var(--gold-light);
}
