/* -------------------------------------------------------
   The CHA Foundation: Base Styles
   Palette: white, navy, soft gold, sage green, subtle blush.
   Hopeful, elegant, compassionate, community-focused.
   ------------------------------------------------------- */

:root {
  --color-white: #ffffff;
  --color-bg-soft: #f7f7f5;
  --color-navy-tint: #e8ecf2;

  --color-navy: #1c2b47;
  --color-navy-dark: #12203a;

  --color-gold: #c69a4e;
  --color-gold-dark: #a17d38;
  --color-gold-tint: #f6ecd8;

  --color-sage: #8ca487;
  --color-sage-dark: #6d8869;
  --color-sage-tint: #edf2ec;

  --color-blush: #dba9a3;
  --color-blush-dark: #c48981;
  --color-blush-tint: #faf0ee;

  --color-text: #1f2530;
  --color-text-light: #5b6270;
  --color-border: #e2e5eb;

  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --max-width: 1160px;

  --shadow-xs: 0 1px 3px rgba(28, 43, 71, 0.06);
  --shadow-sm: 0 3px 10px rgba(28, 43, 71, 0.08);
  --shadow: 0 6px 20px rgba(28, 43, 71, 0.10);
  --shadow-md: 0 12px 32px -6px rgba(28, 43, 71, 0.16);
  --shadow-lg: 0 24px 55px -18px rgba(28, 43, 71, 0.26);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a {
  color: var(--color-navy);
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 2px;
}

a:hover { color: var(--color-sage-dark); }

img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  background: var(--color-navy-tint);
  min-height: 200px;
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-style: italic;
}

.obj-top {
  object-position: center top;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
}

/* -------------------- Status / notice badges -------------------- */

.status-bar {
  background: var(--color-navy);
  color: #eef1f6;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.65rem 1.25rem;
}

