/* FD Services Fulham Ltd
   Visual system taken from the company mark: a navy roofline, a bright blue
   swoosh sweeping beneath it, an orange swoosh crossing the other way.
   The arc is the brand gesture — it wraps the hero, sweeps the photo corner,
   underlines the navigation and rings the closing call to action. */

:root {
  /* surfaces, darkest to lightest */
  --navy-950: #050d16;
  --navy-900: #08131f;
  --navy-850: #0b1b2b;
  --navy-800: #102639;
  --navy-700: #17344b;
  --edge: rgba(190, 216, 238, .13);
  --edge-soft: rgba(190, 216, 238, .07);

  /* brand */
  --blue: #1b8ef2;
  --blue-bright: #4fb0ff;
  --blue-deep: #0a5fb4;
  --orange: #f0761f;
  --orange-bright: #ff9140;

  /* text */
  --bone: #edf2f6;
  --mute: #93a8ba;
  --faint: #6a8096;

  /* trade coding, as it reads on the van */
  --c-plumbing: #1b8ef2;
  --c-heating: #e8503a;
  --c-gas: #f0761f;
  --c-building: #8298ab;
  --c-mechanical: #12b5c9;
  --wa: #25d366;

  --display: "Archivo", "Arial Black", system-ui, sans-serif;
  --body: "Barlow", system-ui, -apple-system, sans-serif;

  --maxw: 1220px;
  --pad: clamp(68px, 8.5vw, 124px);
  --r: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--bone);
  font: 400 17px/1.62 var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.05em; }

h1, h2, h3, h4 {
  margin: 0 0 .4em;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  line-height: .95;
  letter-spacing: -.015em;
}
h1, h2 { text-transform: uppercase; }
h1 { font-size: clamp(3rem, 7.6vw, 6.1rem); letter-spacing: -.028em; }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.9rem); letter-spacing: -.022em; }
h3 { font-size: 1.35rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }
.section { position: relative; padding: var(--pad) 0; }
.section-head { max-width: 46ch; margin-bottom: clamp(36px, 4.5vw, 58px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin: 0; color: var(--mute); font-size: 1.08rem; }
.lead { color: var(--mute); font-size: 1.14rem; }

/* A locality line, used once per page where it carries real information. */
.locale { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem; color: var(--blue-bright); font-size: .98rem; font-weight: 500; }
.locale::before { content: ""; width: 26px; height: 26px; flex: none; border: 2px solid var(--blue); border-color: var(--blue) var(--blue) transparent transparent; border-radius: 50%; transform: rotate(-135deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .8rem 1.5rem;
  border: 1.5px solid transparent; border-radius: var(--r);
  background: transparent; color: var(--bone);
  font: 700 .95rem var(--body); letter-spacing: .01em; cursor: pointer;
  transition: background-color .18s, border-color .18s, color .18s;
}
.btn svg { width: 1.15rem; height: 1.15rem; flex: none; }
.btn-primary { background: var(--orange); color: #14202c; }
.btn-primary:hover { background: var(--orange-bright); }
.btn-wa { border-color: rgba(37, 211, 102, .55); color: #7ceda4; }
.btn-wa:hover { background: var(--wa); border-color: var(--wa); color: #06241a; }
.btn-ghost, .btn-line { border-color: var(--edge); color: var(--bone); }
.btn-ghost:hover, .btn-line:hover { border-color: var(--blue); background: rgba(27, 142, 242, .12); }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8, 19, 31, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--edge-soft);
}
.nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; min-height: 86px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 200px; height: 62px; object-fit: contain; object-position: left center; }
.nav-links { justify-self: center; display: flex; align-items: center; gap: 2.2rem; margin: 0; padding: 0; list-style: none; }
.nav-links a { position: relative; display: block; padding: 32px 0; color: var(--mute); font-size: .97rem; font-weight: 500; transition: color .18s; }
.nav-links a::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 22px; height: 9px;
  border-bottom: 2px solid var(--orange);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  opacity: 0; transition: opacity .18s;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a.active { color: var(--bone); }
.nav-links a.active::after, .nav-links a:hover::after { opacity: 1; }
.nav-links a:hover::after { border-bottom-color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-cta .btn { min-height: 46px; padding: .6rem 1.1rem; font-size: .92rem; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--edge); border-radius: var(--r); background: transparent; color: var(--bone); cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; position: relative; width: 20px; height: 2px; margin: 0 auto; background: currentColor; transition: .2s; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- the swoosh ---------- */
/* The mark's two crossing sweeps, redrawn at page scale. */
.swoosh {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 760' preserveAspectRatio='xMidYMid slice'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-90 726C170 318 660 112 1530 206' stroke='%231b8ef2' stroke-width='3.5' opacity='.5'/%3E%3Cpath d='M-90 790C215 404 722 232 1530 302' stroke='%231b8ef2' stroke-width='1.5' opacity='.3'/%3E%3Cpath d='M-70 236C420 544 930 662 1530 528' stroke='%23f0761f' stroke-width='2.5' opacity='.38'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover; background-position: center;
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 7vw, 104px) 0 clamp(64px, 7vw, 108px); background: var(--navy-900); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, var(--blue), var(--orange) 70%, transparent); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 4.5vw, 66px); align-items: center; }
.hero h1 { max-width: 13ch; margin-bottom: .32em; font-size: clamp(2.9rem, 6.2vw, 5.3rem); }
.hero h1 em { display: block; font-style: normal; color: var(--orange); }
.hero-sub { max-width: 46ch; margin-bottom: 1.9rem; color: var(--mute); font-size: 1.16rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.9rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin: 0; padding: 0; color: var(--mute); font-size: .95rem; list-style: none; }
.hero-tags li { display: inline-flex; align-items: center; gap: .55rem; }
.hero-tags li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

