/* =========================================================================
   Perfect Peaks Roof Waterproofing — styles.css
   Plain CSS. Sections: tokens · base · layout · buttons · header · hero ·
   trust · services · why · process · gallery · testimonials · faq · contact ·
   footer · mobile bar · lightbox · reveal · responsive.
   Palette sampled from the Perfect Peaks logo: near-black + orange→gold.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --ink-950: #0E0F10;   /* deepest black: header, footer, hero, dark sections */
  --ink-900: #16181A;   /* top bar */
  --ink-800: #202327;   /* card / media backgrounds */
  --ink-700: #2A2E33;   /* raised dark surfaces */
  --ink-600: #3A3E44;   /* dividers, step connectors */

  --brand:      #F47A20;   /* primary orange: eyebrows, icons, links on dark */
  --brand-deep: #C75412;   /* filled buttons (white text passes AA) */
  --brand-dark: #A8460E;   /* button hover */
  --gold:       #F9A826;   /* highlight / gradient top */
  --gold-soft:  #E9C58A;   /* warm detail: labels, step badges */
  --tan:        #9A8156;   /* muted tag text */
  --brand-grad: linear-gradient(135deg, #FBB03B 0%, #F47A20 55%, #EC6316 100%);

  --charcoal: #202329;  /* grey dark sections — echoes the logo's steel/grey roof */
  --silver:   #9CA3AA;  /* cool grey accent: logo sub-line, hairlines */
  --bone:  #EEF0F2;     /* cool light-grey section background */
  --paper: #ECEDEE;     /* text on dark */

  --ink:      #15171A;  /* text on light */
  --ink-soft: #535860;  /* secondary text on light */
  --line:     #E7E2DA;  /* hairline on light */

  --container: 1200px;
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 10px 30px rgba(12, 13, 14, .10);
  --shadow-lg: 0 24px 60px rgba(12, 13, 14, .22);
  --section-y: clamp(3.5rem, 8vw, 7rem);

  --h1: clamp(2.5rem, 6vw, 4.4rem);
  --h2: clamp(1.9rem, 4vw, 3rem);
  --h3: clamp(1.2rem, 2.2vw, 1.5rem);

  --font-head: "Barlow Condensed", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; letter-spacing: .01em; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brand-deep); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: var(--section-y); }
