/* ============================================================
   Exodus Mosquito Solutions LLC — style.css
   Single stylesheet for all pages. No duplication.
   ============================================================ */

/* ── Reset & Root ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0b0a07;
  --coal:       #161310;
  --iron:       #211d1a;
  --steel:      #302a26;
  --stone:      #4a4239;
  --flint:      #6b5e52;
  --ash:        #9a8b7c;
  --parchment:  #e8dcc4;
  --cream:      #f4edd8;
  --gold:       #ffde17;
  --gold-mid:   #d4a900;
  --gold-dark:  #8a6d00;
  --gold-muted: #5a4800;
}

body {
  font-family: 'IM Fell English', Georgia, serif;
  background: var(--coal);
  color: var(--parchment);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a { color: inherit; }

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ── Typography ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: .8rem;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-title .g { color: var(--gold); }

.body-copy {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ash);
  max-width: 700px;
}

/* ── Ornamental Divider ───────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem 0;
  opacity: .6;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}
.divider span { color: var(--gold-mid); font-size: .85rem; letter-spacing: .4em; font-family: 'Cinzel', serif; }
.divider--center { justify-content: center; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 2.4rem;
  border: 2px solid transparent;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  cursor: pointer;
  transition: background .25s, color .25s, box-shadow .25s;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 24px rgba(255,222,23,.3);
}
.btn--iron {
  background: transparent;
  color: var(--ash);
  border-color: var(--steel);
}
.btn--iron:hover { border-color: var(--gold-mid); color: var(--gold); }

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 74px;
  background: rgba(11,10,7,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,.7);
}

.nav__logo img { height: 46px; width: auto; filter: drop-shadow(0 0 10px rgba(255,222,23,.25)); }

.nav__links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
.nav__links a {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--gold); }

.nav__phone { color: var(--gold-mid) !important; }
.nav__phone:hover { color: var(--gold) !important; }

.nav__cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: .45rem 1.2rem !important;
  border: 1px solid var(--gold) !important;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.nav__cta:hover {
  background: transparent !important;
  color: var(--gold) !important;
}

.nav__hamburger {
  display: none;
  background: none;
  border: 1px solid var(--stone);
  color: var(--ash);
  font-size: 1.3rem;
  padding: .3rem .7rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Herald / Trust Band ──────────────────────────────── */
.herald {
  background: var(--iron);
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 4rem);
  flex-wrap: wrap;
}
.herald__item {
  font-family: 'Cinzel', serif;
  font-size: .63rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--flint);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.herald__item .icon { color: var(--gold); font-size: 1rem; }

/* ── Layout Utilities ─────────────────────────────────── */
.section { padding: 5rem 5%; }
.section--black { background: var(--black); }
.section--coal  { background: var(--coal); }

.container { max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 780px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.grid-2--start { align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; }

.text-center { text-align: center; }
.body-copy--center { margin-left: auto; margin-right: auto; text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── Stat Row ─────────────────────────────────────────── */
.stats { display: flex; gap: 3rem; margin-top: 2rem; flex-wrap: wrap; }
.stat__num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.stat__lbl {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: .3rem;
}

/* ── Cards ────────────────────────────────────────────── */
.card {
  background: var(--iron);
  border: 1px solid var(--steel);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s, border-color .3s;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.card:hover { background: #201b18; border-color: var(--gold-muted); }
.card:hover::after { transform: scaleX(1); }

.card__hex {
  width: 56px; height: 56px;
  background: var(--black);
  border: 1px solid var(--steel);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: border-color .3s;
}
.card:hover .card__hex { border-color: var(--gold-dark); }

.card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .05em;
  margin-bottom: .9rem;
}
.card p { font-size: 1rem; line-height: 1.85; color: var(--ash); }

.card__badge {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .28rem .8rem;
  border: 1px solid var(--gold-muted);
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.card__link {
  display: inline-block;
  margin-top: .8rem;
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  text-decoration: none;
  transition: color .2s;
}
.card__link:hover { color: var(--gold); }

/* ── Why Grid ─────────────────────────────────────────── */
.why-grid { border: 1px solid var(--steel); }
.why-card {
  background: var(--iron);
  padding: 2.8rem 2rem;
  text-align: center;
  transition: background .3s;
}
.why-card:hover { background: var(--steel); }
.why-card__icon { font-size: 2.5rem; display: block; margin-bottom: 1.2rem; }
.why-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .06em;
  margin-bottom: .8rem;
}
.why-card p { font-size: .97rem; line-height: 1.8; color: var(--ash); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq__item { border-bottom: 1px solid var(--steel); }
.faq__q {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--parchment);
  cursor: pointer;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: .03em;
  transition: color .2s;
  user-select: none;
}
.faq__q::after {
  content: '+';
  color: var(--gold-mid);
  font-size: 1.5rem;
  font-family: serif;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq__item.is-open .faq__q { color: var(--gold); }
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ash);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-bottom .35s;
}
.faq__item.is-open .faq__a { max-height: 500px; padding-bottom: 1.4rem; }

/* ── Contact Form ─────────────────────────────────────── */
.form-vessel {
  background: var(--iron);
  border: 1px solid var(--steel);
  padding: 2.8rem;
  position: relative;
}
.form-vessel::before {
  content: '✦  FREE CONSULTATION  ✦';
  position: absolute;
  top: -.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--iron);
  padding: 0 1rem;
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .3em;
  color: var(--gold-mid);
  white-space: nowrap;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1.2rem; }
.form__group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: .4rem;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: .78rem 1rem;
  background: var(--black);
  border: 1px solid var(--steel);
  color: var(--parchment);
  font-family: 'IM Fell English', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--gold-mid); }
