/* ============================================================
   PARTICULAR PAINTING Style Guide / Component Library
   Reuses brand tokens; sg- prefixed structural classes.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --orange:      #FEA100;
  --orange-600:  #E89000;
  --navy:        #1F4E85;
  --navy-700:    #173C66;
  --navy-900:    #0E2747;
  --light-blue:  #EAF4FF;
  --cream:       #FFF7EA;
  --grey-50:     #F6F7F9;
  --grey-100:    #EFF1F4;
  --white:       #FFFFFF;
  --page:        #F2F3F5;
  --charcoal:    #14223A;
  --body:        #5A636F;
  --muted:       #8A8F98;
  --border:      #E4E7EC;

  --serif: 'Zilla Slab', Georgia, serif;
  --sans:  'Source Sans 3', system-ui, -apple-system, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, monospace;

  --sg-maxw: 1240px;
  --sg-hero-form-w: 440px;
  --sg-hero-gap: clamp(40px, 5vw, 72px);
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 22px;
  --sh-1: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.08);
  --sh-2: 0 4px 10px rgba(16,24,40,.04), 0 14px 34px rgba(16,24,40,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5 { margin: 0; line-height: 1.1; color: var(--charcoal); }
p { margin: 0; font-size: 16px; }

.sg-wrap { max-width: var(--sg-maxw); margin: 0 auto; padding-inline: clamp(18px, 4vw, 28px); }

/* shared buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: .01em;
  padding: 13px 22px; border-radius: var(--r-md);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--orange); color: var(--navy-900); box-shadow: 0 6px 16px rgba(254,161,0,.28); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-pill { border-radius: 100px; }

/* eyebrow */
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange-600);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--orange); }
.eyebrow.on-dark { color: var(--orange); }

/* placeholder for before/after slots with no image yet */
.sg-ba-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(31,78,133,.06) 0 1px, transparent 1px 11px),
    var(--grey-100);
  color: var(--muted); font-family: var(--mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ============================================================
   HEADER
   ============================================================ */
.sg-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.sg-header-inner {
  max-width: var(--sg-maxw); margin: 0 auto; padding-inline: clamp(18px,4vw,28px);
  height: 84px; display: flex; align-items: center; gap: 22px;
  overflow: visible;
}
.sg-brand-logo { height: 65px; width: auto; }
.sg-nav { display: flex; align-items: center; gap: 26px; margin-inline: auto; overflow: visible; }
.sg-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--charcoal);
  padding: 6px 0; position: relative; transition: color .15s ease;
}
.sg-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--orange); transition: right .25s ease;
}
.sg-nav a:hover { color: var(--navy); }
.sg-nav a:hover::after, .sg-nav a.active::after { right: 0; }
.sg-nav a.active { color: var(--navy); }

/* Services dropdown */
.sg-nav-dropdown { position: relative; }
.sg-nav-dropdown::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
}
.sg-nav-dropdown__trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 600; color: var(--charcoal);
  padding: 6px 0; position: relative; transition: color .15s ease;
  background: none; border: 0; cursor: pointer; font-family: inherit;
}
.sg-nav-dropdown__trigger svg { width: 14px; height: 14px; transition: transform .2s ease; flex-shrink: 0; }
.sg-nav-dropdown__trigger::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--orange); transition: right .25s ease;
}
.sg-nav-dropdown.is-open .sg-nav-dropdown__trigger,
.sg-nav-dropdown.active .sg-nav-dropdown__trigger { color: var(--navy); }
.sg-nav-dropdown.is-open .sg-nav-dropdown__trigger::after,
.sg-nav-dropdown.active .sg-nav-dropdown__trigger::after { right: 0; }
.sg-nav-dropdown.is-open .sg-nav-dropdown__trigger svg { transform: rotate(180deg); }
.sg-nav-dropdown__menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 250px; margin: 0; padding: 8px 0; list-style: none;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-2);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 60;
}
.sg-nav-dropdown.is-open .sg-nav-dropdown__menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .sg-nav-dropdown:hover .sg-nav-dropdown__trigger,
  .sg-nav-dropdown:focus-within .sg-nav-dropdown__trigger { color: var(--navy); }
  .sg-nav-dropdown:hover .sg-nav-dropdown__trigger::after,
  .sg-nav-dropdown:focus-within .sg-nav-dropdown__trigger::after { right: 0; }
  .sg-nav-dropdown:hover .sg-nav-dropdown__trigger svg,
  .sg-nav-dropdown:focus-within .sg-nav-dropdown__trigger svg { transform: rotate(180deg); }
  .sg-nav-dropdown:hover .sg-nav-dropdown__menu,
  .sg-nav-dropdown:focus-within .sg-nav-dropdown__menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.sg-nav-dropdown__menu a {
  display: block; padding: 10px 18px; font-size: 14px; font-weight: 600;
  color: var(--charcoal); white-space: nowrap; transition: color .15s, background .15s;
}
.sg-nav-dropdown__menu a::after { display: none; }
.sg-nav-dropdown__menu a:hover,
.sg-nav-dropdown__menu a:focus,
.sg-nav-dropdown__menu a.active { color: var(--navy); background: var(--grey-50); }
.sg-nav-dropdown__menu li:first-child a { font-weight: 700; }

