/* ===========================================================
   Alchemist GTM – base styles
   =========================================================== */

:root {
  --ink: #17130f;
  --ink-soft: #362c1f;
  --cream: #fbf7ef;
  --cream-alt: #f1e9d6;
  --white: #ffffff;
  --gold-light: #edcb70;
  --gold: #c8952c;
  --gold-dark: #8c5e14;
  --border: rgba(23, 19, 15, 0.12);
  --border-soft: rgba(23, 19, 15, 0.08);
  --shadow: 0 20px 60px rgba(23, 19, 15, 0.08);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(200, 149, 44, 0.35), inset 0 0 0 1.5px transparent;
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(200, 149, 44, 0.35), inset 0 0 0 1.5px rgba(23, 19, 15, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  padding: 12.5px 26.5px;
}
.btn-ghost:hover { border-color: var(--gold-dark); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-mark.small { width: 30px; height: 30px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-word em { font-style: normal; color: var(--gold-dark); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a:not(.nav-cta):hover { color: var(--gold-dark); }
.nav-cta {
  background: var(--ink);
  color: var(--gold-light) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-cta:hover { background: var(--gold-dark); color: #000000 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}
.hero-ring {
  position: absolute;
  top: -220px;
  right: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 60px solid var(--gold-light);
  opacity: 0.35;
  z-index: 0;
}
.hero-ring::before {
  content: "";
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  border: 3px solid var(--gold-dark);
  opacity: 0.5;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sections shared ---------- */
section { padding: 88px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 720px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 40px;
}
.section-intro + .section-intro {
  margin-top: -26px;
}

/* ---------- Services ---------- */
.services { background: var(--cream); }
.pillar-flow {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: -22px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pillar:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pillar-index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid var(--gold-light);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 16px;
}
.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.98rem; }

.services h2 .light { color: var(--ink-soft); font-weight: 400; }

.lead-tier { margin-top: 32px; }
.lead-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 0 0 14px;
}
.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.lead-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 40px 38px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.lead-card:hover { transform: translateY(-3px); }
.lead-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.lead-card p { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }
.lead-card p + p { margin-top: 10px; }

.foundation-tier { margin-top: 28px; }
.foundation-band {
  background: var(--cream-alt);
  border-radius: 18px;
  padding: 32px 36px;
}
.foundation-band p { margin: 0 0 18px; color: var(--ink-soft); font-size: 0.96rem; max-width: 780px; }
.foundation-band p strong { color: var(--ink); }
.chip-row { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.services-note {
  background: var(--cream-alt);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 4px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 780px;
  margin: 0;
}

/* ---------- Proof of impact (quick-hit rows) ---------- */
.proof-tier { margin-top: 28px; }
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.proof-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 16px 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.proof-row:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.proof-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.proof-media {
  position: relative;
  width: 180px;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  flex-shrink: 0;
}
.proof-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.proof-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.proof-dots button.active { background: var(--gold); transform: scale(1.3); }
.proof-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.proof-media-img.is-active { opacity: 1; }
.proof-media-img.contain-white { background: var(--white); object-fit: contain; padding: 12px; }
.proof-media-img.contain-navy { background: #1e1c54; object-fit: contain; padding: 6px; }
.proof-media-img.contain-card { background: var(--white); object-fit: contain; padding: 3px; }
.proof-media-img.laptop-frame { background: #232323; object-fit: contain; padding: 10px 10px 16px; }
.proof-media-outline { border: 1px solid var(--border); }
.proof-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink) 0%, #2b2015 55%, var(--gold-dark) 150%);
}
.proof-media-placeholder span {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.proof-body { flex: 1; min-width: 0; }
.proof-logo {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold-dark);
  margin-bottom: 2px;
}
.proof-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.proof-hook { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0; }
.proof-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
}
.proof-link:hover { color: var(--ink); border-color: var(--ink); }
.proof-link + .proof-link { margin-left: 20px; margin-top: 14px; }

.proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
  min-width: 130px;
  justify-content: flex-end;
}
.proof-stat {
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 70%);
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: 0 8px 20px rgba(200, 149, 44, 0.3);
  width: 172px;
  flex-shrink: 0;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  white-space: normal;
  line-height: 1.15;
}
.proof-stat span {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  white-space: normal;
  line-height: 1.3;
  margin-top: 3px;
}

@media (max-width: 860px) {
  .proof-row { flex-direction: column; align-items: flex-start; }
  .proof-visual { width: 100%; max-width: 260px; }
  .proof-media { width: 100%; }
  .proof-stats { width: 100%; justify-content: flex-start; min-width: 0; }
}

/* ---------- Work / testimonials ---------- */
.work { background: var(--cream); }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
  margin: 0;
}
.testimonial-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 22px;
}
.testimonial-card cite { display: block; font-style: normal; }
.testimonial-card cite strong { display: block; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.testimonial-card .quote-role,
.testimonial-card .quote-prev { display: block; font-size: 0.8rem; color: var(--ink-soft); line-height: 1.4; }
.testimonial-card .quote-prev { opacity: 0.75; }

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

/* ---------- Signature Work carousel (currently unused — see archive) ---------- */
.case-logo {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.case-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.case-stats strong { color: var(--ink); font-family: var(--font-display); }

.carousel { position: relative; margin-top: 12px; }
.carousel-viewport { overflow: hidden; border-radius: 22px; }
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 32px;
}
.slide-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
}
.slide-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-media-navy {
  background: #1e1c54;
}
.slide-media-navy img { object-fit: contain; }

/* Stacked slide layout: media spans full width in a row, text sits below */
.slide-stacked {
  grid-template-columns: 1fr;
}
.slide-media-row {
  display: flex;
  gap: 12px;
}
.row-item {
  flex: 1;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
}
.row-item iframe { width: 100%; height: 100%; border: 0; display: block; }
.row-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.row-item-light { background: var(--white); }
.row-item-light img { object-fit: contain; }
.row-item-navy { background: #1e1c54; }
.row-item-navy img { object-fit: contain; }

.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.slide-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.slide-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.slide-links a:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }

.slide-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink) 0%, #2b2015 55%, var(--gold-dark) 150%);
  position: relative;
}
.placeholder-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 24px solid var(--gold-light);
  opacity: 0.22;
}
.placeholder-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.slide-info { display: flex; flex-direction: column; gap: 4px; }
.slide-info h3 { margin-bottom: 4px; }
.slide-hook {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 2px 0 16px;
}

