/* ==========================================================================
   AC Solutions, Vancouver BC
   Single stylesheet. Edit colors in :root below to rebrand the whole site.
   ========================================================================== */

:root {
  /* --- BRAND COLORS, taken from the AC Solutions logo --- */
  --ink-base:    #141414;   /* dark sections, footer */
  --ink-deep:    #0A0A0A;   /* topbar, deepest dark */
  --gold:        #EDA434;   /* logo gold: icons, accents, dark backgrounds */
  --gold-text:   #9A6520;   /* darker gold, safe for text and links on white */
  --gold-light:  #FBF2E3;   /* pale gold tint */
  --gold-accent: #F0B453;   /* gold on dark backgrounds */
  --red:         #BB1511;   /* logo red: RESERVED FOR CALL TO ACTION BUTTONS */
  --red-dark:    #9E100E;

  --ink:         #141414;
  --body:        #565656;
  --muted:       #767676;
  --line:        #E6E3DE;
  --bg:          #FFFFFF;
  --bg-soft:     #FAF8F5;

  --radius:      14px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 8px rgba(20,20,20,.07);
  --shadow:      0 10px 30px rgba(20,20,20,.11);
  --shadow-lg:   0 24px 60px rgba(20,20,20,.18);

  --wrap:        1180px;
  --header-h:    92px;

  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------- reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* The full bleed images use calc(50% - 50vw), whose 50% resolves against the grid
   column rather than the page, so they overshoot the viewport and the homepage
   scrolled sideways. Clipping on main contains them. It must be main and not html:
   overflow on the root breaks the sticky header, which sits outside main. */
main { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--gold-text); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .45em; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink-base); color: #CFCFCF; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--body); }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-text); margin-bottom: .9em;
}
.section--dark .eyebrow { color: var(--gold-accent); }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head p { margin-bottom: 0; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; font-size: .98rem; line-height: 1; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(187,21,17,.36); }
.btn--primary:hover { background: var(--red-dark); color: #fff; box-shadow: 0 10px 26px rgba(187,21,17,.44); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--ink-deep); border-color: var(--gold); }
.btn--ghost { background: transparent; color: var(--ink-base); border-color: rgba(20,20,20,.22); }
.btn--ghost:hover { background: var(--ink-base); color: #fff; border-color: var(--ink-base); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: #fff; color: var(--ink-base); }
.btn--sm { padding: 11px 22px; font-size: .88rem; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------------------------------------------------------------- header */
.topbar {
  background: var(--ink-deep); color: #BDBDBD;
  font-size: .84rem; padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { color: var(--gold-accent); }
.topbar__area { opacity: .85; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line); transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 11px; color: var(--ink-base); flex-shrink: 0; }
.logo__mark { height: 60px; width: auto; flex-shrink: 0; display: block; }
.site-footer .logo__mark { height: 66px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-weight: 900; font-size: 1.14rem; color: var(--ink-base); letter-spacing: -.02em; }
.logo__tag { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav > ul > li { margin: 0; position: relative; }
.nav a.nav__link {
  display: flex; align-items: center; gap: 5px; padding: 10px 14px; border-radius: 9px;
  color: var(--ink-base); font-weight: 700; font-size: .95rem;
}
.nav a.nav__link:hover, .nav li.is-open > a.nav__link { background: var(--gold-light); color: var(--gold-text); }
.nav a.nav__link[aria-current="page"] { color: var(--gold-text); }
.nav__caret { width: 9px; height: 9px; flex-shrink: 0; transition: transform .18s ease; }
.nav li.is-open .nav__caret { transform: rotate(180deg); }

.submenu {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 254px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .16s ease;
}
.nav li.is-open .submenu, .nav li:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { margin: 0; }
.submenu a { display: block; padding: 10px 14px; border-radius: 9px; color: var(--ink-base); font-weight: 600; font-size: .93rem; }
.submenu a:hover { background: var(--gold-light); color: var(--gold-text); }

.nav > .btn { display: none; }
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone { display: flex; flex-direction: column; line-height: 1.15; text-align: right; }
.header-phone span { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.header-phone a { font-weight: 900; color: var(--ink-base); font-size: 1.02rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  border-radius: 11px; cursor: pointer; padding: 0; place-items: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink-base); border-radius: 2px; position: relative; transition: .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink-base); border-radius: 2px; transition: .2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { 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); }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; background: var(--ink-base); color: #D8D8D8; overflow: hidden;
  padding: clamp(70px, 10vw, 130px) 0 clamp(80px, 10vw, 140px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(13,20,28,.94) 0%, rgba(13,20,28,.78) 46%, rgba(13,20,28,.42) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero__inner { max-width: 660px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__sub { font-size: clamp(1.08rem, 2vw, 1.32rem); color: #CFCFCF; margin-bottom: 1.6em; max-width: 540px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 17px 8px 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: 24px;
}
.hero__badge b { color: var(--gold-accent); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.17);
}
.hero__trust div { display: flex; align-items: center; gap: 9px; font-size: .93rem; font-weight: 600; color: #D8D8D8; }
.hero__trust svg { width: 19px; height: 19px; color: var(--gold-accent); flex-shrink: 0; }

/* page hero (interior pages) */
.page-hero {
  background: var(--ink-base); color: #CFCFCF; position: relative; overflow: hidden;
  padding: clamp(52px, 7vw, 92px) 0;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,20,28,.93), rgba(13,20,28,.62));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 780px; }
.page-hero p { max-width: 620px; font-size: 1.12rem; margin-bottom: 1.5em; }
.crumbs { font-size: .84rem; color: #8F8F8F; margin-bottom: 18px; }
.crumbs a { color: #CFCFCF; }
.crumbs a:hover { color: var(--gold-accent); }
.crumbs span { opacity: .55; margin: 0 7px; }

/* --------------------------------------------------------------- layouts */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 66px); align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }

/* ---------------------------------------------------------- service card */
.svc-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--gold-light); }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { margin-bottom: .4em; }
.svc-card p { font-size: .95rem; margin-bottom: 1.2em; flex: 1; }
.svc-card__link { font-weight: 800; font-size: .93rem; color: var(--gold-text); display: inline-flex; align-items: center; gap: 6px; }
.svc-card__link::after { content: '→'; transition: transform .18s ease; }
.svc-card:hover .svc-card__link::after { transform: translateX(4px); }

/* ------------------------------------------------------------ steps/icons */
.steps { counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: 1.15rem; margin-bottom: 18px;
}
.step__num svg { width: 22px; height: 22px; }
.step h3 { margin-bottom: .35em; }
.step p { font-size: .95rem; margin-bottom: 0; }

.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--gold-light); color: var(--gold-text);
  display: grid; place-items: center; flex-shrink: 0;
}
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .3em; }
.feature p { font-size: .94rem; margin-bottom: 0; }
.section--dark .feature__icon { background: rgba(255,255,255,.12); color: var(--gold-accent); }
.section--dark .feature p { color: #BDBDBD; }

/* ---------------------------------------------------------------- checks */
.checks { list-style: none; padding: 0; }
.checks li { position: relative; padding-left: 33px; margin-bottom: .7em; }
.checks li::before {
  content: ''; position: absolute; left: 0; top: .34em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A6520' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--dark .checks li::before { background-color: rgba(255,255,255,.14); }

/* --------------------------------------------------------------- gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 1; background: var(--gold-light); }
.gallery figure:nth-child(1), .gallery figure:nth-child(6) { grid-row: span 2; aspect-ratio: 1 / 2.06; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 13px; color: #fff;
  font-size: .84rem; font-weight: 700;
  background: linear-gradient(transparent, rgba(13,20,28,.82));
}

/* --------------------------------------------------------------- reviews */
.reviews { position: relative; }
.reviews__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review__stars { color: var(--red); font-size: 1.02rem; letter-spacing: 2px; margin-bottom: 14px; }
.review__star-off { color: var(--line); }
.review p { font-size: .97rem; color: var(--ink); flex: 1; }
.review__who { font-weight: 800; color: var(--ink-base); font-size: .95rem; }
.review__where { font-size: .85rem; color: var(--muted); }

/* ----------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat__num { font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat__num em { color: var(--gold-accent); font-style: normal; }
.stat__label { font-size: .95rem; color: #B0B0B0; margin-top: 10px; }

/* ------------------------------------------------------------- cta band */
.cta-band {
  background: var(--ink-base);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(38px, 5.5vw, 62px);
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 32px; align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: #CFCFCF; margin-bottom: 0; font-size: 1.06rem; }
.cta-band .btn-row { justify-content: flex-end; }

/* ------------------------------------------------------------------- faq */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: inherit;
  padding: 22px 44px 22px 0; font-size: 1.06rem; font-weight: 800; color: var(--ink); position: relative;
}
.faq__q::after {
  content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--gold); transition: transform .2s ease;
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding-bottom: 20px; margin: 0; font-size: .98rem; }
.faq__item.is-open .faq__a { max-height: 500px; }

/* ------------------------------------------------------------------ form */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: #D64545; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(27,143,163,.13);
}
.field textarea { min-height: 118px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-grid label {
  display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1.5px solid var(--line);
  border-radius: 11px; font-weight: 600; font-size: .93rem; color: var(--ink); cursor: pointer; margin: 0;
  transition: border-color .15s, background .15s;
}
.checkbox-grid label:has(input:checked) { border-color: var(--gold); background: var(--gold-light); }
.checkbox-grid input { width: auto; accent-color: var(--gold); }
.form-note { font-size: .84rem; color: var(--muted); margin: 14px 0 0; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 11px; font-weight: 700; font-size: .93rem; display: none; }
.form-status.ok   { display: block; background: #E8F7EE; color: #1B7A45; }
.form-status.err  { display: block; background: #FDECEC; color: #B32B2B; }

.contact-tile {
  display: flex; gap: 15px; align-items: flex-start; padding: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px;
}
.contact-tile__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-light); color: var(--gold-text); display: grid; place-items: center; flex-shrink: 0; }
.contact-tile__icon svg { width: 22px; height: 22px; }
.contact-tile h3 { font-size: 1rem; margin-bottom: .15em; }
.contact-tile p { margin: 0; font-size: .94rem; }
.contact-tile a { font-weight: 800; }

/* --------------------------------------------------------------- pricing */
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.price-card--featured { border: 2px solid var(--gold); box-shadow: var(--shadow); position: relative; }
.price-card__tag {
  position: absolute; top: -13px; left: 28px; background: var(--gold); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.price-card h3 { margin-bottom: .1em; }
.price-card__from { font-size: .84rem; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; font-weight: 700; }
.price-card__amt { font-size: 2.1rem; font-weight: 900; color: var(--ink-base); line-height: 1.1; margin: 4px 0 16px; letter-spacing: -.03em; }
.price-card ul { flex: 1; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink-deep); color: #8F8F8F; padding: clamp(50px, 6vw, 76px) 0 0; font-size: .94rem; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1.2em; }
.site-footer a { color: #CFCFCF; }
.site-footer a:hover { color: var(--gold-accent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .62em; }
.footer-brand .logo__name { color: #fff; }
.footer-brand .logo__tag { color: #8F8F8F; }
.footer-brand p { margin: 18px 0 16px; max-width: 300px; }
.social { display: flex; gap: 10px; }
.social a {
  width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.09);
  display: grid; place-items: center; color: #CFCFCF;
}
.social a:hover { background: var(--gold); color: #fff; }
.social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: clamp(38px, 5vw, 56px); border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .87rem;
}
.footer-area { font-size: .87rem; line-height: 1.7; color: #8F8F8F; }

/* --------------------------------------------------- sticky mobile call bar */
.mobile-bar { display: none; }

/* ----------------------------------------------------------- reveal anim */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ================================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .nav a.nav__link { padding: 10px 10px; font-size: .9rem; }
  .header-phone { display: none; }
}

@media (max-width: 940px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw); background: #fff;
    flex-direction: column; align-items: stretch; padding: 90px 22px 28px; gap: 0;
    transform: translateX(102%); transition: transform .26s ease; box-shadow: var(--shadow-lg);
    overflow-y: auto; z-index: 120;
  }
  .nav.is-open { transform: none; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav a.nav__link { padding: 14px 12px; font-size: 1.02rem; justify-content: space-between; border-radius: 10px; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 8px 14px;
    padding: 0 0 0 8px; min-width: 0; display: none;
  }
  .nav li.is-open .submenu { display: block; }
  .nav li:hover .submenu { opacity: 1; visibility: visible; }
  .nav > .btn { display: inline-flex; margin-top: 16px; width: 100%; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(13,20,28,.5); z-index: 110;
    opacity: 0; visibility: hidden; transition: .22s;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
  .header-cta .btn { display: none; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .split--flip .split__media { order: -1; }
  .reviews__track { grid-template-columns: 1fr; }
  .reviews__track .review:nth-child(n+3) { display: none; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band .btn-row { justify-content: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:nth-child(1), .gallery figure:nth-child(6) { grid-row: span 1; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar { font-size: .78rem; }
  .topbar__area { display: none; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 26px; }
  .field-row, .checkbox-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero__trust { gap: 10px 20px; }
  .logo__tag { display: none; }

  /* sticky call/text bar on phones */
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 130; box-shadow: 0 -4px 20px rgba(13,20,28,.18);
  }
  .mobile-bar a {
    padding: 15px 8px; text-align: center; font-weight: 800; font-size: .95rem; color: #fff;
    display: flex; align-items: center; justify-content: center; gap: 7px;
  }
  .mobile-bar a:first-child { background: var(--ink-base); color: #fff; }
  .mobile-bar a:last-child  { background: var(--red); color: #fff; }
  .mobile-bar svg { width: 17px; height: 17px; }
  .site-footer { padding-bottom: 66px; }
}

@media print {
  .site-header, .topbar, .mobile-bar, .site-footer, .cta-band { display: none !important; }
}


/* ============================================ SERVICE INDEX (single page) */
.svc-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.svc-chips li { margin: 0; }
.svc-chips a {
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink); font-weight: 700; font-size: .96rem;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.svc-chips a:hover { border-color: var(--gold); background: var(--gold-light); color: var(--gold-text); transform: translateY(-2px); }
.svc-chips svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }

.svc-block { padding: clamp(38px, 5vw, 56px) 0; border-top: 1px solid var(--line); scroll-margin-top: 96px; }
.svc-block:first-of-type { border-top: 0; padding-top: 0; }
.svc-block__grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.svc-block__head { position: sticky; top: 104px; }
.svc-block__n {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--gold-light); color: var(--gold-text); font-weight: 900; font-size: 1.05rem; margin-bottom: 14px;
}
.svc-block__n svg { width: 21px; height: 21px; }
.svc-block h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-bottom: .3em; }
.svc-block__tag { font-size: .88rem; color: var(--muted); font-weight: 700; }
.svc-block__body p:first-child { font-size: 1.06rem; color: var(--ink); }
.svc-block .checks { columns: 2; column-gap: 32px; margin-bottom: 0; }
.svc-block .checks li { break-inside: avoid; font-size: .95rem; }

/* ========================================================== QUOTE CALLOUT */
.quote-callout {
  background: var(--gold-light); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px); text-align: center; max-width: 780px; margin: 0 auto;
}
.quote-callout h2 { margin-bottom: .4em; }
.quote-callout p { max-width: 560px; margin-left: auto; margin-right: auto; }

@media (max-width: 940px) {
  .svc-block__grid { grid-template-columns: 1fr; gap: 18px; }
  .svc-block__head { position: static; }
  .svc-block .checks { columns: 1; }
}
@media (max-width: 620px) {
  .svc-chips a { width: 100%; justify-content: flex-start; }
}

/* ================================================== WORK CAROUSEL */
.carousel { position: relative; max-width: 900px; margin: 0 auto; }
.carousel__track {
  display: flex; list-style: none; margin: 0; padding: 0;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.carousel__slide { flex: 0 0 100%; margin: 0; min-width: 0; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; border-radius: var(--radius); overflow: hidden; }
.ba--single { grid-template-columns: 1fr; }
.ba__half { margin: 0; position: relative; aspect-ratio: 4 / 3; background: var(--gold-light); overflow: hidden; }
.ba--single .ba__half { aspect-ratio: 16 / 9; }
.ba__half img { width: 100%; height: 100%; object-fit: cover; }
.ba__tag {
  position: absolute; top: 10px; left: 10px; padding: 5px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: #fff;
}
.ba__tag--before { background: rgba(13,20,28,.82); }
.ba__tag--after  { background: var(--gold-text); }
.carousel__cap {
  text-align: center; font-size: .95rem; font-weight: 700; color: var(--ink);
  margin: 16px 0 0; min-height: 1.5em;
}

.carousel__arrow {
  position: absolute; top: calc(50% - 26px); transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,.94); color: var(--ink); cursor: pointer;
  display: grid; place-items: center; padding: 0; box-shadow: var(--shadow-sm);
  transition: background .15s ease, transform .15s ease;
}
.carousel__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.carousel__arrow svg { width: 21px; height: 21px; }
.carousel__arrow--prev { left: -22px; }
.carousel__arrow--next { right: -22px; }

.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.carousel__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--line); transition: background .2s ease, width .2s ease;
}
.carousel__dot.is-active { background: var(--gold); width: 26px; border-radius: 99px; }

@media (max-width: 760px) {
  .carousel__arrow--prev { left: 4px; }
  .carousel__arrow--next { right: 4px; }
  .ba { gap: 4px; }
  .ba__tag { font-size: .64rem; padding: 4px 9px; top: 7px; left: 7px; }
  .carousel__cap { font-size: .88rem; }
}
@media (prefers-reduced-motion: reduce) {
  .carousel__track { transition: none; }
}


/* ============================================ HOMEPAGE AUDIENCE FORK */
.fork { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fork__card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 380px; border-radius: var(--radius-lg); overflow: hidden;
  color: #fff; padding: 34px; isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fork__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.fork__card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .5s ease;
}
.fork__card:hover img { transform: scale(1.05); }
.fork__card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,10,10,.92) 12%, rgba(10,10,10,.55) 55%, rgba(10,10,10,.28) 100%);
}
.fork__eyebrow {
  font-size: .74rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-accent); margin-bottom: 10px;
}
.fork__card h3 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: .35em; }
.fork__card p { color: #D8D8D8; font-size: .97rem; margin-bottom: 1.1em; }
.fork__list { list-style: none; padding: 0; margin: 0 0 20px; font-size: .92rem; color: #CFCFCF; }
.fork__list li { margin-bottom: .3em; padding-left: 18px; position: relative; }
.fork__list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.fork__go {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: #fff; font-size: .96rem;
}
.fork__go::after { content: '\2192'; transition: transform .18s ease; }
.fork__card:hover .fork__go::after { transform: translateX(5px); }

/* ------------------------------------------------- supporting note block */
.note-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px);
  align-items: center; background: var(--gold-light); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
}
.note-block img { border-radius: var(--radius); width: 100%; }
.note-block h3 { margin-bottom: .4em; }
.note-block p:last-of-type { margin-bottom: 0; }

