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

:root {
  --teal:       #2A6B74;
  --teal-mid:   #3A8A96;
  --teal-light: #5BB3BF;
  --seafoam:    #A8D8DC;
  --seafoam-pale: #E8F6F7;
  --coral:      #E07A5F;
  --coral-light:#F0A898;
  --sand:       #F2E4C4;
  --sand-dark:  #D4C09A;
  --cream:      #FEFAF4;
  --white:      #FFFFFF;
  --border:     #DFD3B8;
  --text:       #2C2218;
  --text-mid:   #5C4A36;
  --text-muted: #9A8A78;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lora', Georgia, serif; color: var(--text); background: var(--cream); line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--teal); }

/* ── NAV ── */
.site-nav { background: var(--cream); height: 70px; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 999; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(42,107,116,0.08); }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--teal); text-decoration: none; font-style: italic; }
.nav-brand span { color: var(--coral); font-style: normal; }
.site-nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
.site-nav ul a { color: var(--text-mid); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; }
.site-nav ul a:hover, .site-nav ul a.active { color: var(--teal); }
.site-nav .nav-cta a { background: var(--coral); color: var(--white) !important; padding: 9px 22px; border-radius: 30px; }
.site-nav .nav-cta a:hover { background: var(--coral-light); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 30px; border-radius: 30px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-light); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-mid); color: var(--white); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); border-radius: 30px; }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); border-radius: 30px; }
.btn-outline-white:hover { border-color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 10px; }

/* ── UTILS ── */
.coral-bar { width: 40px; height: 2px; background: var(--coral); margin: 10px 0 18px; }
.eyebrow { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }

/* ── FOOTER ── */
.site-footer { background: var(--teal); color: rgba(255,255,255,0.6); padding: 56px 48px; text-align: center; font-size: 13.5px; margin-top: 80px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); font-style: italic; margin-bottom: 4px; }
.footer-tagline { color: var(--seafoam); font-size: 14px; margin-bottom: 20px; font-style: italic; }
.footer-info { line-height: 2.2; margin-bottom: 22px; }
.footer-info a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-info a:hover { color: var(--seafoam); }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 16px; text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.1); color: var(--seafoam); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 11px; color: rgba(255,255,255,0.3); }
