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

:root {
  --blush:  #F0EAE2;
  --cream:  #FAF7F4;
  --sage:   #A8C5B5;
  --sage2:  #C8DDD4;
  --dusty:  #B8A99A;
  --gold:   #C9A96E;
  --gold2:  #E8D5B0;
  --navy:   #2C3E55;
  --navy2:  #3D5166;
  --navy3:  #4E6278;
  --text:   #3D3530;
  --muted:  #7A8B99;
  --border: rgba(168,197,181,0.35);
  --shadow: rgba(44,62,85,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,247,244,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  box-shadow: 0 2px 20px var(--shadow);
}

.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-crest {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--sage), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(201,169,110,0.3);
}
.logo-text { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; line-height: 1.2; }
.logo-sub  { color: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

nav { display: flex; gap: 4px; align-items: center; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
nav a:hover { color: var(--navy); background: rgba(168,197,181,0.18); }
nav a.active { color: var(--navy); background: rgba(168,197,181,0.22); font-weight: 600; }

.header-actions { display: flex; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .22s;
  cursor: pointer; border: none;
  font-family: 'Inter', sans-serif; letter-spacing: 0.2px;
}
.btn-gold   { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(201,169,110,0.35); }
.btn-gold:hover   { background: #b8944d; box-shadow: 0 6px 20px rgba(201,169,110,0.45); }
.btn-outline{ background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover{ background: var(--blush); border-color: var(--sage); }
.btn-sage   { background: var(--sage); color: #fff; }
.btn-sage:hover   { background: #8db5a3; }
.btn-navy   { background: var(--navy); color: #fff; }
.btn-navy:hover   { background: var(--navy2); }
.btn-ghost  { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover  { background: rgba(255,255,255,0.25); }

/* ── LAYOUT ── */
section { padding: 80px 48px; }
.container { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 700; color: var(--navy);
  line-height: 1.18; margin-bottom: 16px;
}
.section-title span, .section-title em { color: var(--gold); font-style: normal; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 48px; }

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 12px var(--shadow);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(44,62,85,0.13); }

.card-pastel {
  border-radius: 16px; padding: 30px 26px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.card-pastel:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow); }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy2) 50%, var(--navy3) 100%);
  padding: 80px 48px 68px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(168,197,181,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.10) 0%, transparent 50%);
}
.page-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(30px,4.5vw,50px); font-weight: 900; position: relative; line-height: 1.15; }
.page-hero h1 span { color: var(--gold2); }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 15px; margin-top: 14px; position: relative; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── MISC ── */
.gold-bar { width: 48px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--sage)); border-radius: 2px; margin-bottom: 22px; }
.tag {
  display: inline-block;
  background: rgba(168,197,181,0.2);
  color: var(--navy2);
  border: 1px solid rgba(168,197,181,0.5);
  border-radius: 20px; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; padding: 4px 14px;
  text-transform: uppercase; margin-bottom: 16px;
}
.icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px; flex-shrink: 0;
}
ul.check-list { list-style: none; padding: 0; }
ul.check-list li {
  padding: 9px 0 9px 26px; position: relative;
  color: var(--muted); font-size: 14px;
  border-bottom: 1px solid rgba(168,197,181,0.18);
}
ul.check-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 10px; top: 12px;
}
ul.check-list li:last-child { border-bottom: none; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 56px 48px 28px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 19px; margin-bottom: 12px; }
.footer-brand p  { font-size: 13px; line-height: 1.75; }
.footer-col h4   { color: var(--gold2); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a    { display: block; color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--sage2); }
.footer-bottom   { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; font-size: 12px; flex-wrap: wrap; gap: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav    { display: none; }
  section { padding: 52px 20px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 20px 50px; }
}
@media (min-width: 1600px) {
  .container { max-width: 1360px; }
}