.sg-head-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sg-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--charcoal);
  font-weight: 700; font-size: 14px;
  transition: color .15s ease;
}
.sg-phone:hover { color: var(--navy); }
.sg-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.sg-burger {
  display: none; width: 44px; height: 44px; border-radius: 9px;
  box-shadow: inset 0 0 0 1.5px var(--border);
  align-items: center; justify-content: center; flex-shrink: 0;
}
.sg-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--navy); border-radius: 2px; position: relative;
  transition: background .15s .1s;
}
.sg-burger span::before, .sg-burger span::after {
  content: ""; position: absolute; display: block;
  width: 18px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: top .15s .1s, transform .15s;
}
.sg-burger span::before { top: -6px; }
.sg-burger span::after  { top: 6px; }
.sg-burger.open span { background: transparent; }
.sg-burger.open span::before { top: 0; transform: rotate(45deg); transition: top .15s, transform .15s .1s; }
.sg-burger.open span::after  { top: 0; transform: rotate(-45deg); transition: top .15s, transform .15s .1s; }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.sg-nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 49;
  background: rgba(14,39,71,.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .25s ease;
}
.sg-nav-mobile.open { display: block; }
.sg-nav-mobile.visible { opacity: 1; }
.sg-nav-drawer {
  position: absolute; top: 84px; right: 0;
  width: min(320px, 100vw);
  height: calc(100dvh - 84px);
  background: var(--white);
  padding: 10px 0 30px;
  box-shadow: -4px 0 30px rgba(14,39,71,.15);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.sg-nav-mobile.visible .sg-nav-drawer { transform: none; }
.sg-nav-drawer a:not(.btn) {
  display: flex; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--charcoal);
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  transition: color .15s, background .15s;
  min-height: 54px;
}
.sg-nav-drawer a:not(.btn):hover { color: var(--navy); background: var(--grey-50); }
.sg-nav-drawer-group { border-bottom: 1px solid var(--border); }
.sg-nav-drawer-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-size: 16px; font-weight: 600; color: var(--charcoal);
  padding: 16px 24px; background: none; border: 0; cursor: pointer; font-family: inherit;
  min-height: 54px; transition: color .15s, background .15s;
}
.sg-nav-drawer-toggle svg { width: 18px; height: 18px; transition: transform .2s ease; }
.sg-nav-drawer-toggle:hover,
.sg-nav-drawer-group.is-active .sg-nav-drawer-toggle { color: var(--navy); background: var(--grey-50); }
.sg-nav-drawer-group.is-open .sg-nav-drawer-toggle svg { transform: rotate(180deg); }
.sg-nav-drawer-sub {
  display: grid; grid-template-rows: 0fr; background: var(--grey-50);
  transition: grid-template-rows .25s ease;
}
.sg-nav-drawer-sub > div { overflow: hidden; }
.sg-nav-drawer-group.is-open .sg-nav-drawer-sub { grid-template-rows: 1fr; }
.sg-nav-drawer-sub a {
  padding-left: 36px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  min-height: 48px; padding-top: 12px; padding-bottom: 12px;
}
.sg-nav-drawer-sub a.active { color: var(--navy); font-weight: 700; }
.sg-nav-drawer-cta {
  padding: 24px 20px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.btn-outline-dark {
  background: transparent; color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ============================================================
   PAGE INTRO + SECTION LABELS
   ============================================================ */
.sg-intro { padding-block: clamp(40px,6vw,64px) 8px; }
.sg-intro h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 5.4vw, 50px); letter-spacing: -.015em; color: var(--charcoal);
}
.sg-intro p {
  margin-top: 14px; max-width: 560px; font-size: 16px; line-height: 1.6; color: var(--body);
}
.sg-intro p b { color: var(--navy); font-weight: 700; }

.sg-section { padding-block: clamp(26px, 4vw, 40px); }
.sg-label {
  font-family: var(--serif); font-weight: 700; font-size: clamp(20px, 2.6vw, 26px);
  color: var(--charcoal); letter-spacing: -.01em; margin-bottom: 18px;
  display: flex; align-items: baseline; gap: 12px;
}
.sg-label .sg-label-note { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.sg-section-intro { margin: -6px 0 24px; max-width: 720px; font-size: 16px; line-height: 1.65; color: var(--body); }

.sg-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-1);
}

/* ============================================================
   TRUST SIGNALS
   ============================================================ */
.sg-trust { display: flex; align-items: center; gap: clamp(20px,4vw,48px); flex-wrap: wrap; padding: clamp(22px,3vw,34px) clamp(24px,4vw,40px); }
.sg-trust-stats { display: flex; align-items: stretch; gap: clamp(24px,4vw,44px); }
.sg-stat .num { font-family: var(--serif); font-weight: 700; font-size: clamp(34px,5vw,48px); color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.sg-stat .num span { color: var(--orange); }
.sg-stat .lbl { margin-top: 7px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sg-stat-div { width: 1px; background: var(--border); align-self: stretch; }
.sg-reviews {
  margin-left: auto; display: flex; align-items: center; gap: 14px;
  background: var(--grey-50); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 16px 22px;
}
.sg-reviews .rv-score { font-family: var(--serif); font-weight: 700; font-size: 34px; color: var(--charcoal); line-height: 1; }
.sg-reviews .rv-stars { color: var(--orange); letter-spacing: 2px; font-size: 15px; }
.sg-reviews .rv-note { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   HERO full-bleed with embedded quote form
   ============================================================ */
.sg-hero-section { width: 100%; }
.sg-hero {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 82vh, 780px); display: flex; align-items: center;
}
.sg-hero-bg { position: absolute; inset: 0; }
.sg-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sg-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(96deg, rgba(11,31,57,.95) 0%, rgba(13,36,66,.84) 34%, rgba(18,46,82,.5) 62%, rgba(20,50,90,.12) 100%);
}
.sg-hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--sg-maxw); margin: 0 auto;
  padding: clamp(48px,7vw,80px) clamp(18px,4vw,28px);
}
.sg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, var(--sg-hero-form-w));
  gap: var(--sg-hero-gap);
  align-items: center;
}
.sg-hero-content {
  min-width: 0;
  max-width: 680px;
  padding-right: clamp(0px, 2vw, 20px);
}
.sg-hero-content h1 {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: clamp(40px, 5vw, 64px); line-height: 1.06; margin-top: 20px; text-wrap: balance;
}
.sg-hero-content h1 em {
  color: #fff; font-style: italic; font-weight: 500;
  position: relative; display: inline-block;
  z-index: 1;
  padding-bottom: 0.06em;
}
.sg-hero-content h1 em::after {
  content: "";
  position: absolute;
  left: -0.04em;
  width: calc(100% + 0.14em);
  bottom: 0.1em;
  height: 0.2em;
  min-height: 7px;
  max-height: 11px;
  background: url('../images/brush-underline.svg') no-repeat center / 100% 100%;
  z-index: -1;
  pointer-events: none;
  transform: rotate(-0.6deg);
  transform-origin: 12% center;
}
.sg-hero-content > p {
  color: rgba(255,255,255,.88); margin-top: 22px;
  font-size: 18px; line-height: 1.65; max-width: 580px;
}
.sg-hero-trust {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 28px; margin-top: 32px;
}
.sg-hero-trust__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; color: rgba(255,255,255,.92);
  white-space: nowrap;
}
.sg-hero-trust__item--rating svg {
  width: 16px; height: 16px; color: var(--orange); flex-shrink: 0;
}
.sg-hero-form-card {
  width: 100%;
  max-width: var(--sg-hero-form-w);
  justify-self: end;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  padding: clamp(26px, 3vw, 32px);
}
.sg-hero-form-card__head h2 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 2.8vw, 26px);
  color: var(--charcoal); line-height: 1.15;
}
.sg-hero-form-card__head p {
  margin-top: 6px; color: var(--muted); line-height: 1.5;
}
.sg-hero-form-card .sg-form {
  padding: 0; margin-top: 20px;
}
.sg-hero-form-card .sg-field { margin-bottom: 14px; }
.sg-hero-form-card .sg-field-row { gap: 12px; }
.sg-hero-form-card .sg-field-row .sg-field { margin-bottom: 14px; }
.sg-hero-form-card .btn { margin-top: 4px; font-size: 15.5px; padding: 15px 24px; }
.sg-hero-form-card__foot {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.sg-hero-form-card__foot p {
  color: var(--muted); line-height: 1.55;
}
.sg-hero-form-card__foot p + p { margin-top: 6px; }
.sg-hero-form-card__foot a {
  color: var(--charcoal); text-decoration: none;
}
.sg-hero-form-card__foot a:hover { color: var(--navy); }
.sg-hero-form-card__foot strong { font-weight: 700; }
.sg-form--hero .sg-form-success { padding: 24px 6px; }

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.sg-content { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px,4vw,44px); align-items: start; }
.sg-content h2,
.sg-content h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(22px,2.8vw,28px); color: var(--navy); }
.sg-content > div > p { margin-top: 14px; line-height: 1.7; color: var(--body); max-width: 440px; }

