:root {
  --navy: #0e4f7f;
  --navy-deep: #0a3554;
  --gold: #dba041;
  --gold-dark: #bd8123;
  --ivory: #f7f2ea;
  --ivory-deep: #efe4d3;
  --text: #3b4e61;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 51, 76, 0.16);
  --card-shadow: 0 16px 34px rgba(25, 51, 80, 0.16);
  --radius: 18px;
  --section-space: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
  overflow: clip;
}

.texture-bg {
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 230, 206, 0.7), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(237, 223, 198, 0.75), transparent 26%),
    linear-gradient(180deg, #faf6ef 0%, #f4ede2 100%);
}

.section-fullbleed { position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 59, 98, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 22px rgba(8, 36, 58, 0.16);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand img {
  width: 250px;
  max-width: 48vw;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  font-weight: 500;
}

.site-nav a:not(.btn-nav):hover { color: #ffd084; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #efb756 0%, #d39534 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(184, 123, 27, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(184, 123, 27, 0.34);
}
.btn-nav { min-height: 46px; padding-inline: 22px; }
.btn-small { min-height: 40px; padding: 10px 20px; font-size: 14px; }
.btn-wide { min-width: 300px; }
.btn-submit { width: 100%; }

.hero {
  min-height: calc(100vh - 86px);
  background:
    linear-gradient(90deg, rgba(14, 42, 68, 0.42) 0%, rgba(14, 42, 68, 0.16) 40%, rgba(14, 42, 68, 0.1) 100%),
    url('assets/hero-bg.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 40, 67, 0.18), rgba(7, 40, 67, 0.02));
}
.hero-content {
  padding-top: 36px;
  padding-bottom: 72px;
}
.hero-copy {
  max-width: 520px;
  color: white;
}
.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.35rem, 6vw, 4.9rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.16);
}
.hero h1 span {
  display: block;
  margin-top: 6px;
  font-family: "Allura", cursive;
  font-size: clamp(3rem, 5.3vw, 4.3rem);
  font-weight: 400;
}
.hero-sub {
  margin: 22px 0 28px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.hero-sub span { opacity: 0.7; margin-inline: 8px; }
.hero-brush {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 36px;
  background:
    radial-gradient(120px 18px at 6% 40%, rgba(255,255,255,0.96) 55%, transparent 58%),
    radial-gradient(180px 20px at 24% 70%, rgba(255,255,255,0.96) 55%, transparent 58%),
    radial-gradient(220px 18px at 48% 50%, rgba(255,255,255,0.96) 55%, transparent 58%),
    radial-gradient(180px 18px at 72% 65%, rgba(255,255,255,0.96) 55%, transparent 58%),
    radial-gradient(140px 18px at 92% 50%, rgba(255,255,255,0.96) 55%, transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.96) 74%);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
  text-align: center;
}
.section-heading.left-align {
  justify-content: flex-start;
  margin-bottom: 24px;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1;
}
.section-heading .line {
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d9aa5f, transparent);
}
.section-heading.light h2 { color: white; }
.section-heading.light .line { background: linear-gradient(90deg, transparent, rgba(247,212,145,0.9), transparent); }

.about-section { padding-top: 70px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.about-copy h3 {
  margin: 0 0 18px;
  color: #455f76;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
}
.about-copy p { margin: 0 0 16px; max-width: 520px; }
.card-frame {
  background: rgba(255,255,255,0.7);
  border-radius: 80px 16px 80px 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.about-media img {
  width: 100%;
  border-radius: 68px 12px 68px 12px;
  min-height: 330px;
  object-fit: cover;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tour-card {
  background: linear-gradient(180deg, #0f4d7c 0%, #0a3f67 100%);
  color: white;
  border-radius: 6px 6px 16px 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.tour-image-wrap {
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
}
.tour-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.tour-body {
  padding: 18px 18px 20px;
  text-align: center;
}
.tour-body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}
.tour-body p {
  min-height: 86px;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}

.why-section {
  padding-top: 10px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 18px;
}
.feature-item {
  padding: 10px 12px;
}
.feature-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, #1f6ba0, #0f4b79 72%);
  color: #f7d385;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(18, 64, 102, 0.2);
}
.feature-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  line-height: 1;
}
.feature-item p { margin: 0; }
.why-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.gallery-banner {
  min-height: 210px;
  background: url('assets/gallery-banner.png') center center / cover no-repeat;
  display: grid;
  place-items: center;
}
.gallery-banner-overlay,
.reviews-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 98, 0.2), rgba(11, 61, 98, 0.22));
}
.gallery-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.gallery-banner h2 {
  margin: 0;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  text-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  min-height: 220px;
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-card.tall { grid-row: span 2; min-height: 470px; }
.gallery-card.wide { grid-column: span 2; }

.reviews-section {
  position: relative;
  padding: 72px 0 82px;
  background:
    linear-gradient(180deg, rgba(73, 59, 93, 0.55), rgba(52, 34, 64, 0.74)),
    url('assets/testimonials-bg.png') center center / cover no-repeat;
}
.reviews-content { position: relative; z-index: 2; }
.testimonial {
  max-width: 850px;
  margin: 24px auto 0;
  text-align: center;
  color: white;
}
.testimonial p {
  margin: 0 0 12px;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  line-height: 1.7;
}
.testimonial footer {
  color: rgba(255,255,255,0.86);
  font-weight: 600;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 36px;
  align-items: start;
}
.booking-copy p { margin: 0 0 18px; }
.booking-list {
  padding-left: 20px;
  margin: 0;
}
.booking-list li { margin-bottom: 8px; }
.booking-form {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(26, 65, 100, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.booking-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 600;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(17, 69, 110, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.94);
  color: var(--text);
}
.booking-form textarea { resize: vertical; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(210, 155, 70, 0.18);
  border-color: rgba(210, 155, 70, 0.55);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.92);
  padding: 24px 0 34px;
}
.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo {
  width: 220px;
}

/* Decorative leaves (shared styles) */
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
/* Left side leaves */
.decor-left-mid {
  left: 0;
  top: 40%;
  transform: translateY(-185%);
  width: 220px; /* adjust size */
}
/* Right side leaves */
.decor-right-mid {
  right: 0;
  top: 40%;
  transform: translateY(-185%);
  width: 220px; /* match left */
}
/* Make sure parent section is positioned */
.section-with-decor {
  position: relative;
  overflow: hidden;
}
.decor-top-left {
  top: -24px;
  left: 0;
  width: 220px;
}
.decor-right-bottom {
  right: 0;
  bottom: 0;
  width: 150px;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 220px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(9, 59, 98, 0.98);
    box-shadow: 0 16px 32px rgba(0,0,0,0.22);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .tour-grid,
  .feature-grid,
  .booking-grid,
  .about-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card.tall,
  .gallery-card.wide { grid-column: auto; grid-row: auto; min-height: 260px; }
  .hero-copy { max-width: 460px; }
  .about-media img { min-height: 260px; }
  .decor-right-mid,
  .decor-left-mid,
  .decor-right-bottom { opacity: 0.72; }
}

@media (max-width: 640px) {
  :root { --section-space: 68px; }
  .shell { width: min(1120px, calc(100% - 24px)); }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 205px; }
  .hero { min-height: 78svh; background-position: 68% center; }
  .hero-copy { max-width: 330px; }
  .hero-sub { font-size: 0.9rem; }
  .section-heading { gap: 10px; }
  .section-heading .line { width: 46px; }
  .btn-wide { min-width: 0; width: 100%; }
  .booking-form { padding: 18px; }
}