.status-bar a {
  color: var(--color-gold-tint);
  text-decoration-color: var(--color-gold);
}
.status-bar a:hover { color: #fff; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-sage-tint);
  color: var(--color-sage-dark);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.status-badge.gold {
  background: var(--color-gold-tint);
  color: var(--color-gold-dark);
}

.note-box {
  background: var(--color-bg-soft);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.note-box a { font-weight: 600; }

/* -------------------- Buttons -------------------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 1px 2px rgba(161, 125, 56, 0.15);
}
.btn-gold:hover {
  background: var(--color-gold-dark);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(161, 125, 56, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn-outline:hover {
  background: var(--color-navy);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(28, 43, 71, 0.4);
}

.btn-navy {
  background: var(--color-navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--color-navy-dark);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(28, 43, 71, 0.45);
}

.btn-sage {
  background: var(--color-sage);
  color: #fff;
}
.btn-sage:hover {
  background: var(--color-sage-dark);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(109, 136, 105, 0.45);
}

/* -------------------- Header -------------------- */

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 60px;
  min-height: 0;
  object-fit: contain;
  border-radius: 0;
  background: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover {
  color: var(--color-navy);
  border-bottom-color: var(--color-gold);
}
.site-nav a[aria-current="page"] {
  color: var(--color-navy);
  border-bottom-color: var(--color-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* Animated hamburger: three bars that morph into an X */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover {
  border-color: var(--color-navy);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-navy);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav-toggle.is-open {
  background: var(--color-navy-tint);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .header-inner {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .logo-img {
    height: 43px;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden auto;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 16px 30px -18px rgba(28, 43, 71, 0.35);
    transition: max-height 0.32s ease;
  }
  .site-nav.is-open {
    max-height: 70vh;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
    max-width: var(--max-width);
    padding: 0.5rem 1.5rem 1.25rem;
  }

  .site-nav li {
    border-bottom: 1px solid var(--color-border);
  }
  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 0.1rem;
    font-size: 1.05rem;
  }

  .site-header {
    position: sticky;
  }
}

/* -------------------- Hero -------------------- */

.hero {
  background: var(--color-bg-soft);
  padding: 3.5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.75rem 0 2.5rem;
  }
}

.hero .eyebrow,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.hero .eyebrow::before,
.eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  margin-bottom: 0.65rem;
  background: var(--color-gold);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 60ch;
}

.hero-photo {
  position: relative;
}

.hero-photo::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 60%;
  height: 60%;
  background: var(--color-blush-tint);
  border-radius: var(--radius);
  z-index: 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

/* -------------------- Sections -------------------- */

section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.section-alt {
  background: var(--color-sage-tint);
}

.section-blush {
  background: var(--color-blush-tint);
}

.section-navy {
  background: var(--color-navy);
  color: #dfe4ec;
}
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy a:not(.btn) { color: var(--color-gold-tint); }

.section-heading {
  max-width: 65ch;
  margin-bottom: 2rem;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .section-split {
    grid-template-columns: 1fr;
  }
  .section-split .section-split-photo {
    order: -1;
  }
}

.section-split img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

/* -------------------- Cards -------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-photo {
  margin: -1.85rem -1.85rem 1.1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.card-photo img {
  border-radius: 0;
  aspect-ratio: 4 / 3;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background var(--transition), transform var(--transition);
}

.card:hover .card-icon-wrap {
  background: var(--color-gold-tint);
  transform: scale(1.06);
}

.card-icon {
  width: 26px;
  height: 26px;
  color: var(--color-navy);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* -------------------- Pull quote -------------------- */

.pull-quote {
  position: relative;
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 0.25rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.65rem;
  line-height: 1.35;
  color: var(--color-navy);
  z-index: 1;
}

.pull-quote::before {
  content: "\201C";
  position: absolute;
  top: -3.25rem;
  left: -1.25rem;
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 9rem;
  color: var(--color-gold);
  opacity: 0.16;
  line-height: 1;
  z-index: -1;
  pointer-events: none;
}

.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
}

/* -------------------- Lists -------------------- */

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.value-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.value-list .mark {
  color: var(--color-gold-dark);
  font-size: 1.5rem;
  line-height: 1;
  font-family: var(--font-heading);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.value-chip {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  box-shadow: var(--shadow-xs);
}

/* -------------------- Milestone / timeline steps -------------------- */

.milestone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.milestone-list li {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.milestone-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.25rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* -------------------- CTA block -------------------- */

.cta-block {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.75rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(198, 154, 78, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.cta-block > * {
  position: relative;
}

.cta-block h2 {
  color: #fff;
}

.cta-block p {
  color: #dfe4ec;
  max-width: 55ch;
  margin: 0 auto 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-buttons .btn-outline {
  border-color: #fff;
  color: #fff;
}
.cta-buttons .btn-outline:hover {
  background: #fff;
  color: var(--color-navy);
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* -------------------- Program / list rows -------------------- */

.program {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.program:last-child { border-bottom: none; }

.program-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-icon {
  width: 30px;
  height: 30px;
  color: var(--color-gold-dark);
}

@media (max-width: 560px) {
  .program {
    grid-template-columns: 1fr;
  }
}

/* -------------------- Donation tiers -------------------- */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.tier-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.tier-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.tier-amount {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: 0.35rem;
}

.tier-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.tier-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.amount-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.amount-chip {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* -------------------- FAQ (details/summary) -------------------- */

.faq {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.25rem 1.5rem;
  margin-bottom: 0.9rem;
  background: var(--color-white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.faq:hover {
  border-color: var(--color-navy);
}

.faq[open] {
  border-color: var(--color-gold);
  background: var(--color-gold-tint);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-navy);
  padding: 1.15rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-text-light);
  background: var(--color-white);
  transition: all var(--transition);
}

.faq[open] summary::after {
  transform: rotate(45deg);
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

.faq p {
  color: var(--color-text-light);
  padding-bottom: 1rem;
}

/* -------------------- Resource / download list -------------------- */

.resource-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.resource-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--color-sage-tint);
  color: var(--color-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.resource-item h3 {
  margin-bottom: 0.15rem;
  font-size: 1.05rem;
}

.resource-item p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.resource-status {
  margin-left: auto;
  flex-shrink: 0;
}

/* -------------------- Partner logo grid -------------------- */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}

.partner-slot {
  background: var(--color-bg-soft);
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/* -------------------- Forms -------------------- */

.form-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
}

input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-tint);
}

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

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* Newsletter signup */
.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter input[type="email"] {
  flex: 1 1 220px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.newsletter input[type="email"]::placeholder { color: #c3cadb; }
.newsletter input[type="email"]:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(198, 154, 78, 0.25);
}

/* -------------------- Footer -------------------- */

.site-footer {
  background: var(--color-navy);
  color: #d9dfe9;
  padding-top: 3.5rem;
  margin-top: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: block;
  width: auto;
  height: 46px;
  min-height: 0;
  object-fit: contain;
  border-radius: 0;
  background: none;
  margin-bottom: 1.1rem;
}

.footer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-brand p {
  margin: 0 0 0.35rem;
  color: #c3cadb;
  font-size: 0.9rem;
}

.footer-brand a {
  color: #f0dfb8;
  text-decoration-color: var(--color-gold);
}
.footer-brand a:hover { color: #fff; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  color: #d9dfe9;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--color-gold-tint); }

.footer-newsletter {
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-newsletter h4 {
  color: #fff;
  margin-bottom: 0.35rem;
}
.footer-newsletter p {
  color: #c3cadb;
  margin-bottom: 1rem;
  max-width: 55ch;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  color: #a3adc2;
  font-size: 0.85rem;
}

.footer-bottom nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-bottom nav a {
  color: #a3adc2;
  text-decoration: none;
}
.footer-bottom nav a:hover { color: #fff; }

/* -------------------- Scroll reveal -------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
