/* ===========================================================
   Franki The Painter — shared design system
   Clean, premium, conversion-focused
   =========================================================== */

:root {
  /* palette */
  --ink: #0d1117;
  --ink-2: #2b3440;
  --muted: #69727e;
  --line: #eceff3;
  --line-2: #e2e7ee;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-soft-2: #f1f3f7;

  --brand: #f15a24;
  --brand-dark: #d4470f;
  --brand-soft: #fff1ea;
  --brand-2: #ffb37a;

  --dark: #0f1a2a;     /* deep slate for hero/footer */
  --dark-2: #16263d;

  --ok: #16a34a;
  --danger: #e0414c;

  /* shape */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --sh-xs: 0 1px 2px rgba(13,17,23,.05);
  --sh-sm: 0 4px 16px rgba(13,17,23,.06);
  --sh: 0 18px 44px rgba(13,17,23,.10);
  --sh-lg: 0 34px 80px rgba(13,17,23,.18);

  --maxw: 1180px;
  --gut: 24px;

  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-head: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--ff-head); color: var(--ink); line-height: 1.1; letter-spacing: -.025em; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.soft { background: var(--bg-soft); }
.center { text-align: center; }
.accent { color: var(--brand); }

.eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-dark); margin-bottom: 16px;
}
.sec-head { max-width: 660px; margin: 0 auto 56px; }
.sec-head.left { margin-left: 0; }
.sec-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 16px; letter-spacing: -.03em; }
.sec-head p { color: var(--muted); font-size: 1.1rem; }

.lead { font-size: 1.16rem; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(241,90,36,.28); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(241,90,36,.34); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 1.06rem; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 8px 28px rgba(13,17,23,.08); }
.site-header.scrolled .nav { height: 64px; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; transition: height .25s var(--ease); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--ff-head); font-weight: 700; font-size: 1.16rem; color: var(--ink); white-space: nowrap; letter-spacing: -.02em; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--brand), var(--brand-dark));
  display: grid; place-items: center; box-shadow: var(--sh-sm);
}
.brand .mark svg { width: 22px; height: 22px; color: #fff; }
.brand b { font-weight: 700; }
.brand .t2 { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 500; font-size: .96rem; color: var(--ink-2); padding: 9px 14px; border-radius: 10px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--bg-soft-2); color: var(--ink); }
.nav-links a.active { color: var(--brand-dark); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-family: var(--ff-head); font-weight: 600; color: var(--ink); font-size: .98rem; }
.nav-phone svg { width: 17px; height: 17px; color: var(--brand); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px var(--gut) 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 14px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone span { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; color: #fff; background: var(--dark); }
.hero::before {
  content: ""; position: absolute; inset: -5%; z-index: 0;
  background: url('img/exterior.jpg') center 60% / cover no-repeat;
  animation: heroZoom 24s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(11,20,33,.97) 0%, rgba(12,22,36,.9) 32%, rgba(13,23,38,.6) 60%, rgba(13,23,38,.38) 100%),
    radial-gradient(900px 520px at 92% 0%, rgba(241,90,36,.22), transparent 60%);
}
@keyframes heroZoom { from { transform: scale(1) translateY(0); } to { transform: scale(1.12) translateY(-1.5%); } }
@media (max-width: 940px) {
  .hero::before { background-position: center 50%; }
  .hero::after { background:
    linear-gradient(180deg, rgba(11,20,33,.92) 0%, rgba(12,22,36,.86) 55%, rgba(13,23,38,.92) 100%),
    radial-gradient(600px 400px at 90% 0%, rgba(241,90,36,.2), transparent 60%); }
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; padding: 70px 0 84px; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 3.6rem); font-weight: 700; letter-spacing: -.035em; margin-bottom: 20px; }
.hero h1 .hl { background: linear-gradient(110deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: rgba(255,255,255,.8); max-width: 540px; margin-bottom: 28px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); color: var(--brand-2);
  padding: 8px 15px; border-radius: var(--r-pill); margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px; }
.hero-trust span { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: rgba(255,255,255,.88); font-weight: 500; }
.hero-trust svg { width: 18px; height: 18px; color: var(--brand-2); flex-shrink: 0; }
.stars { color: var(--brand-2); letter-spacing: 2px; }

