@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS ───────────────────────────────────────────────────────────────── */
:root {
  --color-primary:   #1877f2;
  --color-accent:    #ffffff;
  --color-bg:        #ffffff;
  --color-surface:   #f9fafb;
  --color-text:      #1a1a1a;
  --color-muted:     #6b7280;
  --color-border:    #e5e7eb;

  --radius-sm:   12px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.10);

  --nav-h:     68px;
  --container: 1140px;
}

/* ── RESET ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', system-ui, sans-serif; font-size: 1rem;
        line-height: 1.7; color: var(--color-text); background: var(--color-bg); }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
input, textarea, button { font-family: inherit; }

/* ── LAYOUT ───────────────────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: 1.5rem;
}
section { padding-block: 6rem; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 2rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
  transition: filter .18s, transform .15s, box-shadow .18s;
  white-space: nowrap; text-decoration: none;
}
.btn-pill:hover { filter: brightness(.92); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-pill.primary { background: var(--color-primary); color: #fff; }
.btn-pill.accent  { background: var(--color-accent);  color: #fff; }
.btn-pill.outline { background: transparent; color: var(--color-primary);
                    border: 2px solid var(--color-primary); }
.btn-pill.outline:hover { background: var(--color-primary); color: #fff; filter: none; }
.btn-pill.outline-white { background: transparent; color: #fff;
                           border: 2px solid rgba(255,255,255,.65); }
.btn-pill.outline-white:hover { background: rgba(255,255,255,.15); filter: none; }
.btn-pill.sm { padding: .5rem 1.25rem; font-size: .9rem; }
.btn-pill.full { width: 100%; }

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-h);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1.5rem;
}
.nav-brand {
  font-size: 1.05rem; font-weight: 800; color: var(--color-text);
  letter-spacing: -.02em; white-space: nowrap; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
  flex: 1; justify-content: center;
}
.nav-link {
  font-size: .88rem; font-weight: 500; color: var(--color-muted);
  transition: color .15s; white-space: nowrap;
}
.nav-link:hover { color: var(--color-text); }
.nav-link.active { color: var(--color-primary); font-weight: 600; }
.nav-phone {
  background: var(--color-primary) !important;
  font-size: .88rem !important;
  padding: .5rem 1.25rem !important;
  flex-shrink: 0;
}

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none;
  border: none; cursor: pointer; padding: 4px; border-radius: 8px;
  flex-shrink: 0;
}
.hamburger span { display: block; height: 2px; background: var(--color-text);
                   border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ── MOBILE MENU ──────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 600;
  background: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--color-surface); border: none; border-radius: 50%;
  width: 42px; height: 42px; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.mobile-close:hover { background: var(--color-border); }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.mobile-nav-links a {
  font-size: 1.7rem; font-weight: 700; color: var(--color-text); transition: color .15s;
}
.mobile-nav-links a:hover { color: var(--color-primary); }
.mobile-phone { font-size: 1.05rem; font-weight: 600; color: var(--color-primary); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  background: #eef4ff;  /* Modern: light blue-white tint */
}
.hero-content { max-width: 700px; }
.hero-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--color-primary);
  background: rgba(37,99,235,.08); padding: .35rem 1rem;
  border-radius: var(--radius-pill); margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -.04em; color: var(--color-text); margin-bottom: 1rem;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 400;
  color: var(--color-muted); margin-bottom: 2.5rem; line-height: 1.65;
}
.hero .btn-pill { font-size: 1.05rem; padding: .9rem 2.5rem; }

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar { background: var(--color-bg); border-block: 1px solid var(--color-border); padding-block: 2rem; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 500; }
.trust-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(37,99,235,.1); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}

