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

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

:root {
  --bg: #F6F4EF;
  --surface: #EDEAE2;
  --card: #FFFFFF;
  --card2: #F8F6F1;
  --gold: #C8920E;
  --gold-dark: #A57208;
  --gold-soft: rgba(200,146,14,0.10);
  --text: #0B1526;
  --muted: #697489;
  --border: #DDD9CF;
  --nav-bg: rgba(246,244,239,0.95);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { background: var(--gold); color: #FFFFFF; font-size: 13px; font-weight: 600; padding: 10px 22px; border-radius: 6px; text-decoration: none; white-space: nowrap; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.88; }

/* ---- SECTION WRAPPERS ---- */
.section { padding: 96px 56px; max-width: 1140px; margin: 0 auto; }
.section-full { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-full > .section { padding-top: 96px; padding-bottom: 96px; }

/* ---- LABELS & TITLES ---- */
.label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.title { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--text); }
.title em { font-style: italic; color: var(--gold); }
.subtitle { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* ---- BUTTONS ---- */
.btn { display: inline-block; font-weight: 600; font-size: 14px; padding: 13px 28px; border-radius: 8px; text-decoration: none; transition: opacity 0.2s; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.btn-gold { background: var(--gold); color: #FFFFFF; }
.btn-gold:hover { opacity: 0.88; }
.btn-outline { background: transparent; color: var(--muted); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---- CARDS ---- */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 36px; }
.card:hover { border-color: rgba(200,146,14,0.35); transition: border-color 0.2s; }
.card-featured { border-color: rgba(200,146,14,0.5); background: #FFFBF2; }

/* ---- DIVIDER ---- */
.divider { width: 1px; height: 36px; background: var(--border); }
.divider-h { width: 100%; height: 1px; background: var(--border); margin: 48px 0; }

/* ---- SOCIAL BAR ---- */
.social-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 48px; display: flex; align-items: center; justify-content: center;
  gap: 56px; background: var(--card);
}
.social-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.social-stat strong { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text); }
.social-stat span { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---- GRIDS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: start; }

/* ---- PHOTO PLACEHOLDER ---- */
.photo-placeholder {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.photo-placeholder .ph-icon { font-size: 28px; opacity: 0.5; }
.photo-placeholder .ph-label { font-weight: 500; color: var(--text); }
.photo-placeholder .ph-size { font-size: 11px; opacity: 0.7; }

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--muted); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ---- TESTIMONIALS ---- */
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { font-size: 13px; color: var(--text); font-weight: 500; }
.testi-level { font-size: 11px; color: var(--gold); margin-top: 3px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---- BOTTOM CTA BLOCK ---- */
.cta-block { background: var(--text); }
.cta-block > div { max-width: 680px; margin: 0 auto; padding: 96px 48px; text-align: center; }
.cta-block .title { color: #F6F4EF; }
.cta-block .title em { color: var(--gold); }
.cta-block .subtitle { color: rgba(246,244,239,0.65); margin: 0 auto 36px; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 13px 20px; color: #F6F4EF; font-size: 14px; width: 280px; outline: none; transition: border-color 0.2s; font-family: 'Inter', sans-serif; }
.cta-input:focus { border-color: var(--gold); }
.cta-input::placeholder { color: rgba(246,244,239,0.4); }
.cta-note { font-size: 12px; color: rgba(246,244,239,0.45); margin-top: 16px; }
.cta-note a { color: var(--gold); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { padding: 80px 56px 72px; max-width: 1140px; margin: 0 auto; border-bottom: 1px solid var(--border); }
.page-hero .label { margin-bottom: 20px; }
.page-hero .title { font-size: 52px; max-width: 700px; margin-bottom: 20px; }
.page-hero .subtitle { margin-bottom: 36px; }
