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

:root {
  --cream: #F5F0E8;
  --red: #C0392B;
  --red-dark: #96231A;
  --black: #1A1A1A;
  --blue: #1A3A5C;
  --blue-light: #2E5F8A;
  --teal: #2A7A7A;
  --white: #FFFFFF;
  --grey: #888;
  --light-grey: #F0EDE6;
  --border: #DDD8CC;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--cream);
  color: var(--black);
  font-size: 18px;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  background-color: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--red); }
.nav-links a.active { opacity: 1; color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--cream); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  background-color: var(--black);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-ripple {
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(42,122,122,0.2);
  pointer-events: none;
}
.hero-ripple:nth-child(2) { width: 900px; height: 300px; bottom: -150px; border-color: rgba(42,122,122,0.12); }
.hero-ripple:nth-child(3) { width: 1200px; height: 400px; bottom: -200px; border-color: rgba(42,122,122,0.07); }

.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 em { font-style: italic; color: var(--red); }

.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Source Sans 3', sans-serif;
}

.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(192,57,43,0.3); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); }

.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { opacity: 0.88; transform: translateY(-2px); }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TAGLINE BAND ── */
.tagline-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 1.2rem 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1060px; margin: 0 auto; }
.section-alt { background-color: var(--white); }
.section-dark { background-color: var(--blue); color: var(--white); }
.section-black { background-color: var(--black); color: var(--white); }
.section-teal { background-color: var(--teal); color: var(--white); }
.section-red { background-color: var(--red); color: var(--white); }
.section-cream { background-color: var(--cream); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
  display: block;
}
.section-dark .section-label,
.section-black .section-label,
.section-teal .section-label,
.section-red .section-label { color: rgba(255,255,255,0.6); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  color: var(--blue);
}
.section-dark h2,
.section-black h2,
.section-teal h2,
.section-red h2 { color: var(--white); }

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--blue);
  line-height: 1.3;
}
.section-dark h3,
.section-black h3,
.section-teal h3 { color: var(--white); }

p { margin-bottom: 1.15rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.8rem;
}
.section-dark .lead,
.section-black .lead,
.section-teal .lead,
.section-red .lead { color: rgba(255,255,255,0.88); }

/* ── LAYOUTS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col-wide { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }

/* ── CARDS ── */
.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.section-alt .card { background: var(--light-grey); }
.section-dark .card,
.section-black .card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.section-dark .card h3,
.section-black .card h3 { color: var(--white); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ── CALLOUT / QUOTE ── */
.callout {
  border-left: 4px solid var(--red);
  padding: 1.4rem 1.8rem;
  background: rgba(192,57,43,0.06);
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.65;
  color: var(--blue);
}

.callout-dark {
  border-left: 4px solid rgba(255,255,255,0.4);
  padding: 1.4rem 1.8rem;
  background: rgba(255,255,255,0.07);
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

/* ── POEM ── */
.poem {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
  max-width: 520px;
  margin: 2rem auto;
  color: var(--blue);
}
.poem-dark { color: rgba(255,255,255,0.9); }

/* ── KARMA VALUES ── */
.karma-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

/* ── FORM ── */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.4rem; }

label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--blue);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--black);
  transition: border-color 0.2s, background 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

textarea { resize: vertical; min-height: 110px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.checkbox-row input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--red);
  transform: scale(1.4);
  flex-shrink: 0;
}
.checkbox-row label {
  color: var(--black);
  font-weight: 400;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
}

.form-note { font-size: 0.84rem; color: var(--grey); margin-top: 0.4rem; font-style: italic; }

.visibility-note {
  background: rgba(42,122,122,0.08);
  border: 1px solid rgba(42,122,122,0.25);
  border-radius: 4px;
  padding: 1rem 1.4rem;
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}
.visibility-note strong { color: var(--teal); }

.success-msg {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  color: #2e7d32;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1rem;
}

/* ── SIGNATORIES ── */
.signatory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}
.signatory-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
}
.signatory-name { font-weight: 700; color: var(--blue); font-size: 0.95rem; }
.signatory-city { font-size: 0.82rem; color: var(--grey); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 760px; margin: 0 auto; }
.footer-logo img { height: 70px; width: auto; margin: 0 auto 1rem; display: block; }
.footer-tagline { font-size: 0.9rem; font-style: italic; margin-bottom: 1.8rem; }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1.5rem; list-style: none; margin-bottom: 2rem; font-size: 0.84rem;
}
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-copy {
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
}

/* ── MOBILE ── */
@media (max-width: 820px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--black); padding: 1.5rem 2rem; gap: 1.2rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 2rem; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .four-col { grid-template-columns: 1fr; }
}
