
/* ── Reset & Variables ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep:    #1A2E14;
  --forest:  #2D4A22;
  --leaf:    #4A7A38;
  --sage:    #8FA888;
  --cream:   #FAF8F3;
  --mist:    #F2F5EF;
  --white:   #FFFFFF;
  --dark:    #1A1A1A;
  --mid:     #4A4A4A;
  --light:   #888888;
  --transition: 0.4s cubic-bezier(.23,1,.32,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── Typography ────────────────────────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

/* ── NAV ───────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: rgba(26,46,20,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(143,168,136,0.15);
  transition: var(--transition);
}
nav.scrolled {
  height: 58px;
  background: rgba(26,46,20,0.99);
}
.nav-logo { text-decoration: none; }
.logo-box {
  display: flex; flex-direction: column; align-items: center;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 5px 12px 6px;
  gap: 1px;
}
.logo-line {
  width: 22px; height: 0.75px;
  background: rgba(255,255,255,0.7);
  margin-bottom: 2px;
}
.logo-name {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 7px; font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--sage); }
.nav-cta {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); background: none;
  border: 0.75px solid var(--sage);
  padding: 9px 22px; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.nav-cta:hover { background: var(--sage); color: var(--deep); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 24px; height: 1px; background: white; display: block; }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1A2E14 0%, #2D4A22 40%, #1A2E14 100%);
}
/* Photo slideshow */
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: url("images/img_01.jpg"); }
.hero-slide:nth-child(2) { background-image: url("images/img_02.jpg"); }
.hero-slide:nth-child(3) { background-image: url("images/img_03.jpg"); }
.hero-slide:nth-child(4) { background-image: url("images/img_04.jpg"); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(26,46,20,0.92) 0%,
    rgba(26,46,20,0.55) 40%,
    rgba(26,46,20,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 80px;
  max-width: 780px;
  animation: fadeUp 1.2s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 18px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 400; line-height: 1.1;
  color: var(--white); margin-bottom: 8px;
}
.hero-headline em {
  font-style: italic; color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 38px;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn-primary {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  background: var(--sage); color: var(--deep);
  padding: 14px 32px; text-decoration: none;
  transition: var(--transition); display: inline-block;
  font-family: 'Jost', sans-serif; font-weight: 500;
}
.btn-primary:hover { background: var(--white); }
.btn-outline {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  border: 0.75px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 14px 32px; text-decoration: none;
  transition: var(--transition); display: inline-block;
  font-family: 'Jost', sans-serif;
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; right: 60px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: fadeUp 1.2s ease 1s both;
}
.scroll-line {
  width: 40px; height: 0.5px;
  background: rgba(255,255,255,0.2);
}

/* ── STATS BAR ─────────────────────────────────────────────────── */
.stats-bar {
  background: var(--deep);
  display: flex; justify-content: center;
  gap: 0; border-bottom: 1px solid rgba(143,168,136,0.15);
}
.stat-item {
  padding: 28px 48px;
  text-align: center;
  border-right: 1px solid rgba(143,168,136,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 300;
  color: var(--sage); line-height: 1;
  display: block; margin-bottom: 5px;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

/* ── SECTION BASE ──────────────────────────────────────────────── */
section { padding: 96px 60px; }
.section-eyebrow {
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; line-height: 1.2;
  color: var(--deep); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--forest); }
.section-body {
  font-size: 15px; line-height: 1.9;
  color: var(--mid); font-weight: 300;
  max-width: 540px;
}

/* ── SERVICES ──────────────────────────────────────────────────── */
.services {
  background: var(--mist);
}
.services-inner {
  max-width: 1200px; margin: 0 auto;
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: default;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--sage); transform: scaleX(0);
  transition: transform 0.35s ease; transform-origin: left;
}
.service-card:hover { background: var(--deep); }
.service-card:hover .service-name { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.45); }
.service-card:hover .service-num { color: rgba(255,255,255,0.12); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300;
  color: rgba(26,46,20,0.08); line-height: 1;
  margin-bottom: 16px; display: block;
  transition: var(--transition);
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500;
  color: var(--deep); margin-bottom: 10px;
  transition: var(--transition); line-height: 1.3;
}
.service-desc {
  font-size: 13px; color: var(--light); line-height: 1.7;
  font-weight: 300; transition: var(--transition);
}

/* about-split removed */
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-style: italic; font-weight: 300;
  color: var(--forest); line-height: 1.55;
  border-left: 2px solid var(--sage);
  padding-left: 22px; margin: 28px 0;
}
.about-link {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--leaf); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px; transition: gap 0.25s ease;
}
.about-link:hover { gap: 16px; }
.about-link::after { content: '→'; }

