/* =========================================================
   DaVince Painting - style.css
   Palette: deep navy + warm gold accent on clean white.
   Mobile-first. Easy to edit: change the variables below.
   ========================================================= */

:root {
  --navy:        #0f1e38;   /* dark sections / footer */
  --navy-900:    #0a1526;   /* deepest navy */
  --ink:         #16233d;   /* headings on light */
  --body:        #3f4a5c;   /* body text */
  --muted:       #6b7688;   /* secondary text */
  --gold:        #c8922e;   /* primary accent / CTA */
  --gold-dark:   #ac7c22;
  --gold-soft:   #e7be6d;
  --bg:          #ffffff;
  --bg-soft:     #f5f6f8;   /* alt section background */
  --line:        #e6e8ee;   /* borders */
  --white:       #ffffff;

  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 10px 30px rgba(15, 30, 56, .08);
  --shadow-lg:   0 24px 60px rgba(15, 30, 56, .16);
  --container:   1160px;
  --font:        'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --serif:       'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 700; }
ul { list-style: none; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  padding: 13px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #1a1204; box-shadow: 0 8px 20px rgba(200, 146, 46, .30); }
.btn--gold:hover { background: var(--gold-dark); box-shadow: 0 10px 26px rgba(200, 146, 46, .40); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-900); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-soft); }

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section__head h2 { font-size: clamp(28px, 4vw, 40px); }
.section__lead { color: var(--muted); margin-top: 14px; font-size: 17px; }
h2 { letter-spacing: -.01em; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #cfd6e4; font-size: 13.5px; }
.topbar__inner { display: flex; align-items: center; gap: 14px; height: 40px; }
.topbar__item { opacity: .9; }
.topbar__sep { opacity: .4; }
.topbar__stars { color: var(--gold-soft); font-weight: 600; letter-spacing: .05em; }
.topbar__stars span { color: #cfd6e4; font-weight: 400; }
.topbar__phone {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  color: #fff; font-weight: 700;
}
.topbar__phone:hover { color: var(--gold-soft); }
.topbar__phone svg { color: var(--gold-soft); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(15,30,56,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand img { height: 54px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 10px 14px; font-weight: 600; font-size: 15.5px; color: var(--ink);
  border-radius: 8px; transition: color .2s ease, background .2s ease;
}
.nav__link:hover { color: var(--gold-dark); }
.nav__cta { margin-left: 10px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 8px; cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.03);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(10,21,38,.94) 0%, rgba(12,26,48,.82) 45%, rgba(12,26,48,.55) 100%);
}
.hero__inner { padding: 96px 20px 92px; max-width: 800px; }
.hero__title {
  color: #fff; font-size: clamp(34px, 5.6vw, 60px); line-height: 1.05;
  letter-spacing: -.015em; margin-bottom: 20px; font-weight: 800;
}
.hero__title span { color: var(--gold-soft); }
.hero__text { font-size: clamp(16px, 2vw, 19px); color: #d9e0ec; max-width: 620px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14.5px; color: #cfd7e4; }
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.hero__badges li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); }
.hero__badges strong { color: var(--gold-soft); letter-spacing: .05em; }
.hero__badges li:first-child::before { display: none; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 30px 20px;
}
.trust__item { text-align: center; padding: 14px 16px; color: #d9e0ec; }
.trust__item + .trust__item { border-left: 1px solid rgba(255,255,255,.10); }
.trust__item svg { width: 30px; height: 30px; stroke: var(--gold-soft); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 10px; }
.trust__item h3 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.trust__item p { font-size: 13.5px; color: #a9b4c7; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.about__badge {
  position: absolute; right: -14px; bottom: -14px; background: var(--gold); color: #1a1204;
  border-radius: var(--radius-sm); padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow); text-align: left;
}
.about__badge-num { font-size: 34px; font-weight: 800; font-family: var(--serif); line-height: 1; }
.about__badge-label { font-size: 13px; font-weight: 700; line-height: 1.2; }
.about__content h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 18px; }
.about__content p { margin-bottom: 16px; }
.about__list { margin: 22px 0 28px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); }
.about__list svg { flex: none; width: 22px; height: 22px; stroke: var(--gold-dark); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: #fbf3e2;
  display: grid; place-items: center; margin-bottom: 18px;
}
.service-card__icon svg { width: 26px; height: 26px; stroke: var(--gold-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--muted); }
.service-card--cta {
  background: var(--navy); border-color: transparent; color: #fff;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px;
}
.service-card--cta h3 { color: #fff; }
.service-card--cta p { color: #b9c3d4; }
.service-card--cta:hover { transform: translateY(-4px); }

/* ---------- Process ---------- */
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process__steps li { position: relative; padding-top: 8px; }
.process__num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: #fbf3e2; color: var(--gold-dark); font-weight: 800; font-size: 19px;
  font-family: var(--serif); margin-bottom: 16px;
}
.process__steps h3 { font-size: 17px; margin-bottom: 6px; }
.process__steps p { font-size: 14.5px; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow); background: #ddd;
}
.gallery__item img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 18px 16px;
  color: #fff; font-weight: 600; font-size: 15px;
  background: linear-gradient(to top, rgba(10,21,38,.85), transparent);
  transform: translateY(4px); opacity: .96;
}
.gallery__item::after {
  content: "View"; position: absolute; top: 14px; right: 14px;
  background: rgba(200,146,46,.95); color: #1a1204; font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; opacity: 0; transform: translateY(-6px); transition: .25s;
}
.gallery__item:hover::after { opacity: 1; transform: translateY(0); }

