@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --cream: #f5f0eb;
  --brown: #8b6f47;
  --charcoal: #2c2a28;
  --muted: #9e9690;
  --border: #e0d9d0;
  --white: #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
em { font-style: italic; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--brown);
  color: #fff;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.85; }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.btn-outline { background: transparent; border: 1px solid var(--brown); color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: #fff; opacity: 1; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: var(--charcoal);
  padding: 1rem 2.5rem;
}
.nav-logo {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #fff;
  display: flex; align-items: center; gap: 0.35rem;
}
.nav-logo em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.82rem; letter-spacing: 0.06em; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--brown); color: #fff !important; padding: 0.5rem 1.25rem; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 6rem 2.5rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,25,20,0.75) 50%, rgba(30,25,20,0.2));
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 1rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-locations { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-locations span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); z-index: 1;
}

/* ── Stats ── */
.stats {
  background: var(--charcoal);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat {
  padding: 2rem;
  display: flex; flex-direction: column; align-items: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #fff; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }

/* ── Section base ── */
.section { padding: 7rem 0; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brown); margin-bottom: 1rem; }
.section-eyebrow.light { color: rgba(255,255,255,0.6); }
.section h2 { margin-bottom: 1rem; }
.section-sub { color: var(--muted); max-width: 600px; margin-bottom: 3.5rem; }
.light { color: #fff; }

/* ── Packages ── */
.packages { background: var(--white); }
.packages .container > h2 { margin-bottom: 0.75rem; }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.package-card { background: var(--cream); border: 1px solid var(--border); position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.package-card.featured { border-color: var(--brown); }
.package-badge { position: absolute; top: -1px; right: 1.5rem; background: var(--brown); color: #fff; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.75rem; }
.package-img { height: 200px; background-size: cover; background-position: center; }
.package-body { padding: 1.5rem; }
.package-body h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.package-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--charcoal); }
.package-sub { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.package-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; }
.package-body ul { margin-bottom: 1.25rem; }
.package-body li { font-size: 0.82rem; color: var(--muted); padding: 0.2rem 0; padding-left: 1rem; position: relative; }
.package-body li::before { content: '—'; position: absolute; left: 0; color: var(--brown); }
.link-arrow { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--brown); }

/* ── About split ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 0; }
.about-img img { width: 100%; height: 100vh; object-fit: cover; object-position: top; }
.about-text { padding: 5rem; background: var(--cream); }
.about-text p { color: var(--muted); margin-bottom: 2rem; max-width: 480px; }

/* ── Gallery ── */
.gallery-section { background: var(--charcoal); }
.gallery-section .section-eyebrow { color: var(--brown); }
.gallery-section h2 { color: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 6px;
  margin-top: 2.5rem;
}
.gallery-item { background-size: cover; background-position: center; transition: opacity 0.3s; cursor: pointer; }
.gallery-item:hover { opacity: 0.85; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── Testimonials ── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2.5rem; }
.testimonial { background: var(--cream); border: 1px solid var(--border); padding: 2rem; }
.stars { color: var(--brown); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial p { font-style: italic; color: var(--charcoal); margin-bottom: 1rem; line-height: 1.8; }
.testimonial-name { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ── Enquiry ── */
.enquiry-section { position: relative; padding: 8rem 0; }
.enquiry-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.enquiry-overlay { position: absolute; inset: 0; background: rgba(20,16,12,0.82); }
.enquiry-inner { position: relative; z-index: 1; max-width: 700px; }
.enquiry-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 0.85rem 1rem; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus { border-color: var(--brown); }
.enquiry-form select option { background: var(--charcoal); }
.enquiry-form textarea { min-height: 120px; resize: vertical; }
.enquiry-form .btn { align-self: flex-start; margin-top: 0.5rem; }
.form-success { display: none; color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 0.5rem; }

/* ── Footer ── */
.footer { background: #1a1714; color: rgba(255,255,255,0.6); padding: 5rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; }
.footer-logo { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 1rem; letter-spacing: 0.08em; color: #fff; margin-bottom: 1rem; display: flex; gap: 0.35rem; }
.footer-logo em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 320px; }
.footer-social { display: flex; gap: 1.25rem; margin-top: 1.5rem; }
.footer-social a { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-contact a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 2rem; text-align: center; font-size: 0.78rem; }

/* ── Videos ── */
.video-section { background: var(--cream); }
.yt-link { color: var(--brown); font-size: 0.85rem; }
.yt-link:hover { text-decoration: underline; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.56fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--charcoal);
}
.video-wrap.video-short {
  padding-top: 177.78%; /* 9:16 for Shorts */
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--charcoal); flex-direction: column; justify-content: center; gap: 2rem; padding: 2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; z-index: 200; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img img { height: 60vw; }
  .about-text { padding: 3rem 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