@media (max-width: 820px) {
  .fork { grid-template-columns: 1fr; }
  .fork__card { min-height: 320px; }
  .note-block { grid-template-columns: 1fr; }
}


/* ================================================ CONTACT FORM BRANCHING */
.toggle-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.toggle-opt { margin: 0; cursor: pointer; }
.toggle-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-opt span {
  display: flex; align-items: center; justify-content: center; gap: 9px; text-align: center;
  padding: 15px 12px; border: 1.5px solid var(--line); border-radius: 12px;
  font-weight: 700; font-size: .93rem; color: var(--ink); line-height: 1.3;
  transition: border-color .15s ease, background .15s ease;
}
.toggle-opt span svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; }
.toggle-opt:hover span { border-color: var(--gold); }
.toggle-opt input:checked + span { border-color: var(--gold); background: var(--gold-light); }
.toggle-opt input:checked + span svg { color: var(--gold-text); }
.toggle-opt input:focus-visible + span { outline: 3px solid var(--red); outline-offset: 2px; }
[data-only] { display: none; }
[data-only].is-shown { display: block; }
.field-row [data-only].is-shown { display: block; }

@media (max-width: 620px) {
  .toggle-row { grid-template-columns: 1fr; }
}


/* ================================================= UTILITY BAR (top right) */
.topbar .wrap { gap: 10px; }
.topbar__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.topbar__links a {
  padding: 5px 12px; border-radius: 999px; font-weight: 700; font-size: .83rem; color: #DEDEDE;
  display: inline-flex; align-items: center; gap: 6px; transition: background .15s ease, color .15s ease;
}
.topbar__links a:hover { background: rgba(255,255,255,.12); color: #fff; }
.topbar__links a.is-key { border: 1px solid rgba(255,255,255,.28); }
.topbar__links svg { width: 15px; height: 15px; }
.topbar__sep { width: 1px; height: 16px; background: rgba(255,255,255,.2); margin: 0 4px; }

/* ============================================================ VIDEO HERO */
.hero--video { padding: 0; min-height: min(88vh, 780px); display: flex; align-items: flex-end; }
.hero--video .hero__bg video,
.hero--video .hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55;
}
.hero--video::after {
  background: linear-gradient(to top, rgba(10,10,10,.93) 8%, rgba(10,10,10,.55) 52%, rgba(10,10,10,.35) 100%);
}
.hero--video .wrap { padding-top: 90px; padding-bottom: clamp(52px, 7vw, 96px); }
.hero--video .hero__inner { max-width: 900px; }
.hero__slogan {
  color: #fff; font-weight: 800; line-height: 1.04; letter-spacing: -.04em;
  font-size: clamp(2.4rem, 7vw, 5rem); margin: 0 0 .4em;
}
.hero__slogan em { font-style: normal; color: var(--gold-accent); display: block; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.72); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.scroll-cue span { width: 1px; height: 26px; background: rgba(255,255,255,.45); animation: cue 1.9s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ==================================== BEFORE / AFTER DRAG REVEAL SLIDER */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius); background: var(--ink-base); user-select: none;
  touch-action: pan-y; cursor: ew-resize;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.ba-slider__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px;
  background: #fff; transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 14px rgba(0,0,0,.55);
}
.ba-slider__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink);
  display: grid; place-items: center; box-shadow: 0 3px 14px rgba(0,0,0,.4);
}
.ba-slider__grip svg { width: 22px; height: 22px; }
.ba-slider__tag {
  position: absolute; top: 12px; padding: 5px 13px; border-radius: 999px; color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; pointer-events: none;
}
.ba-slider__tag--before { left: 12px; background: rgba(10,10,10,.8); }
.ba-slider__tag--after  { right: 12px; background: var(--red); }
.ba-slider:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.ba-slider__hint {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  background: rgba(10,10,10,.72); color: #fff; font-size: .74rem; font-weight: 700;
  padding: 5px 13px; border-radius: 999px; pointer-events: none; transition: opacity .3s ease;
}
.ba-slider.is-touched .ba-slider__hint { opacity: 0; }