.section--bone { background: var(--bone); }
.section--dark { background: var(--charcoal); color: var(--paper); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section-head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; font-size: .82rem;
  color: var(--brand-deep); margin-bottom: .65rem;
}
.section--dark .eyebrow { color: var(--brand); }
.section-head h2 { font-size: var(--h2); }
.lead { font-size: 1.13rem; color: var(--ink-soft); margin-top: .9rem; }
.section--dark .lead { color: #C8C5C0; }

/* ---------- Buttons & chips ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .02em; padding: .85rem 1.5rem; border-radius: 10px;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s, background .2s, color .2s, border-color .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--brand-deep); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-on-dark:hover { background: #fff; color: var(--ink-950); }
.btn-wa { background: #25D366; color: #07331b; }
.btn-wa:hover { background: #1eb957; color: #07331b; }

.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .03em;
  font-size: .92rem; padding: .4rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.22);
  display: inline-flex; align-items: center; gap: .4rem;
}
.chip svg { width: 1em; height: 1em; color: var(--brand); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink-900); color: #C8C5C0; font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { color: #E7E2DA; font-weight: 600; }
.topbar a:hover { color: var(--brand); text-decoration: none; }
.topbar .tb-right { display: flex; gap: 1.4rem; align-items: center; }
.topbar svg { width: 1em; height: 1em; vertical-align: -.12em; color: var(--brand); margin-right: .35em; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--ink-950); transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(14,15,16,.96); box-shadow: 0 6px 24px rgba(0,0,0,.35); backdrop-filter: blur(8px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; transition: min-height .25s; }
.site-header.scrolled .header-inner { min-height: 64px; }

.brand { display: inline-flex; align-items: center; background: #fff; padding: 5px 9px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,.28); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 44px; width: auto; display: block; }
.brand-name { display: none; }   /* original logo image carries the wordmark now */
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; line-height: 1; letter-spacing: .03em; color: #fff; text-transform: uppercase; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--silver); margin-top: .3rem; }

.main-nav ul { list-style: none; display: flex; gap: 1.6rem; padding: 0; align-items: center; }
.main-nav a { color: #E7E2DA; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; letter-spacing: .02em; padding: .35rem 0; position: relative; }
.main-nav a:hover { color: #fff; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--brand); transition: right .22s; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: .75rem; }
.call-btn { display: inline-flex; align-items: center; gap: .55rem; background: var(--brand-deep); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; padding: .6rem 1.1rem; border-radius: 10px; }
.call-btn:hover { background: var(--brand-dark); color: #fff; text-decoration: none; }
.call-btn svg { width: 1.1em; height: 1.1em; }

.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: .4rem; }
.nav-toggle svg { width: 30px; height: 30px; }
.nav-toggle .icon-close { display: none; }
[data-nav-open="true"] .nav-toggle .icon-open { display: none; }
[data-nav-open="true"] .nav-toggle .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(11,12,13,.93) 0%, rgba(11,12,13,.80) 45%, rgba(11,12,13,.48) 100%),
              linear-gradient(0deg, rgba(11,12,13,.70), rgba(11,12,13,0) 55%);
}
.hero .container { padding-block: clamp(4rem, 12vw, 8.5rem); }
.hero__inner { max-width: 780px; }
.hero h1 { font-size: var(--h1); margin: .35rem 0 1rem; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero h1 .accent { color: var(--gold); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 .accent {
    background: var(--brand-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
}
.hero__sub { font-size: 1.2rem; color: #E7E2DA; max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.7rem 0 1.6rem; }
.hero__trust { margin-top: .4rem; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--brand-deep); color: #fff; }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.8rem; }
.trust-item { text-align: center; }
.trust-item .num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; line-height: 1; }
.trust-item .lbl { font-size: .9rem; letter-spacing: .04em; opacity: .95; margin-top: .35rem; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.25); }

/* ---------- Services / cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-800); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.25rem 1.3rem 1.5rem; }
.card__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: rgba(244,122,32,.12); color: var(--brand-deep); margin: -2.6rem 0 .85rem; position: relative; border: 2px solid #fff; box-shadow: var(--shadow); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: var(--h3); margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card .tag { display: inline-block; margin-top: .8rem; font-size: .82rem; font-weight: 600; color: var(--tan); letter-spacing: .03em; }

/* ---------- Why choose us (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-list { list-style: none; padding: 0; margin-top: 1.3rem; display: grid; gap: .95rem; }
.feature-list li { display: flex; gap: .7rem; align-items: flex-start; }
.feature-list svg { flex: 0 0 auto; width: 1.4rem; height: 1.4rem; color: var(--brand-deep); margin-top: .15rem; }
.feature-list b { font-family: var(--font-head); font-weight: 600; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { text-align: center; position: relative; }
.step__num { width: 56px; height: 56px; margin: 0 auto .8rem; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--ink-950); background: var(--gold-soft); }
.step h3 { font-size: 1.2rem; color: #fff; }
.step p { color: #C8C5C0; font-size: .92rem; margin-top: .25rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 28px; left: calc(50% + 38px); right: calc(-50% + 38px); height: 2px; background: var(--ink-600); }

/* ---------- Gallery (preview grid + full page) ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: .02em;
  padding: .5rem 1.1rem; border-radius: 999px; cursor: pointer;
  background: #fff; color: var(--ink); border: 1.5px solid var(--line); transition: all .18s;
}
.filter-btn:hover { border-color: var(--brand-deep); color: var(--brand-deep); }
.filter-btn[aria-pressed="true"] { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }

.grid-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.grid-gallery figure { margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow); background: var(--ink-800); }
.grid-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s; display: block; }
.grid-gallery figure:hover img { transform: scale(1.07); }
.grid-gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem .9rem .7rem; color: #fff;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .02em;
  background: linear-gradient(0deg, rgba(11,12,13,.85), transparent); opacity: 0; transition: opacity .2s;
}
.grid-gallery figure:hover figcaption, .grid-gallery figure:focus-within figcaption { opacity: 1; }
.grid-gallery figure.is-hidden { display: none; }
.gallery-cta { text-align: center; margin-top: 2.4rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow); }
.quote .stars { color: var(--brand); letter-spacing: .15em; margin-bottom: .7rem; display: flex; gap: .15rem; }
.quote .stars svg { width: 1.1rem; height: 1.1rem; }
.quote blockquote { font-size: 1.05rem; color: var(--ink); }
.quote .who { margin-top: 1rem; font-family: var(--font-head); font-weight: 600; color: var(--ink-soft); }

/* ---------- FAQ (accordion) ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.1rem 1.25rem; font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--ink);
}
.faq-q:hover { color: var(--brand-deep); }
.faq-q .faq-icon { flex: 0 0 auto; width: 1.4rem; height: 1.4rem; color: var(--brand-deep); transition: transform .25s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > div { padding: 0 1.25rem 1.2rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-info { display: grid; gap: 1.1rem; }
.info-row { display: flex; gap: .9rem; align-items: flex-start; }
.info-row svg { flex: 0 0 auto; width: 1.5rem; height: 1.5rem; color: var(--brand); margin-top: .2rem; }
.info-row a { color: #fff; font-weight: 600; }
.info-row a:hover { color: var(--brand); }
.info-row .label { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }
.info-row .val { font-size: 1.12rem; color: #fff; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .4rem; }
.hours-table td { padding: .3rem 0; color: #C8C5C0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hours-table td:last-child { text-align: right; color: #fff; font-weight: 600; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .4rem; }
.map-embed { margin-top: 1.4rem; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.map-embed iframe { display: block; width: 100%; height: 240px; border: 0; filter: grayscale(.2) contrast(1.05); }

.quote-form { background: #fff; color: var(--ink); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); }
.quote-form h3 { font-size: 1.55rem; margin-bottom: 1.1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .85rem; border: 1.5px solid var(--line); border-radius: 9px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-deep); box-shadow: 0 0 0 3px rgba(244,122,32,.18); outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: .5rem; }
.form-status { margin-top: .9rem; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #0B0C0D; color: #B9BDC2; padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 1.15rem; letter-spacing: .04em; margin-bottom: .9rem; }
.site-footer a { color: #B9BDC2; }
.site-footer a:hover { color: var(--brand); text-decoration: none; }
.footer-links { list-style: none; padding: 0; display: grid; gap: .45rem; }
.footer-brand p { margin-top: .8rem; max-width: 40ch; font-size: .95rem; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,.07); color: #fff; }
.social a:hover { background: var(--brand-deep); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .85rem; }
.footer-bottom a { color: #B9BDC2; }

/* ---------- Mobile sticky call bar ---------- */
.mobile-bar { display: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,9,10,.94); display: none; align-items: center; justify-content: center; padding: 1rem; }
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox figure { margin: 0; max-width: min(1100px, 94vw); text-align: center; }
.lightbox img { max-height: 80vh; width: auto; margin: 0 auto; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #E7E2DA; font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; margin-top: .9rem; font-size: 1.1rem; }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.lb-btn:hover { background: var(--brand-deep); }
.lb-btn svg { width: 26px; height: 26px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: #C8C5C0; font-size: .9rem; letter-spacing: .1em; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .grid-gallery img, .card__media img { transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .step:not(:last-child)::after { display: none; }
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--ink-950);
    border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 20px 40px rgba(0,0,0,.4);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  [data-nav-open="true"] .main-nav { max-height: 80vh; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; }
  .main-nav li { border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-nav a { display: block; padding: .95rem clamp(1.1rem, 4vw, 2rem); font-size: 1.2rem; }
  .main-nav a::after { display: none; }
  .header-cta .call-btn .call-text { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split__media { order: -1; }
}

@media (max-width: 620px) {
  .topbar { display: none; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
  .trust-item + .trust-item { border-left: 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.25); }
  .field--row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
    background: var(--ink-950); border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -8px 24px rgba(0,0,0,.35);
  }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: .15rem; padding: .55rem 0; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .82rem; }
  .mobile-bar a:hover { text-decoration: none; }
  .mobile-bar a + a { border-left: 1px solid rgba(255,255,255,.1); }
  .mobile-bar svg { width: 22px; height: 22px; color: var(--brand); }
  .mobile-bar a.wa svg { color: #25D366; }
  body { padding-bottom: 64px; }
}
