/* =========================================================================
   Launch Lab Golf — design system
   Near-black base + electric blue accent. Space Grotesk display headings,
   IBM Plex Sans body. No external frameworks, hand-written.
   ========================================================================= */

:root {
  --llg-bg-950: #0b0d10;
  --llg-bg-900: #12161c;
  --llg-bg-800: #1a2029;
  --llg-bg-700: #232b36;
  --llg-blue: #3b82f6;
  --llg-blue-light: #6ea1f8;
  --llg-blue-dark: #1d4ed8;
  --llg-white: #f2f5f9;
  --llg-ink: #cbd3dd;
  --llg-ink-soft: #8b96a6;
  --llg-line: rgba(255, 255, 255, 0.09);

  --llg-font-display: 'Space Grotesk', -apple-system, "Segoe UI", sans-serif;
  --llg-font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --llg-container-w: 1180px;
  --llg-radius: 8px;
  --llg-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --llg-shadow-md: 0 14px 32px rgba(0, 0, 0, 0.5);
  --llg-shadow-lg: 0 26px 56px rgba(0, 0, 0, 0.6);
  --llg-transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--llg-font-body);
  color: var(--llg-ink);
  background: var(--llg-bg-950);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--llg-font-display);
  color: var(--llg-white);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--llg-ink-soft); }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.llg-skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--llg-blue);
  color: var(--llg-bg-950);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-weight: 700;
}
.llg-skip-link:focus { left: 1em; top: 1em; }

.llg-container {
  width: 100%;
  max-width: var(--llg-container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.llg-btn {
  display: inline-block;
  padding: 0.85em 1.9em;
  border-radius: var(--llg-radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform var(--llg-transition), box-shadow var(--llg-transition), background var(--llg-transition), color var(--llg-transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.llg-btn-accent {
  background: var(--llg-blue);
  color: var(--llg-white);
}
.llg-btn-accent:hover { background: var(--llg-blue-light); transform: translateY(-2px); box-shadow: var(--llg-shadow-md); }
.llg-btn-outline {
  background: transparent;
  border-color: var(--llg-white);
  color: var(--llg-white);
}
.llg-btn-outline:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.llg-btn-secondary {
  background: var(--llg-bg-700);
  color: var(--llg-white);
}
.llg-btn-secondary:hover { background: var(--llg-bg-800); transform: translateY(-2px); box-shadow: var(--llg-shadow-md); }
.llg-btn-block { display: block; text-align: center; width: 100%; }

/* ---------- Header ---------- */
.llg-site-header {
  background: var(--llg-bg-700);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--llg-shadow-sm);
}
.llg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.llg-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.llg-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--llg-blue);
  color: var(--llg-blue-light);
  font-family: var(--llg-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.llg-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.llg-brand-name {
  font-family: var(--llg-font-display);
  color: var(--llg-white);
  font-size: 1.25rem;
  font-weight: 700;
}
.llg-brand-tagline {
  color: var(--llg-blue-light);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.llg-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.llg-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--llg-white);
  border-radius: 2px;
  transition: transform var(--llg-transition), opacity var(--llg-transition);
}
.llg-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.llg-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.llg-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.llg-site-nav { display: flex; align-items: center; gap: 28px; }
.llg-nav-list { display: flex; align-items: center; gap: 22px; }
.llg-nav-item { position: relative; }
.llg-nav-item > a {
  color: var(--llg-white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--llg-transition), color var(--llg-transition);
}
.llg-nav-item > a:hover,
.llg-nav-item.is-active > a { border-color: var(--llg-blue); color: var(--llg-blue-light); }
.llg-nav-item .llg-caret { font-size: 0.6rem; opacity: 0.8; }

.llg-sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--llg-bg-900);
  border-radius: var(--llg-radius);
  box-shadow: var(--llg-shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--llg-transition), transform var(--llg-transition), visibility var(--llg-transition);
  z-index: 50;
}
.llg-nav-item.has-children:hover .llg-sub-nav,
.llg-nav-item.has-children.sub-open .llg-sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.llg-sub-nav li a {
  display: block;
  padding: 9px 14px;
  border-radius: 4px;
  color: var(--llg-white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--llg-transition), color var(--llg-transition);
}
.llg-sub-nav li a:hover { background: var(--llg-bg-800); color: var(--llg-blue-light); }

.llg-nav-cta { padding: 0.6em 1.4em; font-size: 0.88rem; }

@media (max-width: 960px) {
  .llg-nav-toggle { display: flex; }
  .llg-site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--llg-bg-700);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--llg-transition);
    box-shadow: var(--llg-shadow-md);
  }
  .llg-site-nav.is-open { max-height: 720px; }
  .llg-nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px; }
  .llg-nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .llg-nav-item > a { display: flex; justify-content: space-between; padding: 14px 0; }
  .llg-sub-nav {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    border-radius: 0;
    padding: 0;
    transition: max-height var(--llg-transition);
  }
  .llg-nav-item.sub-open .llg-sub-nav { max-height: 400px; padding: 6px 0 12px; }
  .llg-nav-item.has-children:hover .llg-sub-nav { max-height: 0; } /* disable hover on touch/mobile width */
  .llg-nav-item.sub-open:hover .llg-sub-nav { max-height: 400px; }
  .llg-sub-nav li a { color: var(--llg-blue-light); padding: 8px 12px; }
  .llg-nav-cta { margin: 16px 24px 24px; text-align: center; }
}