.sg-feats { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.sg-feat { display: grid; grid-template-columns: 22px 1fr; gap: 0 12px; }
.sg-feat .sf-ic { width: 22px; height: 22px; color: var(--orange-600); }
.sg-feat .sf-ic svg { width: 22px; height: 22px; }
.sg-feat h3,
.sg-feat h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); }
.sg-feat p { grid-column: 2; line-height: 1.6; color: var(--body); margin-top: 4px; }

/* four steps card */
.sg-steps { background: var(--grey-50); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(24px,3vw,32px); }
.sg-steps > h2,
.sg-steps > h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(19px,2.4vw,23px); color: var(--charcoal); margin-bottom: 22px; }
.sg-step { display: grid; grid-template-columns: 34px 1fr; gap: 0 16px; padding-bottom: 22px; position: relative; }
.sg-step:last-child { padding-bottom: 0; }
.sg-step:not(:last-child)::after {
  content: ""; position: absolute; left: 16.5px; top: 38px; bottom: 6px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--border) 0 5px, transparent 5px 10px);
}
.sg-step .st-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: var(--navy-900);
  font-family: var(--serif); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.sg-step h3,
.sg-step h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); padding-top: 6px; }
.sg-step p { grid-column: 2; line-height: 1.6; color: var(--body); margin-top: 4px; }

/* ============================================================
   FRONT PAGE SERVICES GRID
   ============================================================ */
.sg-front-services {
  padding-block: clamp(36px, 5vw, 56px);
}
.sg-front-services__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 4.5vw, 48px);
}
.sg-front-services__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.sg-front-services__eyebrow::before,
.sg-front-services__eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--border);
}
.sg-front-services__head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 38px);
  color: var(--navy);
  line-height: 1.12;
  margin-top: 16px;
  letter-spacing: -.01em;
}
.sg-front-services__head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--body);
  line-height: 1.65;
}
.sg-front-services__grid {
  margin-top: 0;
}
.sg-service-card--front {
  background: var(--grey-50);
  border-color: #ECEEF2;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sg-service-card--front:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  box-shadow: var(--sh-1);
}
.sg-service-card--front .sg-service-card__media {
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.sg-service-card--front .sg-service-card__body {
  padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.5vw, 22px) clamp(20px, 2.5vw, 24px);
  gap: 12px;
}
.sg-service-card--front .sg-service-card__body h3 {
  font-size: clamp(20px, 2.2vw, 22px);
  color: var(--navy);
}
.sg-service-card--front .sg-service-card__body p {
  font-size: 16px;
  line-height: 1.6;
}
.sg-service-card--front .sg-service-card__link {
  margin-top: 4px;
  font-size: 15px;
}

/* ============================================================
   INTERACTIVE BEFORE / AFTER SLIDER
   ============================================================ */
.sg-gallery-intro { font-size: 16px; color: var(--body); margin-bottom: 16px; line-height: 1.65; }
.sg-ba {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-1); overflow: hidden; padding: 16px;
}
.sg-ba-stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/8; user-select: none; cursor: ew-resize; touch-action: none;
  background: var(--grey-100);
}
.sg-ba-layer { position: absolute; inset: 0; }
.sg-ba-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sg-ba-after { clip-path: inset(0 0 0 50%); }
.sg-ba-tag {
  position: absolute; top: 14px; z-index: 3;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: rgba(14,39,71,.82); padding: 5px 11px; border-radius: 100px;
  pointer-events: none;
}
.sg-ba-tag.before { left: 14px; }
.sg-ba-tag.after { right: 14px; }
.sg-ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; z-index: 4; transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(14,39,71,.12); pointer-events: none; }
.sg-ba-handle {
  position: absolute; top: 50%; left: 50%; z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; background: var(--orange); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%); box-shadow: 0 4px 14px rgba(14,39,71,.3);
  pointer-events: none;
}
.sg-ba-handle svg { width: 22px; height: 22px; }
.sg-ba-caption { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 8px 6px; }
.sg-ba-caption .bc-title { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--charcoal); }
.sg-ba-caption .bc-sub { font-size: 15px; color: var(--muted); margin-top: 2px; }
.sg-ba-badge { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: var(--light-blue); padding: 6px 12px; border-radius: 100px; flex-shrink: 0; }

