:root {
  --ink: #17202a;
  --muted: #5e6875;
  --paper: #fbfaf7;
  --line: #ded8cc;
  --red: #a92d21;
  --red-dark: #7c211a;
  --gold: #c88b2b;
  --green: #2f6959;
  --blue: #1f5f86;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 32, 42, 0.16);
}

* {
  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", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 12, 17, 0.72), rgba(8, 12, 17, 0));
}

.brand,
.nav-links,
.hero-actions,
.contact-list,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-links {
  gap: clamp(12px, 2vw, 30px);
  font-weight: 700;
  font-size: 0.94rem;
}

.header-action,
.language-toggle,
.button,
.reservation-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-action {
  padding: 0 18px;
  background: var(--green);
}

.language-toggle {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 17, 0.78), rgba(7, 12, 17, 0.34) 48%, rgba(7, 12, 17, 0.05)),
    linear-gradient(0deg, rgba(7, 12, 17, 0.36), rgba(7, 12, 17, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  padding: 26vh 0 14vh clamp(18px, 7vw, 96px);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.17rem;
}

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

.button {
  min-width: 164px;
  padding: 0 22px;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

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

.button:hover,
.header-action:hover,
.reservation-form button:hover {
  transform: translateY(-2px);
}

.section-pad {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stats div {
  min-height: 138px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 720px;
  background: #f0ece3;
}

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

.feature-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 86px);
}

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

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

.tour-facts div {
  padding: 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.7);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.timeline article {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.timeline img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
}

.step {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.timeline p,
.price-section li,
.contact-band p {
  color: var(--muted);
}

.stories-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.92), rgba(240, 236, 227, 0.98)),
    var(--paper);
}

.stories-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.more-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--red-dark);
  background: var(--white);
  font-weight: 900;
}

.story-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 18px;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex: 0 0 min(420px, 84vw);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.12);
}

.story-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-card span {
  display: block;
  min-height: 74px;
  padding: 16px 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.28;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(124, 33, 26, 0.92);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.carousel-btn.prev {
  left: -14px;
}

.carousel-btn.next {
  right: -14px;
}

.price-section {
  background: #ffffff;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.price-table-wrap {
  overflow-x: auto;
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  background: var(--white);
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--white);
  background: var(--red-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.price-table td:last-child {
  color: var(--red-dark);
  font-weight: 900;
}

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

.included-grid div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 10px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 32, 42, 0.95), rgba(47, 105, 89, 0.92)),
    var(--green);
}

.contact-band .eyebrow {
  color: #e5b260;
}

.contact-band h2 {
  max-width: 760px;
}

.contact-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.reservation-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.reservation-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.reservation-form button {
  width: 100%;
  border: 0;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.social-panel {
  align-self: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.social-panel h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.social-panel p {
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, background 160ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: var(--gold);
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  font-size: 0.92rem;
}

.inner-page {
  background: var(--paper);
}

.inner-header {
  position: sticky;
  color: var(--white);
  background: rgba(23, 32, 42, 0.94);
}

.page-hero {
  padding: clamp(76px, 10vw, 128px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 84px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 32, 42, 0.96), rgba(124, 33, 26, 0.84)),
    var(--red-dark);
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.article-list {
  display: grid;
  gap: 22px;
}

.article-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.08);
}

.article-card img {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  object-fit: cover;
}

.article-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

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

.story-article {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.story-article header {
  max-width: 880px;
  margin-bottom: 28px;
}

.story-article h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.story-article header p:not(.eyebrow),
.article-body {
  color: var(--muted);
  font-size: 1.08rem;
}

.article-hero-img {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
  margin: 34px 0;
}

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

.article-gallery img {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
}

.article-footer {
  margin-top: 34px;
}

.article-footer a {
  color: var(--red-dark);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

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

  .intro-grid,
  .feature-band,
  .price-layout,
  .contact-band,
  .timeline article,
  .article-card,
  .article-body {
    grid-template-columns: 1fr;
  }

  .feature-band {
    min-height: 0;
  }

  .feature-image img {
    aspect-ratio: 16 / 10;
  }
}

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

  .brand {
    font-size: 0.94rem;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .language-toggle {
    min-height: 40px;
    padding: 0 10px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-left: 14px;
  }

  h1 {
    font-size: 3rem;
  }

  .stats,
  .tour-facts,
  .included-grid,
  .form-row,
  .article-gallery {
    grid-template-columns: 1fr;
  }

  .stories-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-btn {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
