/* =========================================================
   CADT — Center for Alternative Development Trust
   Palette: deep navy + gold/amber + soft sand/cream
   Type: Fraunces (display) + Source Sans 3 (body)
   ========================================================= */

:root {
  --navy: #0B1F3A;
  --navy-700: #102a4c;
  --navy-600: #16355e;
  --gold: #C8922A;
  --gold-400: #e0a93b;
  --gold-100: #f4e4c1;
  --sand: #f6efe3;
  --cream: #fbf7f0;
  --ink: #1b2432;
  --muted: #5c6a7d;
  --line: #e7ddcb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 10px 30px -22px rgba(11, 31, 58, 0.55);
  --shadow-md: 0 26px 60px -34px rgba(11, 31, 58, 0.6);
  --maxw: 1180px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.14;
  font-weight: 600;
  margin: 0 0 .6rem;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--sand); }
.section-navy { background: var(--navy); color: #dbe4f0; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-navy .section-head p { color: #aeb9cc; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #1a1204; box-shadow: 0 14px 26px -14px rgba(200, 146, 42, .7); }
.btn-primary:hover { background: var(--gold-400); color: #1a1204; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); color: #fff; }
.btn-light:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-sm { padding: .5rem 1rem; font-size: .86rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: #b9c4d6;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .5rem 1.4rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.topbar-contact { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar-contact a, .topbar-links a { color: #c3cdde; }
.topbar-contact a:hover, .topbar-links a:hover { color: var(--gold-400); }
.topbar-links { display: flex; gap: 1.3rem; align-items: center; }
.topbar-links .sep { color: rgba(255,255,255,.2); }
@media (max-width: 760px) { .topbar-contact { display: none; } }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 240, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, background .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(251, 247, 240, .96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .7rem 1.4rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark { height: 46px; width: auto; transition: transform .3s ease; }
.brand:hover .brand-mark { transform: scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-text span { font-size: .68rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: .3rem; }
.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: .96rem;
  padding: .55rem .8rem;
  border-radius: 8px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: .8rem; right: .8rem; bottom: .35rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav .btn { margin-left: .5rem; }

.menu-btn {
  display: none;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  border-radius: 9px;
  width: 46px; height: 42px;
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 940px) {
  .menu-btn { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: 5rem 1.3rem 2rem;
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 70;
    box-shadow: -30px 0 60px -30px rgba(0,0,0,.6);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { color: #eaf0f8; padding: .85rem .6rem; border-radius: 8px; }
  .main-nav a::after { display: none; }
  .main-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .main-nav .btn { margin: .6rem 0 0; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(11,31,58,.5);
    opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 65;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11,31,58,.94) 0%, rgba(11,31,58,.82) 42%, rgba(11,31,58,.35) 100%),
    radial-gradient(120% 120% at 80% 20%, rgba(200,146,42,.25), transparent 55%);
}
.hero .container { position: relative; z-index: 2; padding-top: 3rem; padding-bottom: 3rem; }
.hero-inner { max-width: 660px; }
.hero .eyebrow { color: var(--gold-400); }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--gold-400); }
.hero-lead { font-size: 1.22rem; color: #d7e0ee; max-width: 560px; margin-bottom: 2rem; }
.hero .btn-group { margin-top: .4rem; }

/* hero entrance animation */
.hero-inner > * { opacity: 0; transform: translateY(26px); animation: heroRise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-inner > *:nth-child(1) { animation-delay: .15s; }
.hero-inner > *:nth-child(2) { animation-delay: .3s; }
.hero-inner > *:nth-child(3) { animation-delay: .45s; }
.hero-inner > *:nth-child(4) { animation-delay: .6s; }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.4rem; z-index: 2;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.hero-scroll span { width: 1px; height: 34px; background: rgba(255,255,255,.5); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.6);} 50% { opacity: 1; transform: scaleY(1);} }

/* ---------- Quote strip ---------- */
.quote-strip {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  position: relative;
}
.quote-strip .container { padding-top: 3.2rem; padding-bottom: 3.2rem; text-align: center; }
.quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: .4; display: block; margin-bottom: .4rem; }
.quote-strip blockquote {
  margin: 0 auto;
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: #f2f5fb;
  line-height: 1.4;
}
.quote-ref { display: block; margin-top: 1.1rem; font-family: var(--font-body); font-style: normal; font-size: .9rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-400); }

/* ---------- Program pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pillar {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.pillar-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; z-index: -2; }
.pillar::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,31,58,.96) 12%, rgba(11,31,58,.5) 60%, rgba(11,31,58,.15) 100%); z-index: -1; }
.pillar:hover .pillar-img { transform: scale(1.07); }
.pillar-body { padding: 1.7rem 1.6rem 1.8rem; }
.pillar-tag { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gold-400); font-weight: 700; margin-bottom: .6rem; }
.pillar h3 { color: #fff; font-size: 1.32rem; }
.pillar p { color: #cdd6e5; font-size: .96rem; margin-bottom: 1rem; }
.pillar .plink { color: var(--gold-400); font-weight: 600; font-size: .9rem; display: inline-flex; gap: .35rem; align-items: center; }
.pillar .plink::after { content: "→"; transition: transform .25s ease; }
.pillar:hover .plink::after { transform: translateX(4px); }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } .pillar { min-height: 340px; } }

/* ---------- Generic cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .cards-grid, .cards-grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--gold-100); color: var(--navy);
}
.card .card-icon svg { width: 26px; height: 26px; }
.card p { color: var(--muted); margin-bottom: 0; }
.card h3 { margin-bottom: .5rem; }

/* number pill for focus/steps */
.num-card { display: flex; gap: 1.1rem; align-items: flex-start; }
.num-badge {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy); color: var(--gold-400);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 1.8rem; } .split.reverse .split-media { order: 0; } }

