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

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --color-navy:        #1C3D5A;
  --color-navy-dark:   #1A1F24;
  --color-mid-blue:    #2E6B8A;
  --color-fog:         #E9EDF2;
  --color-fog-light:   #F4F7FA;
  --color-sand:        #C4A97A;
  --color-text:        #1A1F24;
  --color-muted:       #6B7A8D;
  --color-muted-light: #A8BDD0;
  --color-border:      #E9EDF2;
  --color-white:       #FFFFFF;

  /* Typography */
  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Font sizes */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 16px;
  --text-lg:   17px;
  --text-xl:   26px;
  --text-2xl:  44px;
  --text-3xl:  48px;
  --text-4xl:  52px;
  --text-hero: 72px;

  /* Spacing */
  --section-pad-y: 96px;
  --container-max: 1280px;
  --page-pad-x:    80px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* Navbar */
.navbar {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad-x);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.navbar__logo img { height: 32px; width: auto; }
.navbar__links { display: flex; align-items: center; gap: 40px; }
.navbar__link {
  font-size: 14px;
  font-weight: 400;
  color: #4A5568;
  letter-spacing: 0.01em;
}
.navbar__cta {
  padding: 10px 22px;
  background: var(--color-navy);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

/* Hamburger button */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Eyebrow label */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-sand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Section header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: 52px;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.section-header p {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 26px;
  color: var(--color-muted);
  max-width: 520px;
}

/* Footer */
.footer {
  width: 100%;
  background: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px var(--page-pad-x);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__brand-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
}
.footer__copy {
  font-size: 13px;
  font-weight: 300;
  color: #4A5568;
}
.footer__links {
  display: flex;
  gap: 32px;
}
.footer__link {
  font-size: 13px;
  color: #4A5568;
}