/* ---------- Hero ---------- */
.llg-hero {
  background: linear-gradient(160deg, var(--llg-bg-950) 0%, var(--llg-bg-800) 55%, var(--llg-bg-700) 100%);
  color: var(--llg-white);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.llg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(59,130,246,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(59,130,246,0.12), transparent 40%);
  pointer-events: none;
}
.llg-hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.llg-hero-eyebrow {
  display: inline-block;
  color: var(--llg-blue-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.llg-hero h1 { color: var(--llg-white); font-size: clamp(2.1rem, 4vw, 3.2rem); max-width: 16ch; }
.llg-hero-lede { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 46ch; }
.llg-hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.llg-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.llg-hero-stat .llg-stat-num { font-family: var(--llg-font-display); font-size: 1.8rem; color: var(--llg-blue-light); display: block; }
.llg-hero-stat .llg-stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.65); }

.llg-hero-visual {
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: var(--llg-radius);
  background: rgba(255,255,255,0.03);
  padding: 28px;
  box-shadow: var(--llg-shadow-lg);
}
.llg-hero-visual-title { color: var(--llg-blue-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.llg-hero-metric-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,0.16); }
.llg-hero-metric-row:last-child { border-bottom: none; }
.llg-hero-metric-row span:first-child { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.llg-hero-metric-row span:last-child { color: var(--llg-white); font-weight: 700; font-family: var(--llg-font-display); }

@media (max-width: 860px) {
  .llg-hero-inner { grid-template-columns: 1fr; }
  .llg-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ---------- Page header (non-home hero) ---------- */
.llg-page-header {
  background: linear-gradient(160deg, var(--llg-bg-950), var(--llg-bg-800));
  color: var(--llg-white);
  padding: 64px 0 72px;
  position: relative;
}
.llg-page-header .llg-breadcrumb { color: var(--llg-blue-light); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.llg-page-header h1 { color: var(--llg-white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 22ch; }
.llg-page-header .llg-lede { color: rgba(255,255,255,0.8); max-width: 60ch; font-size: 1.05rem; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.llg-section-alt { background: var(--llg-bg-900); }
.llg-section-tight { padding: 56px 0; }
.llg-section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.llg-section-head.llg-left { margin: 0 0 40px; text-align: left; }
.llg-eyebrow {
  display: inline-block;
  color: var(--llg-blue);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.llg-section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.llg-section-head p { font-size: 1.05rem; }

/* ---------- Grid / cards ---------- */
.llg-grid { display: grid; gap: 28px; }
.llg-grid-2 { grid-template-columns: repeat(2, 1fr); }
.llg-grid-3 { grid-template-columns: repeat(3, 1fr); }
.llg-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .llg-grid-3, .llg-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .llg-grid-2, .llg-grid-3, .llg-grid-4 { grid-template-columns: 1fr; } }

.llg-card {
  background: var(--llg-bg-900);
  border: 1px solid var(--llg-line);
  border-radius: var(--llg-radius);
  padding: 30px 26px;
  transition: transform var(--llg-transition), box-shadow var(--llg-transition), border-color var(--llg-transition);
}
.llg-card:hover { transform: translateY(-4px); box-shadow: var(--llg-shadow-md); border-color: var(--llg-blue); }
.llg-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--llg-bg-800);
  color: var(--llg-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--llg-font-display);
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid var(--llg-blue);
}
.llg-card h3 { font-size: 1.2rem; }
.llg-card p:last-child { margin-bottom: 0; }
.llg-card-link { display: inline-block; margin-top: 10px; color: var(--llg-blue-light); font-weight: 700; font-size: 0.9rem; border-bottom: 1px solid transparent; transition: border-color var(--llg-transition); }
.llg-card-link:hover { border-color: var(--llg-blue-light); }

/* Service card variant on dark band */
.llg-card-on-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--llg-white);
}
.llg-card-on-dark h3 { color: var(--llg-white); }
.llg-card-on-dark p { color: rgba(255,255,255,0.75); }

/* ---------- Process steps ---------- */
.llg-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: llgstep; }
@media (max-width: 900px) { .llg-process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .llg-process-steps { grid-template-columns: 1fr; } }
.llg-step { position: relative; padding: 30px 22px 26px; background: var(--llg-bg-900); border: 1px solid var(--llg-line); border-radius: var(--llg-radius); }
.llg-step-num {
  counter-increment: llgstep;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--llg-blue);
  color: var(--llg-white);
  font-family: var(--llg-font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.llg-step-num::before { content: counter(llgstep); }

/* ---------- Table (pricing / gapping) ---------- */
.llg-table-wrap { overflow-x: auto; border: 1px solid var(--llg-line); border-radius: var(--llg-radius); }
table { width: 100%; border-collapse: collapse; background: var(--llg-bg-900); min-width: 560px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--llg-line); font-size: 0.95rem; color: var(--llg-ink); }
thead th { background: var(--llg-bg-800); color: var(--llg-white); font-family: var(--llg-font-display); font-weight: 700; }
tbody tr:hover { background: var(--llg-bg-800); }
tbody tr:last-child td { border-bottom: none; }

