/* Gramatur Inc. - site styles */

/* Archivo (variable), self-hosted */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #111010;
  --ground: #FBF7F1;
  --accent: #E2601C;
  --accent-deep: #B84512;
  --link: #D8571A;
  --dark: #0C0C0C;
  --dark-2: #111010;
  --dark-3: #1A1A1A;
  --sand: #EFEAE3;
  --card: #F3EFE9;
  --field: #F4F1EC;
  --line: rgba(17, 16, 16, .14);
  --line-dark: rgba(255, 255, 255, .12);
  --muted: rgba(17, 16, 16, .66);
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --gutter: clamp(20px, 4vw, 56px);
  --pad-x: max(var(--gutter), calc((100% - 1440px) / 2));
  --section-y: clamp(48px, 7vw, 96px);
  --header-h: 88px;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--accent-deep); }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; }
svg { flex: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 100;
  background: #fff; color: var(--ink); padding: 12px 16px; border-radius: 6px; font-weight: 600;
}
.skip-link:focus { top: 12px; color: var(--ink); }
.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;
}

/* ---------- Buttons ---------- */
.g-cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 46px;
  background: var(--accent); color: #fff; border: 0; border-radius: 6px;
  font: 700 13px/1.1 var(--font); white-space: nowrap; cursor: pointer;
  transition: background-color .3s ease;
}
.g-cta:hover { color: #fff; }
.g-cta:active { transform: translateY(1px); }
.g-cta__arrow {
  position: absolute; left: 7px; top: 50%; margin-top: -15px;
  width: 30px; height: 30px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .2); border-radius: 4px;
  transition: left .45s cubic-bezier(.22, .61, .36, 1);
}
.g-cta--lg { min-height: 50px; padding: 0 52px; font-size: 14px; }
.g-cta--lg .g-cta__arrow { left: 8px; width: 34px; height: 34px; margin-top: -17px; }
.g-cta--caps { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.g-cta--dark { background: var(--ink); }
.g-cta--block { display: flex; width: 100%; }
@media (hover: hover) {
  .g-cta:hover { background: var(--ink); }
  .g-cta:hover .g-cta__arrow { left: calc(100% - 37px); }
  .g-cta--lg:hover .g-cta__arrow { left: calc(100% - 42px); }
  .g-cta--dark:hover { background: var(--accent); }
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px; padding: 0 22px;
  background: transparent; color: var(--ink); border: 1px solid rgba(17, 16, 16, .22); border-radius: 6px;
  font: 700 13px/1.1 var(--font); white-space: nowrap; cursor: pointer;
  transition: border-color .2s ease;
}
.btn-outline:hover { color: var(--ink); border-color: var(--ink); }
.btn-outline--light { color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn-outline--light:hover { color: #fff; border-color: #fff; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Type ---------- */
.title-xl, .title-lg, .title-md {
  font-weight: 700; letter-spacing: -.02em; text-transform: uppercase; font-family: var(--font);
}
.title-xl { font-size: clamp(24px, 3.4vw, 42px); line-height: 1.15; }
.title-lg { font-size: clamp(22px, 3.1vw, 40px); line-height: 1.18; }
.title-md { font-size: clamp(20px, 2.2vw, 29px); line-height: 1.18; letter-spacing: -.015em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sand); color: var(--ink); border-radius: 8px; padding: 9px 14px;
  font: 700 11px/1 var(--font); letter-spacing: .1em; text-transform: uppercase;
}
.eyebrow__icon {
  display: grid; place-items: center; width: 22px; height: 22px;
  background: var(--ink); color: #fff; border-radius: 5px;
}
.eyebrow--dark { background: var(--dark-3); color: #fff; border: 1px solid rgba(255, 255, 255, .1); }
.eyebrow--dark .eyebrow__icon { background: rgba(255, 255, 255, .12); }
.eyebrow--accent { background: var(--accent); color: #fff; border-radius: 6px; padding: 7px 11px; font-size: 10.5px; }

/* ---------- Layout ---------- */
.section { padding: var(--section-y) var(--pad-x); }
.section--dark { background: var(--dark); color: #fff; }
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px); align-items: start;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled, .site-header.is-open {
  background: #0C0C0C;
  box-shadow: 0 1px 0 var(--line-dark);
}
.site-header__inner {
  display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px);
  min-height: var(--header-h); padding: 12px var(--pad-x);
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; flex: none; }
.brand:hover { color: #fff; }
.brand__mark {
  display: block; width: 30px; height: 26px;
  background: linear-gradient(135deg, #F5A623 0%, #E2601C 70%);
  clip-path: polygon(0 62%, 72% 0, 100% 8%, 34% 100%);
}
.brand__word { font: italic 600 19px/1 var(--font); letter-spacing: .02em; }
.site-nav {
  display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px);
  font: 600 12px/1 var(--font); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
}
.site-nav__links { display: contents; }
.site-nav a { color: rgba(255, 255, 255, .82); padding: 10px 0; }
.site-nav a:hover { color: #fff; }
.site-nav__extra { display: none; }
.site-header__spacer { flex: 1 0 0; }
.site-header__actions { display: flex; align-items: center; gap: 12px; flex: none; }
.phone-pill {
  display: flex; align-items: center; gap: 10px; min-height: 44px; white-space: nowrap;
  background: rgba(12, 12, 12, .72); color: #fff;
  border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; padding: 0 18px;
  font: 600 13px/1 var(--font);
}
.phone-pill:hover { color: #fff; border-color: rgba(255, 255, 255, .45); }
.phone-pill svg { opacity: .75; }
.nav-toggle {
  display: none; place-items: center; width: 44px; height: 44px; flex: none;
  background: rgba(12, 12, 12, .72); color: #fff;
  border: 1px solid rgba(255, 255, 255, .18); border-radius: 10px; cursor: pointer;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .2s ease, background-color .2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.is-open .nav-toggle__bars { background: transparent; }
.is-open .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.is-open .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--dark); color: #fff;
  min-height: min(92vh, 760px); display: flex; flex-direction: column;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 50%; }
.hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 14, .86) 0%, rgba(8, 10, 14, .55) 55%, rgba(8, 10, 14, .35) 100%);
}
.hero__grid {
  position: relative; flex: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 352px);
  gap: clamp(24px, 4vw, 64px); align-items: center;
  padding: calc(var(--header-h) + clamp(28px, 5vw, 72px)) var(--pad-x) clamp(128px, 14vw, 160px);
}
.hero__title {
  font: 800 clamp(36px, 6.4vw, 84px)/.98 var(--font); letter-spacing: -.025em; text-transform: uppercase;
}
.hero__title span { display: block; }
.hero__lead { font: 400 16px/26px var(--font); color: rgba(255, 255, 255, .78); max-width: 44ch; margin-top: 26px; }
.hero__copy .g-cta { margin-top: 30px; }
.hero__stats {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, .66);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-top: 1px solid var(--line-dark);
}
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0 var(--pad-x); }
.stat { padding: 20px clamp(16px, 2vw, 28px); border-right: 1px solid var(--line-dark); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat__value { font: 600 clamp(24px, 2.4vw, 32px)/1 var(--font); color: #fff; }
.stat__label {
  font: 400 12px/16px var(--font); color: rgba(255, 255, 255, .6);
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line-dark);
}

/* Tracking card */
.track-card {
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.tabs { display: flex; gap: 24px; border-bottom: 1px solid rgba(17, 16, 16, .12); margin-bottom: 20px; }
.tab {
  background: none; border: 0; padding: 10px 0 12px; margin-bottom: -1px; cursor: pointer;
  font: 600 13px/1 var(--font); color: rgba(17, 16, 16, .45); border-bottom: 2px solid transparent;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--accent); }
.field {
  width: 100%; min-height: 48px; background: var(--field); color: var(--ink);
  border: 1px solid rgba(17, 16, 16, .08); border-radius: 8px; padding: 13px 16px;
  font: 400 14px/1.3 var(--font);
}
.field::placeholder { color: rgba(17, 16, 16, .45); }
.field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226, 96, 28, .18); }
textarea.field { min-height: 96px; resize: vertical; }
.zip-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-block {
  display: block; width: 100%; margin-top: 12px; padding: 15px;
  background: var(--accent); color: #fff; border: 0; border-radius: 8px;
  font: 700 14px/1 var(--font); cursor: pointer; transition: background-color .25s ease;
}
@media (hover: hover) { .btn-block:hover { background: var(--ink); } }
.track-card__meta {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 10px;
  font: 500 12px/16px var(--font); color: rgba(17, 16, 16, .6);
}
.link-btn {
  background: none; border: 0; padding: 8px 0; cursor: pointer;
  font: inherit; color: inherit; text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(17, 16, 16, .3);
}
.link-btn:hover { color: var(--ink); }
.track-card__meta a { padding: 8px 0; }
.track-result {
  margin-top: 12px; padding: 12px 14px; border-radius: 8px; background: var(--field);
  font: 400 13px/20px var(--font); color: rgba(17, 16, 16, .78);
}
.track-result strong { color: var(--ink); }
.track-result.is-error { background: #FBEAE3; color: #8A2E0B; }
.track-result__links { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 8px; font-weight: 600; }
.track-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.track-action {
  display: flex; align-items: center; gap: 9px; min-height: 46px;
  background: #101010; color: #fff; border-radius: 8px; padding: 8px 12px;
  font: 600 12px/14px var(--font);
}
.track-action:hover { color: #fff; background: #2A2828; }
.track-action small {
  display: block; font-weight: 400; opacity: .6; font-size: 9px; letter-spacing: .08em; text-transform: uppercase;
}

/* ---------- About ---------- */
.about__title { margin-top: 34px; max-width: 30ch; }
.about__lead { font: 400 16px/27px var(--font); color: rgba(17, 16, 16, .7); max-width: 62ch; margin-top: 22px; }
.about .btn-row { margin-top: 26px; }
.acc { margin-top: clamp(36px, 5vw, 64px); border-top: 1px solid var(--line); }
.acc-row { padding: 30px 0; border-bottom: 1px solid var(--line); }
.acc-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) auto;
  grid-template-areas: "title chips toggle"; gap: 28px; align-items: start;
}
.acc-title {
  grid-area: title; font: 700 clamp(17px, 1.6vw, 22px)/1.2 var(--font);
  letter-spacing: -.01em; text-transform: uppercase; padding-top: 12px;
}
.chips { grid-area: chips; display: flex; gap: 8px; flex-wrap: wrap; padding-top: 6px; }
.chip {
  background: var(--sand); border-radius: 6px; padding: 7px 11px;
  font: 600 10.5px/1 var(--font); letter-spacing: .06em; text-transform: uppercase;
}
.acc-toggle {
  grid-area: toggle; display: flex; align-items: center; gap: 14px; min-height: 44px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font: 600 12px/1 var(--font); color: var(--ink); white-space: nowrap;
}
.acc-toggle__icon { position: relative; width: 12px; height: 12px; opacity: .7; }
.acc-toggle__icon::before, .acc-toggle__icon::after {
  content: ""; position: absolute; left: 0; top: 5px; width: 12px; height: 2px; background: currentColor;
  transition: transform .2s ease;
}
.acc-toggle__icon::after { transform: rotate(90deg); }
.acc-toggle[aria-expanded="true"] .acc-toggle__icon::after { transform: rotate(0deg); }
.acc-body { font: 400 15px/26px var(--font); color: rgba(17, 16, 16, .68); max-width: 66ch; margin-top: 20px; }

