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

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #F7F4EE;
  color: #1A1A18;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── CSS Variables ───────────────────────────────────── */
:root {
  --teal:        #0E7A6A;
  --teal-mid:    #1A9B87;
  --teal-light:  #E8F5F2;
  --teal-dark:   #095C50;
  --sand:        #F7F4EE;
  --sand-dark:   #EDE9E0;
  --ink:         #1A1A18;
  --ink-mid:     #2E2E2A;
  --muted:       #6B7068;
  --muted-light: #9BA098;
  --white:       #FFFFFF;
  --border:      rgba(14,122,106,0.14);
  --border-gray: rgba(26,26,24,0.1);
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06), 0 2px 12px rgba(0,0,0,.04);
  --shadow-md:   0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 100px;
}

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, .serif { font-family: 'Merriweather', serif; }
h1 { font-size: clamp(30px, 4vw, 48px); line-height: 1.18; letter-spacing: -0.3px; font-weight: 700; }
h2 { font-size: clamp(24px, 3.2vw, 34px); line-height: 1.22; letter-spacing: -0.2px; font-weight: 700; }
h3 { font-size: 19px; line-height: 1.35; font-weight: 700; }
p  { font-size: 15px; line-height: 1.8; color: var(--muted); }

/* ── Layout ──────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── Labels ──────────────────────────────────────────── */
.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px; display: block;
}

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: 1080px; margin: 0 auto; padding: 0 32px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img  { height: 40px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Merriweather', serif;
  font-size: 19px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.3px; line-height: 1;
}
.logo-text span { color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color .2s; font-weight: 400; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--teal); color: white;
  font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: var(--radius-full);
  border: none; transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--teal-mid); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; background: white;
  border-top: 1px solid var(--border); padding: 16px 32px 24px; gap: 4px;
}
.mobile-menu a { display: block; font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--border-gray); color: var(--muted); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta { margin-top: 12px; text-align: center; display: block; width: 100%; padding: 13px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--radius-full);
  border: none; transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none; cursor: pointer;
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,122,106,.3); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--teal);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--radius-full);
  border: 1.5px solid var(--teal); transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--teal-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--teal);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  padding: 0; border: none; transition: gap .2s; text-decoration: none;
}
.btn-ghost:hover { gap: 10px; }

/* ── Badge ───────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: var(--radius-full);
  background: var(--teal-light); color: var(--teal);
}
.badge::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────────── */
footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.footer-logo-img  { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.6; }
.footer-logo-text { font-family: 'Merriweather', serif; font-size: 17px; font-weight: 700; color: rgba(255,255,255,.85); }
.footer-logo-text span { color: var(--teal-mid); }
.footer-tagline { font-family: 'Merriweather', serif; font-style: italic; font-weight: 300; font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: 12px; }
.footer-brand p  { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 240px; }
.footer-col h4   { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.footer-col ul   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.25); font-family: 'DM Sans', sans-serif;
}

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeup { animation: fadeUp .65s ease forwards; }
.delay-1 { animation-delay: .12s; opacity: 0; }
.delay-2 { animation-delay: .24s; opacity: 0; }
.delay-3 { animation-delay: .36s; opacity: 0; }
.delay-4 { animation-delay: .48s; opacity: 0; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section    { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