/* ---------- Pricing cards ---------- */
.llg-pricing-card { display: flex; flex-direction: column; }
.llg-pricing-card .llg-price { font-family: var(--llg-font-display); font-size: 2.1rem; color: var(--llg-blue-light); margin: 8px 0 4px; }
.llg-pricing-card .llg-price span { font-size: 0.95rem; color: var(--llg-ink-soft); font-family: var(--llg-font-body); }
.llg-pricing-card ul { margin: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.llg-pricing-card li { padding-left: 22px; position: relative; font-size: 0.93rem; color: var(--llg-ink-soft); }
.llg-pricing-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--llg-blue); font-weight: 700; }
.llg-pricing-card.llg-featured { border-color: var(--llg-blue); box-shadow: var(--llg-shadow-md); position: relative; }
.llg-pricing-card.llg-featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--llg-blue);
  color: var(--llg-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ---------- Testimonials ---------- */
.llg-testimonial {
  background: var(--llg-bg-900);
  border: 1px solid var(--llg-line);
  border-radius: var(--llg-radius);
  padding: 30px 26px;
  position: relative;
}
.llg-testimonial::before {
  content: "\201C";
  font-family: var(--llg-font-display);
  font-size: 3.4rem;
  color: var(--llg-blue);
  position: absolute;
  top: 6px;
  left: 20px;
  line-height: 1;
  opacity: 0.6;
}
.llg-testimonial p { position: relative; z-index: 1; font-style: italic; color: var(--llg-ink); }
.llg-testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.llg-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--llg-blue);
  color: var(--llg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--llg-font-display);
  font-weight: 700;
}
.llg-testimonial-author strong { display: block; color: var(--llg-white); font-size: 0.95rem; }
.llg-testimonial-author span { font-size: 0.82rem; color: var(--llg-ink-soft); }
.llg-stars { color: var(--llg-blue-light); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; display: block; }

