/* ============================================================
   ADVPAYTAX — ADVANTAGE PAYROLL AND TAX SERVICES, LLC
   Dark Solar Eclipse & Sky Calendar Theme
   Palette: umbra-night #101018, corona #ECEAF4, eclipse-gold #E3B34C
   ============================================================ */

:root {
  --umbra-night: #101018;
  --umbra-core: #191926;
  --penumbra: #23233A;
  --deeper-sky: #0B0B12;
  --corona: #ECEAF4;
  --corona-halo: #F0EAD8;
  --gold: #E3B34C;
  --moonrock: #8F8DA6;
  --chromosphere: #C74B3C;
  --starfield: #FFFFFF;
  --hairline: #2C2C48;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--corona);
  background-color: var(--umbra-night);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.home-page {
  background-color: var(--umbra-night);
  color: var(--corona);
}

/* ---------- BAILY-BEAD NAV ---------- */
.baily-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--umbra-core);
  border-bottom: 1px solid var(--hairline);
}

.baily-nav .beads-strip {
  height: 12px;
  width: 100%;
  background-color: var(--umbra-night);
  position: relative;
  overflow: hidden;
}

.baily-nav .beads-strip .mesh-line {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--moonrock);
  filter: saturate(0.45);
}

.baily-nav .beads-strip .bead {
  position: absolute;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
}

.baily-nav .beads-strip .bead-diamond {
  position: absolute;
  top: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.baily-nav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 16px;
  flex-wrap: wrap;
}

.baily-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--corona-halo);
  text-transform: uppercase;
}

.baily-nav .brand .eclipse-disc {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--gold);
  position: relative;
  flex: none;
}

.baily-nav .brand .eclipse-disc::before {
  content: "";
  position: absolute;
  left: -9px;
  top: -9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--umbra-core);
}

.baily-nav .nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
  flex-wrap: wrap;
}

.baily-nav .nav-links li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.baily-nav .nav-links li .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--starfield);
  margin: 0 6px;
}

.baily-nav .nav-links a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moonrock);
  padding-bottom: 3px;
  position: relative;
  transition: color 0.2s ease;
}

.baily-nav .nav-links a:hover,
.baily-nav .nav-links a.active {
  color: var(--gold);
}

.baily-nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.2s ease;
}

.baily-nav .nav-links a:hover::after,
.baily-nav .nav-links a.active::after {
  width: 100%;
}

.baily-nav .nav-links a.active::before,
.baily-nav .nav-links a:hover::before {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: var(--chromosphere);
}

.baily-nav .nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--corona-halo);
  padding: 8px 14px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

/* ---------- MOBILE NAV ---------- */
@media (max-width: 820px) {
  .baily-nav .nav-row {
    padding: 12px 20px;
  }
  .baily-nav .nav-toggle {
    display: block;
  }
  .baily-nav .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0 6px;
    border-top: 1px solid var(--hairline);
    margin-top: 8px;
  }
  .baily-nav .nav-links.open {
    display: flex;
  }
  .baily-nav .nav-links li {
    display: block;
    width: 100%;
  }
  .baily-nav .nav-links li .dot {
    display: none;
  }
}

/* ---------- HERO ---------- */
.totality-hero {
  background-color: var(--umbra-night);
  padding: 84px 40px 90px;
}

.totality-hero .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.totality-hero .hero-text {
  text-align: left;
}

.totality-hero .eyebrow {
  display: inline-block;
  background-color: var(--gold);
  color: var(--umbra-night);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 22px;
}

.totality-hero h1 {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  color: var(--corona-halo);
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.totality-hero h1 .align {
  color: var(--gold);
}

.totality-hero p.subcopy {
  font-size: 17px;
  line-height: 1.8;
  color: var(--moonrock);
  max-width: 560px;
  margin-bottom: 34px;
}

.totality-hero .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.totality-hero .btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.totality-hero .btn-primary {
  background-color: var(--gold);
  color: var(--umbra-night);
}

.totality-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 179, 76, 0.25);
}