/* The photo carries the same swept corner as the mark. */
.hero-photo { position: relative; margin: 0; }
.hero-photo img {
  width: 100%; height: clamp(400px, 52vw, 580px); object-fit: cover; object-position: center 38%;
  border-radius: var(--r) var(--r) var(--r) clamp(70px, 13vw, 170px);
}
.hero-photo::before {
  content: ""; position: absolute; inset: 14px -14px -16px 12px;
  border: 2px solid var(--blue); border-top-color: transparent; border-right-color: transparent;
  border-radius: var(--r) var(--r) var(--r) clamp(80px, 14vw, 190px);
  opacity: .55;
}
.hero-photo figcaption {
  position: absolute; right: 0; bottom: 26px; max-width: 270px;
  padding: 16px 20px; border-left: 3px solid var(--orange);
  background: rgba(8, 19, 31, .93); font-size: .9rem; line-height: 1.45;
}
.hero-photo figcaption b { display: block; margin-bottom: 2px; font-family: var(--display); font-weight: 700; font-size: 1rem; }
.hero-photo figcaption span { color: var(--mute); }

/* Inner pages: a shorter hero, same arcs. */
.hero--page { padding: clamp(56px, 6vw, 88px) 0 clamp(44px, 5vw, 66px); }
.hero--page h1 { max-width: 16ch; font-size: clamp(2.5rem, 5.6vw, 4.4rem); }
.hero--page .hero-sub { margin-bottom: 0; }
.hero-copy { position: relative; max-width: 660px; }

/* ---------- trades ---------- */
.trades { border-top: 1px solid var(--edge); }
.trade {
  position: relative; display: grid; grid-template-columns: 58px max-content minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 40px); align-items: center;
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-bottom: 1px solid var(--edge);
}
.trade::before { content: ""; position: absolute; left: calc(-1 * clamp(14px, 2vw, 26px)); top: -1px; bottom: -1px; width: 4px; background: var(--c); transform: scaleY(0); transform-origin: top; transition: transform .28s ease; }
.trade:hover::before, .trade:focus-visible::before { transform: scaleY(1); }
.trade-ico { display: grid; place-items: center; width: 58px; height: 58px; border: 2px solid var(--c); border-radius: 50%; color: var(--c); }
.trade-ico svg { width: 27px; height: 27px; }
.trade h3 { margin: 0; font-size: clamp(1.5rem, 2.7vw, 2.15rem); text-transform: uppercase; }
.trade p { margin: 0; color: var(--mute); font-size: 1rem; }
.trade .go { color: var(--faint); font-size: .92rem; font-weight: 600; white-space: nowrap; transition: color .18s; }
.trade:hover .go { color: var(--bone); }
.c-plumbing { --c: var(--c-plumbing); }
.c-heating { --c: var(--c-heating); }
.c-gas { --c: var(--c-gas); }
.c-building { --c: var(--c-building); }
.c-mechanical { --c: var(--c-mechanical); }