.svc-block__media { margin-top: 22px; }
.svc-block__media figcaption { font-size: .85rem; color: var(--muted); margin-top: 9px; }

/* ------------------------------------------------------- meeting options */
.meet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.meet-opt { margin: 0; cursor: pointer; }
.meet-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.meet-opt span {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  padding: 18px 12px; border: 1.5px solid var(--line); border-radius: 12px;
  font-weight: 700; font-size: .9rem; color: var(--ink); transition: border-color .15s, background .15s;
}
.meet-opt span svg { width: 24px; height: 24px; color: var(--muted); }
.meet-opt span small { display: block; font-weight: 500; font-size: .78rem; color: var(--muted); }
.meet-opt:hover span { border-color: var(--gold); }
.meet-opt input:checked + span { border-color: var(--gold); background: var(--gold-light); }
.meet-opt input:checked + span svg { color: var(--gold-text); }

/* ---------------------------------------------------- grouped checkboxes */
.svc-group { margin-bottom: 20px; }
.svc-group__label {
  display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 11px;
}
.svc-group__label svg { width: 17px; height: 17px; }

@media (max-width: 620px) {
  .topbar .wrap { flex-wrap: wrap; justify-content: center; }
  .topbar__links { margin: 0 auto; }
  .meet-grid { grid-template-columns: 1fr; }
  .meet-opt span { flex-direction: row; justify-content: flex-start; text-align: left; padding: 14px; }
  .logo__mark { height: 48px; }
  .hero--video { min-height: 74vh; }
}