.totality-hero .btn-ghost {
  background: transparent;
  border: 1px solid var(--corona-halo);
  color: var(--corona-halo);
}

.totality-hero .btn-ghost:hover {
  background-color: var(--umbra-core);
}

/* Totality scene */
.totality-hero .eclipse-scene {
  position: relative;
  height: 420px;
}

.totality-hero .eclipse-scene .sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.totality-hero .eclipse-scene .sun-disc {
  position: absolute;
  top: 50%;
  left: 62%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: var(--gold);
  filter: saturate(0.77);
}

.totality-hero .eclipse-scene .orbit {
  position: absolute;
  top: 50%;
  left: 62%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
}

.totality-hero .eclipse-scene .corona-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 60px;
  background-color: var(--gold);
  filter: saturate(0.63);
  transform-origin: top center;
}

.totality-hero .eclipse-scene .moon-disc {
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background-color: var(--umbra-core);
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.totality-hero .eclipse-scene .moon-disc::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #14141F;
  top: 30px;
  left: 40px;
}

.totality-hero .eclipse-scene .moon-disc::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #12121C;
  bottom: 44px;
  right: 36px;
}

.totality-hero .eclipse-scene .diamond-ring {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gold);
  top: 115px;
  left: 100px;
  box-shadow: -18px 6px 0 -3px var(--gold), 14px -10px 0 -4px var(--gold);
}

.totality-hero .eclipse-scene .baily-beads {
  position: absolute;
  top: 128px;
  left: 118px;
}

.totality-hero .eclipse-scene .baily-beads .bb {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
}

.totality-hero .eclipse-scene .star-point {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--starfield);
}

.totality-hero .eclipse-scene .shadow-band {
  position: absolute;
  bottom: 64px;
  left: 4%;
  width: 92%;
  height: 10px;
  background: repeating-linear-gradient(
    to right,
    var(--moonrock) 0 6px,
    transparent 6px 12px
  );
  filter: saturate(0.54);
  border-radius: 2px;
}

.totality-hero .eclipse-scene .mesa {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background-color: var(--penumbra);
  clip-path: polygon(0 62%, 8% 40%, 16% 58%, 26% 32%, 36% 52%, 48% 22%, 60% 50%, 72% 30%, 84% 55%, 94% 42%, 100% 60%, 100% 100%, 0 100%);
}

.totality-hero .eclipse-scene .pinhole-card {
  position: absolute;
  bottom: 20px;
  right: 8%;
  width: 92px;
  height: 124px;
  background-color: var(--starfield);
  border-radius: 4px;
  transform: rotate(4deg);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}

.totality-hero .eclipse-scene .pinhole-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 26px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--umbra-core);
}

.totality-hero .eclipse-scene .pinhole-card::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 40px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border-left: 6px solid var(--gold);
  border-top: 6px solid var(--gold);
  border-right: 6px solid var(--umbra-core);
  border-bottom: 6px solid var(--umbra-core);
}

/* ---------- SECTION HEADINGS ---------- */
.section-head {
  text-align: center;
  padding: 70px 20px 20px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 17px;
  color: var(--moonrock);
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- CONTACT-TIMELINE ROWS ---------- */
.contacts-rows {
  background-color: var(--umbra-night);
  padding: 30px 40px 60px;
}

.contacts-rows .rows-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacts-rows .phase-row {
  display: grid;
  grid-template-columns: 70px 1fr 90px;
  gap: 24px;
  align-items: center;
  background-color: var(--penumbra);
  border: 1px solid var(--hairline);
  padding: 24px 28px;
  border-radius: 6px;
}

.contacts-rows .phase-disc {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--umbra-night);
  position: relative;
  flex: none;
}

.contacts-rows .phase-disc .moon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--umbra-core);
  border: 1px solid var(--hairline);
}

.contacts-rows .phase-disc .sun {
  position: absolute;
  border-radius: 50%;
  background-color: var(--gold);
}

.contacts-rows .phase-disc .ring {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid var(--gold);
}

