@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/jost-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/jost-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/jost-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/jost-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}

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

:root {
  --navy:       #2B3073;
  --green:      #3DAA5C;
  --magenta:    #E8317A;
  --gold:       #F5A623;
  --teal:       #2BB5A0;
  --peach:      #F4956A;
  --bloom:      #d4688a;
  --cream:      #f8f4ef;
  --ink:        #1c1814;
  --mist:       #7a7068;
  --rule:       rgba(28,24,20,0.1);
  --read-width: 800px;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.7;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2.5rem;
  border-bottom: 0.5px solid var(--rule);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-back {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--ink); }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--navy);
  color: rgba(245, 240, 234, 0.7);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--bloom);
}
.footer-logo img { height: 44px; width: auto; }
.footer-by { font-size: 11px; color: rgba(245, 240, 234, 0.55); margin-top: 8px; font-weight: 300; }
.footer-contact { font-size: 12.5px; line-height: 2; color: rgba(245, 240, 234, 0.65); text-align: right; font-weight: 300; }
.footer-contact a { color: #f5f0ea; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--bloom); }
.footer-credits { flex-basis: 100%; font-size: 10.5px; color: rgba(245, 240, 234, 0.4); font-weight: 300; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(245, 240, 234, 0.08); letter-spacing: 0.01em; }

/* ─── H1 ──────────────────────────────────────────── */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 em {
  font-style: italic;
  color: var(--bloom);
  font-weight: 400;
}

/* ─── SECTION LABEL ───────────────────────────────── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--bloom);
}

/* ─── EYEBROW ─────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: var(--green);
}

/* ─── CTA BAND ────────────────────────────────────── */
.cta-band {
  background: var(--cream);
  padding: 4rem 2.5rem;
  margin-top: 2rem;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--bloom);
}
.cta-band p {
  color: var(--mist);
  font-weight: 300;
  margin-bottom: 1.75rem;
}

@media (max-width: 820px) {
  .nav { padding: 0.85rem 1.25rem; }
  .cta-band { padding: 3rem 1.25rem; }
}
