:root {
  --ink: #15164f;
  --ink-2: #202468;
  --cream: #f1f4fa;
  --paper: #fbfcff;
  --white: #fff;
  --red: #d71928;
  --red-dark: #b8111f;
  --sage: #9eb5d4;
  --muted: #60697d;
  --line: #d9deea;
  --shadow: 0 22px 70px rgba(21, 22, 79, .14);
  --radius: 20px;
  --container: min(1180px, calc(100vw - 48px));
  --font-body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-wordmark: "Avenir Next Condensed", "DIN Condensed", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
body.menu-open .site-header.is-sticky { backdrop-filter: none !important; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }

.container { width: var(--container); margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid #f0606b; outline-offset: 3px; }

.topbar {
  color: rgba(255,255,255,.82);
  background: #0d0f3a;
  font-size: 14px;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar__links { display: flex; gap: 12px; align-items: center; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 36px;
  width: 100%;
  color: var(--ink);
  background: rgba(251,252,255,.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  color: var(--ink);
  background: rgba(251,252,255,.98);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(21,22,79,.12);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Keep navigation first visually while the JT brand anchors the right edge. */
.nav-wrap > .brand { order: 2; margin-left: auto; }
.nav-wrap > .site-nav,
.nav-wrap > .sub-nav,
.nav-wrap > .text-link,
.nav-wrap > .menu-toggle { order: 1; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  line-height: 1;
}

.brand img { flex: 0 0 auto; width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(21,22,79,.18)); }
.brand img.brand__mark { width: 58px; height: 52px; filter: none; }
.brand__wordmark { width: 195px; min-width: 0; display: grid; gap: 5px; color: #171858; font-family: var(--font-body); line-height: 1; white-space: nowrap; }
.brand__wordmark strong { display: block; font-size: 15px; font-weight: 500; letter-spacing: .015em; text-transform: uppercase; }
.brand__wordmark small { display: block; color: #4b84bb; font-size: 9px; font-weight: 500; letter-spacing: .09em; }
.brand--footer .brand__wordmark { color: var(--white); }
.brand--footer .brand__wordmark small { color: #a9c7e1; }

.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 40px); }
.site-nav > a { font-size: 15px; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav > a:hover::after { transform: scaleX(1); }
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(215,25,40,.22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 16px 34px rgba(215,25,40,.28); }
.button--small { min-height: 42px; padding: 0 19px; font-size: 13px; }
.button--outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.55); box-shadow: none; }
.button--outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__image, .hero__shade { position: absolute; inset: 0; }
.hero__image {
  background-image: url("assets/project-6.webp");
  background-size: cover;
  background-position: center 62%;
  transform: scale(1.01);
}
.hero__shade {
  background:
    linear-gradient(90deg, rgba(10,11,48,.94) 0%, rgba(18,20,73,.78) 42%, rgba(18,20,73,.16) 76%),
    linear-gradient(0deg, rgba(10,11,48,.72), transparent 38%);
}
.photo-watermark,
.gallery-card::before,
.page-hero--image::after,
.case-gallery figure::after {
  position: absolute;
  z-index: 4;
  padding: 5px 8px;
  color: rgba(255,255,255,.94);
  background: rgba(9,10,45,.58);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .045em;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
  pointer-events: none;
}
.hero__watermark { top: 120px; right: max(24px, calc((100vw - var(--container)) / 2)); }

.hero__content { position: relative; z-index: 2; padding-top: 80px; }
.hero__content h1 {
  max-width: 820px;
  margin: 17px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.04em;
}
.hero__content h1 em { color: #dce4f4; font-style: normal; font-weight: 450; }
.hero__lead { max-width: 610px; margin: 0; color: rgba(255,255,255,.82); font-size: clamp(18px, 1.7vw, 20px); line-height: 1.55; }
.hero__actions { margin-top: 36px; display: flex; align-items: center; gap: 30px; }

.eyebrow {
  margin: 0;
  color: #b8c9e6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--red); }

.text-link { display: inline-block; color: var(--ink); font-weight: 800; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.text-link--light { color: var(--white); }
.text-link:hover { color: var(--red); }

.trust-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(20,22,76,.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.14);
  border-right: 1px solid rgba(255,255,255,.14);
}
.trust-strip > div { min-height: 112px; padding: 25px 28px; display: flex; gap: 18px; align-items: flex-start; border-left: 1px solid rgba(255,255,255,.14); }
.trust-strip span { color: #b8c9e6; font-size: 12px; font-weight: 900; }
.trust-strip p { margin: 0; color: rgba(255,255,255,.73); font-size: 14px; line-height: 1.45; }
.trust-strip strong { display: block; color: var(--white); font-size: 16px; }

.audience { padding: 44px 0 92px; background: var(--cream); }
.audience__heading { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.audience__heading h2 { margin: 8px 0 0; font-family: var(--font-display); font-size: clamp(34px, 3.5vw, 48px); font-weight: 600; line-height: 1.08; letter-spacing: -.035em; }
.audience-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 14px; }
.audience-card { min-height: 335px; padding: 30px; display: flex; flex-direction: column; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.audience-card--dark { color: var(--white); background: var(--ink-2); border-color: var(--ink-2); }
.audience-card > span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.audience-card--dark > span { color: #b8c9e6; }
.audience-card h3 { margin: 35px 0 14px; font-family: var(--font-display); font-size: 25px; font-weight: 600; line-height: 1.15; }
.audience-card p { margin: 0; color: var(--muted); font-size: 15px; }
.audience-card--dark p { color: rgba(255,255,255,.64); }
.audience-card strong { margin-top: auto; padding-top: 24px; font-size: 14px; }
.audience-card i { margin-left: 7px; font-style: normal; }

.section { padding: 118px 0; }
.section h2 { margin: 12px 0 0; font-family: var(--font-display); font-size: clamp(36px, 3.8vw, 50px); font-weight: 650; line-height: 1.1; letter-spacing: -.03em; }

.intro { background: var(--cream); }
.intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: start; }
.intro__copy { max-width: 570px; padding-top: 30px; }
.intro__copy p { color: var(--muted); }
.intro__copy .lead { margin-top: 0; color: var(--ink); font-size: 20px; line-height: 1.55; }
.intro__copy .text-link { margin-top: 15px; }

.services { background: var(--paper); }
.section-heading { margin-bottom: 56px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.section-heading > p { max-width: 420px; margin: 0 0 7px auto; color: var(--muted); font-size: 17px; }
.section-heading--compact { margin-bottom: 44px; }

.service-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; }
.service-card {
  min-height: 470px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--cream);
  border: 1px solid #dfe4ef;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card--featured { color: var(--white); background: var(--ink-2); border-color: var(--ink-2); }
.service-card__number { width: 44px; height: 44px; display: grid; place-items: center; color: var(--red); background: var(--white); border-radius: 50%; font-size: 12px; font-weight: 900; }
.service-card h3 { margin: 0 0 16px; font-family: var(--font-display); font-size: 27px; font-weight: 600; line-height: 1.14; }
.service-card p { color: var(--muted); }
.service-card--featured p { color: rgba(255,255,255,.67); }
.service-card ul { margin: 24px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid rgba(96,105,125,.25); }
.service-card--featured ul { border-color: rgba(255,255,255,.14); }
.service-card li { position: relative; padding: 5px 0 5px 18px; font-size: 14px; font-weight: 700; }
.service-card li::before { content: ""; position: absolute; top: 14px; left: 0; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

.standards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.standards > div { min-height: 150px; padding: 25px; border-left: 1px solid var(--line); }
.standards > div:first-child { border-left: 0; }
.standards strong, .standards span { display: block; }
.standards strong { margin-bottom: 8px; font-family: var(--font-display); font-size: 19px; font-weight: 500; }
.standards span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-hub-link { margin-top: 28px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.service-hub-link p { margin: 0; color: var(--muted); }

.project-info { background: var(--white); }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.info-grid article { min-height: 305px; padding: 28px; border-left: 1px solid var(--line); }
.info-grid article:first-child { border-left: 0; }
.info-grid span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .11em; }
.info-grid h3 { margin: 66px 0 12px; font-family: var(--font-display); font-size: 24px; font-weight: 500; line-height: 1.1; }
.info-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.info-note { margin-top: 18px; padding: 24px 26px; display: grid; grid-template-columns: .45fr 1.55fr; gap: 35px; background: var(--cream); border-left: 3px solid var(--red); }
.info-note strong { font-family: var(--font-display); font-size: 20px; font-weight: 500; }
.info-note p { margin: 0; color: var(--muted); }

.work { background: var(--cream); }
.gallery-toolbar { margin: -12px 0 26px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  border: 1px solid #cfd5e2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.filter-button:hover, .filter-button.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.gallery-count { margin-left: auto; color: var(--muted); font-size: 13px; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-card {
  position: relative;
  grid-column: span 5;
  height: 520px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  text-align: left;
}
.gallery-card--wide { grid-column: span 7; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .3s ease; }
.gallery-card::before { content: "JT Interior Construction Corp."; top: 14px; right: 14px; }
.gallery-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(10,11,48,.88)); }
.gallery-card > span { position: absolute; z-index: 2; right: 28px; bottom: 24px; left: 28px; }
.gallery-card strong, .gallery-card small { display: block; }
.gallery-card strong { font-family: var(--font-display); font-size: 25px; font-weight: 600; }
.gallery-card small { color: rgba(255,255,255,.72); font-size: 13px; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card:focus-visible img { opacity: .8; }
.case-study-link { margin-top: 22px; padding: 24px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #cfd5e2; }
.case-study-link span, .case-study-link strong { display: block; }
.case-study-link span { color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.case-study-link strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; }

.process { color: var(--white); background: var(--ink); }
.process__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.process__intro { position: sticky; top: 140px; align-self: start; }
.process__intro > p:not(.eyebrow) { max-width: 430px; color: rgba(255,255,255,.65); font-size: 17px; }
.process__intro .button { margin-top: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { padding: 32px 0; display: grid; grid-template-columns: 70px 1fr; gap: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list > li > span { color: #b8c9e6; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.process-list h3 { margin: -7px 0 7px; font-family: var(--font-display); font-size: 27px; font-weight: 600; }
.process-list p { margin: 0; color: rgba(255,255,255,.6); }

.coverage { overflow: hidden; background: var(--cream); }
.coverage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: center; }
.coverage__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(rgba(21,22,79,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,22,79,.055) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.coverage__ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(215,25,40,.35); border-radius: 50%; transform: translate(-50%, -50%); }
.coverage__ring--one { width: 245px; height: 245px; background: rgba(215,25,40,.05); }
.coverage__ring--two { width: 410px; height: 410px; }
.coverage__pin { position: absolute; z-index: 2; top: 50%; left: 50%; width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: var(--red); border: 7px solid rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 14px 30px rgba(21,22,79,.22); font-size: 13px; font-weight: 900; transform: translate(-50%, -50%); }
.coverage__label { position: absolute; padding: 6px 10px; color: var(--ink); background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 7px; box-shadow: 0 7px 20px rgba(21,22,79,.08); font-size: 12px; font-weight: 800; }
.coverage__label--north { top: 19%; left: 39%; }
.coverage__label--east { top: 41%; right: 10%; }
.coverage__label--south { right: 30%; bottom: 14%; }
.coverage__label--west { top: 48%; left: 7%; }
.coverage__label--barrie { top: 6%; left: 20%; }
.coverage__label--burlington { bottom: 24%; left: 12%; }
.coverage__label--hamilton { bottom: 8%; left: 17%; }
.coverage__label--kitchener { right: 8%; bottom: 5%; }
.coverage .lead { max-width: 510px; color: var(--muted); font-size: 18px; }
.area-list { margin: 28px 0; display: flex; gap: 9px; flex-wrap: wrap; }
.area-list span { padding: 7px 12px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 8px; font-size: 14px; font-weight: 700; }

.faq { background: var(--paper); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; align-items: start; }
.faq__intro { position: sticky; top: 140px; }
.faq__intro > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--ink); font-family: var(--font-display); font-size: 20px; font-weight: 600; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; color: var(--red); border: 1px solid var(--line); border-radius: 50%; font-family: ui-sans-serif, sans-serif; transition: transform .2s ease, color .2s ease, background .2s ease; }
.accordion details[open] summary span { color: var(--white); background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.accordion details p { max-width: 670px; margin: -4px 48px 25px 0; color: var(--muted); }

.quote { background: var(--paper); }
.quote__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; align-items: start; }
.quote__intro { position: sticky; top: 140px; }
.quote__intro > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.contact-card { margin-top: 36px; padding: 24px 26px; display: flex; flex-direction: column; background: var(--cream); border-left: 3px solid var(--red); }
.contact-card span, .contact-card small { color: var(--muted); font-size: 13px; }
.contact-card a { margin: 4px 0; font-family: var(--font-display); font-size: 24px; text-decoration: none; }

.planner { padding: 44px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.planner fieldset { margin: 0 0 38px; padding: 0 0 38px; border: 0; border-bottom: 1px solid var(--line); }
.planner legend { width: 100%; margin-bottom: 20px; color: var(--ink); font-size: 18px; font-weight: 850; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice-grid label { position: relative; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid span { min-height: 54px; padding: 12px 16px; display: flex; align-items: center; color: var(--muted); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; font-weight: 700; transition: all .2s ease; }
.choice-grid input:checked + span { color: var(--white); background: var(--ink-2); border-color: var(--ink-2); }
.choice-grid input:focus-visible + span { outline: 3px solid #f0606b; outline-offset: 2px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.planner label:not(.choice-grid label) { display: grid; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 750; }
.planner select, .planner textarea, .planner input:not([type="radio"]):not([type="hidden"]) { width: 100%; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.planner select, .planner input:not([type="radio"]):not([type="hidden"]) { min-height: 52px; padding: 0 14px; }
.planner textarea { padding: 14px; resize: vertical; }
.planner-preview { margin: -12px 0 24px; padding: 18px; display: grid; gap: 3px; background: #eef2f8; border-left: 3px solid var(--sage); border-radius: 0 10px 10px 0; }
.planner-preview span { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.planner-preview strong { font-size: 15px; }
.planner-preview small { color: var(--muted); }
.planner-preview a, .form-privacy a { color: inherit; text-underline-offset: 3px; }
.planner__submit { width: 100%; border: 0; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.form-note.is-success, .portal-note.is-success { color: #17623c; font-weight: 800; }
.form-note.is-error, .portal-note.is-error { color: #a3212b; font-weight: 800; }
.form-trap { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

.footer { padding: 74px 0 24px; color: rgba(255,255,255,.72); background: #0d0f3a; }
.footer__grid { display: grid; grid-template-columns: 1.2fr .75fr .8fr .7fr; gap: clamp(28px, 3vw, 48px); }
.brand--footer { color: var(--white); box-shadow: none; }
.brand--footer .footer__logo { width: min(100%, 330px); height: auto; filter: none; }
.footer__grid > div:first-child > p { max-width: 390px; }
.footer h3 { margin: 0 0 15px; color: var(--white); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer__grid > div > a { display: block; margin: 5px 0; text-decoration: none; }
.footer__grid > div:not(:first-child) > a { overflow-wrap: anywhere; }
.footer a:hover { color: var(--white); }
.footer address { font-style: normal; }
.socials { margin-top: 18px; display: flex; gap: 18px; }
.socials a { text-underline-offset: 4px; }
.footer__bottom { margin-top: 60px; padding-top: 20px; display: flex; gap: 24px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.footer__legal { display: flex; gap: 18px; }

.lightbox {
  position: relative;
  width: min(860px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #0b0c2e;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.lightbox__watermark { right: 16px; bottom: 60px; }
.lightbox::backdrop { background: rgba(7,8,35,.84); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100vh - 120px); object-fit: contain; }
.lightbox p { margin: 0; padding: 15px 20px; }
.lightbox__close { position: absolute; z-index: 3; top: 12px; right: 12px; width: 42px; height: 42px; color: var(--white); background: rgba(7,8,35,.74); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 26px; line-height: 1; }

.mobile-cta { display: none; }

.assistant-launch { position: fixed; z-index: 75; right: 24px; bottom: 24px; min-height: 50px; padding: 0 19px 0 10px; display: flex; align-items: center; gap: 9px; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; box-shadow: 0 15px 38px rgba(21,22,79,.25); font-size: 13px; font-weight: 850; }
.assistant-launch > span { width: 32px; height: 32px; display: grid; place-items: center; color: var(--ink); background: var(--white); border-radius: 50%; font-family: var(--font-display); font-size: 18px; }
.assistant-panel { position: fixed; z-index: 79; right: 24px; bottom: 88px; width: min(380px, calc(100vw - 32px)); max-height: min(570px, calc(100vh - 115px)); overflow: hidden; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 25px 80px rgba(21,22,79,.28); }
.assistant-panel[hidden] { display: none; }
.assistant-panel__header { min-height: 76px; padding: 15px 16px 15px 20px; display: flex; align-items: center; justify-content: space-between; color: var(--white); background: var(--ink); }
.assistant-panel__header strong, .assistant-panel__header span { display: block; }
.assistant-panel__header span { color: rgba(255,255,255,.58); font-size: 11px; }
.assistant-close { width: 38px; height: 38px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 23px; line-height: 1; }
.assistant-messages { height: 250px; padding: 18px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; }
.assistant-message { max-width: 88%; padding: 11px 13px; border-radius: 13px; font-size: 13px; line-height: 1.45; }
.assistant-message--bot { align-self: flex-start; color: var(--ink); background: var(--cream); border-bottom-left-radius: 3px; }
.assistant-message--user { align-self: flex-end; color: var(--white); background: var(--red); border-bottom-right-radius: 3px; }
.assistant-message a { display: block; margin-top: 7px; color: inherit; font-weight: 850; text-underline-offset: 3px; }
.assistant-suggestions { padding: 0 16px 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.assistant-suggestions button { min-height: 34px; padding: 0 11px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 800; }
.assistant-suggestions button:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.assistant-form { margin: 0 16px; display: grid; grid-template-columns: 1fr 42px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.assistant-form input { min-width: 0; min-height: 44px; padding: 0 12px; background: var(--white); border: 0; outline: 0; font-size: 14px; }
.assistant-form button { color: var(--white); background: var(--red); border: 0; font-size: 18px; }
.assistant-privacy { margin: 8px 16px 13px; color: var(--muted); font-size: 11px; text-align: center; }

.legal-page { background: var(--cream); }
.legal-header { color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-content { max-width: 780px; padding-top: 100px; padding-bottom: 120px; }
.legal-content h1, .error-content h1 { margin: 10px 0 25px; font-family: var(--font-display); font-size: clamp(40px, 5vw, 62px); font-weight: 650; line-height: 1.06; letter-spacing: -.03em; }
.legal-content h2 { margin: 48px 0 10px; font-family: var(--font-display); font-size: 25px; font-weight: 600; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--ink); font-weight: 750; }
.legal-lead { font-size: 18px; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; color: var(--white); background: var(--ink); }
.error-content { max-width: 720px; text-align: center; }
.error-content img { margin: 0 auto 28px; }
.error-content h1 { font-size: clamp(42px, 7vw, 72px); }
.error-content > p:not(.eyebrow) { margin: 0 auto 30px; color: rgba(255,255,255,.66); font-size: 18px; }

.subpage { background: var(--paper); }
.sub-header, .legal-header { position: relative; z-index: 30; }
.sub-header { color: var(--ink); background: rgba(251,252,255,.96); border-bottom: 1px solid var(--line); }
.sub-header .nav-wrap { min-height: 82px; }
.sub-nav { display: flex; align-items: center; gap: 26px; }
.sub-nav a { font-size: 13px; font-weight: 800; text-decoration: none; }
.sub-nav a:hover { color: var(--red); }
.breadcrumb { margin-bottom: 24px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 750; letter-spacing: .04em; }
.breadcrumb a { color: inherit; text-underline-offset: 3px; }
.page-hero { padding: 100px 0 92px; color: var(--white); background: var(--ink); }
.page-hero--image { position: relative; min-height: 630px; display: grid; align-items: end; overflow: hidden; }
.page-hero--image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,48,.92), rgba(18,20,73,.24)), var(--hero-image) center/cover; }
.page-hero--image::after { content: "JT Interior Construction Corp."; top: 18px; right: max(20px, calc((100vw - var(--container)) / 2)); }
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { max-width: 930px; margin: 10px 0 22px; font-family: var(--font-display); font-size: clamp(40px, 5vw, 62px); font-weight: 650; line-height: 1.06; letter-spacing: -.035em; }
.page-hero__lead { max-width: 680px; margin: 0; color: rgba(255,255,255,.7); font-size: 18px; }
.page-hero__actions { margin-top: 32px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.page-section { padding: 95px 0; }
.page-section--cream { background: var(--cream); }
.page-section--ink { color: var(--white); background: var(--ink); }
.page-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; align-items: start; }
.page-grid h2, .page-section__heading h2 { margin: 10px 0 18px; font-family: var(--font-display); font-size: clamp(34px, 3.8vw, 48px); font-weight: 650; line-height: 1.1; letter-spacing: -.03em; }
.page-copy { color: var(--muted); font-size: 16px; }
.page-copy .lead { color: var(--ink); font-size: 19px; }
.about-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: start; }
.about-profile { position: relative; margin: 0; overflow: hidden; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.about-profile__watermark { top: 14px; right: 14px; }
.about-profile__photo { width: 100%; height: 520px; object-fit: cover; object-position: 50% 30%; background: var(--ink); }
.about-profile figcaption { padding: 25px 28px 30px; }
.about-profile span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.about-profile h2 { margin: 7px 0 2px; font-family: var(--font-display); font-size: 30px; font-weight: 650; }
.about-profile p { margin: 0; color: var(--muted); }
.about-heading { max-width: 780px; margin-bottom: 38px; }
.about-heading > p:last-child { color: var(--muted); font-size: 18px; }
.about-properties .page-step h3 { margin-top: 34px; }
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.scope-card { padding: 25px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.scope-card strong { display: block; margin-bottom: 6px; font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.scope-card span { color: var(--muted); font-size: 14px; }
.page-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.15); }
.page-step { min-height: 225px; padding: 28px; background: var(--ink); }
.page-step > span { color: #b8c9e6; font-size: 12px; font-weight: 900; letter-spacing: .11em; }
.page-step h3 { margin: 48px 0 8px; font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.page-step p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.page-cta { padding: 65px 0; background: var(--red); color: var(--white); }
.page-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.page-cta h2 { max-width: 750px; margin: 0; font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 44px); font-weight: 600; line-height: 1.08; }
.page-cta .button { color: var(--ink); background: var(--white); border-color: var(--white); box-shadow: none; }
.page-footer { padding: 30px 0; color: rgba(255,255,255,.68); background: #0d0f3a; font-size: 13px; }
.page-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.page-footer a { color: var(--white); }
.notice-box { padding: 22px; color: var(--muted); background: #eef2f8; border-left: 3px solid var(--sage); }
.notice-box strong { color: var(--ink); }
.prep-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.prep-list li { position: relative; padding: 17px 8px 17px 30px; color: var(--muted); border-bottom: 1px solid var(--line); }
.prep-list li::before { content: ""; position: absolute; top: 26px; left: 5px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.prep-list strong { color: var(--ink); }
.service-note { margin-top: 25px; padding: 20px; color: var(--muted); background: var(--cream); border-radius: 12px; font-size: 14px; }
.link-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.link-card { min-height: 270px; padding: 28px; display: flex; flex-direction: column; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 16px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.link-card span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.link-card h2, .link-card h3 { margin: 28px 0 10px; font-family: var(--font-display); font-size: 24px; font-weight: 600; line-height: 1.14; }
.link-card p { margin: 0; color: var(--muted); font-size: 15px; }
.link-card strong { margin-top: auto; padding-top: 22px; font-size: 14px; }

.portal-hero { padding: 90px 0 70px; background: var(--cream); }
.portal-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; }
.portal-hero h1 { margin: 12px 0 22px; font-family: var(--font-display); font-size: clamp(40px, 5vw, 62px); font-weight: 650; line-height: 1.06; letter-spacing: -.035em; }
.portal-hero__lead { color: var(--muted); font-size: 18px; }
.portal-checks { margin: 0; padding: 25px; list-style: none; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.portal-checks li { position: relative; padding: 11px 0 11px 27px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 750; }
.portal-checks li:last-child { border-bottom: 0; }
.portal-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }
.portal-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 6vw; align-items: start; }
.portal-aside { position: sticky; top: 40px; }
.portal-aside h2 { margin: 10px 0 18px; font-family: var(--font-display); font-size: 34px; font-weight: 650; line-height: 1.1; letter-spacing: -.025em; }
.portal-aside p { color: var(--muted); }
.doc-list { margin-top: 28px; padding: 22px; background: var(--cream); border-left: 3px solid var(--red); }
.doc-list strong { display: block; margin-bottom: 8px; }
.doc-list p { margin: 0; font-size: 14px; }
.portal-form { padding: 40px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.portal-form fieldset { margin: 0 0 34px; padding: 0 0 34px; border: 0; border-bottom: 1px solid var(--line); }
.portal-form legend { margin-bottom: 18px; color: var(--ink); font-size: 18px; font-weight: 850; }
.portal-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.portal-fields .field--full { grid-column: 1 / -1; }
.portal-form label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 800; }
.portal-form input, .portal-form select, .portal-form textarea { width: 100%; min-height: 50px; padding: 10px 13px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 9px; }
.portal-form input[type="file"] { padding: 12px; }
.portal-form textarea { min-height: 120px; resize: vertical; }
.portal-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button--secondary { color: var(--ink); background: transparent; border-color: var(--line); box-shadow: none; }
.button--secondary:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.portal-note { color: var(--muted); font-size: 13px; }
.form-privacy { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.request-preview { margin-bottom: 24px; padding: 18px; background: #eef2f8; border-left: 3px solid var(--sage); }
.request-preview span, .request-preview strong { display: block; }
.request-preview span { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.request-preview strong { margin-top: 4px; font-size: 14px; }
.upload-status { color: var(--muted); font-size: 12px; }
.content-status { padding: 26px; background: #fff8e8; border: 1px solid #ead8aa; border-radius: 14px; }
.content-status h3 { margin-top: 0; font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.content-status p, .content-status li { color: #6c634d; font-size: 14px; }

.case-meta { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.22); }
.case-meta div { padding: 18px; border-left: 1px solid rgba(255,255,255,.22); }
.case-meta div:first-child { border-left: 0; }
.case-meta span, .case-meta strong { display: block; }
.case-meta span { color: rgba(255,255,255,.58); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-meta strong { margin-top: 3px; }
.case-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 13px; }
.case-gallery figure { position: relative; grid-column: span 4; margin: 0; overflow: hidden; background: var(--ink); border-radius: 14px; }
.case-gallery figure::after { content: "JT Interior Construction Corp."; top: 14px; right: 14px; }
.case-gallery figure:nth-child(1), .case-gallery figure:nth-child(6) { grid-column: span 8; }
.case-gallery img { width: 100%; height: 480px; object-fit: cover; }
.case-gallery figcaption { padding: 12px 15px; color: rgba(255,255,255,.72); font-size: 13px; }

@media (max-width: 900px) {
  .sub-nav a:not(.button) { display: none; }
  .page-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-profile { max-width: 560px; }
  .portal-hero__grid, .portal-layout { grid-template-columns: 1fr; gap: 35px; }
  .portal-aside { position: static; }
  .page-steps { grid-template-columns: 1fr 1fr; }
  .link-card-grid { grid-template-columns: 1fr 1fr; }
  .case-gallery figure, .case-gallery figure:nth-child(1), .case-gallery figure:nth-child(6) { grid-column: span 6; }
  .page-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .sub-header .brand__wordmark { display: none; }
  .page-hero { padding: 74px 0 70px; }
  .page-hero--image { min-height: 600px; }
  .page-hero h1, .portal-hero h1, .legal-content h1 { font-size: clamp(36px, 10vw, 46px); }
  .page-hero__lead { font-size: 16px; }
  .page-grid h2, .page-section__heading h2 { font-size: 32px; }
  .page-section { padding: 70px 0; }
  .scope-grid, .page-steps, .link-card-grid { grid-template-columns: 1fr; }
  .portal-fields { grid-template-columns: 1fr; }
  .portal-fields .field--full { grid-column: auto; }
  .portal-form { padding: 25px 18px; }
  .portal-actions { align-items: stretch; flex-direction: column; }
  .portal-actions .button { width: 100%; }
  .case-meta { grid-template-columns: 1fr; }
  .case-meta div, .case-meta div:first-child { border-top: 1px solid rgba(255,255,255,.22); border-left: 0; }
  .case-meta div:first-child { border-top: 0; }
  .case-gallery figure, .case-gallery figure:nth-child(1), .case-gallery figure:nth-child(6) { grid-column: span 12; }
  .case-gallery img { height: 430px; }
  .page-step { min-height: 190px; }
  .page-footer__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 1300px) {
  .menu-toggle { width: 46px; height: 44px; padding: 11px; display: grid; align-content: center; gap: 5px; color: var(--white); background: var(--ink); border: 0; border-radius: 12px; box-shadow: 0 7px 18px rgba(21,22,79,.16); }
  .menu-toggle:hover { background: var(--ink-2); }
  .menu-toggle[aria-expanded="true"] { background: var(--red); }
  .menu-toggle:focus-visible { outline: 0; box-shadow: 0 7px 18px rgba(21,22,79,.16), inset 0 0 0 2px var(--white); }
  .menu-toggle span:not(.sr-only) { height: 2px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: absolute; z-index: 40; top: 100%; right: 0; left: 0; height: calc(100dvh - 122px); padding: 32px 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; color: var(--ink); background: var(--paper); }
  .site-header.is-sticky .site-nav { height: calc(100dvh - 86px); }
  .sub-header .site-nav, .legal-header .site-nav { height: calc(100dvh - 82px); }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 14px 2px; font-family: var(--font-display); font-size: 20px; border-bottom: 1px solid var(--line); }
  .site-nav > a[aria-current="page"] { color: var(--red); }
  .site-nav .button { margin-top: 20px; color: var(--white); font-family: inherit; font-size: 15px; border: 0; }
  .site-nav > a::after { display: none; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 32px, 720px); }
  .topbar__inner > span { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__links span, .topbar__links a:last-child { display: none; }
  .site-header { top: 36px; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 46px; height: 46px; }
  .brand img.brand__mark { width: 52px; height: 46px; }
  .brand__wordmark { width: 178px; }
  .brand__wordmark strong { font-size: 13.5px; }
  .brand__wordmark small { font-size: 8px; }
  .site-nav { height: calc(100dvh - 110px); }
  .site-header.is-sticky .site-nav { height: calc(100dvh - 74px); }
  .sub-header .site-nav, .legal-header .site-nav { height: calc(100dvh - 74px); }

  .hero { min-height: 780px; }
  .hero__image { background-position: 60% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(10,11,48,.93), rgba(18,20,73,.52)), linear-gradient(0deg, rgba(10,11,48,.86), transparent 45%); }
  .hero__content { padding-top: 30px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { min-height: auto; padding: 15px 18px; }
  .trust-strip > div:nth-child(n+3) { display: none; }

  .section { padding: 82px 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 290px; }
  .intro__grid, .section-heading, .process__grid, .coverage__grid, .faq__grid, .quote__grid { grid-template-columns: 1fr; gap: 34px; }
  .intro__copy { padding-top: 0; }
  .section-heading > p { margin: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-grid article:nth-child(3) { border-left: 0; }
  .info-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .info-note { grid-template-columns: 1fr; gap: 10px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 390px; }
  .standards { grid-template-columns: 1fr 1fr; }
  .standards > div:nth-child(3) { border-left: 0; }
  .standards > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .gallery-card, .gallery-card--wide { grid-column: span 6; height: 430px; }
  .process__intro, .faq__intro, .quote__intro { position: static; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 28px); --radius: 15px; }
  body { padding-bottom: 60px; }
  .topbar { display: none; }
  .site-header { top: 0; }
  .brand img.brand__mark { width: 48px; height: 42px; }
  .brand__wordmark { width: 142px; gap: 4px; }
  .brand__wordmark strong { font-family: var(--font-wordmark); font-size: 10.5px; font-weight: 700; letter-spacing: .01em; }
  .brand__wordmark small { font-size: 7px; }
  .brand--footer .footer__logo { width: min(100%, 310px); }
  .site-nav { height: calc(100dvh - 134px); }
  .legal-header .brand__wordmark small { display: none; }
  .hero { min-height: 770px; }
  .hero__content h1 { font-size: clamp(40px, 12vw, 52px); }
  .hero__lead { font-size: 16px; }
  .trust-strip > div:nth-child(n+2) { display: none; }
  .section h2 { font-size: 34px; }
  .audience__heading h2 { font-size: 34px; }
  .intro__copy .lead { font-size: 18px; }
  .service-card { min-height: 360px; padding: 25px; }
  .section-heading { margin-bottom: 34px; }
  .gallery { gap: 10px; }
  .gallery-count { width: 100%; margin: 5px 0 0; }
  .gallery-card, .gallery-card--wide { grid-column: span 12; height: 420px; }
  .audience { padding: 32px 0 70px; }
  .audience__heading, .service-hub-link, .case-study-link { align-items: flex-start; flex-direction: column; }
  .process-list li { grid-template-columns: 45px 1fr; gap: 12px; }
  .planner { padding: 24px 18px; }
  .standards { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-grid article, .info-grid article:nth-child(3) { min-height: auto; border-top: 1px solid var(--line); border-left: 0; }
  .info-grid article:first-child { border-top: 0; }
  .info-grid h3 { margin-top: 30px; }
  .standards > div, .standards > div:nth-child(3) { min-height: auto; border-top: 1px solid var(--line); border-left: 0; }
  .standards > div:first-child { border-top: 0; }
  .coverage__visual { min-height: 390px; }
  .choice-grid, .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .mobile-cta { position: fixed; z-index: 80; right: 0; bottom: 0; left: 0; height: 60px; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -8px 24px rgba(21,22,79,.14); }
  .mobile-cta a { display: grid; place-items: center; color: var(--white); background: var(--ink); font-size: 14px; font-weight: 850; text-decoration: none; }
  .mobile-cta a:last-child { background: var(--red); }
  .assistant-launch { right: 12px; bottom: 72px; }
  .assistant-panel { right: 12px; bottom: 132px; max-height: calc(100vh - 150px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
