:root {
  --dark-bg: #0f221d;
  --dark-bg-2: #142c25;
  --cream: #f3ecdd;
  --cream-2: #ece3d0;
  --sage: #93b09d;
  --sage-strong: #6f9280;
  --cream-text: #f6f2e8;
  --cream-text-muted: #b9c4bc;
  --dark-text: #16241f;
  --dark-text-muted: #5f6b62;
  --border-dark: rgba(246, 242, 232, 0.16);
  --border-light: rgba(22, 36, 31, 0.14);
  --radius: 14px;
  --max-w: 1160px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--cream);
  color: var(--dark-text);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }
@media (max-width: 640px) { section { padding: 56px 0; } }

.serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
}
.serif em {
  color: var(--sage);
  font-style: italic;
  font-weight: 500;
}
.heading-lg { font-size: clamp(2rem, 4.4vw, 3.1rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow.on-dark { color: var(--sage); }
.eyebrow.on-cream { color: var(--sage-strong); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: var(--cream-text);
  border-color: var(--border-dark);
}
.btn-outline-light:hover { border-color: var(--sage); color: var(--sage); }

.btn-solid {
  background: var(--sage-strong);
  color: #0c1a15;
}
.btn-solid:hover { opacity: 0.9; }

.link-underline {
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(15, 34, 29, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dark);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: "Playfair Display", serif; font-size: 1.2rem; color: var(--cream-text); }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.22em; color: var(--sage); font-weight: 700; margin-top: 2px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a.nav-link { font-size: 0.85rem; font-weight: 600; color: var(--cream-text-muted); }
nav a.nav-link:hover { color: var(--cream-text); }
@media (max-width: 720px) {
  nav a.nav-link { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background: #0c1a15 url("https://images.pexels.com/photos/18214902/pexels-photo-18214902.jpeg?auto=compress&cs=tinysrgb&w=1920") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,26,21,0.94) 10%, rgba(12,26,21,0.55) 55%, rgba(12,26,21,0.25) 100%);
}
.hero-inner { position: relative; padding: 64px 0 56px; color: var(--cream-text); }
.hero-inner p.lead {
  color: var(--cream-text-muted);
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 20px 0 32px;
}
.hero-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-cta .link-underline { color: var(--cream-text); }

/* Content sections on cream */
.band-cream { background: var(--cream); }
.band-cream-alt { background: var(--cream-2); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }

.step-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.step {
  display: flex;
  gap: 16px;
}
.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: #0c1a15;
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin: 0 0 4px; font-size: 1rem; }
.step p { margin: 0; color: var(--dark-text-muted); font-size: 0.92rem; }

.type-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.type-tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--border-light);
  color: var(--dark-text-muted);
}
.type-tab.active { background: var(--dark-bg); color: var(--cream-text); border-color: var(--dark-bg); }

.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px -30px rgba(22, 36, 31, 0.35);
}
.photo-card img { height: 320px; width: 100%; object-fit: cover; }

.region-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.region-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(111, 146, 128, 0.14);
  border: 1px solid rgba(111, 146, 128, 0.35);
  color: var(--sage-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Final CTA / form */
.cta-final {
  background: linear-gradient(160deg, var(--dark-bg-2), var(--dark-bg));
  color: var(--cream-text);
}
.cta-final .two-col { align-items: flex-start; }
.cta-final p.lead { color: var(--cream-text-muted); margin-top: 18px; max-width: 44ch; }

.lead-form {
  background: rgba(246, 242, 232, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 8px;
}
.field input,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-dark);
  color: var(--cream-text);
  font-size: 1rem;
  font-family: inherit;
  padding: 8px 2px;
  outline: none;
}
.field select option { background: var(--dark-bg); color: var(--cream-text); }
.field input::placeholder { color: rgba(246, 242, 232, 0.35); }
.field input:focus,
.field select:focus { border-color: var(--sage); }
.lead-form .btn-solid { width: 100%; justify-content: center; margin-top: 6px; }

/* Floating WhatsApp pill */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-strong);
  color: #0c1a15;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.45);
}
.wa-float:hover { opacity: 0.92; }
@media (max-width: 480px) {
  .wa-float span.wa-text { display: none; }
  .wa-float { padding: 14px; }
}

footer {
  background: var(--dark-bg);
  color: var(--cream-text-muted);
  padding: 30px 0;
  border-top: 1px solid var(--border-dark);
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.86rem;
}
footer a:hover { color: var(--cream-text); }
