:root {
  --gold: #b8863a;
  --gold-dark: #96692b;
  --sage: #707d68;
  --sage-dark: #565f50;
  --cream: #f4efe6;
  --cream-dark: #ece2d2;
  --ink: #2c2a26;
  --ink-soft: #55524a;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
}

h2 { font-size: 2.4rem; }
h3 { font-size: 1.5rem; }

p { margin: 0 0 16px; color: var(--ink-soft); }

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

.center { text-align: center; }
.center.eyebrow { }
h2.center, .section-sub.center, .eyebrow.center { margin-left: auto; margin-right: auto; }

.section-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
}

.section-note {
  margin-top: 32px;
  font-style: italic;
  color: var(--sage-dark);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo-img { height: 46px; width: auto; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,42,38,0.45) 0%, rgba(44,42,38,0.35) 40%, rgba(44,42,38,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero .eyebrow { color: var(--cream); opacity: 0.9; }

.hero h1 {
  color: var(--white);
  font-size: 3.6rem;
  line-height: 1.1;
  max-width: 700px;
}

.hero-sub {
  max-width: 480px;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* About */
.about { padding: 110px 0 90px; background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-image { position: relative; }
.about-image img:first-child {
  border-radius: 4px;
  width: 100%;
}

.badge-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 130px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2));
}

.about-text .eyebrow { }

/* Services */
.services { padding: 100px 0; background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(44,42,38,0.08);
}

.service-card.featured {
  border-color: var(--gold);
  background: var(--white);
  position: relative;
}

.service-icon { font-size: 2.2rem; margin-bottom: 16px; }

.service-card p { font-size: 0.95rem; }

/* Destinations */
.destinations { padding: 100px 0; background: var(--white); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.destination-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img { transform: scale(1.06); }

.destination-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Benefits */
.benefits {
  position: relative;
  padding: 130px 0;
  color: var(--white);
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.benefits-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,42,38,0.68);
}

.benefits-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.benefits .eyebrow { color: var(--cream); }
.benefits h2 { color: var(--white); }
.benefits p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }

/* Contact */
.contact { padding: 100px 0 110px; background: var(--cream); }

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(44,42,38,0.08);
}

.form-wrapper iframe { display: block; border: none; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 50px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-logo {
  height: 70px;
  border-radius: 4px;
  padding: 6px 10px;
  background: var(--cream);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.footer-contact a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.footer-contact a:hover { color: var(--gold); opacity: 1; }

.footer-icon { font-size: 1rem; }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.55);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.6rem; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-list.open { display: flex; }
  .benefits-bg { background-attachment: scroll; }
  .badge-float { width: 90px; bottom: -18px; right: -14px; }
}