/* ============================================================
   OUR WORK FILTERABLE PORTFOLIO GRID
   ============================================================ */
.sg-our-work {
  padding-block: clamp(34px, 5vw, 52px);
}

.sg-our-work__head {
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 30px);
}

.sg-our-work__title {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: .34em;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.sg-our-work__title-a {
  color: var(--charcoal);
}

.sg-our-work__title-b {
  color: var(--orange);
}

.sg-our-work__rule {
  width: min(220px, 72%);
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0 50%, var(--charcoal) 50% 100%);
}

.sg-our-work__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 42px);
  margin-bottom: clamp(22px, 3vw, 30px);
}

.sg-our-work__filter {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 10px 18px;
  border-radius: 2px;
  transition: background .18s ease, color .18s ease;
}

.sg-our-work__filter:hover {
  color: var(--navy);
}

.sg-our-work__filter.is-active {
  background: var(--charcoal);
  color: #fff;
}

.sg-our-work__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 16px);
}

.sg-our-work__item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: var(--grey-100);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: zoom-in;
  transition: opacity .22s ease, transform .22s ease, box-shadow .2s ease;
}

.sg-our-work__item:hover {
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
}

.sg-our-work__item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 78, 133, .2), var(--sh-2);
}

.sg-our-work__item.is-hidden {
  display: none;
}

.sg-our-work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.sg-our-work__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 720px) {
  .sg-our-work__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROJECTS PAGE IMAGE GALLERY + LIGHTBOX
   ============================================================ */
.sg-projects-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
}

.sg-project-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--grey-50);
  transition: box-shadow .2s ease, transform .2s ease;
}

.sg-project-thumb:hover {
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
}

.sg-project-thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 78, 133, .2), var(--sh-2);
}

.sg-project-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.sg-project-thumb:hover img {
  transform: scale(1.04);
}

.sg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
}

.sg-lightbox[hidden] {
  display: none;
}

.sg-lightbox.is-open {
  display: flex;
}

.sg-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 39, 71, .88);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .22s ease;
}

.sg-lightbox.is-visible .sg-lightbox__backdrop {
  opacity: 1;
}

.sg-lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(var(--sg-maxw), 100%);
  max-height: calc(100dvh - 48px);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .22s ease, transform .22s ease;
}

.sg-lightbox.is-visible .sg-lightbox__dialog {
  opacity: 1;
  transform: scale(1);
}

.sg-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 48px);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(14, 39, 71, .45);
  cursor: zoom-out;
}

.sg-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-2);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.sg-lightbox__close svg {
  width: 20px;
  height: 20px;
}

.sg-lightbox__close:hover {
  background: var(--navy);
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .sg-projects-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .sg-projects-gallery__grid { grid-template-columns: 1fr; }

  .sg-lightbox__close {
    top: 8px;
    right: 8px;
  }
}

/* ============================================================
   CONVERSION FORM
   ============================================================ */
