/* MC Aerials website — developed by Nexar Web Services. */
:root {
  --navy-950: #071525;
  --navy-900: #0d2139;
  --navy-800: #143252;
  --blue-600: #1d5fa9;
  --blue-100: #e9f2fc;
  --red-600: #d62e37;
  --red-700: #b82129;
  --red-100: #fff0f1;
  --ink: #142033;
  --muted: #5b6678;
  --line: #dce3eb;
  --soft: #f4f7fa;
  --white: #ffffff;
  --success: #17854f;
  --shadow-sm: 0 8px 24px rgba(7, 21, 37, .08);
  --shadow-lg: 0 22px 60px rgba(7, 21, 37, .16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy-950);
  font-weight: 760;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { margin-bottom: 24px; font-size: clamp(2.45rem, 5.3vw, 5rem); letter-spacing: -.052em; }
h2 { margin-bottom: 18px; font-size: clamp(1.9rem, 3.5vw, 3.25rem); letter-spacing: -.038em; }
h3 { margin-bottom: 12px; font-size: 1.22rem; }
p { margin-bottom: 20px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(74px, 9vw, 124px) 0; }
.section--soft { background: var(--soft); }
.section--navy { color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.eyebrow {
  margin-bottom: 13px;
  color: var(--red-600);
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section--navy .eyebrow, .page-hero .eyebrow, .home-hero .eyebrow { color: #ff8d93; }
.lede { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.section--navy .lede { color: rgba(255,255,255,.8); }
.skip-link { position: fixed; top: -100px; left: 12px; z-index: 999; padding: 10px 14px; color: var(--white); background: var(--navy-950); }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(220,227,235,.8); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-950); text-decoration: none; }
.brand-logo { width: 245px; max-height: 48px; object-fit: contain; object-position: left center; }
.site-footer .brand-logo { filter: grayscale(1) brightness(0) invert(1); }
.brand-mark { position: relative; width: 46px; height: 38px; display: grid; place-items: center; overflow: hidden; border-radius: 7px; color: var(--white); background: var(--navy-950); font-size: .82rem; font-weight: 800; letter-spacing: -.03em; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; left: -8px; width: 64px; height: 5px; transform: rotate(-27deg); background: var(--red-600); }
.brand-mark::before { top: 8px; }
.brand-mark::after { bottom: 7px; background: var(--blue-600); }
.brand-mark span { position: relative; z-index: 1; text-shadow: 0 1px 4px var(--navy-950); }
.brand-name { font-size: 1.42rem; font-weight: 780; letter-spacing: -.035em; }
.brand-name small { display: block; color: var(--muted); font-size: .62rem; font-weight: 650; letter-spacing: .03em; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a, .nav-dropdown > button { padding: 28px 0; border: 0; color: var(--navy-950); background: none; cursor: pointer; font-size: .92rem; font-weight: 680; text-decoration: none; }
.site-nav > a:hover, .site-nav > a[aria-current="page"], .nav-dropdown > button:hover { color: var(--red-600); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown > button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.nav-dropdown__menu { position: absolute; top: calc(100% - 14px); left: -20px; min-width: 280px; display: grid; gap: 2px; padding: 10px; visibility: hidden; opacity: 0; transform: translateY(8px); border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-lg); transition: .18s ease; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-dropdown__menu a { padding: 10px 12px; border-radius: 7px; color: var(--ink); text-decoration: none; font-size: .9rem; }
.nav-dropdown__menu a:hover { color: var(--navy-950); background: var(--soft); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { width: 46px; height: 46px; display: none; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 8px; color: var(--navy-950); background: var(--white); cursor: pointer; }
.menu-toggle svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 2px solid transparent; border-radius: 8px; font-weight: 740; line-height: 1.2; text-align: center; text-decoration: none; transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .menu-toggle:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid #75aaff; outline-offset: 3px; }
.button svg { width: 20px; height: 20px; fill: currentColor; }
.button--primary { color: var(--white); background: var(--red-600); }
.button--primary:hover { color: var(--white); background: var(--red-700); }
.button--secondary { color: var(--navy-950); background: var(--white); }
.button--secondary:hover { color: var(--navy-950); background: #edf3fa; }
.button--outline { color: var(--navy-950); border-color: var(--line); background: transparent; }
.button--outline:hover { border-color: #aab9ca; background: var(--soft); }
.button--light { color: var(--navy-950); background: var(--white); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.55); background: transparent; }
.button--outline-light:hover { color: var(--navy-950); border-color: var(--white); background: var(--white); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.text-link { color: var(--blue-600); font-weight: 730; text-decoration: none; }
.text-link:hover { color: var(--red-700); text-decoration: underline; }

.home-hero { position: relative; min-height: 720px; display: flex; align-items: center; isolation: isolate; overflow: hidden; background: var(--navy-950); }
.home-hero__image, .home-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero__image { z-index: -2; object-fit: cover; object-position: center; }
.home-hero__overlay { z-index: -1; background: linear-gradient(90deg, rgba(4,13,24,.94) 0%, rgba(7,21,37,.82) 45%, rgba(7,21,37,.16) 100%); }
.home-hero__content { padding: 96px 0; }
.home-hero__content > * { max-width: 780px; }
.home-hero h1, .home-hero p { color: var(--white); }
.home-hero__intro { margin-bottom: 30px; font-size: clamp(1.08rem, 2vw, 1.32rem); }
.proof-list { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 32px 0 0; padding: 0; color: var(--white); list-style: none; }
.proof-list li::before { content: "\2713"; margin-right: 8px; color: #62da9a; font-weight: 800; }
.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 23px 21px; border-right: 1px solid var(--line); }
.trust-grid div:first-child { border-left: 1px solid var(--line); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy-950); }
.trust-grid span { color: var(--muted); font-size: .86rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 345px; display: flex; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #b7c5d5; box-shadow: var(--shadow-lg); }
.service-card--featured { border-top: 4px solid var(--red-600); }
.service-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 13px; color: var(--blue-600); background: var(--blue-100); }
.service-card__icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card p { color: var(--muted); }
.service-card .text-link { margin-top: auto; }
.tag { display: inline-flex; align-self: flex-start; margin-bottom: 16px; padding: 5px 9px; border-radius: 999px; color: var(--red-700); background: var(--red-100); font-size: .66rem; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(42px, 7vw, 92px); align-items: center; }
.media-frame { position: relative; }
.media-frame img { width: 100%; aspect-ratio: 1 / .88; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.experience-badge { position: absolute; right: -18px; bottom: 26px; max-width: 170px; padding: 19px; border-radius: var(--radius-sm); color: var(--white); background: var(--red-600); box-shadow: var(--shadow-lg); }
.experience-badge strong, .experience-badge span { display: block; }
.experience-badge strong { font-size: 2.15rem; line-height: 1; }
.experience-badge span { margin-top: 5px; font-size: .8rem; }
.tick-list { display: grid; gap: 14px; margin: 26px 0; padding: 0; list-style: none; }
.tick-list li { position: relative; padding-left: 32px; }
.tick-list li::before { content: "\2713"; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue-600); font-size: .7rem; font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 46px; }
.process-step { display: grid; grid-template-columns: 55px 1fr; gap: 17px; align-items: start; }
.process-step__number { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy-900); font-weight: 800; }
.process-step p { color: var(--muted); }

.coverage-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 60px; align-items: center; }
.place-list { display: flex; flex-wrap: wrap; gap: 10px; }
.place-list span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.08); }

.faq-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 70px; align-items: start; }
.faq-items { border-top: 1px solid var(--line); }
.faq-items details { border-bottom: 1px solid var(--line); }
.faq-items summary { position: relative; padding: 21px 42px 21px 0; color: var(--navy-950); cursor: pointer; font-weight: 740; list-style: none; }
.faq-items summary::-webkit-details-marker { display: none; }
.faq-items summary::after { content: "+"; position: absolute; right: 5px; top: 50%; transform: translateY(-50%); color: var(--red-600); font-size: 1.5rem; }
.faq-items details[open] summary::after { content: "\2212"; }
.faq-items details p { padding-right: 34px; color: var(--muted); }

.cta-band { padding: clamp(58px, 7vw, 90px) 0; color: var(--white); background: var(--red-600); }
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band .eyebrow { color: var(--white); opacity: .86; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.cta-band__copy { max-width: 690px; }
.cta-band__copy p:last-child { margin-bottom: 0; }

.page-hero { position: relative; min-height: 570px; display: flex; align-items: center; isolation: isolate; overflow: hidden; background: var(--navy-950); }
.page-hero__image, .page-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero__image { z-index: -2; object-fit: cover; }
.page-hero__overlay { z-index: -1; background: linear-gradient(90deg, rgba(4,13,24,.94), rgba(7,21,37,.78) 55%, rgba(7,21,37,.16)); }
.page-hero__content { max-width: 780px; padding: 84px 0; }
.page-hero h1, .page-hero p { color: var(--white); }
.page-hero h1 { font-size: clamp(2.35rem, 4.7vw, 4.5rem); }
.page-hero__intro { font-size: clamp(1.06rem, 1.8vw, 1.28rem); }
.breadcrumb { margin-bottom: 26px; color: rgba(255,255,255,.74); font-size: .84rem; }
.breadcrumb a { color: var(--white); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.feature__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 11px; color: var(--blue-600); background: var(--blue-100); }
.feature__icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature p { color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 14px; }
.gallery-grid img { width: 100%; height: 330px; object-fit: cover; border-radius: var(--radius-sm); }
.gallery-grid img:first-child { height: 100%; min-height: 330px; grid-row: span 2; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 70px; align-items: start; }
.content-grid aside { position: sticky; top: 112px; padding: 27px; border-radius: var(--radius-md); color: var(--white); background: var(--navy-900); }
.content-grid aside h3, .content-grid aside p { color: var(--white); }
.content-grid aside .button { width: 100%; margin-top: 8px; }
.content-section + .content-section { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }

.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.contact-methods { display: grid; gap: 14px; margin-top: 30px; }
.contact-method { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; }
.contact-method:hover { border-color: #acbacb; box-shadow: var(--shadow-sm); }
.contact-method__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 10px; color: var(--blue-600); background: var(--blue-100); }
.contact-method__icon svg { width: 24px; height: 24px; fill: currentColor; }
.contact-method strong, .contact-method span { display: block; }
.contact-method span { color: var(--muted); font-size: .88rem; }
.contact-panel { padding: 32px; border-radius: var(--radius-md); background: var(--soft); }
.enquiry-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: var(--navy-950); font-size: .88rem; font-weight: 700; }
.form-field input, .form-field textarea { width: 100%; padding: 13px 14px; border: 1px solid #b8c4d2; border-radius: 8px; color: var(--ink); background: var(--white); }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-note { color: var(--muted); font-size: .82rem; }
.form-status { min-height: 1.5em; margin: 0; color: var(--success); font-weight: 700; }
.form-status.is-error { color: var(--red-700); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.enquiry-form button:disabled { cursor: wait; opacity: .65; transform: none; }

.site-footer { color: rgba(255,255,255,.75); background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1.25fr .85fr .85fr .95fr; gap: 46px; padding: 72px 0 54px; }
.site-footer .brand { color: var(--white); }
.site-footer .brand-name small { color: rgba(255,255,255,.62); }
.footer-about p { max-width: 360px; margin-top: 20px; }
.footer-column h2 { margin-bottom: 17px; color: var(--white); font-size: .96rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a { color: var(--white); font-weight: 700; text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.78); }

.legal { max-width: 820px; }
.legal h2 { margin-top: 44px; font-size: 1.65rem; }
.error-page { min-height: 68vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.error-page__code { margin-bottom: 10px; color: var(--red-600); font-size: 5rem; font-weight: 800; line-height: 1; }

@media (max-width: 1080px) {
  .site-nav { position: fixed; inset: 84px 0 auto; max-height: calc(100vh - 84px); display: none; align-items: stretch; gap: 0; overflow-y: auto; padding: 18px 20px 30px; border-top: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-lg); }
  .site-nav.is-open { display: grid; }
  .site-nav > a, .nav-dropdown > button { width: 100%; padding: 13px 2px; text-align: left; }
  .nav-dropdown__menu { position: static; min-width: 0; display: grid; visibility: visible; opacity: 1; transform: none; padding: 3px 0 8px 14px; border: 0; box-shadow: none; }
  .header-actions .button { display: none; }
  .menu-toggle { display: grid; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .coverage-layout, .faq-layout, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .content-grid aside { position: static; }
  .media-frame { max-width: 680px; }
  .process-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .header-inner { min-height: 74px; }
  .site-nav { inset: 74px 0 auto; max-height: calc(100vh - 74px); }
  .brand-name { font-size: 1.2rem; }
  .brand-logo { width: 205px; }
  .brand-name small { display: none; }
  .home-hero { min-height: 690px; }
  .home-hero__overlay, .page-hero__overlay { background: rgba(4,13,24,.77); }
  .home-hero__content, .page-hero__content { padding: 72px 0; }
  .button-row, .button-row .button { width: 100%; }
  .proof-list { display: grid; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div { border-top: 1px solid var(--line); }
  .trust-grid div:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-grid div:nth-child(-n+2) { border-top: 0; }
  .service-grid, .feature-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .experience-badge { right: 10px; bottom: 10px; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .cta-band__inner .button-row, .cta-band__inner .button { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 240px; }
  .gallery-grid img:first-child { grid-column: 1 / -1; grid-row: auto; height: 330px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 470px) {
  body { font-size: 15px; }
  .brand-mark { width: 42px; }
  .brand-logo { width: 175px; }
  .trust-grid, .gallery-grid, .footer-main { grid-template-columns: 1fr; }
  .trust-grid div, .trust-grid div:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-grid div:nth-child(2) { border-top: 1px solid var(--line); }
  .gallery-grid img, .gallery-grid img:first-child { grid-column: auto; height: 280px; }
  .contact-panel { padding: 22px; }
}

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


/* Area pages — Nexar Web Services */
.area-hero .page-hero__image { object-position: center 34%; }
.local-intro { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(290px,.7fr); align-items: start; gap: 64px; }
.area-contact-card { display: grid; gap: 16px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--soft); box-shadow: var(--shadow-sm); }
.area-contact-card h2, .area-contact-card p { margin: 0; }
.area-contact-card .button { width: 100%; }
.area-services { grid-template-columns: repeat(3,1fr); }
.area-services .service-card:last-child { grid-column: 2; }
.area-groups { display: grid; gap: 64px; }
.area-group { display: grid; grid-template-columns: 230px minmax(0,1fr); align-items: start; gap: 42px; padding-top: 34px; border-top: 1px solid var(--line); }
.area-group:first-child { padding-top: 0; border-top: 0; }
.area-group h2 { font-size: 1.45rem; }
.area-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.area-card { display: grid; gap: 5px; padding: 20px; border: 1px solid var(--line); border-radius: 10px; color: var(--navy-950); background: var(--white); text-decoration: none; transition: transform .18s ease,border-color .18s ease,box-shadow .18s ease; }
.area-card:hover { transform: translateY(-2px); border-color: #acbacb; box-shadow: var(--shadow-sm); }
.area-card span { color: var(--muted); font-size: .84rem; }
.area-card b { color: var(--red-600); }
.area-more { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 54px; }
.nearby-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nearby-links a { display: flex; justify-content: space-between; gap: 16px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 8px; color: var(--navy-950); background: var(--white); font-weight: 700; text-decoration: none; }
.nearby-links a:hover { border-color: var(--red-600); }
.nearby-links span { color: var(--red-600); }
@media (max-width:1080px) { .local-intro,.area-group,.area-more { grid-template-columns:1fr; } .area-services { grid-template-columns:repeat(2,1fr); } .area-services .service-card:last-child { grid-column:auto; } }
@media (max-width:760px) { .area-grid,.nearby-links,.area-services { grid-template-columns:1fr; } .area-group { gap:20px; } .area-groups { gap:48px; } }


/* Compact local service links — Nexar Web Services */
.area-service-links { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.area-service-links a { display:grid; gap:5px; padding:22px; border:1px solid var(--line); border-radius:10px; color:var(--navy-950); background:var(--white); text-decoration:none; transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease; }
.area-service-links a:hover { transform:translateY(-2px); border-color:#acbacb; box-shadow:var(--shadow-sm); }
.area-service-links span { color:var(--muted); font-size:.88rem; }
.area-service-links a:last-child { grid-column:1 / -1; }
@media (max-width:760px) { .area-service-links { grid-template-columns:1fr; } .area-service-links a:last-child { grid-column:auto; } }