.form__group select option { background: var(--black); }
.form__group textarea { resize: vertical; min-height: 105px; }

.form__submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .25s, color .25s;
}
.form__submit:hover { background: transparent; color: var(--gold); }

/* ── Contact Details ──────────────────────────────────── */
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ash);
}
.contact-detail__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .05rem; }
.contact-detail a { color: var(--gold-mid); text-decoration: none; transition: color .2s; }
.contact-detail a:hover { color: var(--gold); }
.contact-detail small { color: var(--stone); }

.google-nudge {
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--gold-muted);
  background: var(--black);
}
.google-nudge p { font-size: .9rem; line-height: 1.75; color: var(--ash); }
.google-nudge strong { color: var(--gold); }

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 5.5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(0,0,0,.05) 18px, rgba(0,0,0,.05) 19px);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner .section-title { color: var(--black); }
.cta-banner .eyebrow { color: rgba(11,10,7,.45); }
.cta-banner .body-copy { color: var(--iron); margin: 0 auto 2.5rem; text-align: center; }
.cta-banner .btn-group { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.cta-banner .btn--iron { border-color: rgba(33,29,26,.4); color: var(--iron); }

/* ── Map Vessel ───────────────────────────────────────── */
.map-vessel {
  background: var(--black);
  border: 1px solid var(--steel);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-vessel::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,222,23,.07);
  pointer-events: none;
}
.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,222,23,.07);
}
.map-ring--lg  { width: 88%; height: 88%; }
.map-ring--md  { width: 63%; height: 63%; }
.map-ring--sm  { width: 38%; height: 38%; border-color: rgba(255,222,23,.14); }
.map-center { position: relative; z-index: 1; text-align: center; }
.map-center__pin   { font-size: 2.5rem; line-height: 1; margin-bottom: .5rem; }
.map-center__city  { font-family: 'Cinzel', serif; font-size: .9rem; font-weight: 700; color: var(--cream); letter-spacing: .1em; }
.map-center__area  { font-family: 'Cinzel', serif; font-size: .6rem; color: var(--gold-mid); letter-spacing: .2em; text-transform: uppercase; margin-top: .35rem; }
.map-center__sub   { font-size: .82rem; color: var(--stone); margin-top: .4rem; font-style: italic; }

/* ── Territory Box ────────────────────────────────────── */

/* ── Blog Cards ───────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.blog-card {
  background: var(--iron);
  border: 1px solid var(--steel);
  padding: 2.2rem;
  text-decoration: none;
  display: block;
  transition: background .3s, border-color .3s;
}
.blog-card:hover { border-color: var(--gold-muted); background: #201b18; }
.blog-card__tag {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: .6rem;
}
.blog-card h2, .blog-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: .8rem;
}
.blog-card p { font-size: .95rem; line-height: 1.75; color: var(--ash); }
.blog-card__more {
  display: block;
  margin-top: 1rem;
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

/* ── Location Links ───────────────────────────────────── */
.loc-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; border: 1px solid var(--steel); }
.loc-link {
  background: var(--iron);
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--ash);
  transition: background .2s, color .2s;
  border-bottom: 1px solid var(--steel);
}
.loc-link:hover { background: var(--steel); color: var(--gold); }
.loc-link::before { content: '⚔'; color: var(--gold-muted); font-size: .7rem; flex-shrink: 0; }