.sg-conv { display: grid; grid-template-columns: .82fr 1.18fr; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-1); }
.sg-conv-panel { background: var(--navy); color: #DCE6F2; padding: clamp(28px,4vw,40px); position: relative; overflow: hidden; }
.sg-conv-panel::after { content:""; position:absolute; right:-60px; bottom:-60px; width:220px; height:220px; border-radius:50%; background: radial-gradient(circle, rgba(254,161,0,.16), transparent 65%); }
.sg-conv-panel h2,
.sg-conv-panel h3 { font-family: var(--serif); font-weight: 700; color: #fff; font-size: clamp(24px,3.2vw,32px); line-height: 1.1; position: relative; }
.sg-conv-panel > p { margin-top: 16px; line-height: 1.65; color: #C4D2E4; position: relative; }
.sg-conv-contact { margin-top: 30px; display: grid; gap: 20px; position: relative; }
.sg-cc-row { display: flex; gap: 14px; align-items: flex-start; }
.sg-cc-ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sg-cc-ic svg { width: 19px; height: 19px; }
.sg-cc-row .cc-k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: #93A6C2; }
.sg-cc-row .cc-v { font-weight: 700; color: #fff; font-size: 17px; margin-top: 2px; }
.sg-cc-row .cc-v.sm { font-size: 15px; font-weight: 600; line-height: 1.5; }
.sg-conv-panel .cc-v a { color: #fff; text-decoration: none; }
.sg-conv-panel .cc-v a:hover { color: var(--orange); }

.sg-form { padding: clamp(26px,4vw,38px); }
.sg-field { margin-bottom: 16px; }
.sg-field label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.sg-field input, .sg-field select, .sg-field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--charcoal);
  padding: 12px 14px; border-radius: var(--r-md); border: 1.5px solid var(--border);
  background: var(--grey-50); transition: border-color .15s, background .15s, box-shadow .15s;
}
.sg-field input::placeholder, .sg-field textarea::placeholder { color: #A8AEB8; }
.sg-field textarea { resize: vertical; min-height: 92px; }
.sg-field input:focus, .sg-field select:focus, .sg-field textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(31,78,133,.08); }
.sg-field input.invalid, .sg-field select.invalid, .sg-field textarea.invalid { border-color: #D64545; background: #FEF4F4; }
.sg-field .err { display: none; color: #D64545; font-size: 12px; margin-top: 5px; font-weight: 600; }
.sg-field.show-err .err { display: block; }
.sg-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sg-form .btn { margin-top: 6px; }
.sg-form-success { display: none; text-align: center; padding: 30px 10px; }
.sg-form-success.show { display: block; }
.sg-form-success .fs-ic { width: 60px; height: 60px; border-radius: 50%; background: var(--cream); color: var(--orange-600); display:flex; align-items:center; justify-content:center; margin: 0 auto 16px; }
.sg-form-success .fs-ic svg { width: 30px; height: 30px; }
.sg-form-success h3 { font-family: var(--serif); font-size: 24px; color: var(--charcoal); }
.sg-form-success p { margin-top: 8px; line-height: 1.65; }

/* ============================================================
   CLIENT TESTIMONIALS CAROUSEL
   ============================================================ */
.sg-testimonials {
  margin-top: clamp(34px, 5vw, 52px);
}

.sg-testimonials__layout {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
}

.sg-testimonials__summary {
  text-align: center;
  padding-inline: 8px;
}

.sg-testimonials__label {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.sg-testimonials__summary-stars,
.sg-testimonials__rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.sg-testimonials__summary-stars {
  margin-top: 10px;
}

.sg-testimonials__star {
  width: 18px;
  height: 18px;
  color: #E0E3E8;
}

.sg-testimonials__star.is-filled {
  color: #F5B301;
}

.sg-testimonials__star svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sg-testimonials__count {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.sg-testimonials__count strong {
  color: var(--charcoal);
  font-weight: 700;
}

.sg-testimonials__google {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}

a.sg-testimonials__google:hover {
  opacity: .85;
}

.sg-testimonials__google-g { color: #4285F4; }
.sg-testimonials__google-o1 { color: #EA4335; }
.sg-testimonials__google-o2 { color: #FBBC05; }
.sg-testimonials__google-g2 { color: #4285F4; }
.sg-testimonials__google-l { color: #34A853; }
.sg-testimonials__google-e { color: #EA4335; }

.sg-testimonials__carousel {
  position: relative;
  min-width: 0;
}

.sg-testimonials__viewport {
  overflow: hidden;
  padding-block: 4px;
}

.sg-testimonials__track {
  display: flex;
  gap: 16px;
  transition: transform .35s ease;
  will-change: transform;
}

.sg-testimonials__card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
  padding: 18px 18px 16px;
}

.sg-testimonials__card-head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: start;
}

.sg-testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
}

.sg-testimonials__card[data-tone="1"] .sg-testimonials__avatar { background: #2E6BA8; }
.sg-testimonials__card[data-tone="2"] .sg-testimonials__avatar { background: #3D8B6E; }
.sg-testimonials__card[data-tone="3"] .sg-testimonials__avatar { background: #8B5E3D; }
.sg-testimonials__card[data-tone="4"] .sg-testimonials__avatar { background: #6B4C9A; }

.sg-testimonials__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.sg-testimonials__date {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

.sg-testimonials__g svg {
  width: 18px;
  height: 18px;
  display: block;
}

.sg-testimonials__rating {
  margin-top: 10px;
}

.sg-testimonials__verified {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sg-testimonials__verified svg {
  width: 10px;
  height: 10px;
}

.sg-testimonials__body {
  margin-top: 10px;
}

.sg-testimonials__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.sg-testimonials__card.is-expanded .sg-testimonials__text {
  display: block;
  -webkit-line-clamp: unset;
}

.sg-testimonials__more {
  margin-top: 6px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.sg-testimonials__more:hover {
  color: var(--charcoal);
}

.sg-testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  box-shadow: var(--sh-1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .15s ease, opacity .15s ease;
}

.sg-testimonials__nav svg {
  width: 18px;
  height: 18px;
}

.sg-testimonials__nav:hover:not(:disabled) {
  background: var(--grey-50);
}

.sg-testimonials__nav:disabled {
  opacity: .35;
  cursor: default;
}

.sg-testimonials__nav--prev { left: -10px; }
.sg-testimonials__nav--next { right: -10px; }

@media (max-width: 1024px) {
  .sg-testimonials__card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 760px) {
  .sg-testimonials__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sg-testimonials__summary {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "label stars"
      "count count"
      "google google";
    gap: 6px 14px;
    text-align: left;
    align-items: center;
    padding-inline: 0;
  }

  .sg-testimonials__label { grid-area: label; }
  .sg-testimonials__summary-stars { grid-area: stars; margin-top: 0; }
  .sg-testimonials__count { grid-area: count; margin-top: 4px; }
  .sg-testimonials__google { grid-area: google; margin-top: 6px; font-size: 24px; }

  .sg-testimonials__card {
    flex-basis: 100%;
  }

  .sg-testimonials__nav--prev { left: 4px; }
  .sg-testimonials__nav--next { right: 4px; }
}

/* ============================================================
   PRE-FOOTER COMMITMENT + QUOTE CTA
   ============================================================ */
.sg-pre-footer {
  margin-top: clamp(30px, 5vw, 52px);
}

.sg-pre-footer-commitment {
  background: var(--orange);
  color: #fff;
  padding: clamp(34px, 5vw, 52px) clamp(18px, 4vw, 28px);
}

.sg-pre-footer-commitment__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.sg-pre-footer-commitment__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: #fff;
}

.sg-pre-footer-commitment__rule {
  width: 72px;
  height: 2px;
  margin: 16px auto 0;
  background: #fff;
  border-radius: 999px;
}

.sg-pre-footer-commitment__text {
  margin-top: 18px;
  max-width: 760px;
  margin-inline: auto;
}

.sg-pre-footer-commitment__text p {
  color: rgba(255, 255, 255, .96);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}

.sg-pre-footer-commitment__text p + p {
  margin-top: 14px;
}

.sg-pre-footer-cta {
  padding-block: clamp(28px, 4vw, 42px);
}

.sg-pre-footer-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--sh-2);
}

.sg-pre-footer-cta__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.12;
  color: #fff;
}

.sg-pre-footer-cta__rule {
  width: 72px;
  height: 2px;
  margin-top: 14px;
  background: var(--orange);
  border-radius: 999px;
}

.sg-pre-footer-cta__text {
  margin-top: 18px;
}

.sg-pre-footer-cta__text p {
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  line-height: 1.7;
}

.sg-pre-footer-cta__text p + p {
  margin-top: 12px;
}

.sg-pre-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sg-pre-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.sg-pre-footer-cta__btn--solid {
  background: var(--navy-900);
  color: #fff;
}

.sg-pre-footer-cta__btn--solid:hover {
  background: #091c33;
  transform: translateY(-1px);
}

.sg-pre-footer-cta__btn--outline {
  border: 1px solid rgba(255, 255, 255, .85);
  color: #fff;
}

.sg-pre-footer-cta__btn--outline:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.sg-pre-footer-cta__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100%;
}

.sg-pre-footer-cta__media img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

.sg-pre-footer + .sg-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .sg-pre-footer-cta__card {
    grid-template-columns: 1fr;
  }

  .sg-pre-footer-cta__media {
    order: -1;
  }

  .sg-pre-footer-cta__media img {
    width: min(100%, 320px);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.sg-footer { margin-top: clamp(30px,5vw,52px); }
.sg-footer-cta {
  background: var(--navy-900);
  padding: clamp(22px, 3.5vw, 30px) clamp(18px, 4vw, 28px);
}
.sg-footer-cta-inner {
  max-width: var(--sg-maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sg-footer-cta-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--orange);
}
.sg-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--navy-900);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  transition: background .2s ease, transform .15s ease;
  white-space: nowrap;
}
.sg-footer-cta-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.sg-footer-cta-btn:hover { background: var(--orange-600); transform: translateY(-1px); }
.sg-footer-main { background: var(--white); color: var(--body); }
.sg-footer-inner { max-width: var(--sg-maxw); margin: 0 auto; padding: clamp(40px,6vw,56px) clamp(18px,4vw,28px); }
.sg-footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1.2fr;
  gap: clamp(22px,3.5vw,36px);
}
.sg-footer-logo { height: 58px; width: auto; }
.sg-footer-license,
.sg-footer-insured {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.sg-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.sg-footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
  flex-shrink: 0;
}
.sg-footer-social-link svg { width: 16px; height: 16px; display: block; }
.sg-footer-social a.sg-footer-social-link:hover { background: var(--navy-700); transform: translateY(-1px); }
.sg-footer-col h5 {
  position: relative;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--charcoal);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 18px;
  padding-bottom: 12px;
}
.sg-footer-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.sg-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.sg-footer-col ul a {
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
  transition: color .15s ease;
}
.sg-footer-col ul a:hover { color: var(--navy); }
.sg-footer-contact-line {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
}
.sg-footer-contact-line a { color: var(--body); font-weight: 600; }
.sg-footer-contact-line a:hover { color: var(--navy); }
.sg-footer-map {
  margin-top: 14px;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 140px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--grey-50);
}
.sg-footer-map iframe { display: block; width: 100%; height: 100%; }
.sg-footer-bottom {
  background: var(--navy-900);
  padding: 16px clamp(18px, 4vw, 28px);
  text-align: center;
}
.sg-footer-bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.82);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Hero stack (≤ 960px) -------------------------------- */
@media (max-width: 960px) {
  .sg-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sg-hero-content {
    max-width: none;
    padding-right: 0;
  }
  .sg-hero-content > p { max-width: none; font-size: 17px; }
  .sg-hero-content h1 { font-size: clamp(34px, 8vw, 44px); }
  .sg-hero-trust__item { font-size: 15px; }
  .sg-hero-form-card {
    max-width: 480px;
    justify-self: stretch;
    margin-inline: auto;
  }
}

/* --- Tablet / wide-mobile (≤ 860px) ----------------------- */
@media (max-width: 860px) {
  .sg-nav, .sg-head-cta .btn { display: none; }
  .sg-burger { display: flex; }
  .sg-head-cta { margin-left: auto; }
  .sg-content, .sg-conv { grid-template-columns: 1fr; }
  .sg-reviews { margin-left: 0; }
  .sg-footer-top { grid-template-columns: 1fr 1fr; }
  .sg-footer-brand { grid-column: 1 / -1; }
  .sg-footer-contact { grid-column: 1 / -1; }
  .sg-conv-panel { padding: clamp(22px,4vw,32px); }
  .sg-form { padding: clamp(22px,4vw,32px); }
  .sg-steps { padding: clamp(20px,3vw,28px); }
}

/* --- Narrow tablet / large phone (≤ 680px) ---------------- */
@media (max-width: 680px) {
  .sg-head-cta .sg-phone { display: none; }
  .sg-feats { grid-template-columns: 1fr; }
  .sg-ba-stage { aspect-ratio: 4/3; }
}

/* --- Mobile (≤ 560px) ------------------------------------- */
@media (max-width: 560px) {
  .sg-trust { flex-direction: column; align-items: flex-start; }
  .sg-trust-stats { width: 100%; }
  .sg-reviews { width: 100%; }
  .sg-field-row { grid-template-columns: 1fr; }
  .sg-footer-top { grid-template-columns: 1fr; }
  .sg-hero-trust { gap: 8px 16px; }
  .sg-form-success { padding: 20px 8px; }
  .sg-footer-bottom p { font-size: 15px; }
  .sg-footer-cta-inner { justify-content: center; text-align: center; }
  .sg-nav-drawer a:not(.btn) { font-size: 17px; }
}

/* --- Small mobile (≤ 390px) ------------------------------- */
@media (max-width: 390px) {
  .sg-header-inner { gap: 12px; }
  .sg-brand-logo { height: 48px; }
  .sg-trust-stats { flex-direction: column; gap: 16px; }
  .sg-stat-div { display: none; }
  .sg-ba-caption { flex-direction: column; align-items: flex-start; }
}

/* --- Minimum supported (≤ 320px) -------------------------- */
@media (max-width: 320px) {
  .sg-hero-inner { padding-inline: 16px; }
  .sg-section { padding-block: 20px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.sg-page-hero {
  position: relative;
  min-height: clamp(320px, 48vh, 460px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.sg-page-hero__media,
.sg-page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sg-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,57,.35) 0%, rgba(11,31,57,.88) 72%, rgba(11,31,57,.95) 100%);
}
.sg-page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--sg-maxw);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 56px) clamp(18px, 4vw, 28px);
}
.sg-page-hero__inner h1 {
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.08;
  margin-top: 16px;
  max-width: 700px;
}
.sg-page-hero__inner p {
  color: rgba(255,255,255,.88);
  margin-top: 14px;
  max-width: 620px;
  line-height: 1.65;
}
.sg-about-story__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.sg-about-story__grid--single {
  grid-template-columns: 1fr;
}
.sg-about-story__content h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
}
.sg-about-story__text {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.sg-about-story__text p {
  line-height: 1.7;
  color: var(--body);
}
.sg-about-story__image img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-2);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.sg-about-values__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}
.sg-about-cta__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}
.sg-about-cta__card h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--charcoal);
}
.sg-about-cta__card p {
  margin: 14px auto 22px;
  max-width: 560px;
  line-height: 1.65;
  color: var(--body);
}
@media (max-width: 860px) {
  .sg-about-story__grid,
  .sg-about-values__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.pp-services-page,
.pp-contact-page,
.pp-service-page,
.pp-projects-page,
.pp-blog-page,
.pp-blog-single-page {
  --sg-card-padding: clamp(22px, 3vw, 28px);
  --sg-card-padding-lg: clamp(28px, 4vw, 40px);
}

.pp-services-page .sg-card,
.pp-service-page .sg-card,
.pp-projects-page .sg-card {
  padding: var(--sg-card-padding);
}

.pp-services-page .sg-service-card.sg-card,
.pp-service-page .sg-service-card.sg-card,
.pp-projects-page .sg-project-thumb.sg-card {
  padding: 0;
}

.pp-services-page .sg-service-card__body,
.pp-service-page .sg-service-card__body {
  padding: var(--sg-card-padding);
}

.pp-services-page .sg-about-cta__card,
.pp-services-page .sg-services-cta__inner,
.pp-service-page .sg-services-cta__inner,
.pp-projects-page .sg-services-cta__inner {
  padding: var(--sg-card-padding-lg);
  text-align: center;
}

.pp-services-page .sg-about-cta__card h2,
.pp-services-page .sg-services-cta__inner h2,
.pp-service-page .sg-services-cta__inner h2,
.pp-projects-page .sg-services-cta__inner h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--charcoal);
  margin: 0;
}