/* ==========================================================================
   FLOW LAYOUT
   One continuous light page. No background changes, no boxes, no bands.
   Separation comes from whitespace and hairlines instead.
   ========================================================================== */

.flow { background: var(--bg); }
.flow .section { padding: clamp(60px, 9vw, 130px) 0; }
.flow .section + .section { padding-top: 0; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* opening statement, left aligned and large */
.statement { max-width: 940px; }
.statement p:first-child {
  font-size: clamp(1.4rem, 3vw, 2.15rem); line-height: 1.32; color: var(--ink);
  font-weight: 600; letter-spacing: -.02em; margin-bottom: .8em;
}
.statement p { font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 700px; }

/* section heading, left aligned by default now */
.head-left { max-width: 760px; margin-bottom: clamp(34px, 4vw, 54px); }
.head-left h2 { margin-bottom: .3em; }
.head-left p { margin-bottom: 0; font-size: clamp(1.02rem, 1.4vw, 1.15rem); }

/* ------------------------------------------- alternating service sections */
.svc-flow {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 80px); align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
}
.svc-flow + .svc-flow { border-top: 1px solid var(--line); }
.svc-flow__body { min-width: 0; }
.svc-flow__body h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .35em; }
.svc-flow__lead { font-size: clamp(1.05rem, 1.5vw, 1.18rem); color: var(--ink); }
.svc-flow .checks { columns: 2; column-gap: 30px; margin: 1.4em 0 1.6em; }
.svc-flow .checks li { break-inside: avoid; font-size: .95rem; }
.svc-flow__media { min-width: 0; }
.svc-flow__media img,
.svc-flow__media .ba-slider { width: 100%; display: block; }