/* ---------- CTA band ---------- */
.llg-cta-band {
  background: linear-gradient(135deg, var(--llg-bg-950), var(--llg-bg-800));
  color: var(--llg-white);
  text-align: center;
  padding: 64px 0;
}
.llg-cta-band h2 { color: var(--llg-white); }
.llg-cta-band p { color: rgba(255,255,255,0.78); max-width: 56ch; margin: 0 auto 28px; }
.llg-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Team ---------- */
.llg-team-card { text-align: center; }
.llg-team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--llg-blue);
  color: var(--llg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--llg-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  border: 3px solid var(--llg-blue-dark);
}
.llg-team-role { color: var(--llg-blue-light); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; display: block; }

/* ---------- Brand / cert boxes ---------- */
.llg-brand-box {
  border: 1px solid var(--llg-line);
  border-radius: var(--llg-radius);
  background: var(--llg-bg-900);
  padding: 22px;
  text-align: center;
  transition: border-color var(--llg-transition), transform var(--llg-transition);
}
.llg-brand-box:hover { border-color: var(--llg-blue); transform: translateY(-3px); }
.llg-brand-box .llg-brand-initials {
  font-family: var(--llg-font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--llg-blue-light);
  border: 2px solid var(--llg-blue);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.llg-brand-box strong { display: block; color: var(--llg-white); margin-bottom: 4px; }
.llg-brand-box span { font-size: 0.82rem; color: var(--llg-ink-soft); }

/* ---------- FAQ (details/summary, no JS) ---------- */
.llg-faq-item {
  border-bottom: 1px solid var(--llg-line);
  padding: 18px 0;
}
.llg-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--llg-white);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.llg-faq-item summary::-webkit-details-marker { display: none; }
.llg-faq-item summary::after { content: "+"; font-family: var(--llg-font-display); font-size: 1.4rem; color: var(--llg-blue); }
.llg-faq-item[open] summary::after { content: "\2212"; }
.llg-faq-item p { margin-top: 12px; }

/* ---------- Forms ---------- */
.llg-form-card {
  background: var(--llg-bg-900);
  border: 1px solid var(--llg-line);
  border-radius: var(--llg-radius);
  padding: 36px;
  box-shadow: var(--llg-shadow-sm);
}
.llg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 640px) { .llg-form-row { grid-template-columns: 1fr; } }
.llg-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.llg-form-field label { font-weight: 600; font-size: 0.9rem; color: var(--llg-white); }
.llg-form-field input,
.llg-form-field select,
.llg-form-field textarea {
  font-family: var(--llg-font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--llg-line);
  border-radius: 4px;
  background: var(--llg-bg-800);
  color: var(--llg-white);
  transition: border-color var(--llg-transition), box-shadow var(--llg-transition);
}
.llg-form-field input:focus,
.llg-form-field select:focus,
.llg-form-field textarea:focus {
  outline: none;
  border-color: var(--llg-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.28);
}
.llg-form-note { font-size: 0.85rem; color: var(--llg-ink-soft); }

