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

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

:root {
  --sage:        #6B9E73;
  --sage-light:  #EBF3EC;
  --sage-mid:    #C5DEC8;
  --sage-dark:   #3D6B44;
  --sun:         #D4913A;
  --sun-light:   #FBF0E2;
  --sun-dark:    #A86A1E;
  --blush:       #C97B68;
  --blush-light: #F8EDEA;
  --sky:         #5B90AA;
  --sky-light:   #E5EFF4;
  --cream:       #FDFAF5;
  --cream-dark:  #F5F0E8;
  --brown:       #4A3728;
  --brown-mid:   #7A5C48;
  --text:        #2A1F17;
  --text-soft:   #6B5040;
  --text-muted:  #9A8070;
  --radius:      18px;
  --radius-sm:   10px;
  --radius-lg:   28px;
  --nav-height:  70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--brown);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-soft); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
}

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }
.section-intro { max-width: 560px; margin-bottom: 3rem; }
.section-intro p { font-size: 1rem; margin-top: 0.75rem; }

/* ── NAV ─────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-height);
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sage-mid);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--brown); display: block;
}
.nav-logo-sub {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-soft); text-decoration: none;
  padding: 6px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--sage-dark);
  background: var(--sage-light);
}
.nav-cta {
  background: var(--sage-dark); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600;
  border: none; padding: 9px 20px; border-radius: 50px;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brown); transform: scale(1.02); }

/* ── MOBILE MENU TOGGLE ─────────────────────────── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--sage-light); }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--text); fill: none; stroke-width: 2; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 12px 26px; border-radius: 50px; cursor: pointer;
  text-decoration: none; transition: all 0.2s; border: none;
}
.btn-primary { background: var(--sage-dark); color: white; }
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--sage-dark);
  border: 2px solid var(--sage);
}
.btn-outline:hover { background: var(--sage-light); }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── TRUST BAR ───────────────────────────────────── */
.trust-bar {
  background: var(--sage-dark);
  padding: 0.9rem 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
}
.trust-item svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.trust-item span {
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

/* ── CARDS ───────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--sage-mid);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61,107,68,0.1);
}
.icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.icon-box svg { width: 22px; height: 22px; stroke-width: 1.8; fill: none; }
.icon-box.sage { background: var(--sage-light); }
.icon-box.sage svg { stroke: var(--sage-dark); }
.icon-box.sun { background: var(--sun-light); }
.icon-box.sun svg { stroke: var(--sun-dark); }
.icon-box.sky { background: var(--sky-light); }
.icon-box.sky svg { stroke: var(--sky); }
.icon-box.blush { background: var(--blush-light); }
.icon-box.blush svg { stroke: var(--blush); }

/* ── BADGES ──────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}
.badge-sage { background: var(--sage-light); color: var(--sage-dark); border: 1px solid var(--sage-mid); }
.badge-sun  { background: var(--sun-light);  color: var(--sun-dark);  border: 1px solid #E8C088; }
.badge-sky  { background: var(--sky-light);  color: var(--sky);      border: 1px solid #A8C8D8; }
.badge-blush{ background: var(--blush-light);color: var(--blush);    border: 1px solid #E8B8A8; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer-brand .nav-logo-name { color: rgba(255,255,255,0.95); font-size: 1.15rem; }
.footer-brand .nav-logo-sub  { color: rgba(255,255,255,0.45); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 1rem; line-height: 1.7; }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream-dark) 60%, var(--sun-light) 100%);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--sage-mid);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; max-width: 540px; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: rgba(253,250,245,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sage-mid);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 14px; }
  .nav-toggle { display: flex; }
  .nav-cta { font-size: 0.8rem; padding: 8px 16px; }
  section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.2rem; }
}
