:root {
  --green: #075543;
  --green-deep: #043d30;
  --green-soft: #0a6b54;
  --gold: #7a651f;
  --gold-bright: #c4a035;
  --ink: #2b2b2b;
  --muted: #5e5e5e;
  --cream: #f5f5f3;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(4, 61, 48, 0.18);
  --radius: 14px;
  --max: 1120px;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-deep);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1.1rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  width: min(210px, 52vw);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--gold-bright);
  color: var(--green-deep);
  box-shadow: none;
}

.btn-primary:hover {
  color: var(--green-deep);
  background: #d4b24a;
  box-shadow: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
}

.btn-solid {
  background: var(--green);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--green-soft);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
}

.hero-banner {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  display: block;
  line-height: 0;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 28, 68, 0.72) 0%,
    rgba(10, 42, 92, 0.52) 38%,
    rgba(12, 48, 98, 0.24) 58%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  padding: 7.25rem max(1rem, calc((100% - var(--max)) / 2)) 2rem;
  text-align: center;
  animation: riseIn 1s ease both;
}

.hero-content > * {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.6vw, 3.6rem);
  line-height: 1.08;
  margin: 0 auto 0.85rem;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.94);
}

/* Sections */
section:not(.hero) {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--green-deep);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Tours */
.tours {
  background: var(--white);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(4, 61, 48, 0.22);
}

.tour-featured {
  outline: 2px solid rgba(196, 160, 53, 0.55);
  outline-offset: 0;
}

.tour-card > a {
  display: block;
  line-height: 0;
}

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

.tour-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.2rem 1.2rem 1.35rem;
  flex: 1;
}

.tour-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: var(--green-deep);
}

.tour-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.tour-body > p:not(.meta):not(.price) {
  flex: 1;
}

.meta {
  font-size: 0.86rem;
  color: var(--gold);
  font-weight: 600;
}

.price {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--green-deep);
}

.price span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.tour-actions .btn {
  flex: 1 1 8rem;
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

@media (min-width: 961px) {
  .tour-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .tour-card {
    grid-column: span 2;
  }

  .tour-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .tour-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* Story / places */
.places {
  background:
    radial-gradient(circle at top right, rgba(196, 160, 53, 0.12), transparent 40%),
    linear-gradient(180deg, #eef4f1 0%, var(--cream) 100%);
}

.place-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.place-copy,
.place-panel {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.place-panel {
  background:
    linear-gradient(160deg, rgba(7, 85, 67, 0.88), rgba(4, 61, 48, 0.92)),
    url("images/caves.webp") center / cover;
  color: var(--white);
}

.place-panel h3,
.place-copy h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.7rem;
}

.place-copy h3 {
  color: var(--green-deep);
}

.place-panel p,
.place-copy p {
  margin: 0 0 0.9rem;
}

.place-panel p:last-child,
.place-copy p:last-child {
  margin-bottom: 0;
}

.place-panel p {
  color: rgba(255, 255, 255, 0.92);
}

.checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-bright);
}

/* Why */
.why {
  background: var(--green-deep);
  color: var(--white);
}

.why h2 {
  color: var(--white);
}

.why .eyebrow {
  color: #e6c96a;
}

.why .lead {
  color: rgba(255, 255, 255, 0.92);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.why-item {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  animation: fadeUp 0.8s ease both;
}

.why-item:nth-child(2) {
  animation-delay: 0.1s;
}

.why-item:nth-child(3) {
  animation-delay: 0.2s;
}

.why-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #e6c96a;
}

.why-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

/* Reviews */
.reviews {
  background:
    radial-gradient(circle at bottom left, rgba(196, 160, 53, 0.14), transparent 42%),
    linear-gradient(180deg, #f7f6f2 0%, var(--cream) 100%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review {
  margin: 0;
  padding: 0 0.25rem 0 0;
  border: 0;
  border-left: 3px solid var(--gold-bright);
  padding-left: 1.1rem;
}

.review .stars {
  margin: 0 0 0.55rem;
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  line-height: 1;
}

.review p {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.review footer {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.review footer a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.review footer a:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

.reviews-cta {
  margin: 2rem 0 0;
  text-align: center;
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, rgba(4, 61, 48, 0.72), rgba(4, 61, 48, 0.86)),
    url("images/footer.webp") center / cover;
  color: var(--white);
  text-align: center;
}

.contact h2 {
  color: var(--white);
}

.contact .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-inline: auto;
  max-width: 36rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-details {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-details a {
  color: var(--white);
}

/* Footer */
.site-footer {
  background: #032820;
  color: rgba(255, 255, 255, 0.78);
  padding: 1.4rem 0;
  font-size: 0.92rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  color: var(--gold-bright);
  line-height: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.site-footer a {
  color: var(--gold-bright);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .tour-grid,
  .why-grid,
  .place-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  .nav-links .hide-sm {
    display: none;
  }

  .site-header {
    padding: 0.55rem 0;
  }

  .nav {
    gap: 0.5rem;
  }

  .logo img {
    width: min(150px, 40vw);
  }

  .nav-links {
    gap: 0.55rem;
  }

  .nav-links a:not(.btn) {
    font-size: 0.8rem;
  }

  .nav-links .btn {
    padding: 0.48rem 0.8rem;
    font-size: 0.78rem;
  }

  .tour-grid,
  .why-grid,
  .place-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 3.75rem;
    padding-bottom: 0.65rem;
  }

  .hero-brand {
    font-size: clamp(1.55rem, 6.8vw, 2rem);
    margin-bottom: 0.4rem;
  }

  .hero-content p {
    display: none;
  }

  section:not(.hero) {
    padding: 3.4rem 0;
  }
}
