/* ==========================================================================
   MyrtleBeachPi.com — Sleek modern redesign
   ========================================================================== */

:root {
  --accent: #ff7a33;
  --accent-2: #ffb070;
  --accent-soft: rgba(255, 122, 51, 0.16);
  --accent-glow: rgba(255, 122, 51, 0.45);
  --bg: #08090b;
  --bg-2: #0b0d10;
  --surface: #121418;
  --surface-2: #181b21;
  --cream: #f6f1e7;
  --ink: #0a0a0a;
  --text: #f4f5f7;
  --text-dim: rgba(244, 245, 247, 0.66);
  --muted: #8a8f98;
  --border: rgba(255, 255, 255, 0.09);
  --border-2: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(255, 122, 51, 0.4);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1280px;
}

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

html { -webkit-text-size-adjust: 100%; }
/* Lenis smooth scroll handles motion; native fallback if JS off */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
html:not(.lenis) { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---- Typography ---- */
.display {
  font-family: 'Anton', 'Oswald', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 200;
  box-shadow: 0 0 12px var(--accent-glow);
  will-change: width;
}

/* ---- Missing-image graceful placeholder ---- */
.img-missing {
  visibility: hidden;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(8, 9, 11, 0.4);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .45s var(--ease), padding .4s var(--ease);
  will-change: transform;
}
.nav.scrolled {
  background: rgba(8, 9, 11, 0.9);
  border-bottom-color: var(--border);
  padding: 11px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex; align-items: center; gap: 11px;
  color: var(--text);
  font-family: 'Anton', sans-serif;
  font-size: 22px; letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand .brand-dot { color: var(--accent); }
.brand-icon { width: 32px; height: 32px; display: grid; place-items: center; color: var(--accent); }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-weight: 600; font-size: 13px; letter-spacing: 0.14em;
  color: var(--text-dim); position: relative; padding: 6px 0;
  text-transform: uppercase; transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--accent);
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border: 1px solid var(--border-2); border-radius: 100px;
  font-weight: 700; letter-spacing: 0.04em; font-size: 14px;
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.nav-phone:hover { border-color: var(--accent); background: var(--accent); color: #0a0a0a; }
.nav-phone:hover svg { color: #0a0a0a; }
.nav-phone svg { color: var(--accent); transition: color .3s var(--ease); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border-2); padding: 9px; border-radius: 10px; color: var(--text); cursor: pointer; }

@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: rgba(8,9,11,0.98);
    padding: 24px 28px; gap: 18px; border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-links a { font-size: 16px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 150px 0 90px; overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: -8% 0; z-index: -3; overflow: hidden; will-change: transform; }
.hero-bg::before {
  content: ''; position: absolute; inset: -6%;
  background:
    linear-gradient(120deg, rgba(8,9,11,0.92) 0%, rgba(8,9,11,0.6) 48%, rgba(8,9,11,0.35) 100%),
    radial-gradient(1100px 620px at 82% 18%, rgba(255,122,51,0.22), transparent 66%),
    url('./gsQxC4NA6Vwp0ALJUSFqacrjJXU.webp') center/cover no-repeat,
    linear-gradient(160deg, #11151b, #06070a 70%);
  filter: saturate(0.92) contrast(1.05);
  animation: hero-kenburns 28s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  from { transform: scale(1.06) translate(-1%, 1%); }
  to   { transform: scale(1.16) translate(1%, -1%); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -2; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 35%, transparent 100%);
}
.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--text-dim); font-weight: 600; letter-spacing: 0.26em;
  font-size: 12px; text-transform: uppercase; margin-bottom: 26px;
}
.hero-eyebrow::before { content: ''; display: block; width: 44px; height: 1px; background: var(--accent); }
.hero-title {
  font-size: clamp(50px, 9.5vw, 168px);
  color: #fff; max-width: 14ch;
  text-shadow: 0 6px 40px rgba(0,0,0,0.45);
}
.hero-title .accent { color: var(--accent); }
.hero-title .line { display: block; }
.hero-title .char { display: inline-block; will-change: transform, opacity; }
.hero-sub {
  margin-top: 30px; max-width: 620px; font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-dim); line-height: 1.6;
}

