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

:root {
  --bg: #f7f5f2;
  --bg-alt: #efece8;
  --surface: #ddd9d3;
  --text: #1c1917;
  --text-dim: #6b6560;
  --accent: #b03025;
  --accent-hover: #8c2620;
  --radius: 8px;
  --ease: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-hover); }

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

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(247,245,242,.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--surface);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; color: var(--text); }
.logo-mark { color: var(--accent); }
.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 3.5px;
}

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-dim); font-size: .86rem; font-weight: 500; letter-spacing: .1px; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: #fff !important;
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 5px;
  font-size: .84rem !important;
  font-weight: 600 !important;
  letter-spacing: .2px;
}
.nav-cta:hover { background: var(--accent-hover); color: #fff !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: var(--ease); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,8,.85) 0%, rgba(15,12,8,.5) 40%, rgba(15,12,8,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  max-width: 680px;
}
.hero-badge-row { margin-bottom: 20px; }
.hero-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.18;
  margin-bottom: 18px;
  font-weight: 400;
  color: #fff;
}
.hero-sub {
  font-size: .98rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat strong {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.hero-stat span { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.15); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 5px;
  font-weight: 600;
  font-size: .88rem;
  transition: all var(--ease);
  cursor: pointer;
  border: none;
  letter-spacing: .2px;
}
.btn-white {
  background: #fff;
  color: var(--text);
}
.btn-white:hover {
  background: var(--bg);
  color: var(--text);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline-light:hover {
  border-color: #fff;
  color: #fff;
}
.btn-solid {
  background: var(--accent);
  color: #fff;
}
.btn-solid:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--surface);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- Sections ---- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--text);
}
.section-lead {
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 44px;
  font-size: .93rem;
  line-height: 1.7;
}

/* ---- Travel grid ---- */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.travel-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--surface);
  transition: transform var(--ease), box-shadow var(--ease);
}
.travel-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.travel-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.travel-body { padding: 20px; }
.travel-body h3 { font-size: 1.05rem; margin-bottom: 4px; font-weight: 600; }
.travel-body p { color: var(--text-dim); font-size: .86rem; line-height: 1.5; }

.services-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.service-pill {
  padding: 8px 18px;
  border: 1px solid var(--surface);
  border-radius: 50px;
  font-size: .78rem;
  color: var(--text-dim);
  font-weight: 500;
  background: #fff;
}

/* ---- Offerings grid ---- */
.offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}
.offer-card {
  background: #fff;
  border: 1px solid var(--surface);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color var(--ease);
}
.offer-card:hover { border-color: var(--accent); }
.offer-icon { color: var(--accent); margin-bottom: 14px; }
.offer-card h3 { font-size: .98rem; margin-bottom: 6px; font-weight: 600; }
.offer-card p { color: var(--text-dim); font-size: .86rem; line-height: 1.6; }

/* ---- Value strip ---- */
.value-strip {
  display: flex;
  border: 1px solid var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.value-item {
  flex: 1;
  padding: 20px 22px;
  border-right: 1px solid var(--surface);
}
.value-item:last-child { border-right: none; }
.value-item strong { display: block; font-size: .86rem; margin-bottom: 2px; color: var(--text); }
.value-item span { font-size: .78rem; color: var(--text-dim); }

/* ---- About ---- */
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: start;
}
.about-text p {
  color: var(--text-dim);
  margin-bottom: 14px;
  font-size: .92rem;
  line-height: 1.75;
}
.about-numbers { padding-top: 36px; }
.number-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--surface);
}
.number-block:first-child { padding-top: 0; }
.number-block:last-child { border-bottom: none; }
.number {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 3px;
}
.number-label { font-size: .78rem; color: var(--text-dim); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  margin-top: 36px;
  align-items: start;
}
.contact-block { margin-bottom: 24px; }
.contact-block h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-block a,
.contact-block p { display: block; font-size: .93rem; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid var(--surface);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .88rem;
  transition: border-color var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form select { appearance: none; }

/* ---- Footer ---- */
.footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--surface);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer-tagline { color: var(--text-dim); font-size: .82rem; margin-top: 5px; }
.footer-right { display: flex; gap: 24px; }
.footer-right a { color: var(--text-dim); font-size: .82rem; }
.footer-right a:hover { color: var(--text); }
.footer-copy { color: var(--text-dim); font-size: .74rem; }

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 260px; height: 100vh;
    background: var(--bg); flex-direction: column;
    padding: 72px 24px 24px; gap: 18px;
    transition: right var(--ease);
    box-shadow: -4px 0 20px rgba(0,0,0,.06);
  }
  .nav-links.open { right: 0; }
  .nav-cta { text-align: center; }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-top: 90px;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 10px 44px;
  }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub {
    margin-bottom: 28px;
    max-width: 100%;
  }
  .hero-actions {
    margin-bottom: 36px;
    gap: 14px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
    align-items: start;
    justify-items: center;
    text-align: center;
  }
  .hero-stat-divider { display: none; }
  .hero-stat strong { font-size: 1.3rem; }

  .travel-grid { grid-template-columns: 1fr; }
  .value-strip { flex-direction: column; }
  .value-item { border-right: none; border-bottom: 1px solid var(--surface); }
  .value-item:last-child { border-bottom: none; }

  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-right { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .hero {
    min-height: auto;
    padding: 100px 0 36px;
  }
  .hero h1 { font-size: clamp(1.75rem, 9vw, 2.2rem); }
  .hero-content { padding: 0 2px 36px; }
  .hero-badge-row { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 24px; }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    padding-top: 20px;
  }
}