.pp-services-page .sg-about-cta__card p,
.pp-services-page .sg-services-cta__inner p,
.pp-service-page .sg-services-cta__inner p,
.pp-projects-page .sg-services-cta__inner p {
  margin: 14px auto 22px;
  max-width: 560px;
  line-height: 1.65;
  color: var(--body);
}

.sg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 24px);
  margin-top: 8px;
}
.sg-service-card {
  scroll-margin-top: 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sg-service-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey-50);
}
.sg-service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.sg-service-card__media:hover img { transform: scale(1.04); }
.sg-service-card__body h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}
.sg-service-card__body p {
  margin: 0;
  line-height: 1.6;
  color: var(--body);
  flex: 1;
}
.sg-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sg-service-card h3 a {
  color: inherit; text-decoration: none; transition: color .15s ease;
}
.sg-service-card h3 a:hover { color: var(--navy); }
.sg-service-card__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
  font-size: 14px; font-weight: 700; color: var(--navy);
  transition: color .15s ease, gap .15s ease;
}
.sg-service-card__link svg { width: 16px; height: 16px; }
.sg-service-card__link:hover { color: var(--orange-600); gap: 12px; }
@media (max-width: 1024px) {
  .sg-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .sg-services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.sg-service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 36px);
  align-items: start;
}
.sg-service-detail__media {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--sh-1);
}
.sg-service-detail__media img {
  display: block; width: 100%; height: 100%; min-height: 280px; object-fit: cover;
}
.sg-service-detail__highlights h2 {
  font-family: var(--serif); font-size: clamp(20px, 2.6vw, 24px);
  color: var(--navy); margin: 0 0 16px;
}
.sg-service-detail__highlights ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.sg-service-detail__highlights li {
  position: relative; padding-left: 22px;
  font-size: 15px; line-height: 1.55; color: var(--body);
}
.sg-service-detail__highlights li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}
.sg-service-detail__content { margin-top: clamp(28px, 4vw, 40px); }
@media (max-width: 860px) {
  .sg-service-detail__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.sg-reviews-summary .sg-trust {
  justify-content: center;
}
.sg-reviews-summary .sg-reviews {
  margin-left: 0;
}
.sg-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 24px);
}
.sg-review-card {
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sg-review-card__stars {
  color: var(--orange);
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 1;
}
.sg-review-card__quote {
  margin: 0;
}
.sg-review-card__quote p {
  line-height: 1.7;
  color: var(--body);
}
.sg-review-card__meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 14px;
}
.sg-review-card__meta cite {
  font-style: normal;
  font-weight: 700;
  color: var(--charcoal);
}
.sg-review-card__meta span {
  color: var(--muted);
}
.sg-review-card__meta span::before {
  content: '·';
  margin-right: 12px;
  color: var(--border);
}
@media (max-width: 860px) {
  .sg-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.pp-blog-page .sg-wrap {
  padding-block: clamp(32px, 5vw, 56px);
}
.pp-blog-page .sg-blog-list {
  padding-block: 0;
}
.sg-blog-list__head {
  margin-bottom: clamp(24px, 3.5vw, 36px);
}
.sg-blog-list__head .sg-label {
  margin-bottom: 10px;
}
.sg-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.sg-blog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.sg-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: rgba(31, 78, 133, 0.14);
}
.sg-blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--grey-100);
}
.sg-blog-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.sg-blog-card:hover .sg-blog-card__media::after {
  transform: scaleX(1);
}
.sg-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sg-blog-card:hover .sg-blog-card__media img {
  transform: scale(1.05);
}
.sg-blog-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--cream) 55%, var(--grey-50) 100%);
}
.sg-blog-card__placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: var(--sh-1);
}
.sg-blog-card__placeholder-icon svg {
  width: 26px;
  height: 26px;
}
.sg-blog-card__body {
  padding: clamp(22px, 3.2vw, 30px) clamp(22px, 3.2vw, 28px) clamp(24px, 3.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.sg-blog-card__meta {
  display: flex;
  align-items: center;
}
.sg-blog-card__date {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--light-blue);
}
.sg-blog-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.sg-blog-card__title a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sg-blog-card__title a:hover {
  color: var(--navy);
}
.sg-blog-card__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}
.sg-blog-card__excerpt p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sg-blog-card__link {
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.sg-blog-card__link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}
.sg-blog-card__link:hover {
  color: var(--orange-600);
  gap: 11px;
}
.sg-blog-card__link:hover svg {
  transform: translateX(2px);
}
.sg-blog-empty {
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 24px;
  color: var(--muted);
  font-size: 16px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--r-xl);
}
.sg-blog-pagination {
  margin-top: clamp(36px, 5vw, 52px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--border);
}
.sg-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.sg-blog-pagination .page-numbers.current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.sg-blog-pagination .page-numbers:hover:not(.current) {
  border-color: var(--orange);
  color: var(--orange-600);
  background: var(--cream);
}
.sg-blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.sg-blog-pagination li {
  margin: 0;
}

