:root {
  --ink: #1f2421;
  --muted: #657066;
  --paper: #fbfaf6;
  --soft: #f0eee7;
  --line: #ded9ce;
  --moss: #566b52;
  --moss-dark: #2f4434;
  --persimmon: #b75b39;
  --gold: #caa25a;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(31, 36, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(222, 217, 206, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  color: var(--moss-dark);
  font-weight: 700;
}

.lang-switch {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-btn {
  padding: 4px 9px;
  text-decoration: none;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.lang-btn.active {
  background: var(--moss-dark);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--moss-dark);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 24, 18, 0.82), rgba(16, 24, 18, 0.38) 48%, rgba(16, 24, 18, 0.12)),
    linear-gradient(0deg, rgba(16, 24, 18, 0.7), rgba(16, 24, 18, 0.05) 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(72px, 11vh, 116px) clamp(20px, 7vw, 96px);
  color: var(--white);
}

.eyebrow,
.section-kicker,
.tour-meta {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(52px, 9vw, 112px);
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2.4vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

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

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

.intro,
.tours,
.about,
.faq,
.contact {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  background: var(--white);
}

.intro h2,
.section-heading h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
}

.intro > p,
.about-copy p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

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

.tour-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tour-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tour-gallery-wrap {
  position: relative;
}

.tour-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tour-gallery::-webkit-scrollbar {
  display: none;
}

.tour-gallery img {
  flex: 0 0 88%;
  width: 88%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  scroll-snap-align: start;
}

.tour-gallery img:last-child {
  flex: 0 0 100%;
  width: 100%;
}

.tour-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.25s, transform 0.25s;
}

.dot.active {
  background: var(--moss);
  transform: scale(1.35);
}

.tour-card-body {
  padding: clamp(22px, 3.5vw, 34px);
}

.tour-card h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 40px);
}

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

dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

dt {
  color: var(--moss-dark);
  font-weight: 800;
}

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

.text-link {
  color: var(--persimmon);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--moss-dark);
  color: var(--white);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.quote {
  border-left: 4px solid var(--gold);
  padding-left: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.18;
}

.quote p {
  margin: 0;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--moss-dark);
  font-weight: 900;
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.contact-intro p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

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

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 800;
  color: var(--moss-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.15s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--moss);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .button {
  justify-self: start;
}

.form-status {
  margin: 0;
  font-size: 14px;
  min-height: 1.4em;
}

.form-status.success {
  color: var(--moss);
}

.form-status.error {
  color: var(--persimmon);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin-left: 20px;
  }

  .intro,
  .tour-grid,
  .about {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 520px) {
  nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 48px;
  }

  .hero {
    min-height: 700px;
  }

  .button {
    width: 100%;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