/* hero intro: Franki's face + badge as one gently floating unit */
.hero .hero-intro { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; animation: floaty 5s ease-in-out infinite; }
.hero .hero-intro .badge { margin-bottom: 0; animation: none; }
.hero .franki-face {
  width: 54px; height: 54px; flex: 0 0 auto; border-radius: 50%;
  background: url('img/franki.jpg') no-repeat;
  background-size: 600%; background-position: 50% 31%;
  border: 2px solid rgba(255,255,255,.88);
  box-shadow: 0 6px 16px rgba(0,0,0,.32);
}
@media (max-width: 520px) {
  .hero .franki-face { width: 46px; height: 46px; }
  .hero .hero-intro { gap: 10px; }
}

/* page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; color: #fff; padding: 70px 0 64px;
  background:
    radial-gradient(800px 460px at 90% -20%, rgba(241,90,36,.24), transparent 60%),
    linear-gradient(158deg, var(--dark), var(--dark-2)); }
.page-hero::after { content:""; position:absolute; inset:0; opacity:.4; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 24px 24px; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin-bottom: 14px; letter-spacing: -.03em; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.12rem; max-width: 560px; }
.crumb { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.crumb a:hover { color: #fff; }
.crumb svg { width: 14px; height: 14px; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 50px 0 60px; }
}

/* ---------- lead form ---------- */
.lead-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 32px 30px; color: var(--ink-2); position: relative; }
.lead-card .pill {
  position: absolute; top: -14px; right: 26px; background: var(--brand); color: #fff;
  font-family: var(--ff-head); font-weight: 600; font-size: .78rem; padding: 7px 15px; border-radius: var(--r-pill);
  box-shadow: 0 8px 20px rgba(241,90,36,.36);
}
.lead-card h3 { font-size: 1.5rem; margin-bottom: 5px; }
.lead-card .sub { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field .opt { color: var(--muted); font-weight: 400; }
.req { color: var(--brand-dark); }
.input, select, textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: #fbfcfe;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.input::placeholder, textarea::placeholder { color: #9aa3ae; }
.input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(241,90,36,.13); background: #fff; }
textarea { resize: vertical; min-height: 76px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.err { border-color: var(--danger) !important; box-shadow: 0 0 0 4px rgba(224,65,76,.12) !important; }
.err-msg { color: var(--danger); font-size: .78rem; margin-top: 5px; display: none; }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-note svg { width: 14px; height: 14px; color: var(--ok); }
.form-success { display: none; text-align: center; padding: 26px 12px; }
.form-success .check { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; background: rgba(22,163,74,.1); display: grid; place-items: center; color: var(--ok); }
.form-success .check svg { width: 34px; height: 34px; }
.form-success h3 { color: var(--ok); margin-bottom: 8px; }
.form-success p { color: var(--muted); }

@media (max-width: 940px){ .lead-card { max-width: 540px; } }
@media (max-width: 420px){ .row-2 { grid-template-columns: 1fr; } }

/* ---------- trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 28px var(--gut); }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; flex-shrink: 0; }
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item b { display: block; font-family: var(--ff-head); font-size: 1.02rem; color: var(--ink); font-weight: 600; }
.trust-item small { color: var(--muted); font-size: .88rem; }
@media (max-width: 820px){ .trust-strip .wrap { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ---------- cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 880px){ .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: transparent; }
.card .ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(140deg, var(--dark), var(--dark-2)); color: #fff; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--ff-head); font-weight: 600; font-size: .92rem; color: var(--brand-dark); }
.card .more svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; gap: 40px; } }
.feature-list { display: grid; gap: 20px; margin-top: 28px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; }
.feature-list .ic svg { width: 20px; height: 20px; }
.feature-list b { font-family: var(--ff-head); color: var(--ink); font-size: 1.06rem; font-weight: 600; }
.feature-list p { color: var(--muted); font-size: .97rem; margin-top: 2px; }

.visual {
  position: relative; min-height: 440px; border-radius: var(--r-lg); overflow: hidden; padding: 40px;
  display: grid; place-items: center; color: #fff; box-shadow: var(--sh);
  background: radial-gradient(520px 320px at 72% 22%, rgba(241,90,36,.32), transparent 62%), linear-gradient(155deg, var(--dark), var(--dark-2));
}
.visual .big { text-align: center; }
.visual .big .n { font-family: var(--ff-head); font-size: 4.4rem; font-weight: 700; line-height: 1; background: linear-gradient(110deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.visual .big p { color: rgba(255,255,255,.85); margin-top: 8px; font-size: 1.08rem; }
.visual .chip { position: absolute; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 13px; padding: 11px 15px; backdrop-filter: blur(8px); font-size: .9rem; }
.visual .c1 { top: 28px; left: 26px; }
.visual .c2 { bottom: 32px; right: 26px; }
.visual .c3 { bottom: 108px; left: 30px; }
@media (max-width: 880px){ .visual { min-height: 300px; } }

/* real-photo media block (replaces gradient visual where we have a photo) */
.media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); background: var(--bg-soft-2); }
.media img { display: block; width: 100%; height: 480px; object-fit: cover; }
/* portrait photo: use the image's own aspect ratio so the whole figure shows (no short-box crop) */
.media.media--portrait img { height: auto; aspect-ratio: 864 / 1184; object-position: center; }
.media .tag {
  position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 8px;
  background: rgba(13,17,23,.62); backdrop-filter: blur(6px); color: #fff; font-family: var(--ff-head);
  font-weight: 600; font-size: .9rem; padding: 9px 15px; border-radius: var(--r-pill);
}
.media .tag svg { width: 16px; height: 16px; color: var(--brand-2); }
@media (max-width: 880px){ .media img { height: 320px; } }