/* Single blog post */
.pp-blog-single-page .sg-wrap {
  padding-block: clamp(36px, 5vw, 64px);
}
.sg-blog-single {
  max-width: 820px;
  margin: 0 auto;
}
.sg-blog-single__card {
  padding: 0;
  overflow: hidden;
}
.sg-blog-single__header {
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 36px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-50) 100%);
}
.sg-blog-single__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  margin-bottom: clamp(18px, 2.5vw, 24px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.sg-blog-single__back svg {
  width: 16px;
  height: 16px;
}
.sg-blog-single__back:hover {
  color: var(--orange-600);
  border-color: rgba(254, 161, 0, 0.45);
  background: var(--cream);
}
.sg-blog-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 14px;
}
.sg-blog-single__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--light-blue);
}
.sg-blog-single__date {
  font-size: 14px;
  color: var(--muted);
}
.sg-blog-single__title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.sg-blog-single__media {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.sg-blog-single__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.sg-blog-single__content {
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px) clamp(36px, 5vw, 52px);
  font-size: 17px;
  line-height: 1.8;
  color: var(--body);
}
.sg-blog-single__content > *:first-child {
  margin-top: 0;
}
.sg-blog-single__content > *:last-child {
  margin-bottom: 0;
}
.sg-blog-single__content h2,
.sg-blog-single__content h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.sg-blog-single__content h2 {
  font-size: clamp(22px, 2.8vw, 28px);
}
.sg-blog-single__content h3 {
  font-size: clamp(19px, 2.2vw, 22px);
}
.sg-blog-single__content p {
  margin-bottom: 1.25rem;
}
.sg-blog-single__content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sg-blog-single__content a:hover {
  color: var(--orange-600);
}
.sg-blog-single__content ul,
.sg-blog-single__content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}
.sg-blog-single__content li {
  margin-bottom: 0.5rem;
}
.sg-blog-single__content li::marker {
  color: var(--orange);
}
.sg-blog-single__footer {
  margin-top: clamp(28px, 4vw, 40px);
}
.sg-blog-single__cta {
  padding: clamp(32px, 4.5vw, 48px) clamp(28px, 4vw, 40px);
}
@media (max-width: 1024px) {
  .sg-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .sg-blog-grid { grid-template-columns: 1fr; }
  .sg-blog-single__header,
  .sg-blog-single__content {
    padding-inline: clamp(20px, 5vw, 24px);
  }
}