/* let the image run off the edge of the screen */
.bleed-r { margin-right: calc(50% - 50vw); }
.bleed-l { margin-left: calc(50% - 50vw); }
.svc-flow--flip .svc-flow__media { order: -1; }

.svc-flow__link {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 800;
  color: var(--ink); font-size: .98rem; border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}
.svc-flow__link::after { content: '\2192'; transition: transform .18s ease; }
.svc-flow__link:hover { color: var(--gold-text); }
.svc-flow__link:hover::after { transform: translateX(5px); }

/* ------------------------------------------------ process, no cards at all */
.flow-steps { max-width: 940px; }
.flow-step {
  display: grid; grid-template-columns: 96px 1fr; gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3vw, 34px) 0; border-top: 1px solid var(--line); align-items: start;
}
.flow-step:last-child { border-bottom: 1px solid var(--line); }
.flow-step__n {
  font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; line-height: .9;
  color: var(--line); letter-spacing: -.04em;
}
.flow-step h3 { margin-bottom: .25em; }
.flow-step p { margin: 0; font-size: .99rem; max-width: 620px; }

/* ------------------------------------------------------ borderless reviews */
.review--plain {
  background: none; border: 0; box-shadow: none; padding: 0;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.review--plain p { font-size: .98rem; }

/* -------------------------------------------------------- meeting options */
.meet-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.meet-flow__item { border-top: 2px solid var(--ink); padding-top: 20px; }
.meet-flow__item svg { width: 26px; height: 26px; color: var(--gold-text); margin-bottom: 12px; }
.meet-flow__item h3 { margin-bottom: .3em; }
.meet-flow__item p { font-size: .95rem; margin: 0; }

/* ------------------------------------------------------------- inline form */
.form-flow { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.form-flow .form-card { background: none; border: 0; box-shadow: none; padding: 0; }
.form-flow .contact-tile { border: 0; border-top: 1px solid var(--line); border-radius: 0; padding: 20px 0; }
.form-flow .contact-tile__icon { background: none; color: var(--gold-text); width: 30px; height: 30px; }

/* ------------------------------------------------------- quieter carousel */
.flow .carousel { max-width: none; }
.flow .carousel__cap { text-align: left; font-weight: 600; color: var(--body); }
.flow .ba { border-radius: 0; }

@media (max-width: 900px) {
  .svc-flow, .form-flow { grid-template-columns: 1fr; }
  .svc-flow--flip .svc-flow__media { order: 0; }
  .svc-flow .checks { columns: 1; }
  .bleed-r, .bleed-l { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
  .meet-flow { grid-template-columns: 1fr; gap: 0; }
  .meet-flow__item { border-top: 1px solid var(--line); padding: 22px 0; }
  .meet-flow__item:first-child { border-top: 2px solid var(--ink); }
  .flow-step { grid-template-columns: 58px 1fr; }
}

.cta-flow {
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: center;
}
.cta-flow .btn-row { justify-content: flex-end; }
@media (max-width: 820px) {
  .cta-flow { grid-template-columns: 1fr; }
  .cta-flow .btn-row { justify-content: flex-start; }
}


/* ==========================================================================
   JUSTIFIED BODY COPY
   Justification is applied only where the column is wide enough to carry it.
   On a narrow phone column, justified text without hyphenation opens large
   gaps between words, so below 760px everything reverts to ragged right.
   ========================================================================== */
@media (min-width: 761px) {
  .justify,
  .svc-flow__body > p,
  .svc-block__body > p,
  .statement p,
  .faq__a p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  /* the opening line of a section stays ragged so it reads as a lead, not a block */
  .svc-flow__lead, .statement p:first-of-type { text-align: left; hyphens: manual; }
}

/* ------------------------------------------------- formal step numbering */
.flow-step__n {
  font-size: clamp(.72rem, 1vw, .78rem);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-text);
  line-height: 1.5;
  padding-top: .35em;
}
.flow-step { grid-template-columns: 132px 1fr; }
@media (max-width: 760px) {
  .flow-step { grid-template-columns: 1fr; gap: 6px; }
  .flow-step__n { padding-top: 0; }
}


/* ================================================= HERO BUTTON SPACING */
/* The call link sat too close to the primary button, so the two competed.
   A wide gap on desktop, and a rule between them once they stack. */
.hero .btn-row { gap: 18px 40px; align-items: center; }
@media (max-width: 620px) {
  .hero .btn-row { gap: 14px; }
  .hero .btn-row .btn--ghost-light { margin-top: 4px; }
}

/* ============================================ KEYS TO SUCCESS SLIDER
   A full bleed photographic panel rather than a flat colour band. A photo
   reads as a moment in the page; a grey rectangle reads as an interruption.
   ==================================================================== */
.keys {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw);
  min-height: min(78vh, 660px); overflow: hidden; background: var(--ink-deep);
  display: flex; align-items: flex-end; isolation: isolate;
}
.keys__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease;
  pointer-events: none;
}
.keys__slide.is-active { opacity: 1; pointer-events: auto; }
.keys__slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); transition: transform 7s ease;
}
.keys__slide.is-active img { transform: scale(1); }
.keys__slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.9) 6%, rgba(10,10,10,.55) 48%, rgba(10,10,10,.25) 100%);
}
.keys__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--wrap);
  margin: 0 auto; padding: clamp(56px,8vw,110px) 24px clamp(64px,7vw,86px);
}
.keys__text {
  max-width: 620px; opacity: 0; pointer-events: none;
  transition: opacity .7s ease;
}
.keys__text.is-active { opacity: 1; pointer-events: auto; }
.keys__eyebrow {
  display: block; font-size: .76rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.keys__title {
  color: var(--gold-accent); font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  font-size: clamp(2rem, 4.6vw, 3.5rem); margin: 0 0 .55em;
}
.keys__body { color: #fff; font-size: clamp(1rem, 1.5vw, 1.16rem); margin: 0; line-height: 1.65; }
.keys__panel {
  position: relative; z-index: 3; width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: 0 24px clamp(26px,3vw,38px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.keys__count { color: #fff; font-size: .92rem; font-weight: 700; letter-spacing: .06em; }
.keys__nav { display: flex; gap: 10px; }
.keys__nav button {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .18s ease, border-color .18s ease;
}
.keys__nav button:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.keys__nav svg { width: 22px; height: 22px; }
.keys-wrap { position: relative; }
.keys-stack { position: relative; display: grid; }
.keys-stack > * { grid-area: 1 / 1; }

@media (max-width: 620px) {
  .keys { min-height: 74vh; }
  .keys__nav button { width: 44px; height: 44px; }
}
