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

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

:root {
  --sand:       #F5EDD8;
  --stone:      #C8B89A;
  --deep:       #1A2832;
  --teal:       #2A7F72;
  --teal-light: #3BA898;
  --gold:       #C8902A;
  --gold-dark:  #B8821F;
  --cream:      #FAF6EE;
  --text-dark:  #1A2832;
  --text-mid:   #4A5568;
  --text-light: rgba(255,255,255,0.65);
  --border:     rgba(200,184,154,0.3);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(26,40,50,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: 80px 0; }

.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 44px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--teal);  color: white; }
.btn-primary:hover  { background: var(--teal-light); }

.btn-gold      { background: var(--gold);  color: white; }
.btn-gold:hover     { background: var(--gold-dark); }

.btn-outline   { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.45); }
.btn-outline:hover  { border-color: rgba(255,255,255,0.85); }

.btn-outline-dark { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-outline-dark:hover { background: var(--teal); color: white; }

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ── DARK SECTIONS ── */
.bg-dark {
  background: var(--deep);
  color: white;
}
.bg-dark .section-title { color: white; }
.bg-dark .section-sub   { color: rgba(255,255,255,0.55); }
.bg-dark .section-label { color: #7DD8CC; }

.bg-sand { background: var(--sand); }

/* ── FREE CANCEL ── */
.free-cancel {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