/* ── Page Hero (interior pages) ───────────────────────── */
.page-hero {
  padding: 130px 5% 70px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,222,23,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }

.breadcrumb { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .2em; color: var(--stone); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--gold-mid); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ── Article (blog posts) ─────────────────────────────── */
.article h2 { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); margin: 2.5rem 0 .8rem; letter-spacing: .04em; }
.article h3 { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 600; color: var(--cream); margin: 1.8rem 0 .6rem; }
.article p  { font-size: 1.05rem; line-height: 1.9; color: var(--ash); margin-bottom: 1rem; }
.article a  { color: var(--gold-mid); text-decoration: none; transition: color .2s; }
.article a:hover { color: var(--gold); }
.article ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.article ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ash);
  padding: .35rem 0;
  border-bottom: 1px solid var(--steel);
  display: flex;
  gap: .7rem;
}
.article ul li::before { content: '⚔'; color: var(--gold-muted); font-size: .7rem; margin-top: .35rem; flex-shrink: 0; }
.article__meta { font-family: 'Cinzel', serif; font-size: .68rem; letter-spacing: .2em; color: var(--stone); margin-bottom: 2rem; }
.article__cta { background: var(--iron); border: 1px solid var(--gold-muted); padding: 2rem; margin: 3rem 0; text-align: center; }
.article__cta p { font-size: .97rem; color: var(--ash); margin-bottom: 1.2rem; }

/* ── Services Detail ──────────────────────────────────── */
.svc-block {
  background: var(--iron);
  border: 1px solid var(--steel);
  padding: 2.5rem;
  transition: border-color .3s;
}
.svc-block:hover { border-color: var(--gold-muted); }
.svc-block h2 { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--cream); margin-bottom: 1rem; letter-spacing: .05em; }
.svc-block p  { font-size: 1rem; line-height: 1.85; color: var(--ash); margin-bottom: 1rem; }
.svc-block ul { list-style: none; padding: 0; margin-top: 1rem; }
.svc-block ul li { font-size: .97rem; color: var(--ash); padding: .4rem 0; border-bottom: 1px solid var(--steel); display: flex; gap: .7rem; align-items: flex-start; }
.svc-block ul li::before { content: '⚔'; color: var(--gold-muted); font-size: .7rem; margin-top: .3rem; flex-shrink: 0; }
.svc-number { font-family: 'Cinzel Decorative', serif; font-size: 5rem; color: rgba(255,222,23,.07); line-height: 1; position: absolute; top: -1rem; left: -1rem; pointer-events: none; }

