:root {
  --ink: #111319;
  --ink-soft: #3a3f4b;
  --muted: #6a7280;
  --line: #e4e0d8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --sand: #f3eee5;
  --night: #0b111a;
  --green: #0b5b4b;
  --green-deep: #073f35;
  --gold: #c79b47;
  --coral: #bd5438;
  --shadow: 0 24px 70px rgba(17, 19, 25, 0.14);
  --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.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 22px;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(251, 250, 247, 0.92);
  box-shadow: 0 10px 30px rgba(17, 19, 25, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  background: rgba(13, 17, 23, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(17, 19, 25, 0.08);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-deep);
  font-size: 0.75rem;
}

.site-header.is-scrolled .brand-mark,
.footer-brand .brand-mark {
  background: var(--green);
  color: var(--white);
}

.brand-name {
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-header.is-scrolled .nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a[aria-current="page"] {
  background: rgba(11, 91, 75, 0.09);
  color: var(--green-deep);
}

.nav-cta,
.button {
  border: 0;
  border-radius: 8px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-cta {
  background: var(--white);
  color: var(--green-deep);
  font-size: 0.92rem;
}

.site-header.is-scrolled .nav-cta,
.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-primary:hover,
.button-dark:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button-secondary.light {
  background: var(--white);
  color: var(--green-deep);
}

.button-dark {
  background: var(--night);
  color: var(--white);
}

.nav-toggle {
  display: none;
  min-width: 46px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-home {
  min-height: 860px;
}

.hero-subpage {
  min-height: 560px;
}

.hero picture,
.hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 12, 18, 0.8) 0%, rgba(6, 12, 18, 0.52) 44%, rgba(6, 12, 18, 0.1) 100%),
    linear-gradient(0deg, rgba(6, 12, 18, 0.62) 0%, rgba(6, 12, 18, 0.05) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 190px 0 86px;
}

.hero-home .hero-content {
  padding-top: 156px;
  padding-bottom: 54px;
}

.hero-content h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-home .hero-content h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.booking-card {
  width: min(100%, 1080px);
  margin-top: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(4, 8, 14, 0.28);
  overflow: hidden;
}

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.booking-tab {
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  color: var(--ink-soft);
  font-weight: 900;
  border-bottom: 3px solid transparent;
}

.booking-tab:hover,
.booking-tab.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: rgba(11, 91, 75, 0.05);
}

.booking-fields {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 0.95fr auto;
  gap: 12px;
  align-items: end;
  padding: 22px 24px 10px;
}

.booking-field {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 850;
}

.booking-field span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.booking-field input {
  min-height: 52px;
  width: 100%;
  border: 1px solid #b8c0cc;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.booking-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 91, 75, 0.12);
}

.booking-search {
  min-height: 52px;
  background: #1768e8;
  color: var(--white);
}

.booking-search:hover {
  background: #0f56c4;
}

.booking-note {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.section-tight {
  padding-top: 72px;
}

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.feature-content h2,
.trust-section h2,
.cta-section h2,
.intro-panel h2,
.legal-hero h1,
.not-found h1,
.contact-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.feature-content p,
.trust-section p,
.intro-panel p,
.cta-section p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 19, 25, 0.06);
}

.category-card img {
  height: 190px;
}

.category-card div {
  padding: 22px;
}

.category-card h3,
.steps-grid h3,
.content-grid h3,
.guide-row h3,
.city-guide h2 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.category-card p,
.steps-grid p,
.content-grid p,
.guide-row p,
.city-guide p,
.clean-list {
  margin: 0;
  color: var(--muted);
}

.text-button {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 900;
}

.text-button::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
}

.feature-band {
  width: min(var(--max), calc(100% - 44px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-media {
  min-height: 520px;
}

.feature-content {
  padding: clamp(32px, 5vw, 64px);
  align-self: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0;
}

.stat-row span {
  padding: 16px 12px;
  background: var(--sand);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.stat-row strong {
  display: block;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.1;
}

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

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--white);
  min-height: 245px;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 11, 16, 0.72), rgba(7, 11, 16, 0.1));
}