/* media block with floating stat chips overlaid on a real photo */
.media--stats::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(13,17,23,.1) 0%, rgba(13,17,23,.18) 45%, rgba(13,17,23,.58) 100%); }
.media .chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px;
  background: rgba(13,17,23,.5); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.16);
  border-radius: 13px; padding: 10px 15px; color: #fff; font-size: .9rem; font-weight: 500; }
.media .chip .stars { color: var(--brand-2); letter-spacing: 1px; }
.media .c1 { top: 18px; left: 18px; }
.media .c2 { top: 18px; right: 18px; }
.media__stat { position: absolute; z-index: 2; left: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 2px;
  background: rgba(13,17,23,.55); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; padding: 13px 18px; }
.media__stat b { font-family: var(--ff-head); font-weight: 700; font-size: 2.5rem; line-height: 1;
  background: linear-gradient(110deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.media__stat span { font-size: .85rem; color: rgba(255,255,255,.86); }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); aspect-ratio: 4 / 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 18px 16px; color: #fff;
  background: linear-gradient(transparent, rgba(13,17,23,.82)); font-family: var(--ff-head); font-weight: 600; font-size: 1rem;
}
@media (max-width: 880px){ .gallery-grid { grid-template-columns: 1fr 1fr; } }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 24px; }
.step .n { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--brand), var(--brand-dark)); color: #fff; font-family: var(--ff-head); font-weight: 700; display: grid; place-items: center; font-size: 1.16rem; margin-bottom: 18px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }
@media (max-width: 880px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .steps { grid-template-columns: 1fr; } }

/* reviews */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; box-shadow: var(--sh-xs); }
.review .stars { font-size: 1.05rem; margin-bottom: 14px; }
.review p { color: var(--ink-2); font-size: 1rem; margin-bottom: 20px; }
.review .who { display: flex; align-items: center; gap: 13px; }
.review .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--dark), var(--dark-2)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--ff-head); }
.review .who b { display: block; color: var(--ink); font-family: var(--ff-head); font-weight: 600; }
.review .who small { color: var(--muted); }

