:root {
  --ink: #24211f;
  --muted: #6f6760;
  --paper: #fffaf2;
  --panel: #ffffff;
  --line: #eadfce;
  --orange: #e87522;
  --orange-dark: #b64d12;
  --green: #486b58;
  --blue: #2f5876;
  --shadow: 0 18px 55px rgba(49, 34, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(234, 223, 206, 0.82);
  backdrop-filter: blur(14px);
}

.topbar__inner,
.section,
.hero__inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 32% 28%, #ffd39a 0 14%, #f18828 15% 58%, #9b3d12 59% 100%);
  box-shadow: 0 9px 22px rgba(232, 117, 34, 0.32);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
  background: #fff;
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  position: relative;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(24, 18, 15, 0.82), rgba(24, 18, 15, 0.34) 54%, rgba(24, 18, 15, 0.08)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 250, 242, 0));
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 116px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #ffe7cb;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #ffd092;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(232, 117, 34, 0.28);
}

.button--primary:hover {
  background: var(--orange-dark);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button--dark {
  color: var(--ink);
  border-color: rgba(36, 33, 31, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.button--dark:hover {
  background: #fff;
}

.section {
  padding: 56px 0;
}

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

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.section h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section__head p,
.text-block p {
  color: var(--muted);
  font-size: 17px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.stat,
.card,
.faq__item,
.cta,
.route {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.stat {
  padding: 22px;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-size: 27px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

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

.card {
  padding: 24px;
}

.card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

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

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 27px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232, 117, 34, 0.13);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: stretch;
}

.route {
  padding: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fff1df 100%);
}

.route dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px 18px;
  margin: 0;
}

.route dt {
  color: var(--muted);
  font-weight: 800;
}

.route dd {
  margin: 0;
}

.seo-copy,
.hotel-copy {
  column-count: 2;
  column-gap: 44px;
  color: var(--muted);
}

.seo-copy p,
.hotel-copy p {
  break-inside: avoid;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq__item {
  padding: 22px 24px;
  box-shadow: none;
}

.faq__item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

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

.cta {
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: linear-gradient(135deg, #2d241d, #55331f 44%, #a24d18);
}

.cta h2 {
  max-width: 780px;
}

.cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 34px 0 50px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer__inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer a {
  font-weight: 800;
  text-decoration: none;
}

.home-hero {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.home-hero__content {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.home-lead {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 19px);
}

.home-hero__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 140px;
  gap: 12px;
  align-self: stretch;
  max-height: 372px;
}

.home-hero__image {
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-hero__image--large {
  grid-column: 1 / -1;
  object-position: center;
}

.home-hero__image--small-a {
  object-position: center;
}

.home-hero__image--small-b {
  object-position: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 250px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(0deg, rgba(18, 14, 12, 0.84), rgba(18, 14, 12, 0.2) 62%, rgba(18, 14, 12, 0.05)), var(--tile-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.showcase-card:hover {
  transform: translateY(-2px);
}

.showcase-card--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.showcase-card--accent {
  grid-column: span 2;
}

.showcase-card__tag {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #271d17;
  background: #ffd8a8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.showcase-card strong {
  max-width: 470px;
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.05;
}

.showcase-card span:last-child {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.82);
}

.directory {
  min-height: 100vh;
  padding: 72px 0;
}

.directory__hero {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 34px;
}

.directory__hero h1 {
  max-width: 940px;
  color: var(--ink);
}

.directory__hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.landing-list {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 16px;
}

.landing-tile {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(0deg, rgba(16, 13, 12, 0.82), rgba(16, 13, 12, 0.08)), var(--tile-image);
  background-size: cover;
  background-position: center;
}

.landing-tile strong {
  display: block;
  margin-bottom: 7px;
  font-size: 21px;
  line-height: 1.12;
}

.landing-tile span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

@media (max-width: 980px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .section__head,
  .split,
  .home-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .home-hero__content {
    order: -1;
  }

  .home-hero__media {
    grid-template-rows: 230px 145px;
    max-height: none;
  }

  .stats,
  .grid,
  .grid--two,
  .landing-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .showcase-card--wide,
  .showcase-card--accent {
    grid-column: span 2;
  }

  .seo-copy,
  .hotel-copy {
    column-count: 1;
  }
}

@media (max-width: 620px) {
  .topbar__inner,
  .section,
  .hero__inner,
  .home-hero,
  .footer__inner,
  .directory__hero,
  .landing-list {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    min-height: 660px;
    background-image: linear-gradient(0deg, rgba(24, 18, 15, 0.86), rgba(24, 18, 15, 0.2)), var(--hero-image);
  }

  h1 {
    font-size: 42px;
  }

  .stats,
  .grid,
  .grid--two,
  .landing-list,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__media {
    grid-template-rows: 170px 108px;
    gap: 10px;
  }

  .home-hero__image--large {
    grid-column: 1 / -1;
    width: 100%;
    height: 100%;
  }

  .home-hero__image--small-a {
    width: 100%;
    height: 100%;
  }

  .home-hero__image--small-b {
    width: 100%;
    height: 100%;
  }

  .showcase-card,
  .showcase-card--wide,
  .showcase-card--accent {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }

  .route dl {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