.contacts-rows .phase-disc.phase-1 .sun {
  width: 26px;
  height: 26px;
  top: 11px;
  left: 4px;
}

.contacts-rows .phase-disc.phase-2 .sun {
  width: 26px;
  height: 26px;
  top: 11px;
  left: 9px;
}

.contacts-rows .phase-disc.phase-3 .ring {
  left: 9px;
  top: 9px;
}

.contacts-rows .phase-disc.phase-4 .sun {
  width: 26px;
  height: 26px;
  top: 11px;
  right: 9px;
}

.contacts-rows .phase-disc.phase-5 .sun {
  width: 26px;
  height: 26px;
  top: 11px;
  right: 4px;
}

.contacts-rows .phase-row h3 {
  color: var(--corona-halo);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contacts-rows .phase-row p {
  color: var(--moonrock);
  font-size: 15px;
  line-height: 1.7;
}

.contacts-rows .phase-row .time-tag {
  font-family: "Courier New", monospace;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  background-color: var(--umbra-core);
  padding: 6px 10px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--hairline);
}

@media (max-width: 720px) {
  .contacts-rows .phase-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }
  .contacts-rows .phase-disc {
    width: 44px;
    height: 44px;
  }
}

/* ---------- MAGNITUDE METRIC BAND ---------- */
.magnitude-band {
  background-color: var(--penumbra);
  padding: 60px 40px;
}

.magnitude-band .metrics {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 24px;
  align-items: center;
}

.magnitude-band .metric {
  text-align: center;
}

.magnitude-band .metric .num {
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1.1;
}

.magnitude-band .metric .label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moonrock);
}

.magnitude-band .metric-divider {
  height: 60px;
  width: 1px;
  background-color: var(--gold);
  filter: saturate(0.45);
}

@media (max-width: 760px) {
  .magnitude-band .metrics {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .magnitude-band .metric-divider {
    height: 1px;
    width: 60px;
    margin: 0 auto;
  }
  .magnitude-band .metric .num {
    font-size: 40px;
  }
}

/* ---------- STATEMENT BAND ---------- */
.statement-band {
  background-color: var(--umbra-core);
  padding: 70px 40px;
}

.statement-band .statement {
  max-width: 860px;
  margin: 0 auto;
  border-left: 4px solid var(--gold);
  padding-left: 30px;
}

.statement-band .statement p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--corona-halo);
  font-weight: 600;
}

.statement-band .statement cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: var(--moonrock);
  font-size: 15px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background-color: var(--umbra-night);
  padding: 80px 40px;
  text-align: center;
}

.cta-band h2 {
  color: var(--gold);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--moonrock);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-band .btn {
  display: inline-block;
  padding: 15px 32px;
  background-color: var(--gold);
  color: var(--umbra-night);
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-band .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 179, 76, 0.3);
}

/* ---------- ECLIPSE-PATH FOOTER ---------- */
.eclipsepath-footer {
  background-color: var(--deeper-sky);
  color: var(--moonrock);
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.eclipsepath-footer .path-strip {
  height: 14px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--hairline);
}

.eclipsepath-footer .path-strip .corridor {
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  height: 10px;
  background: linear-gradient(
    to bottom right,
    transparent 42%,
    var(--umbra-core) 42%,
    var(--umbra-core) 58%,
    transparent 58%
  );
  box-shadow: inset 0 0 0 1px var(--gold);
}

.eclipsepath-footer .path-strip .city-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
}

.eclipsepath-footer .foot-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.eclipsepath-footer .foot-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--corona-halo);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eclipsepath-footer .foot-brand .eclipse-disc {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--gold);
  position: relative;
  display: inline-block;
}

.eclipsepath-footer .foot-brand .eclipse-disc::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--deeper-sky);
}

.eclipsepath-footer .foot-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  list-style: none;
}

.eclipsepath-footer .foot-links a {
  color: var(--corona);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.eclipsepath-footer .foot-links a:hover {
  color: var(--gold);
}

.eclipsepath-footer .pinhole-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}