.destination-card img {
  transition: transform 500ms ease;
}

.destination-card:hover img {
  transform: scale(1.04);
}

.destination-card span {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

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

.how-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.steps-grid {
  display: grid;
  gap: 16px;
}

.steps-grid article,
.content-grid article,
.intro-panel,
.contact-panel,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--coral);
  font-weight: 900;
}

.trust-section,
.cta-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--white);
}

.trust-section p,
.cta-section p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-section h2,
.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.trust-section .text-button {
  color: var(--white);
}

.site-footer {
  background: #090d13;
  color: var(--white);
  padding: 58px 22px 24px;
}

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

.footer-grid p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-grid a:not(.brand) {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.article-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.content-grid {
  display: grid;
  gap: 16px;
}

.muted-section {
  max-width: none;
  background: var(--sand);
}

.muted-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.guide-list {
  display: grid;
  gap: 18px;
}

.guide-row {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.guide-row img {
  min-height: 210px;
}

.guide-row div {
  padding: 24px 24px 24px 0;
}

.destination-page-grid {
  display: grid;
  gap: 28px;
}

.city-guide {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(17, 19, 25, 0.07);
  scroll-margin-top: 110px;
}

.city-guide:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.city-guide:nth-child(even) img {
  order: 2;
}

.city-guide img {
  min-height: 360px;
  border-radius: 6px;
}

.city-guide div {
  padding: 18px;
}

.city-guide h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.clean-list {
  padding-left: 18px;
  margin-top: 18px;
}

.clean-list li + li {
  margin-top: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-hero,
.not-found {
  padding: 170px 22px 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 13, 19, 0.86), rgba(8, 13, 19, 0.7)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=2200&q=82") center/cover;
}

.legal-hero > *,
.not-found > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.legal-hero h1,
.not-found h1 {
  max-width: var(--max);
  margin-top: 0;
}

.legal-hero p:not(.eyebrow),
.not-found p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 22px 92px;
}

.legal-content h2 {
  margin: 34px 0 8px;
  font-size: 1.35rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.not-found {
  min-height: 72vh;
  display: grid;
  align-content: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(7, 10, 14, 0.62);
  backdrop-filter: blur(8px);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1.05;
}

.modal-panel p:not(.eyebrow) {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 1020px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-band,
  .article-section,
  .how-section,
  .contact-layout,
  .trust-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .trust-section,
  .cta-section {
    align-items: start;
  }

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

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

  .city-guide,
  .city-guide:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .city-guide:nth-child(even) img {
    order: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px;
  }

  .nav-shell {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .site-header.is-scrolled .nav-links a {
    color: var(--ink);
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"],
  .site-header.is-scrolled .nav-links a:hover,
  .site-header.is-scrolled .nav-links a[aria-current="page"] {
    background: rgba(11, 91, 75, 0.08);
    color: var(--green-deep);
  }

  .hero,
  .hero-home,
  .hero-subpage {
    min-height: 650px;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-bottom: 56px;
  }

  .booking-card {
    margin-top: 26px;
  }

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

  .booking-tab {
    min-height: 58px;
  }

  .booking-fields {
    grid-template-columns: 1fr;
    padding: 18px 18px 10px;
  }

  .booking-note {
    padding: 0 18px 18px;
  }

  .section {
    padding: 64px 16px;
  }

  .feature-band,
  .trust-section,
  .cta-section {
    width: calc(100% - 32px);
  }

  .feature-media {
    min-height: 320px;
  }

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

  .guide-row div {
    padding: 0 22px 24px;
  }

  .guide-row img {
    min-height: 240px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: clamp(2.55rem, 14vw, 3.8rem);
  }

  .hero-actions,
  .button,
  .button-primary,
  .button-secondary,
  .button-dark {
    width: 100%;
  }

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

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

  .city-guide {
    padding: 10px;
  }

  .city-guide img {
    min-height: 260px;
  }

  .city-guide div {
    padding: 12px;
  }

  .legal-hero,
  .not-found {
    padding-top: 142px;
  }

  .modal-panel {
    padding: 28px 22px;
  }
}
