:root {
  --ink: #18302e;
  --gold: #bd8a45;
  --sand: #f5efe5;
  --cream: #fffaf3;
  --white: #fff;
  --muted: #65716f;
  --green: #1f8f59;
  --border: #dfd6c8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.narrow {
  width: min(820px, 100%);
}
.section {
  padding: 90px 0;
}
.section-kicker,
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  margin-top: 0;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 28px;
}
h3 {
  font-size: 1.7rem;
}
p {
  margin: 0 0 10px 5px;
  text-align: justify;
}
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background: url("../images/hero.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 31, 28, 0.88),
    rgba(9, 31, 28, 0.3)
  );
}
.hero-content {
  position: relative;
  padding: 110px 0;
}
.hero h1 {
  font-size: clamp(3rem, 5vw, 6rem);
  max-width: 900px;
  margin-bottom: 25px;
}
.hero h1 span {
  color: #e7c184;
}
.hero p {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 900px;
  margin-bottom: 35px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 25px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-whatsapp {
  background: var(--green);
  color: #fff;
  width: 100%;
}
.intro {
  background: var(--white);
}
.intro p {
  font-size: 1.08rem;
  text-align: justify;
}
.highlights {
  background: var(--sand);
}
.destination {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  margin: 65px 0;
}
.destination.reverse img {
  order: 2;
}
.destination img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.experiences {
  background: var(--ink);
  color: #fff;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  padding: 28px;
  border: 1px solid rgba(189, 138, 69, 0.45);
  border-radius: 8px;
}
.card h3 {
  font-size: 1.45rem;
}
.timeline {
  border-top: 1px solid var(--border);
}
details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
summary {
  cursor: pointer;
  font-size: 1.08rem;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
details p {
  padding: 0px 0px 0px 50px;
  color: var(--muted);
  margin: 5px 0px 5px 0px;
}
.notice {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 25px;
}
.included {
  background: var(--white);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.check-list,
.cross-list {
  padding: 0;
  list-style: none;
}
.check-list li,
.cross-list li {
  position: relative;
  padding: 0 0 13px 30px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.cross-list li:before {
  content: "×";
  position: absolute;
  left: 0;
  color: #a94b40;
  font-weight: 700;
}
.not-included {
  background: var(--sand);
  padding: 38px;
  border-radius: 8px;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.hotel-grid article {
  border-top: 3px solid var(--gold);
  background: #fff;
  padding: 26px;
}
.practical {
  background: var(--sand);
}
.practical-cards {
  grid-template-columns: repeat(4, 1fr);
}
.contact {
  background: var(--ink);
  color: #fff;
}
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact form {
  background: #fff;
  color: var(--ink);
  padding: 34px;
  border-radius: 10px;
}
.contact label {
  display: block;
  font-weight: 700;
  margin: 0 0 7px;
}
.contact input[type="text"],
.contact input[type="tel"] {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 18px;
  font: inherit;
}
.consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400 !important;
  font-size: 0.9rem;
  margin-bottom: 20px !important;
}
.consent input {
  margin-top: 6px;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.form-message {
  font-size: 0.9rem;
  margin: 12px 0 0;
  color: #a94b40;
}
footer {
  padding: 35px 0;
  background: #0d201e;
  color: #d9e0df;
  text-align: center;
  font-size: 0.9rem;
}
@media (max-width: 850px) {
  .section {
    padding: 65px 0;
  }
  .destination,
  .split,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .destination.reverse img {
    order: 0;
  }
  .cards,
  .practical-cards {
    grid-template-columns: 1fr 1fr;
  }
  .hotel-grid {
    grid-template-columns: 1fr;
  }
  details p {
    padding-left: 0;
  }
  .hero {
    min-height: 70vh;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }
  .cards,
  .practical-cards {
    grid-template-columns: 1fr;
  }
  .destination {
    gap: 25px;
    margin: 45px 0;
  }
  .hero-content {
    padding: 80px 0;
  }
  .contact form {
    padding: 24px;
  }
}