/* Full service breakdown (services.html) */
.svc { display: grid; grid-template-columns: 62px 1fr; gap: clamp(20px, 3vw, 34px); padding: clamp(30px, 4vw, 48px) 0; border-bottom: 1px solid var(--edge); }
.svc:first-of-type { border-top: 1px solid var(--edge); }
.svc .trade-ico { width: 62px; height: 62px; }
.svc h3 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); text-transform: uppercase; }
.svc > div > p { max-width: 58ch; color: var(--mute); }
.svc ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 30px; margin: 1.3em 0 1.8em; padding: 0; list-style: none; }
.svc li { position: relative; padding: 5px 0 5px 20px; color: var(--bone); font-size: 1rem; }
.svc li::before { content: ""; position: absolute; left: 0; top: 15px; width: 10px; height: 10px; border: 2px solid var(--c); border-color: transparent transparent var(--c) var(--c); border-radius: 50%; transform: rotate(-45deg); }
.svc-note { display: inline-block; margin-bottom: .9rem; padding: 5px 12px; border: 1px solid var(--c); border-radius: 999px; color: var(--c); font-size: .8rem; font-weight: 600; }

/* ---------- credentials ---------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--edge); border-radius: var(--r); background: var(--edge); }
.trust-badge { display: flex; align-items: flex-start; gap: 15px; padding: 26px 24px; background: var(--navy-850); }
.trust-badge .ti { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 50%; color: var(--blue-bright); background: rgba(27, 142, 242, .14); }
.trust-badge .ti svg { width: 22px; height: 22px; }
.trust-badge b { display: block; margin-bottom: 2px; font-family: var(--display); font-weight: 700; font-size: 1.08rem; }
.trust-badge span { color: var(--mute); font-size: .88rem; line-height: 1.45; }

/* ---------- process ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 38px); }
.step { position: relative; padding-top: 28px; border-top: 2px solid var(--edge); }
.step .n { display: block; margin-bottom: 14px; color: var(--blue); font: 800 2.6rem/1 var(--display); font-stretch: 112%; }
.step h3 { text-transform: uppercase; }
.step p { margin: 0; color: var(--mute); font-size: 1rem; }
.step:nth-child(1) { border-top-color: var(--blue); }
.step:nth-child(2) { border-top-color: var(--blue-deep); }
.step:nth-child(3) { border-top-color: var(--orange); }
.step:nth-child(2) .n { color: var(--blue-bright); }
.step:nth-child(3) .n { color: var(--orange); }

/* ---------- split + stats ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.panel { padding: clamp(26px, 3.4vw, 40px); border: 1px solid var(--edge); border-radius: var(--r) var(--r) var(--r) clamp(40px, 7vw, 76px); background: var(--navy-850); }
.mini-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 34px); }
.mini-stats .k { font: 800 clamp(2.4rem, 4.4vw, 3.4rem)/1 var(--display); font-stretch: 112%; letter-spacing: -.03em; }
.mini-stats .k.blue { color: var(--blue-bright); }
.mini-stats .k.orange { color: var(--orange); }
.mini-stats .v { margin-top: 6px; color: var(--mute); font-size: .95rem; line-height: 1.4; }
.checklist { margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 9px 0 9px 32px; border-bottom: 1px solid var(--edge-soft); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 17px; width: 14px; height: 14px; border: 2px solid var(--blue); border-color: transparent transparent var(--blue) var(--blue); border-radius: 50%; transform: rotate(-45deg); }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot { position: relative; margin: 0; overflow: hidden; border-radius: var(--r); background: var(--navy-800); }
.shot img { width: 100%; height: 300px; object-fit: cover; transition: transform .4s ease; }
.shot:hover img { transform: scale(1.03); }
.shot figcaption { position: absolute; inset: auto 0 0; padding: 30px 18px 15px; background: linear-gradient(transparent, rgba(5, 13, 22, .92)); font-size: .95rem; font-weight: 500; }
.shot.tall { grid-row: span 2; border-bottom-left-radius: clamp(60px, 9vw, 120px); }
.shot.tall img { height: 616px; }
.photo-credit { margin-top: 20px; color: var(--faint); font-size: .85rem; }
.photo-credit a { color: var(--mute); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 4vw, 52px); align-items: start; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--edge); }
.contact-list li:first-child { border-top: 1px solid var(--edge); }
.contact-list .ci { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 50%; color: var(--blue-bright); background: rgba(27, 142, 242, .14); }
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list .lbl { color: var(--faint); font-size: .85rem; }
.contact-list .val { display: block; margin-top: 1px; font-size: 1.1rem; font-weight: 600; }
.contact-list a.val:hover { color: var(--blue-bright); }

form.quote { padding: clamp(24px, 3vw, 36px); border: 1px solid var(--edge); border-radius: var(--r); background: var(--navy-850); }
.form-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
.progress-step { display: flex; align-items: center; gap: 9px; padding: 0 0 12px; border: 0; border-bottom: 2px solid var(--edge); background: transparent; color: var(--faint); font: 600 .92rem var(--body); text-align: left; cursor: default; transition: color .2s, border-color .2s; }
.progress-step span { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border: 1px solid currentColor; border-radius: 50%; font-size: .8rem; }
.progress-step.active { border-bottom-color: var(--orange); color: var(--bone); }
.progress-step.active span { border-color: var(--orange); background: var(--orange); color: #14202c; }
.progress-step.done { border-bottom-color: var(--blue); color: var(--blue-bright); cursor: pointer; }
.form-step { display: none; min-width: 0; margin: 0; padding: 0; border: 0; }
.form-step.active { display: block; }
.form-step legend { width: 100%; margin-bottom: 6px; padding: 0; font: 800 clamp(1.5rem, 3vw, 2.1rem)/1 var(--display); font-stretch: 112%; text-transform: uppercase; }
.step-intro { margin-bottom: 22px; color: var(--mute); font-size: .98rem; }
.service-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.service-option { --c: var(--blue); position: relative; display: grid; place-items: center; gap: 10px; min-height: 126px; padding: 18px 10px; border: 1px solid var(--edge); border-radius: var(--r); background: var(--navy-800); font-size: .92rem; font-weight: 600; text-align: center; cursor: pointer; transition: border-color .16s, background-color .16s; }
.service-option:hover { border-color: var(--c); }
.service-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.service-option .option-icon { display: grid; place-items: center; width: 48px; height: 48px; border: 2px solid var(--c); border-radius: 50%; color: var(--c); }
.service-option .option-icon svg { width: 25px; height: 25px; }
.service-option:has(input:checked) { border-color: var(--c); background: var(--navy-700); }
.service-option:has(input:checked) .option-icon { background: var(--c); color: var(--navy-900); }
.service-option:focus-within { outline: 3px solid var(--blue-bright); outline-offset: 2px; }
.service-option.c-other { --c: var(--c-building); }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--mute); font-size: .92rem; font-weight: 500; }
.field label span { color: var(--faint); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--edge); border-radius: 8px; background: var(--navy-800); color: var(--bone); font: inherit; font-size: 1rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27, 142, 242, .22); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { display: none; }
.form-status { min-height: 1.3em; margin: 14px 0 0; color: var(--blue-bright); font-size: .95rem; }

/* ---------- closing call ---------- */
.cta-band { position: relative; overflow: hidden; padding: clamp(66px, 8vw, 110px) 0; border-top: 1px solid var(--edge); background: var(--navy-850); text-align: center; }
.cta-band .swoosh { background-position: center 30%; opacity: .8; }
.cta-inner { position: relative; }
.cta-band p { max-width: 42ch; margin-inline: auto; color: var(--mute); }
.readout { display: inline-flex; align-items: center; gap: 15px; margin: 6px 0 24px; }
.readout .ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; color: var(--orange); background: rgba(240, 118, 31, .15); }
.readout .ic svg { width: 24px; height: 24px; }
.readout .num { font: 800 clamp(2rem, 5.2vw, 3.2rem)/1 var(--display); font-stretch: 112%; letter-spacing: -.02em; }
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- footer ---------- */
.site-footer { padding: clamp(50px, 6vw, 76px) 0 34px; border-top: 1px solid var(--edge); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(26px, 3.4vw, 44px); }
.footer-logo { width: 190px; height: 58px; margin-bottom: 18px; object-fit: contain; object-position: left center; }
.footer-blurb { max-width: 36ch; color: var(--mute); font-size: .98rem; }
.site-footer h4 { margin-bottom: 16px; color: var(--bone); font-family: var(--display); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .01em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--mute); font-size: .98rem; }
.site-footer a:hover { color: var(--blue-bright); }
.contact-item { display: grid; grid-template-columns: 66px 1fr; gap: 10px; align-items: baseline; color: var(--mute); font-size: .98rem; }
.contact-item span { color: var(--faint); font-size: .88rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--edge-soft); color: var(--faint); font-size: .88rem; }

