/* ==========================================================================
   Young Bros Fencing & Painting Ltd
   Shared stylesheet — premium metal fencing / security positioning
   Charcoal + brushed-gold system. Mobile-first. Built for Core Web Vitals.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink: #0c0f13;
  --ink-2: #11151b;
  --steel: #1b212a;
  --steel-2: #232b35;

  --gold: #cda349;
  --gold-2: #b6852b;
  --gold-soft: #e7c87a;

  --paper: #ffffff;
  --mist: #f4f5f7;
  --mist-2: #eceef1;
  --line: #e3e6ea;
  --line-dark: #2a323d;

  --text: #14181d;
  --muted: #5c6671;
  --on-dark: #eef1f5;
  --on-dark-muted: #a8b2bf;

  --ok: #2f9e57;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16, 22, 30, .06), 0 2px 8px rgba(16, 22, 30, .05);
  --shadow: 0 6px 18px rgba(16, 22, 30, .08), 0 18px 48px rgba(16, 22, 30, .08);
  --shadow-lg: 0 24px 60px rgba(10, 14, 20, .22);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 74px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
}

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--tight { padding-top: clamp(36px, 5vw, 56px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 14px;
}
.section--ink .eyebrow { color: var(--gold-soft); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; opacity: .8; }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 54px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-lead { font-size: 1.08rem; color: var(--muted); margin-top: 12px; }
.section--ink .section-lead { color: var(--on-dark-muted); }

.text-gold { color: var(--gold-2); }
.section--ink .text-gold { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 45%, var(--gold-2));
  color: #2a2008;
  box-shadow: 0 8px 22px rgba(182, 133, 43, .35);
}
.btn--gold:hover { box-shadow: 0 14px 30px rgba(182, 133, 43, .45); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--outline { border-color: var(--line-dark); color: var(--text); background: transparent; }
.section--ink .btn--outline, .hero .btn--outline, .cta-band .btn--outline {
  border-color: rgba(255, 255, 255, .35); color: #fff;
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-2); }
.section--ink .btn--outline:hover, .hero .btn--outline:hover, .cta-band .btn--outline:hover {
  border-color: var(--gold-soft); color: var(--gold-soft);
}

.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(12, 15, 19, .9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }

.brand { display: flex; align-items: center; gap: 11px; color: #fff; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-soft), var(--gold-2));
  color: #211904; font-weight: 900; font-size: 1.1rem; letter-spacing: -.04em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.brand__name { font-weight: 800; font-size: 1.02rem; line-height: 1.1; letter-spacing: -.01em; }
.brand__name span { display: block; margin-top: 5px; font-weight: 500; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }

.nav { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.nav__links { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.nav__links a { color: var(--on-dark); font-weight: 600; font-size: .96rem; position: relative; padding: 6px 0; white-space: nowrap; }
.nav__links a:hover { color: #fff; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold-soft); transition: width .22s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone { display: inline-flex; flex-direction: column; line-height: 1.05; color: #fff; }
.nav__phone small { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }
.nav__phone b { font-size: 1.04rem; font-weight: 800; letter-spacing: -.01em; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; border-radius: 10px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; height: 2px; width: 24px; background: #fff; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.is-active span { background: transparent; }
.nav-toggle.is-active span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
    padding: 8px 22px 22px;
    transform: translateY(-130%); transition: transform .32s var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow: auto;
  }
  .nav.is-open { transform: translateY(0); box-shadow: var(--shadow-lg); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a { padding: 15px 0; border-bottom: 1px solid var(--line-dark); }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: 16px; }
  .nav__phone { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px; color: #fff; isolation: isolate;
  background: var(--ink);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; object-fit: cover; width: 100%; height: 100%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(8, 11, 15, .92) 0%, rgba(8, 11, 15, .72) 42%, rgba(8, 11, 15, .35) 100%),
    linear-gradient(0deg, rgba(8, 11, 15, .85), rgba(8, 11, 15, 0) 55%);
}
.hero__inner { max-width: 730px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(205, 163, 73, .14); border: 1px solid rgba(231, 200, 122, .35);
  color: var(--gold-soft); padding: 8px 15px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.hero__eyebrow svg { width: 15px; height: 15px; }
.hero__title {
  font-size: clamp(2.4rem, 6.2vw, 4.3rem); font-weight: 850; margin: 20px 0 16px;
  letter-spacing: -.03em;
}
.hero__title em { font-style: normal; color: var(--gold-soft); }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: #dde2e9; max-width: 600px; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; color: #cfd5dd; font-size: .95rem; }
.hero__note span { display: inline-flex; align-items: center; gap: 8px; }
.hero__note svg { width: 18px; height: 18px; color: var(--gold-soft); flex: none; }

.hero__badges {
  display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 40px;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__stat b { display: block; font-size: 1.75rem; font-weight: 850; color: #fff; letter-spacing: -.02em; }
.hero__stat span { font-size: .86rem; color: var(--on-dark-muted); }

/* ---------- Trust strip ---------- */
.trustbar { background: var(--ink-2); color: var(--on-dark); border-top: 1px solid var(--line-dark); }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-dark);
}
.trustbar__item { background: var(--ink-2); padding: 26px 22px; display: flex; gap: 14px; align-items: flex-start; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--gold-soft); flex: none; margin-top: 1px; }
.trustbar__item > div { padding-top: 3px; }
.trustbar__item b { display: block; font-size: 1rem; font-weight: 700; color: #fff; }
.trustbar__item span { font-size: .86rem; color: var(--on-dark-muted); }
@media (max-width: 760px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden; display: block; color: inherit;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-2));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, #fbf3df, #f0e0bb); color: var(--gold-2); margin-bottom: 18px;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--muted); font-size: .97rem; margin: 0; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-weight: 700; font-size: .92rem; color: var(--gold-2);
}
.service-card__link svg { width: 15px; height: 15px; transition: transform .2s; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

.service-card--feature { background: var(--ink); color: var(--on-dark); border-color: var(--line-dark); }
.service-card--feature h3 { color: #fff; }
.service-card--feature p { color: var(--on-dark-muted); }
.service-card--feature .service-card__icon { background: rgba(205,163,73,.16); color: var(--gold-soft); }
.service-card--feature .service-card__link { color: var(--gold-soft); }

/* tag list */
.taglist { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.tag {
  background: var(--mist); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-size: .9rem; font-weight: 600; color: var(--text);
}
.section--ink .tag, .section--mist .tag { background: var(--paper); }
.section--ink .tag { background: var(--steel); border-color: var(--line-dark); color: var(--on-dark); }
.tag svg { width: 15px; height: 15px; color: var(--gold-2); vertical-align: -2px; margin-right: 5px; }

/* ---------- Split / why-us ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 900px) { .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; } }

.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.media-frame--tall img { aspect-ratio: 3 / 4; }
.media-badge {
  position: absolute; left: 18px; bottom: 18px; background: rgba(12,15,19,.82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: #fff; border: 1px solid rgba(255,255,255,.18);
  padding: 12px 16px; border-radius: 12px; display: flex; align-items: center; gap: 12px;
}
.media-badge b { font-size: 1.5rem; line-height: 1; color: var(--gold-soft); }
.media-badge span { font-size: .82rem; color: #d7dce3; }

.feature-list { display: grid; gap: 18px; margin-top: 8px; }
.feature { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.feature__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none;
  background: linear-gradient(150deg, #fbf3df, #efdfb9); color: var(--gold-2);
}
.section--ink .feature__icon { background: rgba(205,163,73,.16); color: var(--gold-soft); }
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }
.section--ink .feature p { color: var(--on-dark-muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--steel);
  grid-column: span 4; aspect-ratio: 1 / 1;
}
.gallery__item--wide { grid-column: span 6; aspect-ratio: 16 / 10; }
.gallery__item--tall { grid-column: span 4; aspect-ratio: 3 / 4; }
.gallery__item img, .gallery__item video {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px; color: #fff;
  font-size: .9rem; font-weight: 600;
  background: linear-gradient(0deg, rgba(8,11,15,.82), transparent);
}
@media (max-width: 760px) {
  .gallery__item, .gallery__item--wide, .gallery__item--tall { grid-column: span 6; aspect-ratio: 1/1; }
}

.video-card { position: relative; }
.video-card video { width: 100%; border-radius: var(--radius); display: block; background: #000; aspect-ratio: 9/16; object-fit: cover; }
.video-play {
  position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; border: 0;
  background: rgba(8,11,15,.25); color: #fff; border-radius: var(--radius); transition: background .2s;
}
.video-play:hover { background: rgba(8,11,15,.1); }
.video-play span {
  width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-2)); color: #211904;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.video-play svg { width: 26px; height: 26px; margin-left: 4px; }
.video-play.is-hidden { display: none; }

/* Instagram embeds */
.ig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; align-items: start; }
.ig-grid .instagram-media { margin: 0 auto !important; min-width: unset !important; width: 100% !important; }

/* ---------- Reviews ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.rating-summary { display: flex; align-items: center; gap: 16px; }
.rating-summary__score { font-size: 3rem; font-weight: 850; line-height: 1; letter-spacing: -.02em; }
.rating-summary small { color: var(--muted); display: block; margin-top: 4px; font-size: .92rem; }
.section--ink .rating-summary small { color: var(--on-dark-muted); }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.stars--lg svg { width: 22px; height: 22px; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 38px; }
.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm);
}
.section--ink .review-card { background: var(--steel); border-color: var(--line-dark); color: var(--on-dark); }
.review-card__text { font-size: 1rem; margin: 0; }
.review-card__head { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; background: var(--mist-2); }
.avatar--letter { display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.15rem; }
.review-card__who b { display: block; font-size: .97rem; }
.review-card__who span { font-size: .84rem; color: var(--muted); }
.section--ink .review-card__who span { color: var(--on-dark-muted); }
.review-src { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; color: var(--muted); }
.section--ink .review-src { color: var(--on-dark-muted); }
.review-src svg { width: 16px; height: 16px; }

/* ---------- Service areas ---------- */
.area-cluster + .area-cluster { margin-top: 4px; }
.area-cluster h3 {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft);
  margin: 22px 0 12px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px;
  background: var(--steel); border: 1px solid var(--line-dark); color: var(--on-dark);
  font-weight: 600; font-size: .92rem; transition: border-color .2s, color .2s, transform .2s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.chip svg { width: 14px; height: 14px; color: var(--gold-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.section--ink .faq__item { border-color: var(--line-dark); }
.faq__q {
  width: 100%; background: transparent; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px; font-size: 1.1rem; font-weight: 700; color: inherit; font-family: inherit;
}
.faq__q .faq__ico { flex: none; width: 26px; height: 26px; position: relative; }
.faq__q .faq__ico::before, .faq__q .faq__ico::after {
  content: ""; position: absolute; background: var(--gold-2); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}
.section--ink .faq__q .faq__ico::before, .section--ink .faq__q .faq__ico::after { background: var(--gold-soft); }
.faq__q .faq__ico::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq__q .faq__ico::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq__item.is-open .faq__ico::after { transform: scaleY(0); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--muted); padding: 0 4px 22px; margin: 0; }
.section--ink .faq__a p { color: var(--on-dark-muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; color: #fff; overflow: hidden; background: var(--ink); }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; object-fit: cover; width: 100%; height: 100%; opacity: .4; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(8,11,15,.94), rgba(8,11,15,.55)); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 620px; }
.cta-band p { color: #d6dbe2; max-width: 560px; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.phone-stack { display: grid; gap: 16px; }
.phone-card {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--paper); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.phone-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.phone-card__ico { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.phone-card__ico svg { width: 24px; height: 24px; }
.phone-card .pc-body { flex: 1; }
.phone-card small { display: block; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.phone-card b { font-size: 1.45rem; font-weight: 850; letter-spacing: -.02em; line-height: 1.1; display: block; }
.phone-card .tagpill { display: inline-block; margin-top: 6px; font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }

.phone-card--primary { border-color: var(--gold); background: linear-gradient(180deg, #fffaf0, #fff); box-shadow: 0 10px 30px rgba(182,133,43,.16); }
.phone-card--primary .phone-card__ico { background: linear-gradient(135deg, var(--gold-soft), var(--gold-2)); color: #211904; }
.phone-card--primary .tagpill { background: var(--gold-2); color: #fff; }
.phone-card--secondary .phone-card__ico { background: var(--mist-2); color: var(--muted); }
.phone-card--secondary .tagpill { background: var(--mist-2); color: var(--muted); }

.contact-meta { margin-top: 22px; display: grid; gap: 12px; }
.contact-meta a, .contact-meta div { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 600; }
.contact-meta svg { width: 20px; height: 20px; color: var(--gold-2); flex: none; }
.contact-meta em { font-style: normal; font-weight: 400; color: var(--muted); }

/* Form */
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); }
.form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form > p { color: var(--muted); font-size: .96rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: 1rem; color: var(--text); background: var(--mist); transition: border-color .18s, background .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(205,163,73,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form__fine { font-size: .82rem; color: var(--muted); margin: 12px 0 0; }
.form__success { display: none; padding: 16px; border-radius: var(--radius-sm); background: #eafaf0; border: 1px solid #bfe6cd; color: #1c6b3a; font-weight: 600; margin-bottom: 16px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: #07090c; color: var(--on-dark-muted); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 34px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 16px; }
.footer-grid p { font-size: .94rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: .95rem; color: var(--on-dark-muted); transition: color .18s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact a, .footer-contact div { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: .95rem; color: var(--on-dark-muted); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-soft); flex: none; margin-top: 2px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--steel); border: 1px solid var(--line-dark); color: #fff; transition: background .2s, transform .2s; }
.social-row a:hover { background: var(--gold-2); transform: translateY(-2px); }
.social-row svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem;
}
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Breadcrumbs (kept for any future inner pages) ---------- */
.breadcrumbs { background: var(--ink); padding-top: calc(var(--header-h) + 22px); padding-bottom: 4px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; color: var(--on-dark-muted); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--line-dark); }
.breadcrumbs a { color: var(--on-dark-muted); }
.breadcrumbs a:hover { color: var(--gold-soft); }
.breadcrumbs [aria-current="page"] { color: #fff; font-weight: 600; }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; inset: auto 0 0 0; z-index: 55; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark);
  box-shadow: 0 -8px 24px rgba(0,0,0,.18); padding-bottom: env(safe-area-inset-bottom);
}
.callbar a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px; font-weight: 800; font-size: 1rem; }
.callbar svg { width: 19px; height: 19px; }
.callbar a:first-child { background: var(--ink); color: #fff; }
.callbar a:last-child { background: linear-gradient(135deg, var(--gold-soft), var(--gold-2)); color: #211904; }
@media (max-width: 760px) { .callbar { display: grid; } body { padding-bottom: 58px; } }

/* ---------- Localized content blocks (city/service pages) ---------- */
.page-hero {
  position: relative; isolation: isolate; color: #fff; background: var(--ink);
  padding: 40px 0 64px; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; object-fit: cover; width: 100%; height: 100%; opacity: .5; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(110deg, rgba(8,11,15,.95), rgba(8,11,15,.6) 55%, rgba(8,11,15,.3)); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 860px; }
.page-hero .hero__sub { margin-top: 10px; }

.prose { max-width: 780px; }
.prose p { font-size: 1.06rem; color: var(--text); }
.section--ink .prose p { color: var(--on-dark); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.4em; }
.prose ul.ticks { display: grid; gap: 12px; margin: 18px 0; }
.prose ul.ticks li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: var(--text); }
.section--ink .prose ul.ticks li { color: var(--on-dark); }
.prose ul.ticks svg { width: 22px; height: 22px; color: var(--gold-2); margin-top: 2px; }
.section--ink .prose ul.ticks svg { color: var(--gold-soft); }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.section--ink .info-card { background: var(--steel); border-color: var(--line-dark); }
.info-card .feature__icon { margin-bottom: 14px; }
.info-card h3 { font-size: 1.12rem; }
.info-card p { color: var(--muted); margin: 0; font-size: .96rem; }
.section--ink .info-card p { color: var(--on-dark-muted); }

.nearby-links { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Misc helpers ---------- */
.lead-strong { font-size: 1.15rem; font-weight: 600; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.section--ink .divider { background: var(--line-dark); }
.center { text-align: center; }
.mt-lg { margin-top: 38px; }
.stack-sm { display: grid; gap: 14px; }