.eclipsepath-footer .pinhole-divider .star1,
.eclipsepath-footer .pinhole-divider .star2 {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--starfield);
}

.eclipsepath-footer .pinhole-divider .mini-card {
  width: 34px;
  height: 46px;
  background-color: var(--umbra-core);
  border-radius: 3px;
  position: relative;
  border: 1px solid var(--hairline);
}

.eclipsepath-footer .pinhole-divider .mini-card::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--starfield);
}

.eclipsepath-footer .pinhole-divider .mini-card::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border-left: 4px solid var(--gold);
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--umbra-core);
  border-bottom: 4px solid var(--umbra-core);
}

.eclipsepath-footer .legal-line {
  font-size: 14px;
  color: var(--moonrock);
}

.eclipsepath-footer .legal-line a {
  color: var(--corona);
  text-decoration: none;
}

.eclipsepath-footer .legal-line a:hover {
  color: var(--gold);
}

/* ---------- SCROLL REVEAL ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SHARED BUTTON ---------- */
.btn-base {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}

/* ---------- CONTACT & SERVICES PAGE SHARED ---------- */
.standard-layout {
  background-color: var(--umbra-night);
  color: var(--corona);
  padding: 60px 40px 80px;
}

.standard-layout .inner {
  max-width: 880px;
  margin: 0 auto;
}

.standard-layout h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--corona-halo);
  margin-bottom: 12px;
}

.standard-layout h1 .align {
  color: var(--gold);
}

.standard-layout .lead {
  font-size: 17px;
  color: var(--moonrock);
  margin-bottom: 34px;
  max-width: 640px;
}

.standard-layout h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin: 36px 0 14px;
}

.standard-layout h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--corona-halo);
  margin: 28px 0 10px;
}

.standard-layout p {
  color: var(--moonrock);
  line-height: 1.75;
  margin-bottom: 16px;
}

.standard-layout ul,
.standard-layout ol {
  color: var(--moonrock);
  margin: 0 0 18px 22px;
  line-height: 1.75;
}

/* ---------- CONTACT FORM ---------- */
.contact-form-panel {
  background-color: var(--umbra-core);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 34px;
  margin-top: 12px;
}

.contact-form-panel .field {
  margin-bottom: 18px;
}

.contact-form-panel label {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--corona-halo);
  margin-bottom: 8px;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background-color: var(--penumbra);
  color: var(--corona);
  font-size: 16px;
  font-family: inherit;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form-panel .btn-submit {
  background-color: var(--gold);
  color: var(--umbra-night);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  padding: 14px 30px;
  cursor: pointer;
  letter-spacing: 1px;
}

.contact-form-panel .form-status {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gold);
}

/* ---------- CONTACT INFO CARDS ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.contact-grid .info-card {
  background-color: var(--umbra-core);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 22px;
}

.contact-grid .info-card h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-grid .info-card p {
  color: var(--moonrock);
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .standard-layout {
    padding: 40px 20px 60px;
  }
  .totality-hero {
    padding: 60px 20px 70px;
  }
  .totality-hero .hero-inner {
    grid-template-columns: 1fr;
  }
  .totality-hero h1 {
    font-size: 34px;
  }
  .totality-hero .eclipse-scene {
    height: 340px;
  }
  .contacts-rows {
    padding: 20px 20px 50px;
  }
  .section-head h2 {
    font-size: 28px;
  }
}

/* ---------- FAQ on contact page ---------- */
.faq-accordion {
  margin-top: 24px;
}

.faq-accordion .faq-item {
  background-color: var(--umbra-core);
  border: 1px solid var(--hairline);
  border-radius: 5px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--corona-halo);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 22px;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}

.faq-accordion .faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.faq-accordion .faq-item.open .faq-q::after {
  content: "-";
}

.faq-accordion .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion .faq-a p {
  padding: 0 22px 18px;
  color: var(--moonrock);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.faq-accordion .faq-item.open .faq-a {
  max-height: 320px;
}

/* Watermark decor (hidden) */
.deco-watermark {
  visibility: hidden;
}