/* Sticky call bar, phones only */
.callbar { display: none; }

/* One orchestrated entrance on the hero, nothing elsewhere. */
.rise { opacity: 0; transform: translateY(14px); animation: rise .62s cubic-bezier(.22, .68, .3, 1) forwards; }
.rise:nth-child(2) { animation-delay: .07s; }
.rise:nth-child(3) { animation-delay: .14s; }
.hero-photo.rise { animation-delay: .1s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .nav-links { gap: 1.3rem; }
  .nav-links a { font-size: .9rem; }
  .brand-logo { width: 170px; height: 54px; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1000px) {
  body { font-size: 16px; }
  .nav { grid-template-columns: 1fr auto; min-height: 74px; }
  .nav-toggle { display: block; }
  .nav-cta .btn:not(.nav-toggle), .nav-links { display: none; }
  .nav.open .nav-links { display: grid; position: absolute; top: 100%; right: 0; left: 0; width: auto; justify-self: stretch; gap: 0; padding: 8px 20px 20px; border-bottom: 1px solid var(--edge); background: var(--navy-850); }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--edge-soft); }
  .nav.open .nav-links a::after { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-photo img { height: clamp(300px, 54vw, 420px); }
  .trade { grid-template-columns: 48px 1fr; row-gap: 12px; }
  .trade-ico { width: 48px; height: 48px; }
  .trade-ico svg { width: 23px; height: 23px; }
  .trade p { grid-column: 2; }
  .trade .go { display: none; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .shot.tall { grid-row: auto; }
  .shot.tall img, .shot img { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 104px; }
  .callbar { position: fixed; z-index: 70; right: 12px; bottom: 12px; left: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 9px; border: 1px solid var(--edge); border-radius: 14px; background: rgba(11, 27, 43, .96); backdrop-filter: blur(12px); }
  .callbar .btn { min-height: 48px; }
}
@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .trust, .two-col, .gallery-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; }
  .svc ul { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: repeat(2, 1fr); }
  .hero-photo figcaption { right: auto; left: 0; bottom: 0; max-width: 88%; }
  .readout { flex-direction: column; gap: 10px; }
  .hero-cta .btn, .form-actions .btn { flex: 1 1 auto; }
  .mini-stats { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .rise { opacity: 1; transform: none; }
}