/* ── SERVICES PREVIEW (home) ──────────────────────────────────────────────── */
.services-preview { background: var(--color-surface); }
.section-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--color-primary); margin-bottom: .5rem;
}
.section-heading {
  font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800;
  letter-spacing: -.03em; color: var(--color-text); margin-bottom: .5rem;
}
.section-sub { font-size: 1rem; color: var(--color-muted); max-width: 520px; margin-bottom: 3rem; }
.services-cards { display: grid;  gap: 1.25rem; margin-bottom: 2.5rem; }
.service-card {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(37,99,235,.09); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.service-card-name { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.service-card-desc { font-size: .88rem; color: var(--color-muted); line-height: 1.65; }
.services-preview-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600; color: var(--color-primary); font-size: .92rem;
  transition: gap .15s;
}
.services-preview-link:hover { gap: .6rem; }

/* ── CTA STRIP ────────────────────────────────────────────────────────────── */
.cta-strip { background: var(--color-primary); padding-block: 5rem; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; }
.cta-text { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.7; }
.cta-text strong { color: #fff; font-size: 1.15rem; display: block; margin-bottom: .4rem; }
.cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.cta-phone { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -.02em; white-space: nowrap; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer { background: #111827; color: rgba(255,255,255,.55); padding-block: 3rem 2rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand-name { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: .3rem; }
.footer-tagline { font-size: .85rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .88rem; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: .4rem; font-size: .88rem; }
.footer-contact a:hover { color: var(--color-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; font-size: .78rem; text-align: center; }

/* ── PAGE: SERVICES ───────────────────────────────────────────────────────── */
.page-hero { min-height: 38vh; display: flex; align-items: center; background: var(--color-primary); padding: 2rem; }
.page-hero-content { max-width: 680px; }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; color: #fff; margin-bottom: .6rem; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); }

.full-services-grid { display: grid;  gap: 1.25rem; margin-bottom: 4rem; }
.full-service-card {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.75rem;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.full-service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.full-service-name { font-size: .98rem; font-weight: 700; margin-bottom: .35rem; }
.full-service-desc { font-size: .87rem; color: var(--color-muted); line-height: 1.65; }
.services-bottom-cta {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 3.5rem; text-align: center;
}
.services-bottom-cta h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: .5rem; }
.services-bottom-cta p { color: var(--color-muted); margin-bottom: 1.75rem; }

/* ── PAGE: CONTACT ────────────────────────────────────────────────────────── */
.contact-section { background: var(--color-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--color-primary); margin-bottom: .25rem; }
.contact-biz-name { font-size: 1.8rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 2rem; }
.contact-detail-block { margin-bottom: 1.5rem; }
.contact-detail-val { font-size: .95rem; color: var(--color-text); line-height: 1.65; }
.contact-detail-val a { transition: color .15s; }
.contact-detail-val a:hover { color: var(--color-primary); }
.contact-big-phone { font-size: 1.9rem; font-weight: 800; color: var(--color-primary); letter-spacing: -.025em; transition: color .15s; }
.contact-big-phone:hover { color: var(--color-accent); }
.contact-form-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem; }
.form-group label { font-size: .82rem; font-weight: 600; }
.form-group .req { color: var(--color-primary); }
.form-input { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); font-size: .95rem; color: var(--color-text); background: var(--color-bg); transition: border-color .15s, box-shadow .15s; outline: none; }
.form-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-disclaimer { font-size: .78rem; color: var(--color-muted); text-align: center; margin-top: .75rem; }

/* ── PAGE: WORK (build only) ──────────────────────────────────────────────── */
.work-section { background: var(--color-bg); }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.photo-slot { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; background: var(--color-surface); border: 1px solid var(--color-border); background-size: cover; background-position: center; position: relative; transition: transform .3s, box-shadow .3s; }
.photo-slot:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.photo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; color: var(--color-muted); }
.photo-placeholder svg { width: 32px; height: 32px; opacity: .4; }
.photo-caption { margin-top: .55rem; font-size: .83rem; color: var(--color-muted); text-align: center; }
.photo-slot.has-photo .photo-placeholder { display: none; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner          { grid-template-columns: 1fr; }
  .cta-action         { align-items: flex-start; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none !important; }
  .hamburger { display: flex; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  section { padding-block: 3.5rem; }
  .photo-grid         { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .cta-phone          { font-size: 1.6rem; }
  .contact-big-phone  { font-size: 1.5rem; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   UPDATES: CENTER HEADINGS · HERO ANIMATIONS · SCROLL ANIMATION STATES
═══════════════════════════════════════════════════════════════════════════ */

/* Change 1 — Center all section headings and subtitles */
.section-label,
.section-heading {
  text-align: center;
}
.section-sub {
  text-align: center;
  margin-inline: auto;
}
.page-hero-title,
.page-hero-sub {
  text-align: center;
}
.contact-biz-name { text-align: center; }

/* Change 2 — Hero entrance animation keyframes */
@keyframes gns-from-above {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gns-from-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gns-from-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-title   { animation: gns-from-above .6s ease-out  .1s both; }
.hero-tagline { animation: gns-from-left  .6s ease-out  .8s both; }
.hero .btn-pill { animation: gns-from-right .6s ease-out 1.4s both; }

/* Suppress hero animation replay on back navigation */
body.gns-hero-done .hero-title,
body.gns-hero-done .hero-tagline,
body.gns-hero-done .hero .btn-pill {
  animation: none !important;
}

/* Change 3 — Scroll animation base state (applied by animations.js) */
.gns-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}
.gns-anim.gns-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Fix 3: Center headings/subtitles on ALL pages (services, work, etc.) ── */
.page-hero          { text-align: center; }
.page-hero h1       { text-align: center; }
.page-hero p        { text-align: center; margin-inline: auto; }
.services-bottom-cta { text-align: center; }
.services-bottom-cta p { margin-inline: auto; }

/* ── Fix: Center section headings on all pages ───────────────────────────── */
.section-title,
.section-heading,
.section-label {
  text-align: center;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  text-align: center;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Target services and work page headings explicitly */
.services .section-title,
.services h2,
.work .section-title,
.work h2 {
  text-align: center;
  width: 100%;
  display: block;
}

/* Center page-hero-content within its container */
.page-hero-content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
}

/* Ensure page hero itself centers its flex child */
.page-hero {
  justify-content: center;
}

/* ── Page hero title: 50% larger on inner pages ─────────────────────────── */
.page-hero-title {
  font-size: clamp(3rem, 7.5vw, 4.8rem) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHANGES: LOGO · ABOUT · TESTIMONIALS · STICKY BAR · FAQ
═══════════════════════════════════════════════════════════════════════════ */

/* Change 1 — Logo */
.nav-brand { display: flex; align-items: center; gap: .6rem; }
.nav-logo-img { height: 40px; width: auto; display: none; object-fit: contain; }
.nav-logo-text { font-size: 1.1rem; font-weight: 800; letter-spacing: -.01em; }

/* Change 2 — About section */
.about-section { background: var(--color-surface); padding-block: 5rem; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 2rem;
}
.about-text p { font-size: 1.05rem; color: var(--color-muted); line-height: 1.75; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-box {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.5rem 1rem;
  text-align: center; box-shadow: var(--shadow-sm);
}
.stat-number {
  display: block; font-size: 2rem; font-weight: 800;
  color: var(--color-accent); line-height: 1;
  margin-bottom: .3rem; letter-spacing: -.02em;
}
.stat-label {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--color-muted); text-transform: uppercase; letter-spacing: .08em;
}

/* Change 3 — Testimonials */
.testimonials-section { background: var(--color-bg); padding-block: 5rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.testimonial-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .6rem;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .05em; }
.testimonial-text { font-style: italic; color: var(--color-text); line-height: 1.7; font-size: .95rem; flex: 1; }
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--color-text); }
.testimonial-city { font-size: .82rem; color: var(--color-muted); }

/* Change 4 — Sticky mobile call bar */
.sticky-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--color-primary); color: #fff; text-align: center;
  padding: .9rem 1rem; font-weight: 700; font-size: 1rem;
  font-family: system-ui, sans-serif; text-decoration: none; letter-spacing: .01em;
}
@media (max-width: 768px) {
  .sticky-call-bar { display: block; }
  body { padding-bottom: 60px; }
}

/* Change 5 — FAQ */
.faq-section { margin-bottom: 3rem; padding-top: 1rem; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; background: none; border: none;
  cursor: pointer; font-size: .98rem; font-weight: 600;
  font-family: inherit; color: var(--color-text); text-align: left;
  gap: 1rem; transition: background .15s;
}
.faq-question:hover { background: rgba(0,0,0,.04); }
.faq-arrow { flex-shrink: 0; color: var(--color-muted); transition: transform .3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { font-size: .95rem; color: var(--color-muted); line-height: 1.7; }

/* Responsive */
@media (max-width: 768px) {
  .about-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .stat-number { font-size: 1.4rem; }
}

/* ── Logo navigation styles ─────────────────────────────────────────────── */
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 1 1 auto;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: inherit;
}
@media (max-width: 480px) {
  .nav-logo-img { height: 30px; }
}

/* ── FIX 1: Grid-centered navigation ────────────────────────────────────── */
.nav-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  position: static !important;
  gap: 0;
}
.nav-brand,
.nav-logo-link {
  grid-column: 1;
  justify-self: start;
  flex: none !important;
  position: static !important;
}
.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  flex: none !important;
  position: static !important;
  transform: none !important;
  left: auto !important;
  margin: 0 !important;
}
.nav-cta,
.nav-phone {
  grid-column: 3;
  justify-self: end;
  margin-left: 0 !important;
}
.hamburger {
  grid-column: 3;
  justify-self: end;
  display: none;
}
@media (max-width: 768px) {
  .nav-inner {
    grid-template-columns: 1fr auto !important;
  }
  .nav-links {
    display: none !important;
  }
  .nav-cta,
  .nav-phone {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
}

/* ── Edit trigger: hidden dot in footer copyright line ─────────────────── */
.edit-trigger {
  font-size: 2.1rem;
  opacity: 0.3;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: opacity 0.3s ease;
  user-select: none;
  line-height: 1;
  vertical-align: middle;
}
.edit-trigger:hover {
  opacity: 0.6;
}

@media (max-width: 640px) {
  .services-cards,
  .full-services-grid {
    grid-template-columns: 1fr !important;
  }
}