/* ---------- Map placeholder ---------- */
.llg-map-placeholder {
  position: relative;
  height: 140px;
  border-radius: var(--llg-radius);
  background: linear-gradient(160deg, var(--llg-bg-800), var(--llg-bg-950));
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.3);
}
.llg-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.llg-map-pin {
  position: absolute;
  top: 46%;
  left: 52%;
  width: 16px;
  height: 16px;
  background: var(--llg-blue);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(59,130,246,0.25);
}
.llg-map-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: var(--llg-white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.llg-contact-map-large { height: 260px; }

/* Large map on contact page */
.llg-map-placeholder-lg {
  position: relative;
  height: 320px;
  border-radius: var(--llg-radius);
  background: linear-gradient(160deg, var(--llg-bg-800), var(--llg-bg-950));
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.3);
}
.llg-map-placeholder-lg .llg-map-grid { background-size: 30px 30px; }
.llg-map-placeholder-lg .llg-map-pin { width: 22px; height: 22px; }

/* ---------- Blog ---------- */
.llg-post-card { display: flex; flex-direction: column; }
.llg-post-meta { font-size: 0.8rem; color: var(--llg-blue-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; font-weight: 700; }
.llg-post-card h3 { font-size: 1.15rem; }
.llg-article-body { max-width: 760px; margin: 0 auto; }
.llg-article-body h2 { margin-top: 1.6em; font-size: 1.5rem; }
.llg-article-body h3 { margin-top: 1.3em; font-size: 1.2rem; }
.llg-article-body ul, .llg-article-body ol { margin: 0 0 1.2em; padding-left: 1.4em; color: var(--llg-ink-soft); }
.llg-article-body li { margin-bottom: 0.5em; }
.llg-article-body blockquote {
  border-left: 3px solid var(--llg-blue);
  margin: 1.6em 0;
  padding: 0.4em 0 0.4em 1.4em;
  font-style: italic;
  color: var(--llg-white);
  font-family: var(--llg-font-display);
  font-size: 1.1rem;
}
.llg-article-header { text-align: center; margin-bottom: 40px; }
.llg-article-header .llg-post-meta { margin-bottom: 16px; }

/* ---------- Footer ---------- */
.llg-site-footer { background: var(--llg-bg-950); color: rgba(255,255,255,0.8); padding: 68px 0 0; }
.llg-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 960px) { .llg-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .llg-footer-grid { grid-template-columns: 1fr; } }
.llg-footer-col h3 { color: var(--llg-blue-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.llg-footer-brand .llg-brand-name { display: block; font-family: var(--llg-font-display); color: var(--llg-white); font-size: 1.3rem; margin-bottom: 12px; }
.llg-footer-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.llg-badge-box {
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 0.76rem;
  color: var(--llg-blue-light);
  display: inline-block;
  width: fit-content;
}
.llg-site-footer address { font-size: 0.92rem; margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.llg-site-footer a:hover { color: var(--llg-blue-light); }
.llg-hours-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.86rem; padding: 4px 0; color: rgba(255,255,255,0.7); }
.llg-footer-nav li { margin-bottom: 8px; font-size: 0.9rem; }
.llg-footer-bottom { padding: 22px 0; }
.llg-footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ---------- 404 ---------- */
.llg-error-page { text-align: center; padding: 120px 0; }
.llg-error-page .llg-error-code { font-family: var(--llg-font-display); font-size: 6rem; color: var(--llg-blue); line-height: 1; }
.llg-error-page h1 { margin-top: 8px; }

/* ---------- Utility ---------- */
.llg-text-center { text-align: center; }
.llg-mt-0 { margin-top: 0; }
.llg-mb-0 { margin-bottom: 0; }
.llg-list-check li { padding-left: 26px; position: relative; margin-bottom: 10px; }
.llg-list-check li::before { content: "\2713"; position: absolute; left: 0; color: var(--llg-blue); font-weight: 700; }
.llg-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .llg-two-col { grid-template-columns: 1fr; } }
.llg-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.llg-tag { background: var(--llg-bg-800); color: var(--llg-white); font-size: 0.8rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; }
