/* =========================================================
   SELECT ROOFING & MASONRY — Design System
   Palette: Charcoal/Navy base · Gold accent · Red CTA/emergency
   No build step. Pure CSS.
   ========================================================= */

:root {
  /* Color */
  --navy:        #0f1b2d;   /* deep blue-black base */
  --charcoal:    #1a1d23;   /* charcoal panels */
  --charcoal-2:  #23272f;   /* lighter charcoal */
  --slate:       #334155;   /* muted slate */
  --gold:        #c8a24c;   /* primary gold accent */
  --gold-soft:   #e3c878;   /* lighter gold for hovers */
  --red:         #d33a2c;   /* emergency / strong CTA */
  --red-dark:    #b22d20;
  --white:       #ffffff;
  --off-white:   #f5f6f8;
  --ink:         #11161d;   /* body text on light */
  --muted:       #6b7280;   /* muted text on light */
  --muted-light: #9aa4b2;   /* muted text on dark */
  --line:        rgba(255,255,255,0.10);
  --line-dark:   rgba(0,0,0,0.08);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(0,0,0,0.18);
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.08);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center-eyebrow { justify-content: center; }
.eyebrow.center-eyebrow::after {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.title-lg { font-size: clamp(2rem, 4vw, 3.1rem); }
.title-md { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.on-dark .lead { color: var(--muted-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--charcoal); }
.btn--lg { padding: 18px 36px; font-size: 16px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--off-white);
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 44px; }
.topbar a { color: var(--muted-light); transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar__left { display: flex; gap: 22px; }
.topbar__left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__right { display: flex; gap: 14px; align-items: center; }
.topbar__right .dot { color: var(--gold); }
@media (max-width: 760px){ .topbar__left span.hide-sm { display: none; } }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,27,45,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 9px;
  background: linear-gradient(145deg, var(--gold), #9c7c33);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--navy);
  flex: none;
}
.brand__name { font-family: var(--display); font-size: 19px; font-weight: 600; color: #fff; line-height: 1.05; }
.brand__name small { display: block; font-family: var(--body); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links > li > a {
  color: var(--off-white); font-size: 15px; font-weight: 500;
  padding: 10px 14px; border-radius: 7px; display: inline-block;
  transition: color .2s, background .2s;
}
.nav__links > li > a:hover { color: var(--gold); }
.nav__cta { margin-left: 12px; }

/* dropdown */
.has-drop { position: relative; }
.has-drop > a::after { content: "▾"; font-size: 10px; margin-left: 6px; opacity: .7; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; min-width: 250px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .22s var(--ease); border: 1px solid var(--line-dark);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: block; padding: 10px 14px; font-size: 14.5px; color: var(--ink);
  border-radius: 6px; transition: background .15s, color .15s;
}
.drop a:hover { background: var(--off-white); color: var(--gold); }

/* burger */
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }
.mobile-nav { display: none; }

@media (max-width: 980px){
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .mobile-nav {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    background: var(--navy); z-index: 200; transform: translateX(100%);
    transition: transform .32s var(--ease); padding: 24px; overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav__close { background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer; float: right; }
  .mobile-nav a { color: var(--off-white); display: block; padding: 13px 8px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .mobile-nav .group-label { color: var(--gold); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; margin: 18px 8px 4px; }
  .mobile-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 150; }
  .mobile-backdrop.open { display: block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(180deg, rgba(15,27,45,0.55), rgba(15,27,45,0.9)),
                    url("../images/hero.svg");
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero__inner { position: relative; z-index: 2; padding: 120px 0 130px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); line-height: 1.02; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead { color: #d7dce3; font-size: 1.18rem; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero__trust .t { }
.hero__trust .t b { font-family: var(--display); font-size: 1.9rem; color: var(--gold); display: block; line-height: 1; }
.hero__trust .t span { font-size: 13.5px; color: var(--muted-light); letter-spacing: .03em; }

/* quote card */
.quote-card {
  background: rgba(255,255,255,0.97); color: var(--ink);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.quote-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.quote-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--slate); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #dfe3e8; border-radius: var(--radius-sm);
  font-family: var(--body); font-size: 15px; color: var(--ink); background: #fff; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.quote-card .btn { width: 100%; margin-top: 4px; }
.quote-card .fineprint { font-size: 12px; color: var(--muted); text-align: center; margin: 12px 0 0; }

@media (max-width: 920px){
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__inner { padding: 80px 0 90px; }
}

/* =========================================================
   EMERGENCY STRIP
   ========================================================= */
.emergency {
  background: var(--red); color: #fff;
}
.emergency .container { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 16px 24px; flex-wrap: wrap; text-align: center; }
.emergency strong { font-size: 1.05rem; }
.emergency .pulse { width: 10px; height: 10px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 1.8s infinite; flex: none; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(255,255,255,.6);} 70%{ box-shadow: 0 0 0 12px rgba(255,255,255,0);} 100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0);} }
.emergency a.tel { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }

/* =========================================================
   TRUST BADGES STRIP
   ========================================================= */
.badges { background: #fff; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.badges .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 24px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 12px; color: var(--slate); font-weight: 600; font-size: 14.5px; }
.badge svg { color: var(--gold); flex: none; }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services { background: var(--off-white); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line-dark);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.svc-card__img { aspect-ratio: 16/10; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-card__img img { transform: scale(1.07); }
.svc-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card__tag { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.svc-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.svc-card p { font-size: 15px; color: var(--muted); flex: 1; }
.svc-card a.more { color: var(--navy); font-weight: 600; font-size: 14.5px; display: inline-flex; gap: 7px; align-items: center; margin-top: 8px; transition: gap .2s, color .2s; }
.svc-card a.more:hover { color: var(--gold); gap: 12px; }

@media (max-width: 920px){ .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .svc-grid { grid-template-columns: 1fr; } }

/* =========================================================
   ABOUT / SPLIT
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__badge {
  position: absolute; bottom: -26px; right: -10px; background: var(--navy); color: #fff;
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center;
  border-bottom: 3px solid var(--gold);
}
.split__badge b { font-family: var(--display); font-size: 2.4rem; color: var(--gold); display: block; line-height: 1; }
.split__badge span { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-light); }
.feature-list { margin-top: 24px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ico { width: 40px; height: 40px; border-radius: 9px; background: rgba(200,162,76,0.12); color: var(--gold); display: grid; place-items: center; flex: none; }
.feature-list h4 { font-size: 1.05rem; margin-bottom: 2px; }
.feature-list p { font-size: 14.5px; color: var(--muted); margin: 0; }
@media (max-width: 900px){
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__media { order: 0; }
  .split__badge { right: 16px; }
}

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--charcoal); color: #fff; }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; counter-reset: step; }
.proc-card { position: relative; padding: 32px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.02); transition: border-color .3s, transform .3s; }
.proc-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.proc-card .num { font-family: var(--display); font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 14px; opacity: .9; }
.proc-card h4 { font-size: 1.25rem; margin-bottom: 8px; }
.proc-card p { font-size: 14.5px; color: var(--muted-light); margin: 0; }
@media (max-width: 900px){ .proc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .proc-grid { grid-template-columns: 1fr; } }

/* =========================================================
   STATS / COUNTERS
   ========================================================= */
.stats {
  background: var(--navy); color: #fff; position: relative; overflow: hidden;
}
.stats::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(200,162,76,0.14), transparent 55%); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 1; }
.stat { text-align: center; padding: 20px; }
.stat b { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold); display: block; line-height: 1; }
.stat span { font-size: 14px; color: var(--muted-light); letter-spacing: .05em; margin-top: 8px; display: block; }
@media (max-width: 620px){ .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 4/3; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .cap {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(15,27,45,0.85));
  display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity .3s;
}
.gal-item:hover .cap { opacity: 1; }
.gal-item .cap span { color: #fff; font-family: var(--display); font-size: 1.15rem; }
.gal-item .cap small { color: var(--gold); display: block; font-family: var(--body); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 820px){ .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px){ .gallery-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi { background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); border: 1px solid var(--line-dark); display:flex; flex-direction:column; }
.testi-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { font-size: 15.5px; color: #3b4250; flex:1; font-style: italic; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-family: var(--display); font-weight: 600; flex: none; }
.testi-card .who b { display: block; font-family: var(--body); font-size: 15px; color: var(--ink); }
.testi-card .who span { font-size: 13px; color: var(--muted); }
@media (max-width: 900px){ .testi-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
.cta-banner__bg { position:absolute; inset:0; background-image: linear-gradient(90deg, rgba(15,27,45,0.94), rgba(15,27,45,0.7)), url("../images/cta.svg"); background-size: cover; background-position: center; }
.cta-banner .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); max-width: 22ch; }
.cta-banner p { color: var(--muted-light); margin: 8px 0 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #0b1422; color: var(--muted-light); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer h4 { color: #fff; font-family: var(--body); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer a { color: var(--muted-light); transition: color .2s; font-size: 15px; }
.footer a:hover { color: var(--gold); }
.footer__links li { margin-bottom: 11px; }
.footer__about p { font-size: 15px; line-height: 1.7; }
.footer__about .brand { margin-bottom: 18px; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; align-items: flex-start; }
.footer__contact svg { color: var(--gold); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; text-align: center; font-size: 13.5px; }
@media (max-width: 880px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-head { position: relative; color: #fff; background: var(--navy); overflow: hidden; }
.page-head__bg { position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(15,27,45,0.7), rgba(15,27,45,0.92)), url("../images/hero.svg"); background-size: cover; background-position: center; }
.page-head__inner { position: relative; z-index: 1; padding: 90px 0 80px; text-align: center; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.breadcrumb { font-size: 14px; color: var(--muted-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; opacity: .6; }
.breadcrumb .current { color: var(--gold); }

/* =========================================================
   CONTENT BLOCKS (about / service / contact pages)
   ========================================================= */
.prose h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin: 0 0 18px; }
.prose h3 { font-size: 1.35rem; margin: 32px 0 12px; }
.prose p { color: #3b4250; margin-bottom: 16px; }
.prose ul.ticks { display: grid; gap: 12px; margin: 18px 0; }
.prose ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: #3b4250; }
.prose ul.ticks li::before { content: "✓"; color: var(--gold); font-weight: 700; flex: none; }

/* service layout */
.svc-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.svc-sidebar { position: sticky; top: 100px; display: grid; gap: 24px; }
.svc-nav { background: #fff; border-radius: var(--radius); border: 1px solid var(--line-dark); overflow: hidden; box-shadow: var(--shadow-soft); }
.svc-nav h4 { background: var(--navy); color: #fff; padding: 18px 22px; font-family: var(--body); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; }
.svc-nav a { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-bottom: 1px solid var(--line-dark); font-size: 14.5px; color: var(--slate); font-weight: 500; transition: background .2s, color .2s, padding .2s; }
.svc-nav a:last-child { border-bottom: 0; }
.svc-nav a::after { content: "→"; opacity: 0; transition: opacity .2s; }
.svc-nav a:hover, .svc-nav a.active { background: var(--off-white); color: var(--gold); padding-left: 26px; }
.svc-nav a:hover::after, .svc-nav a.active::after { opacity: 1; }
.svc-aside-cta { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px; text-align: center; border-bottom: 3px solid var(--gold); }
.svc-aside-cta h4 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 8px; }
.svc-aside-cta p { font-size: 14px; color: var(--muted-light); margin-bottom: 18px; }
.svc-aside-cta .tel { font-family: var(--display); font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 16px; }
.svc-hero-img { width: 100%; border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; margin-bottom: 28px; box-shadow: var(--shadow-soft); }
@media (max-width: 920px){ .svc-layout { grid-template-columns: 1fr; } .svc-sidebar { position: static; } }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .info-card { display:flex; gap:16px; padding: 22px; background:#fff; border:1px solid var(--line-dark); border-radius: var(--radius); margin-bottom: 16px; box-shadow: var(--shadow-soft); }
.contact-info .info-card .ico { width:48px;height:48px;border-radius:10px;background:rgba(200,162,76,.12);color:var(--gold);display:grid;place-items:center;flex:none; }
.contact-info .info-card h4 { font-family: var(--body); font-size: 15px; margin-bottom: 4px; }
.contact-info .info-card p, .contact-info .info-card a { font-size: 15px; color: var(--muted); margin: 0; }
.contact-form { background:#fff; border:1px solid var(--line-dark); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* map */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); box-shadow: var(--shadow-soft); }
.map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px; font-family: var(--display); font-size: 1.15rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { color: var(--gold); font-size: 1.5rem; flex: none; transition: transform .3s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 20px; margin: 0; color: var(--muted); font-size: 15.5px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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

/* sticky mobile call bar */
.mobile-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  background: var(--navy); border-top: 1px solid var(--line);
}
.mobile-call a { flex: 1; text-align: center; padding: 14px; color: #fff; font-weight: 600; font-size: 14.5px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mobile-call a.call { background: var(--red); }
.mobile-call a.quote { background: var(--gold); color: var(--navy); }
@media (max-width: 720px){
  .mobile-call { display: flex; }
  body { padding-bottom: 54px; }
}