/* ============================================================
   SITE PAGE CONTENT
   ============================================================ */
.sg-page-content .entry-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
}
.sg-page-content .entry-content > *:first-child { margin-top: 0; }
.sg-page-content .entry-content > *:last-child { margin-bottom: 0; }
.sg-page-content .entry-content h2,
.sg-page-content .entry-content h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin-top: 1.75rem;
}
.sg-page-content .entry-content p { margin-bottom: 1rem; }
.sg-page-content .entry-content a { color: var(--navy); font-weight: 600; }
.sg-page-content .entry-content a:hover { color: var(--orange-600); }

/* ============================================================
   SERVICE LANDING PAGES
   ============================================================ */
.pp-svc-landing-page .sg-section {
  padding-block: clamp(36px, 5vw, 56px);
}

.sg-svc-landing-hero__eyebrow {
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.sg-svc-landing-hero__eyebrow::before {
  display: none;
}
.sg-svc-landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, .85);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy-900);
  transform: translateY(-2px);
}

.sg-svc-landing-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.sg-svc-landing-split--reverse .sg-svc-landing-split__image {
  order: -1;
}
.sg-svc-landing-split__content h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  line-height: 1.15;
}
.sg-svc-landing-split__text {
  margin: 18px 0 22px;
  display: grid;
  gap: 14px;
}
.sg-svc-landing-split__text p {
  line-height: 1.7;
  color: var(--body);
}
.sg-svc-landing-split__image img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-2);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sg-svc-landing-why h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  text-align: center;
}
.sg-svc-landing-why__subtitle {
  margin: 12px auto 0;
  max-width: 640px;
  text-align: center;
  line-height: 1.65;
  color: var(--body);
}
.sg-svc-landing-why__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(22px, 3vw, 32px);
}

.sg-svc-landing-guidance__card {
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}
.sg-svc-landing-guidance__card h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
}
.sg-svc-landing-guidance__card p {
  margin: 16px auto 0;
  max-width: 820px;
  line-height: 1.7;
  color: var(--body);
}

.sg-svc-landing-faqs h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 32px);
}
.sg-svc-landing-faqs__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.sg-svc-landing-faq {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-1);
  overflow: hidden;
}
.sg-svc-landing-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--serif);
  font-size: clamp(17px, 2.2vw, 19px);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.sg-svc-landing-faq__question::-webkit-details-marker {
  display: none;
}
.sg-svc-landing-faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform .2s ease;
}
.sg-svc-landing-faq[open] .sg-svc-landing-faq__icon {
  transform: rotate(180deg);
}
.sg-svc-landing-faq__answer {
  padding: 0 20px 18px;
}
.sg-svc-landing-faq__answer p {
  line-height: 1.7;
  color: var(--body);
}

@media (max-width: 1024px) {
  .sg-svc-landing-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .sg-svc-landing-split,
  .sg-svc-landing-split--reverse .sg-svc-landing-split__image {
    grid-template-columns: 1fr;
    order: unset;
  }
  .sg-svc-landing-split--reverse .sg-svc-landing-split__image {
    order: -1;
  }
  .sg-svc-landing-why__grid {
    grid-template-columns: 1fr;
  }
}