/* Hero contact — front and center */
.hero-contact { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }
.cbtn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 24px 16px 18px; border-radius: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.cbtn-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
}
.cbtn-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.cbtn-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; opacity: 0.75; }
.cbtn-value { font-family: 'Anton', sans-serif; font-size: 24px; letter-spacing: 0.02em; margin-top: 4px; }
.cbtn-primary {
  background: var(--accent); color: #0a0a0a;
  box-shadow: 0 16px 50px -14px var(--accent-glow);
}
.cbtn-primary .cbtn-icon { background: rgba(0,0,0,0.16); color: #0a0a0a; }
.cbtn-primary:hover { transform: translateY(-3px); background: #ff8a48; box-shadow: 0 24px 60px -14px var(--accent-glow); }
.cbtn-ghost {
  background: rgba(255,255,255,0.04); color: var(--text);
  border: 1px solid var(--border-2); backdrop-filter: blur(8px);
}
.cbtn-ghost .cbtn-icon { background: var(--accent-soft); color: var(--accent); }
.cbtn-ghost .cbtn-value { font-size: 20px; }
.cbtn-ghost:hover { transform: translateY(-3px); border-color: var(--accent); }

.hero-trust {
  margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  color: var(--text-dim); font-size: 13px; letter-spacing: 0.04em;
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.scroll-cue {
  position: absolute; right: 34px; top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; text-orientation: mixed;
  font-weight: 600; letter-spacing: 0.36em; font-size: 11px; text-transform: uppercase;
  color: var(--text-dim); display: flex; align-items: center; gap: 14px;
  animation: scroll-bob 2.2s ease-in-out infinite; z-index: 2;
}
.scroll-cue::after { content: ''; display: block; width: 1px; height: 62px; background: linear-gradient(var(--accent), transparent); }
@keyframes scroll-bob {
  0%,100% { transform: translateY(-50%); opacity: .65; }
  50%     { transform: translateY(calc(-50% + 8px)); opacity: 1; }
}
@media (max-width: 820px) { .scroll-cue { display: none; } }

/* Generic button */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 17px 28px; border: 1px solid var(--border-2); border-radius: 100px;
  font-weight: 700; letter-spacing: 0.06em; font-size: 14px; text-transform: uppercase;
  cursor: pointer; background: transparent; color: var(--text);
  transition: all .35s var(--ease);
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn:hover svg { transform: translateX(6px); }
.btn.primary {
  background: var(--accent); border-color: var(--accent); color: #0a0a0a;
  box-shadow: 0 12px 44px -12px var(--accent-glow);
}
.btn.primary:hover { background: #ff8a48; border-color: #ff8a48; color: #0a0a0a; box-shadow: 0 20px 56px -10px var(--accent-glow); }

/* ==========================================================================
   Info strip
   ========================================================================== */
.info-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.info-cell { text-align: center; padding: 6px 36px; border-right: 1px solid var(--border); }
.info-cell:last-child { border-right: none; }
.info-cell .icon { display: inline-grid; place-items: center; width: 42px; height: 42px; color: var(--accent); margin-bottom: 16px; }
.info-cell h3 { font-family: 'Anton', sans-serif; font-size: 21px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.info-cell p { color: var(--text-dim); font-size: 15px; margin: 2px 0; }
.info-cell a { transition: color .25s var(--ease); }
.info-cell p a:hover { color: var(--accent); }
.info-cell a.link {
  color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; transition: gap .3s var(--ease);
}
.info-cell a.link:hover { gap: 14px; }
@media (max-width: 880px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-cell { border-right: none; padding: 28px 0; border-bottom: 1px solid var(--border); }
  .info-cell:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
section { padding: 130px 0; }
@media (max-width: 768px) { section { padding: 84px 0; } }

.services, .stats, .about, .why, .quote-band, .areas,
.articles, .faq, .contact, footer {
  content-visibility: auto; contain-intrinsic-size: 0 800px;
}
.section-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.section-head p { color: var(--text-dim); font-size: 17px; max-width: 540px; }
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; gap: 22px; } }

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.service-card {
  position: relative; aspect-ratio: 16 / 11; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  isolation: isolate; cursor: pointer; display: flex; align-items: flex-end;
  background: linear-gradient(150deg, #15191f, #0a0c10);
}
.service-media { position: absolute; inset: 0; z-index: -1; background: linear-gradient(150deg, #1a1f26, #0a0c10); }
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(.85);
  transition: transform 1.1s var(--ease), filter .7s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.07); filter: grayscale(0.45) contrast(1.08) brightness(.95); }
.service-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,9,11,0) 30%, rgba(8,9,11,0.55) 60%, rgba(8,9,11,0.96) 100%);
  pointer-events: none;
}
.service-num {
  position: absolute; top: 24px; left: 28px; z-index: 2;
  font-family: 'Anton', sans-serif; font-size: 16px; letter-spacing: 0.1em;
  color: var(--accent); opacity: .9;
}
.service-info { position: relative; z-index: 2; padding: 30px; }
.service-card-label {
  display: inline-block;
  font-family: 'Anton', sans-serif; letter-spacing: 0.04em; font-size: 26px;
  text-transform: uppercase; line-height: 1; margin-bottom: 10px;
}
.service-info p { color: var(--text-dim); font-size: 14.5px; max-width: 40ch; }
.service-card-arrow {
  position: absolute; right: 26px; top: 26px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,122,51,0.14); border: 1px solid var(--border-accent);
  backdrop-filter: blur(8px); display: grid; place-items: center; color: var(--accent);
  opacity: 0; transform: translate(-8px, 8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s var(--ease);
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translate(0,0); }
.service-card:hover .service-card-arrow { background: var(--accent); color: #0a0a0a; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } .service-card { aspect-ratio: 16/12; } }

.center { text-align: center; margin-top: 52px; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { background: var(--bg-2); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-cell {
  padding: 70px 28px; text-align: center; border-right: 1px solid var(--border);
  background: radial-gradient(circle at 50% 120%, rgba(255,122,51,0.06), transparent 60%);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .num { font-family: 'Anton', sans-serif; font-size: clamp(52px, 7vw, 104px); color: var(--cream); line-height: 1; margin-bottom: 12px; }
.stat-cell .lbl { color: var(--text-dim); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 820px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--bg); padding-bottom: 0; }
.about-card {
  position: relative; overflow: hidden; isolation: isolate; min-height: 640px;
  display: flex; align-items: center; margin-top: 64px;
  background:
    linear-gradient(160deg, #14181e, #0a0c10),
    url('./GmcbFY70AU8v3VSFhBmiQZPOLA.webp');
  background-size: cover; background-position: center 30%;
}
.about-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(8,9,11,0.94) 0%, rgba(8,9,11,0.66) 46%, rgba(8,9,11,0.3) 72%, rgba(8,9,11,0.6) 100%);
}
.about-overlay { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 110px 0; position: relative; z-index: 1; }
.about-block .eyebrow { margin-bottom: 14px; display: block; }
.about-block h3 { font-family: 'Anton', sans-serif; font-size: clamp(30px, 4vw, 52px); text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 22px; }
.about-block p { border-left: 3px solid var(--accent); padding-left: 22px; color: var(--text-dim); font-size: 16px; max-width: 520px; }
.about-block.right h3 { color: var(--accent); }
@media (max-width: 900px) { .about-overlay { grid-template-columns: 1fr; padding: 56px 28px; gap: 40px; } .about-card { min-height: auto; } }

/* ==========================================================================
   Why — accordions
   ========================================================================== */
.why { background: var(--bg-2); }
.why-head { text-align: center; grid-template-columns: 1fr; margin-bottom: 56px; }
.why-head p { margin: 18px auto 0; }
.why .section-title { font-size: clamp(34px, 5vw, 64px); }
.accordions, .faq-list { max-width: 920px; margin: 0 auto; }
.acc { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 14px; overflow: hidden; transition: border-color .3s var(--ease); }
.acc.open { border-color: var(--border-accent); }
.acc-head {
  width: 100%; text-align: left; background: transparent; border: none; color: var(--text);
  padding: 24px 26px; display: flex; align-items: center; gap: 18px; cursor: pointer;
  font-family: 'Anton', sans-serif; font-size: 21px; letter-spacing: 0.03em; text-transform: uppercase;
}
.acc-head .icon { width: 36px; height: 36px; display: grid; place-items: center; color: var(--accent); flex-shrink: 0; }
.acc-head .arrow { margin-left: auto; transition: transform .4s var(--ease); color: var(--accent); flex-shrink: 0; }
.acc.open .acc-head .arrow { transform: rotate(180deg); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; padding: 0 26px 0 80px; }
.faq-list .acc-body-inner { padding-left: 26px; }
.acc.open .acc-body-inner { padding-bottom: 24px; }
.acc-body p { color: var(--text-dim); max-width: 780px; margin-bottom: 12px; padding-top: 4px; }
.acc-body p a { color: var(--accent); }
.why-pillars { display: flex; justify-content: center; gap: 52px; margin: 50px auto 30px; flex-wrap: wrap; max-width: 920px; }
.pillar { display: inline-flex; align-items: center; gap: 11px; color: var(--text-dim); font-weight: 500; }
.pillar .star { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.why-cta-wrap { text-align: center; }

/* ==========================================================================
   Quote band
   ========================================================================== */
.quote-band { background: var(--bg); color: var(--cream); padding: 0; overflow: hidden; position: relative; }
.quote-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,122,51,0.09), transparent 70%); pointer-events: none; }
.quote-inner { padding: 150px 24px; text-align: center; position: relative; }
.quote-inner h2 {
  font-family: 'Anton', sans-serif; font-size: clamp(28px, 4vw, 60px);
  line-height: 1.08; text-transform: uppercase; letter-spacing: 0.01em;
  max-width: 1100px; margin: 0 auto 40px; color: var(--cream);
}
.quote-inner h2 .accent { color: var(--accent); }
.quote-brand { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; display: inline-flex; flex-direction: column; align-items: center; gap: 16px; }
.quote-brand svg { color: var(--accent); }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee-wrap { background: var(--bg-2); overflow: hidden; padding: 50px 0; position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-wrap::before, .marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.marquee-track { display: flex; gap: 72px; animation: marquee 38s linear infinite; white-space: nowrap; width: max-content; }
.marquee-item { font-family: 'Anton', sans-serif; font-size: clamp(40px, 6vw, 92px); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.5); text-transform: uppercase; display: inline-flex; align-items: center; gap: 72px; }
.marquee-item .sep { color: var(--accent); -webkit-text-stroke: 0; font-size: 0.65em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Areas served (local SEO)
   ========================================================================== */
.areas { background: var(--bg); }
.areas-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.areas-counties { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.county { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.county:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.county h3 { font-family: 'Anton', sans-serif; font-size: 19px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.county ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.county li { color: var(--text-dim); font-size: 14.5px; position: relative; padding-left: 18px; }
.county li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: .7; }
.areas-note { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; }
.areas-note p { color: var(--text-dim); margin-bottom: 24px; font-size: 16px; }
@media (max-width: 980px) { .areas-layout { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 620px) { .areas-counties { grid-template-columns: 1fr; } }

/* ==========================================================================
   Articles
   ========================================================================== */
.articles { background: var(--bg-2); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article { display: flex; flex-direction: column; gap: 16px; cursor: pointer; background: transparent; border: none; padding: 0; text-align: left; font-family: inherit; color: inherit; width: 100%; }
.article:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; border-radius: 12px; }
.article .thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: linear-gradient(150deg, #1a1f26, #0d0f13); border: 1px solid var(--border); }
.article .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.article:hover .thumb img { transform: scale(1.07); }
.article .meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-dim); }
.article .meta .tag { color: var(--accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.article .meta .sep { color: rgba(255,255,255,0.2); }
.article h3 { font-family: 'Anton', sans-serif; font-size: 24px; line-height: 1.08; letter-spacing: 0.01em; text-transform: uppercase; }
@media (max-width: 900px) { .articles-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--bg); }
.faq-head { text-align: center; grid-template-columns: 1fr; margin-bottom: 48px; }
.faq .acc-head { font-size: 18px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--bg-2); }
.contact-card {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  background: var(--surface); box-shadow: 0 50px 90px -50px rgba(0,0,0,0.7);
}
.contact-form { padding: 54px; background: var(--surface); }
.contact-form h3 { font-family: 'Anton', sans-serif; font-size: 26px; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 8px; letter-spacing: 0.04em; }
.field .req { color: var(--accent); margin-left: 4px; }
.field .err { display: block; min-height: 18px; margin-top: 8px; font-size: 13px; color: #ff6b6b; font-weight: 600; }
.field.invalid .err::before { content: '⚠ '; }
.field.invalid .err { animation: err-shake 0.35s ease-in-out; }
@keyframes err-shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.field-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.field-meta .err { margin-top: 0; }
.char-count { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; flex-shrink: 0; margin-top: 6px; }
.char-count .count { font-variant-numeric: tabular-nums; }
.char-count.near { color: #ffbd66; }
.char-count.over, .char-count.under { color: #ff6b6b; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #ff6b6b !important; background: #2a1a1a !important; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; background: #1d2127; border: 1px solid transparent;
  border-radius: 10px; color: var(--text); font-family: inherit; font-size: 15px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: #171a20; }
.field textarea { min-height: 130px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: right 18px top 50%, right 12px top 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.field select option { background: #121418; color: var(--text); }
.submit {
  width: 100%; padding: 17px; background: var(--accent); border: none; border-radius: 10px; color: #0a0a0a;
  font-family: 'Anton', sans-serif; font-size: 17px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.submit:hover { background: #ff8a48; transform: translateY(-2px); }
.submit:disabled { opacity: 0.6; cursor: wait; }

.contact-info { background: linear-gradient(165deg, var(--accent), #e8631f); color: #0a0a0a; padding: 54px; display: flex; flex-direction: column; gap: 16px; }
.contact-info h3 { font-family: 'Anton', sans-serif; font-size: 26px; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-cta {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: #0a0a0a; color: var(--accent); border-radius: 14px; transition: transform .25s var(--ease);
}
.contact-cta:hover { transform: translateY(-2px); }
.contact-cta span { display: flex; flex-direction: column; font-family: 'Anton', sans-serif; font-size: 19px; letter-spacing: 0.02em; line-height: 1.1; }
.contact-cta small { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-bottom: 3px; }
.contact-info .row { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; line-height: 1.5; margin-top: 4px; font-weight: 500; }
.contact-info .row svg { margin-top: 3px; flex-shrink: 0; }
.contact-info .follow-group { margin-top: auto; padding-top: 8px; }
.contact-info .follow-heading { font-family: 'Anton', sans-serif; font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.contact-info .socials { display: flex; gap: 12px; }
.contact-info .socials a, .contact-info .socials .copy-link {
  width: 42px; height: 42px; display: grid; place-items: center; background: #0a0a0a; color: var(--accent);
  border-radius: 50%; transition: transform .25s var(--ease); border: none; cursor: pointer; padding: 0;
}
.contact-info .socials a:hover, .contact-info .socials .copy-link:hover { transform: translateY(-3px); }
@media (max-width: 920px) { .contact-card { grid-template-columns: 1fr; } .contact-form, .contact-info { padding: 36px 26px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
footer { background: var(--bg); color: var(--text); padding: 100px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 60px; margin-bottom: 56px; }
.footer-brand .brand { color: var(--text); }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 380px; margin-top: 18px; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact .muted { color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer-col h5 { font-family: 'Anton', sans-serif; letter-spacing: 0.08em; font-size: 14px; color: var(--accent); margin-bottom: 20px; text-transform: uppercase; }
.footer-col a { display: block; padding: 5px 0; font-size: 14px; color: var(--text-dim); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-socials { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-socials h6 { font-family: 'Anton', sans-serif; letter-spacing: 0.06em; font-size: 14px; color: var(--accent); text-transform: uppercase; }
.footer-socials .links { display: flex; gap: 10px; }
.footer-socials .links a, .footer-socials .links .copy-link {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); color: inherit;
  display: grid; place-items: center; transition: background .25s var(--ease), color .25s var(--ease); border: none; cursor: pointer; padding: 0;
}
.footer-socials .links a:hover, .footer-socials .links .copy-link:hover { background: var(--accent-soft); color: var(--accent); }
.footer-copy { text-align: right; padding-top: 24px; color: var(--muted); font-size: 12px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } .footer-copy { text-align: left; } }

/* ==========================================================================
   Motion helpers
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-card { opacity: 0; transform: translateY(60px) scale(0.96); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-card.in { opacity: 1; transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > *, .reveal-card { opacity: 1; transform: none; filter: none; }
  .hero-bg::before { animation: none; }
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal[hidden] { display: none !important; }
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: flex-start; justify-content: center; padding: 60px 20px; overflow-y: auto; animation: modal-in .35s var(--ease); }
.modal-backdrop { position: fixed; inset: 0; background: rgba(5,5,5,0.84); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: -1; cursor: pointer; }
.modal-card { position: relative; width: 100%; max-width: 760px; background: var(--cream); color: var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 90px -20px rgba(0,0,0,0.6); animation: modal-pop .45s var(--ease); }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: rgba(10,10,10,0.78); color: var(--cream); border: none; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(6px); transition: background .25s var(--ease), transform .25s var(--ease); }
.modal-close:hover { background: var(--accent); color: #0a0a0a; transform: scale(1.08); }
.modal-hero { height: 300px; overflow: hidden; background: linear-gradient(150deg, #1a1f26, #0d0f13); }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 44px 48px 48px; }
.modal-body .meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 13px; color: rgba(10,10,10,0.6); }
.modal-body .meta .tag { color: var(--accent); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.modal-body h2 { font-family: 'Anton', sans-serif; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.04; text-transform: uppercase; margin-bottom: 24px; color: #0a0a0a; }
.modal-body h3 { font-family: 'Anton', sans-serif; font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; color: #c1531a; margin: 28px 0 12px; }
.modal-body p { font-size: 16px; line-height: 1.7; margin-bottom: 14px; color: #2a2a2a; }
.modal-body ul { margin: 0 0 14px 20px; color: #2a2a2a; }
.modal-body ul li { margin-bottom: 8px; line-height: 1.6; }
.modal-body .modal-cta { margin-top: 32px; padding: 20px 22px; background: #0a0a0a; color: var(--cream); border-radius: 12px; border-left: 4px solid var(--accent); }
.modal-body .modal-cta strong { color: var(--cream); }
.modal-body .modal-cta a { color: var(--accent); font-family: 'Anton', sans-serif; letter-spacing: 0.04em; text-transform: uppercase; margin-left: 6px; }
body.modal-open { overflow: hidden; }
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 720px) { .modal { padding: 20px 14px; } .modal-hero { height: 200px; } .modal-body { padding: 28px 22px 34px; } }

.modal-confirm { align-items: center; }
.confirm-card { max-width: 520px; padding: 48px 44px 40px; background: var(--surface); color: var(--text); text-align: center; border: 1px solid var(--border-accent); }
.confirm-body { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.confirm-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 6px; animation: confirm-pop .6s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes confirm-pop { from { transform: scale(0.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-body h2 { font-family: 'Anton', sans-serif; font-size: 38px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--cream); margin: 0; }
.confirm-body p { font-size: 15px; color: var(--text-dim); line-height: 1.6; margin: 0; max-width: 420px; }
.confirm-body p a { color: var(--accent); font-weight: 700; }
.confirm-body .btn { margin-top: 14px; }