/* areas pills */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pills.center { justify-content: center; }
.area-pills span { background: var(--bg-soft); border: 1px solid var(--line-2); color: var(--ink); font-weight: 500; font-size: .92rem; padding: 9px 16px; border-radius: var(--r-pill); transition: all .15s; }
.area-pills span:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* cta band */
.cta-band { position: relative; overflow: hidden; color: #fff; text-align: center;
  background: radial-gradient(680px 380px at 80% 0%, rgba(241,90,36,.3), transparent 60%), linear-gradient(140deg, var(--dark), var(--dark-2)); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 14px; letter-spacing: -.03em; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* faq */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line-2); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--ff-head); font-weight: 600; font-size: 1.06rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { flex-shrink: 0; transition: transform .22s var(--ease); color: var(--brand); font-size: 1.5rem; line-height: 1; font-weight: 400; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); color: var(--muted); }
.faq-a div { padding: 0 24px 22px; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-item.open .pm { transform: rotate(45deg); }

/* contact info cards */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.info-card .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card b { font-family: var(--ff-head); color: var(--ink); display: block; margin-bottom: 3px; font-weight: 600; }
.info-card a, .info-card span { color: var(--muted); }
.info-card a:hover { color: var(--brand-dark); }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.66); padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand .t1 { color: #fff; }
.foot-about { font-size: .96rem; max-width: 300px; line-height: 1.7; }
.foot-col h4 { color: #fff; font-size: 1.04rem; margin-bottom: 16px; font-weight: 600; }
.foot-col a, .foot-col span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.66); margin-bottom: 12px; font-size: .96rem; }
.foot-col a:hover { color: var(--brand-2); }
.foot-col svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }
.foot-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .87rem; color: rgba(255,255,255,.5); }
@media (max-width: 820px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }

/* sticky mobile cta */
.mobile-cta { display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; }
.mobile-cta .btn { box-shadow: var(--sh-lg); }
@media (max-width: 720px){ .mobile-cta { display: block; } .site-footer { padding-bottom: 92px; }
  /* header "Free Quote" button is redundant below 720px (sticky bottom CTA takes over) and was overflowing the header on narrow phones */
  .site-header .nav-right .btn { display: none; } }

/* misc reveal — only hidden once JS marks the page ready, so content stays
   visible if JS fails to load (progressive enhancement) */
.reveal-on .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-on .reveal.in { opacity: 1; transform: none; }

/* cascade: children of a grid animate in sequence */
.reveal-on .grid-3 > .reveal:nth-child(2),
.reveal-on .grid-2 > .reveal:nth-child(2),
.reveal-on .steps > .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-on .grid-3 > .reveal:nth-child(3),
.reveal-on .steps > .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-on .grid-3 > .reveal:nth-child(4),
.reveal-on .steps > .reveal:nth-child(4) { transition-delay: .24s; }
.reveal-on .grid-3 > .reveal:nth-child(5) { transition-delay: .32s; }
.reveal-on .grid-3 > .reveal:nth-child(6) { transition-delay: .40s; }

/* gallery tiles cascade on reveal */
.reveal-on .gallery-grid.reveal.in .gallery-item { animation: tileIn .6s var(--ease) both; }
.reveal-on .gallery-grid.reveal .gallery-item:nth-child(2) { animation-delay: .1s; }
.reveal-on .gallery-grid.reveal .gallery-item:nth-child(3) { animation-delay: .2s; }
.reveal-on .gallery-grid.reveal .gallery-item:nth-child(4) { animation-delay: .3s; }
@keyframes tileIn { from { opacity: 0; transform: translateY(26px) scale(.97); } to { opacity: 1; transform: none; } }

/* gentle float for hero badge + visual chips */
.hero .badge { animation: floaty 5s ease-in-out infinite; }
.visual .chip, .media .chip { animation: floaty 6s ease-in-out infinite; }
.visual .c2, .media .c2 { animation-duration: 7s; animation-delay: .6s; }
.visual .c3 { animation-duration: 6.5s; animation-delay: 1.1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* count-up numbers sit at fixed width so layout doesn't jump */
[data-count] { font-variant-numeric: tabular-nums; }

/* suburb marquee */
.marquee { overflow: hidden; background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 64s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; white-space: nowrap; color: var(--muted);
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem; padding: 0 16px; }
.marquee__track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); margin-left: 32px; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce){
  .reveal-on .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero::before, .marquee__track, .hero .badge, .visual .chip, .media .chip,
  .reveal-on .gallery-grid.reveal.in .gallery-item { animation: none; }
}