/* ---------- Stats band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat b { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-400); display: block; line-height: 1; }
.stat span { color: #aeb9cc; font-size: .95rem; }
@media (max-width: 760px) { .stat-band { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; } }

/* ---------- Page header (inner hero) ---------- */
.page-header {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: clamp(3.4rem, 8vw, 6rem) 0 clamp(2.6rem, 5vw, 3.6rem);
  overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 130% at 85% 0%, rgba(200,146,42,.28), transparent 55%);
}
.page-header::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 2 L61 39 L98 39 L68 61 L79 98 L50 75 L21 98 L32 61 L2 39 L39 39 Z' fill='none' stroke='%23ffffff' stroke-width='.6' opacity='.5'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .15;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin-bottom: .5rem; }
.page-header p { color: #c3cdde; max-width: 620px; font-size: 1.08rem; margin: 0; }
.breadcrumb { font-size: .82rem; letter-spacing: .04em; color: var(--gold-400); margin-bottom: 1rem; text-transform: uppercase; }
.breadcrumb a { color: #c3cdde; }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- About sidebar layout ---------- */
.doc-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.6rem; align-items: start; }
.doc-nav { position: sticky; top: 100px; display: flex; flex-direction: column; gap: .2rem; }
.doc-nav a { color: var(--muted); font-weight: 600; padding: .55rem .75rem; border-left: 2px solid var(--line); border-radius: 0 6px 6px 0; }
.doc-nav a:hover, .doc-nav a.active { color: var(--navy); border-left-color: var(--gold); background: var(--sand); }
.doc-block { margin-bottom: 2.6rem; scroll-margin-top: 110px; }
.doc-block:last-child { margin-bottom: 0; }
.doc-block p { color: #35414f; }
.message-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold);
}
.message-sign { margin-top: 1rem; }
.message-sign b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; }
.message-sign span { color: var(--muted); font-size: .9rem; }
.pull-verse { font-family: var(--font-display); font-style: italic; color: var(--navy); font-size: 1.15rem; border-left: 3px solid var(--gold); padding-left: 1.1rem; margin: 1.2rem 0; }
@media (max-width: 860px) { .doc-layout { grid-template-columns: 1fr; } .doc-nav { position: static; flex-direction: row; flex-wrap: wrap; } .doc-nav a { border-left: none; border-bottom: 2px solid var(--line); } }