.slide-quote {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.slide-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 12px;
}
.slide-quote cite {
  display: block;
  font-style: normal;
}
.slide-quote cite strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}
.slide-quote .quote-role,
.slide-quote .quote-prev {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.slide-quote .quote-prev { opacity: 0.75; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s ease, color 0.15s ease;
}
.carousel-btn:hover { background: var(--ink); color: var(--gold-light); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.carousel-dots button.active { background: var(--gold); transform: scale(1.3); }

/* ---------- About ---------- */
.about {
  background: var(--cream-alt);
  position: relative;
}
.about-inner { max-width: 760px; }
.about h2 { margin-bottom: 22px; }
.about-copy p { color: var(--ink-soft); font-size: 1.03rem; }
.about-copy strong { color: var(--ink); }
.about-copy .btn { margin-top: 12px; }
.about-byline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 2px 0 8px;
}
.about-byline p {
  font-family: var(--font-display);
  font-size: 1.1rem !important;
  color: var(--ink) !important;
  margin: 0 !important;
}
.about-byline strong { font-weight: 700; }
.about-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.about-payoff {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  color: var(--ink-soft);
  padding-bottom: 20px;
  margin: 0;
  max-width: 680px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: var(--cream);
}
.contact .section-eyebrow { color: var(--gold-light); }
.contact h2 { color: var(--cream); }
.contact .section-intro { color: rgba(251, 247, 239, 0.75); }
.contact-inner { max-width: 640px; }

.lead-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.88rem; color: rgba(251, 247, 239, 0.75); }
.field input, .field select, .field textarea {
  background: rgba(251, 247, 239, 0.06);
  border: 1px solid rgba(251, 247, 239, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--cream);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(251, 247, 239, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}
.field select option { color: var(--ink); }
.form-note {
  font-size: 0.88rem;
  color: rgba(251, 247, 239, 0.6);
  text-align: center;
}
.form-note a { color: var(--gold-light); text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 247, 239, 0.75);
  padding: 40px 0 24px;
  border-top: 1px solid rgba(251, 247, 239, 0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
}
.site-footer .brand-word { color: var(--cream); }
.footer-nav { display: flex; gap: 22px; font-size: 0.92rem; flex-wrap: wrap; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-meta { display: flex; gap: 20px; font-size: 0.92rem; }
.footer-meta a:hover { color: var(--gold-light); }
.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(251, 247, 239, 0.45);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 247, 239, 0.08);
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slide { grid-template-columns: 1fr; padding: 20px; gap: 20px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.15rem; }
  .slide-media-row {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { padding: 64px 0 48px; }
  .hero-ring { width: 380px; height: 380px; top: -140px; right: -160px; border-width: 40px; }
  section { padding: 64px 0; }
}