/* ---------- Reviews ---------- */
.reviews__rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; color: var(--muted); font-size: 15px; }
.reviews__stars, .review-card__stars { color: var(--gold); letter-spacing: .08em; }
.reviews__rating strong { color: var(--ink); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
.review-card__stars { font-size: 16px; display: block; margin-bottom: 12px; }
.review-card p { color: var(--ink); font-size: 16px; margin-bottom: 16px; }
.review-card cite { font-style: normal; font-weight: 700; color: var(--muted); font-size: 14.5px; }
.review-card--cta {
  background: var(--navy); border: 0; color: #fff; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 16px;
}
.review-card--cta p { color: #fff; font-size: 19px; font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-900), var(--navy)); color: #fff; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: 54px 20px;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); }
.cta-band p { color: #c7d0df; margin-top: 8px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact__info h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 14px; }
.contact__lead { color: var(--muted); margin-bottom: 28px; }
.contact__list { display: grid; gap: 20px; margin-bottom: 26px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: #fbf3e2; display: grid; place-items: center; }
.contact__ico svg { width: 22px; height: 22px; stroke: var(--gold-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.contact__list a { font-weight: 700; color: var(--ink); font-size: 17px; }
.contact__list a:hover { color: var(--gold-dark); }
.contact__social { display: flex; gap: 12px; }
.contact__social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .2s; }
.contact__social a:hover { background: var(--navy); border-color: var(--navy); }
.contact__social svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.7; }
.contact__social a:hover svg { stroke: #fff; }

.contact__form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 30px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfbfc; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,46,.15); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* Form status message (used by contact.php redirect) */
.form-status { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; font-size: 15px; }
.form-status--ok { background: #e7f6ec; color: #1c7a3e; border: 1px solid #bfe6cd; }
.form-status--err { background: #fdecec; color: #b3261e; border: 1px solid #f3c9c6; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #b9c3d4; padding-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer__logo { background: #fff; border-radius: 10px; padding: 10px 14px; height: auto; width: 170px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; max-width: 340px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: .2s; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); }
.footer__social svg { width: 18px; height: 18px; stroke: #cfd6e4; fill: none; stroke-width: 1.7; }
.footer__social a:hover svg { stroke: #1a1204; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: .02em; }
.footer__col a, .footer__col span { display: block; font-size: 14.5px; margin-bottom: 10px; color: #a9b4c7; transition: color .2s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #8894a8; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(6,12,22,.94);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 18px; right: 24px; background: none; border: 0; color: #fff; font-size: 42px; line-height: 1; cursor: pointer; opacity: .85; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12);
  border: 0; color: #fff; font-size: 30px; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ---------- Floating call button ---------- */
.fab-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px;
  border-radius: 50%; background: var(--gold); color: #1a1204; display: none;
  align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(200,146,46,.5);
}
.fab-call svg { width: 26px; height: 26px; }

/* ---------- Reveal animation ----------
   Only hidden when JS is active (html.js). Without JS everything
   stays fully visible, so content is never lost. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Active nav link ---------- */
.nav__link--active { color: var(--gold-dark); }

/* ---------- Section CTA (centered "view all" links) ---------- */
.section__cta { text-align: center; margin-top: 40px; }

/* ---------- Sub-page hero / banner ---------- */
.page-hero { position: relative; background: linear-gradient(120deg, var(--navy-900), var(--navy)); color: #fff; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% -30%, rgba(200,146,46,.20), transparent 55%); pointer-events: none; }
.page-hero__inner { position: relative; padding: 60px 20px; max-width: 800px; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -.01em; }
.page-hero p { color: #c7d0df; margin-top: 14px; max-width: 640px; font-size: 17px; }

.breadcrumb { font-size: 13.5px; color: #9aa6ba; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 16px; }
.breadcrumb a { color: #c7d0df; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { opacity: .5; }

/* ---------- Services detail cards ---------- */
.svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; scroll-margin-top: 120px; }
.svc-card__icon { width: 54px; height: 54px; border-radius: 12px; background: #fbf3e2; display: grid; place-items: center; margin-bottom: 18px; }
.svc-card__icon svg { width: 27px; height: 27px; stroke: var(--gold-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h2 { font-size: 23px; margin-bottom: 10px; }
.svc-card__desc { color: var(--muted); margin-bottom: 6px; }
.svc-card__label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .09em; color: var(--gold-dark); font-weight: 700; margin: 18px 0 10px; }
.svc-card__list { display: grid; gap: 9px; }
.svc-card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.svc-card__list svg { flex: none; width: 19px; height: 19px; stroke: var(--gold-dark); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.svc-card__why { color: var(--body); font-size: 15px; margin-bottom: 22px; }
.svc-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Blog: post grid ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: 12.5px; color: var(--muted); letter-spacing: .05em; margin-bottom: 10px; text-transform: uppercase; font-weight: 600; }
.post-card h2 { font-size: 20px; line-height: 1.28; margin-bottom: 10px; }
.post-card h2 a:hover { color: var(--gold-dark); }
.post-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.post-card__link { margin-top: auto; font-weight: 700; color: var(--gold-dark); font-size: 15px; }

/* ---------- Blog: article prose ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article__meta { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.article > p { margin-bottom: 18px; font-size: 17px; color: var(--body); }
.article h2 { font-size: clamp(23px, 3vw, 28px); margin: 36px 0 12px; }
.article h3 { font-size: 19px; margin: 26px 0 10px; }
.article ul { margin: 0 0 20px; display: grid; gap: 10px; }
.article ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); font-size: 16.5px; }
.article ul li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 9px; }
.article__lead { font-size: 19px; color: var(--ink); font-weight: 500; }
.article__cta { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 34px; margin-top: 40px; text-align: center; }
.article__cta h3 { color: #fff; font-size: 22px; margin: 0 0 10px; }
.article__cta p { color: #c7d0df; margin-bottom: 20px; }
.article__nav { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; font-weight: 600; }
.article__nav a { color: var(--gold-dark); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .svc-cards { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { right: 16px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .trust__item:nth-child(3) { border-left: 0; }
  .trust__item + .trust__item { border-left: 1px solid rgba(255,255,255,.10); }
  .trust__item:nth-child(odd) { border-left: 0; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .topbar__inner { justify-content: center; gap: 8px; }
  .topbar__item, .topbar__sep, .topbar__stars span { display: none; }
  .topbar__stars { color: var(--gold-soft); }
  .topbar__phone { margin-left: 0; }

  /* Mobile nav */
  .nav {
    position: fixed; inset: 112px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 20px 24px; gap: 2px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); transform: translateY(-140%); transition: transform .3s ease;
    max-height: calc(100vh - 112px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta { margin: 14px 0 0; }
  .nav-toggle { display: flex; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band__actions { width: 100%; flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }
  .fab-call { display: flex; }
  .footer__bar-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .hero__inner { padding: 70px 20px 64px; }
  .about__badge { padding: 12px 16px; }
  .about__badge-num { font-size: 28px; }
}

/* ---------- Motion / accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

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