/* ---------- Services ---------- */
.section-head--center { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; }
.section-head--center .title-lg { max-width: 26ch; }
.split-card {
  margin-top: clamp(32px, 4vw, 52px);
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; background: var(--dark-2);
}
.split-card__body {
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  padding: clamp(24px, 3vw, 40px);
}
.split-card__title { font-size: clamp(19px, 2vw, 26px); }
.split-card__kicker { font: 400 13px/20px var(--font); color: rgba(255, 255, 255, .55); margin-top: 14px; }
.split-card__text { font: 400 14px/24px var(--font); color: rgba(255, 255, 255, .72); max-width: 44ch; }
.split-card__body .g-cta { margin-top: 26px; }
.split-card__media { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.svc-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.svc-card { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 24px; background: var(--dark-2); }
.svc-card__num { font: 700 11px/1 var(--font); letter-spacing: .1em; color: var(--accent); }
.svc-card__title { font: 700 17px/1.25 var(--font); text-transform: uppercase; color: #fff; margin-top: 16px; }
.svc-card__text { font: 400 13.5px/22px var(--font); color: rgba(255, 255, 255, .6); margin-top: 12px; }

/* ---------- Instant quote ---------- */
.quote-section { background: var(--sand); }
.quote-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px clamp(24px, 4vw, 64px); align-items: end;
}
.quote-head .title-lg { margin-top: 26px; max-width: 22ch; }
.quote-head__lead { font: 400 15px/25px var(--font); color: var(--muted); max-width: 52ch; }
.q-noscript { margin-top: 28px; padding: 20px; background: #fff; border-radius: var(--radius); font: 400 15px/24px var(--font); }

.q-widget {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 20px; align-items: start;
}
.q-form {
  display: grid; gap: 24px; min-width: 0;
  background: #fff; border: 1px solid rgba(17, 16, 16, .06); border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 32px);
}
.q-field { border: 0; margin: 0; padding: 0; min-width: 0; }
.q-label {
  display: block; margin: 0 0 10px; padding: 0;
  font: 700 11px/1.2 var(--font); letter-spacing: .1em; text-transform: uppercase; color: rgba(17, 16, 16, .58);
}
.q-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.q-input, .q-select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  background: var(--field); color: var(--ink);
  border: 1px solid rgba(17, 16, 16, .1); border-radius: 8px;
  font: 500 16px/1.2 var(--font);
  -webkit-appearance: none; appearance: none;
}
.q-input { font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.q-input::placeholder { color: rgba(17, 16, 16, .42); letter-spacing: 0; }
.q-select {
  padding-right: 42px; cursor: pointer; text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%23111010' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 12px 8px;
}
.q-input:focus, .q-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226, 96, 28, .18); }
.q-input[aria-invalid="true"] { border-color: #B3261E; }
.q-zip-city { min-height: 18px; margin-top: 6px; font: 500 12px/18px var(--font); color: rgba(17, 16, 16, .5); }
.q-zip-city.is-ok { color: #2F7D4F; }
.q-zip-city.is-bad { color: #B3261E; }

.q-seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 4px;
  background: var(--field); border-radius: 10px; padding: 4px;
}
.q-seg__btn {
  min-height: 46px; padding: 8px 10px; border: 0; border-radius: 7px; cursor: pointer;
  background: transparent; color: rgba(17, 16, 16, .64);
  font: 600 13px/1.15 var(--font); transition: background-color .2s ease, color .2s ease;
}
.q-seg__btn[aria-pressed="true"] { background: var(--ink); color: #fff; }
.q-seg__sub { display: block; margin-top: 3px; font-weight: 400; font-size: 11px; opacity: .72; }
.q-seg--weight { grid-auto-flow: row; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.q-seg--weight .q-seg__btn { min-height: 56px; }
@media (hover: hover) {
  .q-seg__btn[aria-pressed="false"]:hover { background: rgba(17, 16, 16, .06); color: var(--ink); }
}

.q-switch {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 16px; cursor: pointer; text-align: left;
  background: #FFF4EC; color: var(--ink); border: 1px solid rgba(226, 96, 28, .32); border-radius: 10px;
  font: 600 14px/1.35 var(--font);
}
.q-switch__hint { display: block; margin-top: 3px; font-weight: 400; font-size: 12.5px; color: rgba(17, 16, 16, .6); }
.q-switch__track {
  position: relative; flex: none; width: 46px; height: 28px; border-radius: 999px;
  background: rgba(17, 16, 16, .22); transition: background-color .2s ease;
}
.q-switch__track::after {
  content: ""; position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); transition: transform .2s ease;
}
.q-switch[aria-checked="true"] .q-switch__track { background: var(--accent); }
.q-switch[aria-checked="true"] .q-switch__track::after { transform: translateX(18px); }

.q-readout {
  position: sticky; top: calc(var(--header-h) + 16px);
  background: var(--dark-2); color: #fff; border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 32px); box-shadow: 0 24px 60px rgba(17, 16, 16, .18);
}
.q-readout__label { font: 700 11px/1 var(--font); letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.q-price {
  margin-top: 14px; font: 800 clamp(40px, 5vw, 56px)/1 var(--font); letter-spacing: -.02em;
  color: var(--accent); font-variant-numeric: tabular-nums; overflow-wrap: anywhere;
}
.q-price small { margin-left: 8px; font: 500 14px/1 var(--font); letter-spacing: 0; color: rgba(255, 255, 255, .55); }
.q-price.is-empty { color: rgba(255, 255, 255, .32); }
.q-route { margin-top: 12px; font: 500 13px/20px var(--font); color: rgba(255, 255, 255, .78); }
.q-breakdown {
  margin-top: 18px; padding-top: 14px; border-top: 1px dashed rgba(255, 255, 255, .18);
  font: 400 13px/20px var(--font); color: rgba(255, 255, 255, .7); font-variant-numeric: tabular-nums;
}
.q-row { display: flex; justify-content: space-between; gap: 16px; padding: 3px 0; }
.q-row span:last-child { white-space: nowrap; }
.q-row--total { margin-top: 8px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, .14); color: #fff; font-weight: 700; }
.q-msg { margin-top: 14px; font: 400 13px/20px var(--font); color: rgba(255, 255, 255, .7); }
.q-msg:empty { display: none; }
.q-msg.is-warn { color: #F5B27A; }
.q-actions { display: grid; gap: 10px; margin-top: 20px; }
.q-actions .btn-outline { width: 100%; }
.q-fineprint { margin-top: 18px; font: 400 11.5px/18px var(--font); color: rgba(255, 255, 255, .45); }
.q-fineprint a { color: rgba(255, 255, 255, .6); text-decoration: underline; text-underline-offset: 2px; }

.q-sticky {
  position: fixed; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); z-index: 40;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 8px 8px 16px; border-radius: 12px;
  background: var(--ink); color: #fff; box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
  transform: translateY(calc(100% + 28px)); visibility: hidden;
  transition: transform .25s ease, visibility 0s linear .25s;
}
.q-sticky.is-visible { transform: none; visibility: visible; transition: transform .25s ease; }
.q-sticky__label { display: block; font: 600 10px/1 var(--font); letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.q-sticky__price { display: block; margin-top: 5px; font: 800 22px/1 var(--font); color: var(--accent); font-variant-numeric: tabular-nums; }
.q-sticky .g-cta { min-height: 42px; padding: 0 18px; }

/* Standalone calculator page */
.standalone { padding: clamp(16px, 4vw, 40px) var(--gutter); background: var(--sand); min-height: 100vh; }
.standalone__inner { max-width: 1080px; margin: 0 auto; }
.standalone__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.standalone .brand { color: var(--ink); }
.standalone .brand:hover { color: var(--ink); }
.standalone .quote-head { margin-top: clamp(28px, 5vw, 56px); }
.standalone .quote-head .title-lg { margin-top: 0; }
.standalone .q-readout { top: 16px; }

/* ---------- Banner ---------- */
.banner { text-align: center; }
.banner__title { margin: 0 auto; max-width: 30ch; }
.banner__media { margin-top: clamp(28px, 4vw, 44px); border-radius: 16px; overflow: hidden; background: var(--dark); }
.banner__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* ---------- Differences ---------- */
.diff {
  position: relative; overflow: hidden; background: var(--dark); min-height: 600px;
  display: flex; justify-content: flex-end; align-items: flex-start;
  padding: clamp(32px, 5vw, 72px) var(--pad-x);
}
.diff__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; }
.diff__panel {
  position: relative; width: min(100%, 470px); color: #fff;
  background: rgba(10, 10, 10, .92); border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px;
  padding: clamp(22px, 2.6vw, 32px);
}
.diff__panel .title-md { margin-top: 22px; }
.d-list { margin-top: 22px; }
.d-item { border-bottom: 1px solid rgba(255, 255, 255, .14); padding: 10px 0; }
.d-toggle {
  display: flex; width: 100%; align-items: center; gap: 14px; min-height: 44px;
  background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
  font: 600 14.5px/22px var(--font); color: #fff;
}
.d-toggle__num { opacity: .55; font-variant-numeric: tabular-nums; }
.d-toggle__label { flex: 1; }
.d-toggle__icon { opacity: .6; transition: transform .2s ease; }
.d-toggle[aria-expanded="true"] .d-toggle__icon { transform: rotate(180deg); }
.d-body { font: 400 13.5px/22px var(--font); color: rgba(255, 255, 255, .62); margin: 4px 0 8px; max-width: 52ch; }

/* ---------- Testimonials ---------- */
.testimonials { background: #0F0E0E; color: #fff; }
.section-head--split { display: flex; gap: 24px 32px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.section-head--split .title-lg { margin-top: 24px; max-width: 24ch; }
.rail-controls { display: flex; gap: 12px; }
.rail-btn {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; cursor: pointer;
  background: var(--dark-3); color: #fff; border: 1px solid rgba(255, 255, 255, .18);
  transition: background-color .25s ease, border-color .25s ease, opacity .2s ease;
}
.rail-btn--accent { background: var(--accent); border-color: var(--accent); }
.rail-btn:disabled { opacity: .35; cursor: default; }
@media (hover: hover) {
  .rail-btn:not(:disabled):hover { border-color: rgba(255, 255, 255, .5); }
  .rail-btn--accent:not(:disabled):hover { background: var(--ink); }
}
.rail {
  margin-top: clamp(28px, 4vw, 44px); display: flex; gap: 20px; padding-bottom: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; overscroll-behavior-x: contain;
  scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .2) transparent;
}
.t-card {
  flex: 0 0 max(260px, calc((100% - 60px) / 4)); scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: #151414; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 24px;
}
.t-avatar {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 999px;
  background: #2A2828; color: rgba(255, 255, 255, .85); font: 600 16px/1 var(--font); letter-spacing: .04em;
}
.t-quote { flex: 1; margin-top: 22px; font: 400 13.5px/22px var(--font); color: rgba(255, 255, 255, .72); }
.t-name { display: block; margin-top: 26px; font: 600 14px/1.2 var(--font); color: #fff; }
.t-role { display: block; margin-top: 7px; font: 400 11.5px/1.4 var(--font); color: rgba(255, 255, 255, .45); }

/* ---------- Process ---------- */
.process__intro { position: sticky; top: calc(var(--header-h) + 24px); }
.process__intro .title-lg { margin-top: 28px; max-width: 22ch; }
.step-tabs { display: flex; gap: 10px; margin-top: 32px; }
.step-btn {
  width: 46px; height: 44px; border-radius: 8px; cursor: pointer;
  font: 700 15px/1 var(--font); border: 1px solid rgba(17, 16, 16, .12); background: var(--sand); color: var(--ink);
}
.step-btn[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.process__cards { display: flex; flex-direction: column; gap: 20px; }
.panel { background: var(--card); border-radius: var(--radius); padding: 20px; }
.panel--media { padding: 12px; }
.panel--row { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.panel__text { font: 400 13.5px/22px var(--font); color: var(--muted); }
.panel--media .panel__text { margin: 16px 6px 6px; }
.step-figure { position: relative; border-radius: 10px; overflow: hidden; background: #D9D3CB; }
.step-figure img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.step-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: rgba(10, 10, 10, .72); color: #fff;
}
.step-caption__num { font: 700 17px/1 var(--font); white-space: nowrap; }
.step-caption__sep { width: 1px; height: 18px; background: rgba(255, 255, 255, .35); flex: none; }
.step-caption__title { font: 500 15px/1.25 var(--font); }
.step-next { font: 500 13.5px/22px var(--font); color: rgba(17, 16, 16, .72); max-width: 46ch; }

/* ---------- Why ---------- */
.why__title { text-align: center; margin: 0 auto; max-width: 28ch; }
.why .split { margin-top: clamp(32px, 4vw, 56px); gap: clamp(28px, 5vw, 64px); }
.why__subtitle { margin-bottom: 28px; }
.why__list { display: flex; flex-direction: column; gap: 26px; }
.why-item h4 { font: 600 16px/1.3 var(--font); }
.why-item p { font: 400 13.5px/22px var(--font); color: var(--muted); margin-top: 10px; max-width: 52ch; }
.why__media { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #fff; padding: clamp(44px, 6vw, 80px) var(--pad-x); }
.footer-top {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px); align-items: end;
}
.footer-top .title-xl { font-size: clamp(24px, 3.4vw, 44px); line-height: 1.1; max-width: 24ch; }
.footer-cols {
  margin-top: clamp(36px, 5vw, 64px); padding-top: clamp(28px, 3vw, 44px); border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 36px 28px;
}
.site-footer .brand__mark { width: 28px; height: 24px; }
.site-footer .brand__word { font-size: 18px; }
.footer-about { font: 400 13px/22px var(--font); color: rgba(255, 255, 255, .55); margin-top: 18px; max-width: 34ch; }
.footer-cred { font: 600 10.5px/1.4 var(--font); letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .38); margin-top: 20px; }
.f-head { font: 700 10.5px/1 var(--font); letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.f-links { display: flex; flex-direction: column; font: 400 13px/20px var(--font); }
.f-links a { color: rgba(255, 255, 255, .62); padding: 6px 0; }
.f-links a:hover { color: #fff; }
.f-contact { display: flex; flex-direction: column; gap: 16px; }
.f-label { font: 600 10.5px/1 var(--font); letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .4); margin-bottom: 6px; }
.f-val { font: 600 14px/20px var(--font); color: #fff; }
a.f-val:hover { color: var(--accent); }
.f-val--accent { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(28px, 3vw, 44px); padding-top: 20px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between;
  font: 400 12px/18px var(--font); color: rgba(255, 255, 255, .45);
}
.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  :root { --header-h: 68px; }
  .site-header__inner { padding-top: 8px; padding-bottom: 8px; gap: 12px; }
  .site-header__spacer, .site-header__actions .g-cta { display: none; }
  .site-header__actions { margin-left: auto; }
  .nav-toggle { display: grid; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    padding: 4px var(--pad-x) 24px; font-size: 14px;
    background: #0C0C0C; border-top: 1px solid var(--line-dark); box-shadow: 0 24px 48px rgba(0, 0, 0, .45);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }
  .site-header.is-open .site-nav { opacity: 1; visibility: visible; transform: none; transition: opacity .2s ease, transform .2s ease; }
  .site-nav a { padding: 17px 0; border-bottom: 1px solid var(--line-dark); }
  .site-nav__extra { display: grid; gap: 12px; padding-top: 20px; }
  .site-nav__extra a { border: 0; }
  .site-nav__extra .g-cta { padding: 0 46px; font-size: 14px; letter-spacing: 0; text-transform: none; }
  .site-nav__extra .btn-outline { color: #fff; border: 1px solid rgba(255, 255, 255, .3); padding: 0 22px; min-height: 50px; letter-spacing: 0; text-transform: none; font-size: 14px; }
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); padding-bottom: 36px; }
  .hero__stats { position: relative; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat, .stat:first-child { padding: 18px 16px; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid var(--line-dark); }
  .track-card { max-width: 560px; }
  .field { font-size: 16px; }

  .acc-row { padding: 22px 0; }
  .acc-head { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "title toggle" "chips chips"; gap: 12px 16px; }
  .acc-title { padding-top: 13px; }
  .chips { padding-top: 0; }
  .acc-body { margin-top: 14px; }

  .split, .split-card, .quote-head, .footer-top { grid-template-columns: minmax(0, 1fr); }
  .split-card__media { min-height: 0; height: auto; aspect-ratio: 16 / 10; }
  .quote-head { align-items: start; }

  .q-widget { grid-template-columns: minmax(0, 1fr); }
  .q-readout, .standalone .q-readout { position: static; }
  .q-sticky { display: flex; }

  .process__intro { position: static; }
  .footer-top { align-items: start; }
}

@media (max-width: 700px) {
  .diff { display: block; min-height: 0; padding-top: 240px; }
  .diff__panel { width: 100%; }
  .t-card { flex-basis: 84%; }
  .step-caption { gap: 12px; padding: 12px 14px; }
  .step-caption__num { font-size: 15px; }
  .step-caption__title { font-size: 13.5px; }
  .step-figure img { aspect-ratio: 16 / 10; }
}

@media (max-width: 600px) {
  .phone-pill { width: 44px; padding: 0; justify-content: center; }
  .phone-pill__number { display: none; }
  .track-card { padding: 18px; }
  .btn-row > * { flex: 1 1 auto; }
  .q-pair { gap: 10px; }
  .q-seg__btn { font-size: 12.5px; padding: 8px 6px; }
  .q-seg--weight { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .q-switch { padding: 12px 14px; }
}

@media (max-width: 360px) {
  .track-actions { grid-template-columns: minmax(0, 1fr); }
  .zip-pair, .q-pair { grid-template-columns: minmax(0, 1fr); }
}

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