@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg: #f6f2ec;
  --surface: #fffdf9;
  --text: #221d1a;
  --muted: #6f665f;
  --dark: #181311;
  --dark-2: #241b17;
  --gold: #b98a2f;
  --gold-soft: #d9bf8b;
  --line: #e8ddd0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 236, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(185, 138, 47, 0.12);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  gap: 20px;
}

.brand {
  font-size: 1.45rem;
  font-weight: 800;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 0.96rem;
  color: var(--muted);
  position: relative;
  transition: 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(18,14,12,0.52), rgba(18,14,12,0.76)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80")
    center/cover no-repeat;
  color: white;
  padding: 140px 0 120px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(217,191,139,0.16), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.08), transparent 25%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1;
  margin: 0 0 20px;
  animation: heroFloat 3.2s ease-in-out infinite alternate;
}

.hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.hero + .section {
  margin-top: 40px;
}

/* BADGES */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.badge {
  padding: 10px 15px;
  border: 1px solid rgba(217,191,139,0.45);
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.08);
  color: #f6e6c6;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.badge:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

/* BUTTONS */
.button-row {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.btn-primary {
  background: var(--gold);
  color: #16110e;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section:first-of-type {
  padding-top: 120px;
}

.section > .container > * + * {
  margin-top: 32px;
}

.section-dark {
  background: var(--dark);
  color: white;
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 0.8rem;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 30px;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(185,138,47,0.22);
}

.card p {
  color: var(--muted);
}

/* STAT STRIP */
.stat-strip {
  background: #201814;
  color: white;
  padding: 30px 0;
  margin-bottom: 40px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-row div {
  color: #ecd7af;
  font-weight: 700;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, #1a1411, #2a1f19);
  color: white;
  border-radius: 28px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(217,191,139,0.12), transparent 26%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.06), transparent 24%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 2;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
}

/* FORMS */
input, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: rgba(185,138,47,0.55);
  box-shadow: 0 0 0 4px rgba(185,138,47,0.08);
}

textarea {
  min-height: 140px;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 40px;
  color: var(--muted);
}

/* REVEAL ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* HERO FLOAT */
@keyframes heroFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(6px);
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 100px 0;
  }
}

/* =========================
   GLOBAL SPACING FIX
========================= */

/* Add breathing room between sections */
.section {
  padding: 100px 0; /* increased from 72 */
}

/* Add space between stacked sections */
.section + .section {
  margin-top: 20px;
}

/* Fix space under hero */
.hero + .stat-strip {
  margin-top: -20px;
}

/* =========================
   GRID + CARD SPACING FIX
========================= */

.grid-2 {
  gap: 40px; /* was 28 */
}

.grid-3 {
  gap: 30px; /* was 22 */
}

/* Add space between rows of cards */
.card {
  margin-bottom: 10px;
}

/* Add space between sections inside container */
.container > * + * {
  margin-top: 30px;
}

/* =========================
   TEXT SPACING IMPROVEMENT
========================= */

h2 {
  margin-bottom: 24px; /* more breathing */
}

p {
  margin-bottom: 16px;
}

/* =========================
   CTA SECTION SPACING
========================= */

.cta-band {
  margin-top: 60px;
}

/* =========================
   ANIMATION (MODERN FEEL)
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slight stagger effect */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =========================
   HOVER POLISH (PREMIUM FEEL)
========================= */

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
   MOBILE FIXES
========================= */

@media (max-width: 900px) {
  .section {
    padding: 70px 0;
  }

  .grid-2,
  .grid-3 {
    gap: 24px;
  }
}