/* ── ABOUT SECTION ─────────────────────────────────────────────── */
.about-section {
  background: var(--cream);
  padding: 96px 60px;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.about-text-block { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.about-text-block .section-body { max-width: 100%; font-size: 14px; }
.about-text-block .section-title { font-size: clamp(28px, 3vw, 42px); }
.about-text-block .section-title { margin-bottom: 0; }
.about-text-block .section-body { max-width: 100%; }

/* Photo grid — 4 cols x 2 rows, all same square size */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
}
.about-grid-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.about-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.about-grid-item:hover img { transform: scale(1.06); }
.about-grid-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,46,20,0.75), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 10px 8px;
  opacity: 0; transition: opacity 0.3s ease;
  font-family: 'Jost', sans-serif;
}
.about-grid-item:hover .about-grid-caption { opacity: 1; }

/* Instagram link pill */
.about-instagram-link { margin-top: 8px; }
.insta-pill {
  display: inline-flex; flex-direction: column;
  border: 0.75px solid var(--sage);
  padding: 10px 18px; text-decoration: none;
  transition: var(--transition); gap: 2px;
}
.insta-pill:hover { background: var(--deep); }
.insta-pill span { font-size: 12px; color: var(--forest); font-weight: 500; transition: var(--transition); }
.insta-pill:hover span { color: var(--white); }
.insta-pill-sub { font-size: 10px !important; color: var(--light) !important; font-weight: 300 !important; }

/* ── HOW IT WORKS ──────────────────────────────────────────────── */
.how {
  background: var(--deep);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-title { color: var(--white); }
.how .section-eyebrow { color: var(--sage); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 56px;
}
.step { position: relative; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300;
  color: rgba(143,168,136,0.2); line-height: 1;
  margin-bottom: 16px;
}
.step-line {
  width: 36px; height: 1px; background: var(--sage);
  margin-bottom: 18px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: var(--white); font-weight: 400;
  margin-bottom: 12px;
}
.step-body {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.8; font-weight: 300;
}

/* ── DESTINATIONS ──────────────────────────────────────────────── */
.destinations { background: var(--mist); }
.destinations-inner { max-width: 1200px; margin: 0 auto; }
.dest-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 56px;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 4px;
}
.dest-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.dest-card:nth-child(1) { grid-column: span 2; }
.dest-card:nth-child(4) { grid-column: span 2; }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,20,0.75) 0%, transparent 55%);
}
.dest-label {
  position: absolute; bottom: 16px; left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--white); font-weight: 400;
}
.dest-sub {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 2px;
}

/* Tags */
.dest-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px;
}
.dest-tag-link {
  cursor: pointer;
  background: var(--deep);
  color: var(--sage) !important;
  border-color: var(--sage) !important;
  transition: all 0.25s ease;
}
.dest-tag-link:hover {
  background: var(--sage);
  color: var(--deep) !important;
}
.dest-tag {
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--forest);
  color: var(--forest); padding: 12px 22px;
  border-radius: 30px; font-family: 'Jost', sans-serif;
  display: inline-block;
}