.process-step { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.process-step__num { font-family: 'Cinzel Decorative', serif; font-size: 2rem; color: var(--gold-muted); flex-shrink: 0; line-height: 1; width: 2.5rem; text-align: center; }
.process-step h3 { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: .4rem; }
.process-step p  { font-size: .95rem; line-height: 1.8; color: var(--ash); }

/* ── County Grid (area page) ──────────────────────────── */
.county-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; margin-top: 2rem; }
.county-block { background: var(--iron); border: 1px solid var(--steel); padding: 2rem; transition: background .3s, border-color .3s; }
.county-block:hover { background: #201b18; border-color: var(--gold-muted); }
.county-block h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: .8rem; letter-spacing: .05em; }
.county-block p  { font-size: .95rem; line-height: 1.8; color: var(--ash); margin-bottom: 1rem; }
.county-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .8rem; }
.county-pill { background: var(--black); border: 1px solid var(--steel); font-family: 'Cinzel', serif; font-size: .62rem; letter-spacing: .1em; color: var(--flint); padding: .2rem .6rem; }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 2px solid var(--gold-muted);
  padding: 3.5rem 5% 2.5rem;
  text-align: center;
}
.footer__logo { width: 190px; margin: 0 auto 1.2rem; opacity: .8; }
.footer__divider { width: 60px; height: 1px; background: var(--gold-muted); margin: 1.4rem auto; }
.footer__links { display: flex; justify-content: center; gap: 2rem; margin: 1.4rem 0; flex-wrap: wrap; }
.footer__links a { font-family: 'Cinzel', serif; color: var(--flint); text-decoration: none; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer p { font-size: .88rem; color: var(--stone); line-height: 1.7; }
.footer__seo { font-size: .7rem; color: var(--steel); margin-top: 1rem; line-height: 1.9; }

/* ── Animations ───────────────────────────────────────── */
@keyframes riseIn   { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse    { from { filter: drop-shadow(0 0 18px rgba(255,222,23,.3)); } to { filter: drop-shadow(0 0 55px rgba(255,222,23,.65)); } }
@keyframes scrollDrop {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ── Hero (homepage only) ─────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,222,23,.055) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(122,40,0,.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.hero__stones {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,.012) 79px, rgba(255,255,255,.012) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 119px, rgba(255,255,255,.01) 119px, rgba(255,255,255,.01) 120px);
  pointer-events: none;
}
.hero__bracket {
  position: absolute;
  z-index: 2;
  width: 70px; height: 70px;
  opacity: .22;
}
.hero__bracket--tl { top: 84px; left: 28px;  border-top: 2px solid var(--gold); border-left:  2px solid var(--gold); }
.hero__bracket--tr { top: 84px; right: 28px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.hero__bracket--bl { bottom: 28px; left: 28px;  border-bottom: 2px solid var(--gold); border-left:  2px solid var(--gold); }
.hero__bracket--br { bottom: 28px; right: 28px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.hero__shield {
  width: clamp(90px, 12vw, 145px);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 35px rgba(255,222,23,.45));
  animation: pulse 4s ease-in-out infinite alternate;
}
.hero__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .35em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: .8rem;
  animation: riseIn .8s ease both;
}
.hero__logo {
  width: clamp(280px, 46vw, 600px);
  filter: drop-shadow(0 6px 30px rgba(0,0,0,.9));
  animation: riseIn .9s .1s ease both;
  margin-bottom: .5rem;
}
.hero__tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(.78rem, 1.7vw, .98rem);
  letter-spacing: .18em;
  color: var(--stone);
  text-transform: uppercase;
  margin: .4rem 0 1.6rem;
  animation: riseIn .8s .2s ease both;
}
.hero__sub {
  font-size: clamp(1rem, 1.9vw, 1.16rem);
  color: var(--flint);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-style: italic;
  animation: riseIn .8s .3s ease both;
}
.hero__buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: riseIn .8s .4s ease both;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .3em;
  color: rgba(154,139,124,.35);
  text-align: center;
  animation: scrollDrop 2.5s infinite;
}
.hero__scroll::after { content: '⬇'; display: block; font-size: .9rem; margin-top: .3rem; color: rgba(255,222,23,.25); }

/* ── Intro section (homepage) ─────────────────────────── */
.intro { position: relative; overflow: hidden; }
.intro::after {
  content: '';
  position: absolute;
  right: -4%; top: 50%;
  transform: translateY(-50%);
  width: 38%; aspect-ratio: 1;
  background: url('images/shield.png') center/contain no-repeat;
  opacity: .03;
  pointer-events: none;
}
.shield-img {
  width: min(300px, 85%);
  filter: drop-shadow(0 10px 50px rgba(255,222,23,.18));
  transition: filter .4s;
}
.shield-img:hover { filter: drop-shadow(0 10px 70px rgba(255,222,23,.4)); }

/* ── Services stone lines (homepage) ─────────────────── */
.services-section { position: relative; overflow: hidden; }
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,222,23,.018) 59px, rgba(255,222,23,.018) 60px);
  pointer-events: none;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--gold-dark);
    padding: 1rem 5%;
    gap: 1rem;
  }
  .nav__links.is-open { display: flex; }
  .nav__hamburger { display: block; }
  .grid-2, .grid-2--start { grid-template-columns: 1fr; gap: 2.5rem; }
  .form__row { grid-template-columns: 1fr; }
  .hero__logo { width: min(300px, 90%); }
  .intro::after { display: none; }
}

/* ── Accessibility / SEO utility ─────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