/* real WhatsApp button */
.btn.wa-solid { margin-top: 6px; background: #25d366; border-color: #25d366; color: #06241a; }
.btn.wa-solid:hover { background: #1fbe5a; border-color: #1fbe5a; }

/* ---------- photo treatment: real site photos, graded to sit together ---------- */
.has-bg::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(8,19,31,.93) 0%, rgba(8,19,31,.72) 55%, rgba(8,19,31,.48) 100%), var(--bg) var(--bgpos, center) / cover no-repeat;
  filter: saturate(.85) contrast(1.05); }
.has-bg > .container { position: relative; z-index: 1; }
.has-bg > .swoosh { z-index: 1; }
.cta-band.has-bg::before { background: linear-gradient(rgba(8,19,31,.9), rgba(8,19,31,.82)), var(--bg) center / cover no-repeat; }
.hero.has-bg::after { z-index: 2; }

.shot { aspect-ratio: 4 / 5; display: block; border: 1px solid var(--edge-soft); }
.shot[hidden] { display: none; }
.shot img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.07) saturate(1.06) brightness(.96); }
.shot::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 60px rgba(5,13,22,.35); }
.shot figcaption { z-index: 1; }
.shot .chip { position: absolute; top: 12px; left: 12px; z-index: 1; padding: 4px 10px; border-radius: 999px; background: rgba(8,19,31,.78); border: 1px solid var(--edge); backdrop-filter: blur(6px); font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--bone); }
.gallery-grid.strip { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gallery-grid.strip .shot { aspect-ratio: 3 / 4; }
.hero-photo img { object-position: center 45%; filter: contrast(1.06) saturate(1.05); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filters button { min-height: 44px; padding: .5rem 1.05rem; border: 1px solid var(--edge); border-radius: 999px; background: transparent; color: var(--mute); font: 600 .9rem var(--body); cursor: pointer; }
.filters button:hover { color: var(--bone); border-color: var(--blue); }
.filters button.active { background: var(--orange); border-color: var(--orange); color: #14202c; }
.clips { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.clip { margin: 0; overflow: hidden; border: 1px solid var(--edge-soft); border-radius: var(--r); background: var(--navy-850); }
.clip video { display: block; width: 100%; aspect-ratio: 9 / 16; max-height: 560px; object-fit: cover; background: #000; }
.clip figcaption { padding: 12px 16px; color: var(--mute); font-size: .92rem; }
@media (max-width: 1000px) { .shot.tall img, .shot img { height: 100%; } }
@media (max-width: 1000px) { .has-bg::before { background: linear-gradient(rgba(8,19,31,.86), rgba(8,19,31,.7)), var(--bg) var(--bgpos, center) / cover no-repeat; } }

/* hero slideshow */
.hero-photo .slides { position: relative; height: clamp(400px, 52vw, 580px); overflow: hidden; border-radius: var(--r) var(--r) var(--r) clamp(70px, 13vw, 170px); background: var(--navy-800); }
.hero-photo .slides .slide { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; opacity: 0; transform: scale(1.08); transition: opacity 1.1s ease, transform 6.5s ease-out; }
.hero-photo .slides .slide.is-on { opacity: 1; transform: scale(1); }
.hero-photo figcaption { transition: opacity .35s, transform .35s; }
.hero-photo figcaption.swap { opacity: 0; transform: translateY(6px); }
.hero-photo .dots { position: absolute; top: 14px; right: 14px; display: flex; gap: 6px; z-index: 2; }
.hero-photo .dots i { width: 22px; height: 4px; border-radius: 2px; background: rgba(237,242,246,.35); cursor: pointer; }
.hero-photo .dots i.on { background: var(--orange); }
@media (max-width: 1000px) { .hero-photo .slides { height: clamp(300px, 54vw, 420px); } }
@media (prefers-reduced-motion: reduce) { .hero-photo .slides .slide { transition: none; transform: none; } }
.trust-badge.gs .gs-logo { flex: none; width: 96px; height: auto; border-radius: 8px; }


/* mobile menu: full-screen, animated */
.nav-extra { display: none; }
@media (max-width: 1000px) {
  .nav.open .nav-links {
    height: calc(100dvh - 74px); overflow-y: auto; align-content: start; padding: 10px 24px 120px; border-bottom: 0;
    background: rgba(8,19,31,.5); -webkit-backdrop-filter: blur(26px) saturate(1.4); backdrop-filter: blur(26px) saturate(1.4);
    animation: menuIn .5s cubic-bezier(.16,1,.3,1) both; counter-reset: n;
  }
  .nav.open .nav-links li { counter-increment: n; opacity: 0; animation: linkIn .55s cubic-bezier(.16,1,.3,1) both; }
  .nav.open .nav-links li:nth-child(1) { animation-delay: .12s; } .nav.open .nav-links li:nth-child(2) { animation-delay: .18s; }
  .nav.open .nav-links li:nth-child(3) { animation-delay: .24s; } .nav.open .nav-links li:nth-child(4) { animation-delay: .3s; }
  .nav.open .nav-links li:nth-child(5) { animation-delay: .36s; } .nav.open .nav-links li:nth-child(6) { animation-delay: .46s; }
  .nav.open .nav-links a { display: flex; align-items: baseline; gap: 16px; padding: 18px 0; font: 800 clamp(1.9rem, 8vw, 2.6rem)/1 var(--display); letter-spacing: -.01em; text-transform: uppercase; color: var(--bone); border-bottom: 1px solid var(--edge); transition: color .2s, padding-left .25s; }
  .nav.open .nav-links a::before { content: "0" counter(n); font: 600 .8rem var(--body); letter-spacing: .1em; color: var(--orange); }
  .nav.open .nav-links a.active { color: var(--orange); }
  .nav.open .nav-links a:hover, .nav.open .nav-links a:active { padding-left: 10px; color: var(--orange); }
  .nav.open .nav-links .nav-extra { display: grid; gap: 10px; padding-top: 26px; }
  .nav.open .nav-links .nav-extra a { display: inline-flex; padding: .8rem 1.2rem; font: 700 1rem var(--body); text-transform: none; letter-spacing: 0; border: 1px solid var(--edge); }
  .nav.open .nav-links .nav-extra a::before { content: none; }
  .nav.open .nav-links .nav-extra .btn-primary { border-color: var(--orange); color: #14202c; }
  .nav.open .nav-links .nav-extra .btn-wa { border-color: rgba(37,211,102,.55); }
}
@keyframes menuIn { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes linkIn { from { opacity: 0; transform: translateY(26px) skewY(3deg); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .nav.open .nav-links, .nav.open .nav-links li { animation: none; opacity: 1; } }

/* menu close animation */
@media (max-width: 1000px) {
  .nav.open.closing .nav-links { animation: menuOut .45s cubic-bezier(.7,0,.84,0) both; }
  .nav.open.closing .nav-links li { animation: linkOut .25s ease-in both; }
  .nav.open.closing .nav-links li:nth-child(n) { animation-delay: 0s; }
}
@keyframes menuOut { 0%, 30% { clip-path: inset(0 0 0 0); } to { clip-path: inset(0 0 100% 0); } }
@keyframes linkOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-16px); } }
@media (prefers-reduced-motion: reduce) { .nav.open.closing .nav-links, .nav.open.closing .nav-links li { animation: none; } }

/* frosted menu: a parent backdrop-filter would hide the page from the child, so drop the header's while open */
@media (max-width: 1000px) {
  .site-header:has(.nav.open) { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(8,19,31,.96); }
}

/* frosted panel covers the header bar too */
@media (max-width: 1000px) {
  .site-header:has(.nav.open) { background: transparent; border-bottom-color: transparent; }
  .nav.open .nav-links { position: fixed; inset: 0; top: 0; height: 100dvh; width: auto; padding: 96px 24px 120px; z-index: 1; }
  .nav.open .brand, .nav.open .nav-cta { position: relative; z-index: 2; }
}

/* phones: smaller photo tiles, two across, so more are visible at once */
@media (max-width: 560px) {
  .gallery-grid, .gallery-grid.strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .shot, .gallery-grid.strip .shot { aspect-ratio: 1 / 1; border-radius: 12px; }
  .shot .chip { top: 8px; left: 8px; padding: 3px 8px; font-size: .62rem; }
  .shot figcaption { padding: 22px 10px 9px; font-size: .78rem; line-height: 1.25; }
  .clips { grid-template-columns: 1fr 1fr; gap: 10px; }
  .clip figcaption { padding: 8px 10px; font-size: .78rem; }
  .filters { gap: 6px; margin-bottom: 16px; }
  .filters button { min-height: 40px; padding: .4rem .85rem; font-size: .85rem; }
}

.wa-num { display: block; margin-top: 8px; color: var(--mute); font-size: .92rem; }

/* customer reviews */
.review { position: relative; display: flex; flex-direction: column; margin: 0; padding: 26px 24px 22px; border: 1px solid var(--edge); border-radius: var(--r) var(--r) var(--r) clamp(30px, 5vw, 56px); background: var(--navy-850); transition: transform .3s, border-color .3s; }
.review:hover { transform: translateY(-4px); border-color: var(--blue); }
.review::before { content: "\201C"; position: absolute; top: 4px; right: 18px; font: 800 5rem/1 var(--display); color: var(--orange); opacity: .22; }
.review blockquote { margin: 0 0 16px; color: var(--bone); font-size: 1.02rem; line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 18px; padding: 0; list-style: none; }
.tags li { padding: 4px 10px; border: 1px solid var(--edge); border-radius: 999px; color: var(--mute); font-size: .78rem; font-weight: 600; }
.review figcaption { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--edge-soft); }
.review figcaption b { font-family: var(--display); font-size: 1rem; }
.review figcaption span { color: var(--faint); font-size: .85rem; }
.review--feature { margin-bottom: 16px; padding: clamp(28px, 4vw, 48px); background: linear-gradient(135deg, rgba(27,142,242,.14), var(--navy-850) 60%); }
.review--feature blockquote { max-width: 60ch; font: 600 clamp(1.25rem, 2.6vw, 1.85rem)/1.4 var(--display); letter-spacing: -.01em; }
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1000px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews { grid-template-columns: 1fr; } .review { padding: 22px 20px 18px; } }

/* dramatic reviews */
.reviews-sec { padding: clamp(80px, 10vw, 140px) 0; overflow: hidden; }
.reviews-sec.has-bg::before { background: radial-gradient(60% 50% at 20% 0%, rgba(27,142,242,.28), transparent 70%), radial-gradient(50% 45% at 90% 100%, rgba(240,118,31,.22), transparent 70%), linear-gradient(rgba(8,19,31,.9), rgba(8,19,31,.95)), var(--bg) center / cover no-repeat; }
.reviews-sec .section-head h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.review { backdrop-filter: blur(10px); background: rgba(13,30,47,.72); box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.review:hover { box-shadow: 0 24px 60px rgba(27,142,242,.22); }
.review--feature { border-color: rgba(240,118,31,.5); background: linear-gradient(135deg, rgba(27,142,242,.22), rgba(13,30,47,.8) 65%); box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(240,118,31,.15); }
.review--feature::before { top: -6px; right: 30px; font-size: clamp(9rem, 18vw, 16rem); opacity: .16; }
.review--feature blockquote { font-size: clamp(1.4rem, 3.2vw, 2.3rem); }
.review mark { padding: 0 .15em; background: linear-gradient(transparent 58%, rgba(240,118,31,.55) 58%); color: inherit; }
.review--feature .tags li { border-color: var(--orange); color: var(--orange); }
.js .review { opacity: 0; transform: translateY(40px) scale(.97); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s; }
.js .review.in { opacity: 1; transform: none; }
.js .review.in:hover { transform: translateY(-4px); }
@media (prefers-reduced-motion: reduce) { .js .review { opacity: 1; transform: none; transition: none; } }

/* reviews on phones: swipeable row, tighter type */
.swipe-hint { display: none; }
@media (max-width: 560px) {
  .reviews-sec { padding: 64px 0 56px; }
  .reviews-sec .section-head h2 { font-size: 2.1rem; }
  .review--feature { margin-bottom: 12px; padding: 22px 20px 18px; }
  .review--feature blockquote { font-size: 1.12rem; line-height: 1.45; }
  .review::before, .review--feature::before { top: 2px; right: 12px; font-size: 3.6rem; opacity: .18; }
  .review--feature::before { font-size: 4.4rem; }
  .review blockquote { font-size: .97rem; line-height: 1.55; padding-right: 26px; }
  .review--feature blockquote { padding-right: 30px; }
  .tags { gap: 5px; margin-bottom: 14px; }
  .tags li { padding: 3px 9px; font-size: .74rem; }
  .reviews { display: flex; gap: 12px; margin-inline: -20px; padding: 4px 20px 16px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: 20px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .reviews::-webkit-scrollbar { display: none; }
  .reviews .review { flex: 0 0 84%; scroll-snap-align: start; }
  .js .review { opacity: 1; transform: none; transition: none; }
  .swipe-hint { display: block; margin: 2px 0 0; color: var(--mute); font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-align: right; animation: nudge 1.6s ease-in-out 3; }
  @keyframes nudge { 50% { transform: translateX(6px); } }
}