/* ── FOR BRANDS ────────────────────────────────────────────────── */
.brands {
  background: var(--cream);
}
.brands-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.brands-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 36px 0;
}
.brand-stat {
  padding: 24px 20px;
  background: var(--mist);
  border-left: 2px solid var(--sage);
}
.brand-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; color: var(--deep);
  display: block; margin-bottom: 4px;
}
.brand-stat-lbl {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light);
}
.collab-types {
  display: flex; flex-direction: column; gap: 12px; margin-top: 28px;
}
.collab-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; background: var(--mist);
  transition: var(--transition);
}
.collab-item:hover { background: var(--deep); }
.collab-item:hover .collab-name { color: var(--white); }
.collab-item:hover .collab-desc { color: rgba(255,255,255,0.4); }
.collab-dot {
  width: 6px; height: 6px; background: var(--sage);
  border-radius: 50%; flex-shrink: 0; margin-top: 4px;
}
.collab-name {
  font-size: 13px; font-weight: 500; color: var(--deep);
  margin-bottom: 2px; transition: var(--transition);
}
.collab-desc {
  font-size: 13px; color: var(--light); line-height: 1.5;
  font-weight: 300; transition: var(--transition);
}

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact {
  background: var(--deep);
  text-align: center;
}
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact .section-title { color: var(--white); margin-bottom: 10px; }
.contact .section-body { color: rgba(255,255,255,0.42); margin: 0 auto 48px; text-align: center; }
.contact-tabs {
  display: flex; justify-content: center; gap: 0; margin-bottom: 40px;
}
.contact-tab {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 28px; border: 0.75px solid rgba(143,168,136,0.3);
  background: none; color: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
  font-family: 'Jost', sans-serif;
}
.contact-tab:first-child { border-radius: 20px 0 0 20px; }
.contact-tab:last-child  { border-radius: 0 20px 20px 0; border-left: none; }
.contact-tab.active, .contact-tab:hover {
  background: var(--sage); color: var(--deep);
  border-color: var(--sage);
}
.contact-form { display: none; flex-direction: column; gap: 14px; }
.contact-form.active { display: flex; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.06);
  border: 0.75px solid rgba(143,168,136,0.2);
  color: var(--white); padding: 14px 16px;
  font-family: 'Jost', sans-serif; font-size: 10px;
  outline: none; transition: border-color 0.25s ease;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,0.25); font-size: 12px; letter-spacing: 0.1em;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--sage);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-select option { background: var(--deep); }
.form-submit {
  background: var(--sage); color: var(--deep);
  border: none; padding: 16px; cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; transition: var(--transition);
}
.form-submit:hover { background: var(--white); }

.contact-details {
  display: flex; justify-content: center; gap: 40px;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(143,168,136,0.12);
}
.contact-detail-item { text-align: center; }
.contact-detail-label {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 6px; display: block;
}
.contact-link {
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-link:hover { color: var(--sage) !important; }
.contact-detail-value {
  font-size: 15px; color: rgba(255,255,255,0.65);
}

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: #111E0D;
  padding: 28px 60px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(143,168,136,0.1);
  flex-wrap: wrap; gap: 16px;
}
.footer-main {
  display: flex; flex-direction: column; gap: 5px;
}
.footer-brand {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); font-weight: 500;
}
.footer-sub {
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.32);
}
.footer-copy {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage); }

/* ── Animations ────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GROUP TRIPS ───────────────────────────────────────────────── */
.group-trips {
  background: var(--deep);
}
.group-inner { max-width: 1200px; margin: 0 auto; }
.group-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px;
}
.group-header .section-title { color: var(--white); }
.group-header .section-eyebrow { color: var(--sage); }
.group-header .section-body { color: rgba(255,255,255,0.42); max-width: 380px; }
.group-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-bottom: 52px;
}
.group-card {
  background: var(--forest);
  overflow: hidden;
  transition: var(--transition);
}
.group-card:hover { transform: translateY(-4px); }
.group-card-img {
  height: 220px;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.group-card:hover .group-card-img { transform: scale(1.04); }
.group-card-body { padding: 24px 22px 26px; }
.group-tag {
  font-size: 7.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); border: 0.5px solid var(--sage);
  padding: 3px 10px; border-radius: 20px;
  display: inline-block; margin-bottom: 12px;
}
.group-dest {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400;
  color: var(--white); margin-bottom: 8px;
}
.group-desc {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.7; font-weight: 300; margin-bottom: 14px;
}
.group-details {
  display: flex; gap: 8px; align-items: center;
  font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
}
.group-cta {
  text-align: center;
  padding: 44px 0 8px;
  border-top: 1px solid rgba(143,168,136,0.12);
}
.group-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.6); margin-bottom: 24px;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 28px 70px; }
  section { padding: 72px 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-section { padding: 60px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .dest-intro { grid-template-columns: 1fr; gap: 32px; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:nth-child(1), .dest-card:nth-child(4) { grid-column: span 1; }
  .brands-inner { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { padding: 20px 28px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}