/* ---------- Value chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.chip { background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem; font-weight: 600; color: var(--navy); font-size: .92rem; }
.section-navy .chip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }

/* ---------- Blog / notice / activity list ---------- */
.stack-list { display: flex; flex-direction: column; gap: 1.1rem; }
.blog-card, .notice-card, .activity-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover, .notice-card:hover, .activity-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-media { display: block; margin: -1.4rem -1.5rem 1.1rem; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--sand); }
.card-media img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .card-media img, .activity-card:hover .card-media img { transform: scale(1.05); }
.blog-date, .notice-date, .content-detail-date {
  display: inline-block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: .5rem;
}
.blog-card h3, .notice-card h3, .activity-card h3 { margin-bottom: .5rem; }
.blog-title-link, .notice-title-link, .activity-title-link { color: var(--navy); }
.blog-title-link:hover, .notice-title-link:hover, .activity-title-link:hover { color: var(--gold); }
.blog-body, .notice-body, .activity-body { color: var(--muted); font-size: .97rem; }
.blog-card-actions, .notice-card-actions, .activity-card-actions {
  margin: 1rem 0 0; display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
}
.blog-attachment-badge, .notice-attachment-badge, .activity-attachment-badge { font-size: .78rem; color: var(--muted); }

/* card grid for blog listing */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }

/* ---------- Content detail ---------- */
.content-detail-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
}
.content-detail-card h1 { margin-bottom: .4rem; }
.content-detail-body { color: #35414f; line-height: 1.8; margin-top: 1rem; }
.content-attachment-wrap { margin-top: 1.5rem; }
.content-attachment-image { width: 100%; max-height: 560px; object-fit: contain; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--sand); }
.content-pdf-frame { width: 100%; height: min(70vh, 640px); border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--sand); }
.content-detail-actions { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .7rem; }

/* ---------- Gallery ---------- */
.gallery-program { margin-bottom: 2.8rem; }
.gallery-program-desc { color: var(--muted); margin-bottom: 1.2rem; max-width: 720px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item p { margin: 0; padding: .8rem 1rem 1rem; color: var(--muted); font-size: .9rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Careers ---------- */
.job-list { display: flex; flex-direction: column; gap: 1.1rem; }
.job-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1fr auto; gap: 1rem 1.4rem; align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-100); }
.job-meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin: .5rem 0 .6rem; }
.job-meta span { font-size: .82rem; color: var(--muted); display: inline-flex; align-items: center; gap: .35rem; }
.job-meta b { color: var(--navy); }
.job-card p { color: var(--muted); margin: 0; font-size: .95rem; }
.tag { display: inline-block; background: var(--gold-100); color: #6b4b12; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
@media (max-width: 640px) { .job-card { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.6rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-direction: column; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; background: var(--sand); color: var(--navy); display: grid; place-items: center; }
.info-ic svg { width: 20px; height: 20px; }
.info-list b { display: block; color: var(--navy); font-family: var(--font-display); }
.info-list a, .info-list p { color: var(--muted); margin: 0; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: var(--cream); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,.16); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.map-frame { width: 100%; height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-top: 1.4rem; }
.form-success { background: #eaf6ec; border: 1px solid #b7e0bd; color: #216e34; padding: .85rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-weight: 600; }
.form-error { color: #c0392b; font-size: .82rem; margin-top: .3rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-600) 100%); color: #fff; border-radius: var(--radius); padding: clamp(2.2rem, 5vw, 3.4rem); text-align: center; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% -10%, rgba(200,146,42,.3), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3cdde; max-width: 620px; margin: 0 auto 1.6rem; }
.cta-band .btn-group { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aeb9cc; padding: 3.6rem 0 0; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-brand img { height: 54px; margin-bottom: 1rem; }
.footer-brand p { color: #9fabc0; font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: #aeb9cc; font-size: .95rem; }
.footer-col a:hover { color: var(--gold-400); }
.newsletter p { color: #9fabc0; font-size: .92rem; margin-bottom: .9rem; }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input { flex: 1; padding: .7rem .9rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; font: inherit; }
.newsletter-form input::placeholder { color: #8291a8; }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.social-row { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social-row a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cdd6e5; }
.social-row a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.3rem 0; font-size: .85rem; color: #8291a8; }
.footer-bottom a { color: #8291a8; }
.footer-bottom a:hover { color: var(--gold-400); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-inner > *, .hero-bg { animation: none; opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.lead { font-size: 1.12rem; color: var(--muted); }
.divider-dot { color: var(--gold); }
.empty-note { color: var(--muted); background: var(--sand); border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 1.2rem; }
