@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-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;
}
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/onest-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: #15211e;
  --ink-2: #22302c;
  --paper: #f4f1e9;
  --paper-2: #e9e5db;
  --white: #fffdf8;
  --accent: #e2b965;
  --accent-hover: #f0ca7b;
  --muted: #59635f;
  --line: rgba(21, 33, 30, .14);
  --radius: 3px;
  --container: min(1280px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: "Manrope", sans-serif; -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.container { width: var(--container); margin-inline: auto; }
.section-dark { color: var(--white); background: var(--ink); }
.section-light { background: var(--paper); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0 !important; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand-logo { height: 64px; width: auto; display: block; }
.desktop-nav { display: flex; gap: 34px; font-size: 13px; font-weight: 600; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--accent); transform: scaleX(0); transition: transform .25s; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.desktop-nav a[aria-current="page"] { color: var(--white); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.header-phone { font-size: 13px; font-weight: 700; }
.menu-button { display: none; border: 0; background: transparent; }
.inner-header { position: relative; background: var(--ink); }

.button { min-height: 54px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: var(--radius); cursor: pointer; font-size: 13px; font-weight: 800; transition: color .2s, background .2s, transform .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.button-light { color: var(--ink); background: var(--white); }
.button-accent { color: var(--ink); background: var(--accent); }
.button-accent:hover { background: var(--accent-hover); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.36); background: rgba(21,33,30,.22); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-wide { width: 100%; }

.hero { position: relative; min-height: 810px; height: 100vh; max-height: 980px; display: flex; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background-image: url('/assets/images/china-route-hero.webp'); background-size: cover; background-position: center; transform: scale(1.015); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,23,20,.94) 0%, rgba(13,23,20,.77) 32%, rgba(13,23,20,.2) 65%, rgba(13,23,20,.1) 100%), linear-gradient(0deg, rgba(9,16,14,.52) 0, transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 190px; padding-bottom: 95px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.66); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 1px; display: inline-block; background: var(--accent); }
.eyebrow-dark { color: #59635f; }
.hero h1 { max-width: 780px; margin: 0; font: 500 clamp(54px, 5.4vw, 82px)/.99 "Onest", sans-serif; letter-spacing: -.045em; }
.hero-copy { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.71); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; gap: 10px; margin-top: 39px; }
.hero-notes { margin-top: auto; display: flex; gap: 62px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hero-notes span { display: flex; align-items: center; gap: 10px; }
.hero-notes i { color: var(--accent); font-style: normal; }
.proof-strip { min-height: 112px; padding: 0 max(40px, calc((100vw - 1280px) / 2)); display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-bottom: 1px solid var(--line); }
.proof-item { padding: 31px 35px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.proof-item:last-child { border-right: 1px solid var(--line); }
.proof-item b { font: 600 18px/1.2 "Onest", sans-serif; }
.proof-item span { margin-top: 7px; color: var(--muted); font-size: 11px; }

.country-links { padding: 70px 0 78px; border-bottom: 1px solid var(--line); }
.country-links .eyebrow { margin-bottom: 16px; }
.country-links h2 { margin: 0 0 34px; font: 500 clamp(36px, 4vw, 55px)/1.05 "Onest", sans-serif; letter-spacing: -.045em; }
.country-links nav { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.country-links nav a { padding: 22px 20px; display: flex; align-items: center; gap: 18px; border-left: 1px solid var(--line); font: 600 17px/1.2 "Onest", sans-serif; transition: color .2s, background .2s; }
.country-links nav a:last-child { border-right: 1px solid var(--line); }
.country-links nav a:hover { color: #7d5c20; background: var(--white); }
.country-links nav span { color: #73551c; font: 800 10px/1 "Manrope", sans-serif; letter-spacing: .12em; }

.catalog-section { padding: 125px 0 120px; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; }
.section-heading h2, .calc-intro h2, .transparency-copy h2, .faq-layout h2, .final-cta h2 { margin: 0; font: 500 clamp(42px, 4.3vw, 66px)/1.04 "Onest", sans-serif; letter-spacing: -.045em; }
.heading-aside { width: 410px; padding-bottom: 6px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.updated { display: flex; align-items: center; gap: 8px; margin: 17px 0 0; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.updated span { width: 7px; height: 7px; border-radius: 50%; background: #6fa779; box-shadow: 0 0 0 4px rgba(111,167,121,.13); }
.catalog-tabs { margin-top: 52px; display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.catalog-tabs::-webkit-scrollbar { display: none; }
.catalog-tab { min-width: max-content; padding: 15px 24px; position: relative; color: var(--muted); border: 0; background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.catalog-tab::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--ink); transform: scaleX(0); content: ""; transition: transform .2s; }
.catalog-tab.is-active { color: var(--ink); }
.catalog-tab.is-active::after { transform: scaleX(1); }
.catalog-tab span { margin-left: 6px; color: #a07932; font-size: 8px; vertical-align: super; }
.catalog-tabs + .filters { margin-top: 18px; }
.filters { margin-top: 57px; display: grid; grid-template-columns: 1.55fr repeat(3, 1fr) auto; align-items: end; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.filters label { height: 68px; padding: 12px 18px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.filters label > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.filters select, .filters input { width: 100%; margin-top: 4px; padding: 0; color: var(--ink); border: 0; outline: 0; background: transparent; font-size: 13px; font-weight: 700; }
.search-field { position: relative; padding-left: 49px !important; }
.search-field svg { position: absolute; left: 18px; width: 19px; fill: none; stroke: var(--ink); stroke-width: 1.5; }
.search-field input { margin: 0; }
.filter-reset { height: 68px; padding: 0 20px; color: var(--muted); border: 0; background: var(--white); cursor: pointer; font-size: 11px; text-decoration: underline; text-underline-offset: 4px; }
.catalog-meta { margin: 24px 0 18px; display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.catalog-meta p { margin: 0; }
.catalog-meta b { color: var(--ink); }
.car-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.car-card { min-width: 0; height: 100%; position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.car-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(21,33,30,.1); }
.car-card-link { position: absolute; inset: 0; z-index: 1; }
.car-card-link:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.car-card .favorite, .car-card .car-details-link, .car-card .card-action { position: relative; z-index: 2; }
.car-image { position: relative; height: 202px; display: flex; align-items: center; overflow: hidden; background: #b7c0bc; }
.car-image::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.42), transparent 35%), linear-gradient(160deg, transparent 50%, rgba(21,33,30,.18)); }
.car-image img { position: relative; z-index: 1; width: 110%; max-width: none; margin-left: -5%; transform: translateY(16px); filter: drop-shadow(0 14px 12px rgba(15,24,21,.18)); }
.car-image.is-photo::before { background: linear-gradient(180deg, rgba(12,19,17,.04), rgba(12,19,17,.18)); z-index: 2; pointer-events: none; }
.car-image.is-photo img { width: 100%; height: 100%; margin: 0; transform: none; filter: none; object-fit: cover; }
.favorite { position: absolute; z-index: 3; top: 11px; right: 12px; width: 32px; height: 32px; color: var(--white); border: 1px solid rgba(255,255,255,.58); border-radius: 50%; background: rgba(21,33,30,.12); cursor: pointer; font-size: 18px; }
.favorite.is-active { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.car-content { flex: 1; padding: 20px 19px 18px; display: flex; flex-direction: column; }
.car-title { min-height: 112px; display: flex; justify-content: space-between; gap: 10px; }
.car-title > div { min-width: 0; }
.car-title small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.car-title h3 { height: 92px; margin: 5px 0 0; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; font: 600 19px/1.2 "Onest", sans-serif; letter-spacing: -.02em; }
.car-location { padding-top: 3px; color: var(--muted); font-size: 9px; }
.car-specs { min-height: 82px; max-height: 82px; margin: 10px 0 17px; overflow: hidden; display: flex; align-content: flex-start; flex-wrap: wrap; gap: 7px; }
.car-specs span { padding: 5px 7px; color: #53605c; background: var(--paper); font-size: 9px; }
.car-price { min-height: 98px; padding-top: 16px; display: grid; grid-template-columns: 1fr auto; align-content: start; border-top: 1px solid var(--line); }
.car-price > span { grid-column: 1 / -1; color: var(--muted); font-size: 9px; }
.car-price b { margin-top: 3px; font: 600 22px/1.1 "Onest", sans-serif; }
.car-price small { grid-column: 1 / -1; margin-top: 5px; color: var(--muted); font-size: 9px; line-height: 1.4; }
.car-links { min-height: 28px; margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.car-details-link { min-height: 28px; padding: 7px 0; display: inline-flex; align-items: center; color: var(--ink); font-size: 10px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.car-details-link:hover { color: #7f5b17; }
.card-action { width: 100%; margin-top: auto; padding: 13px 0 0; display: flex; justify-content: space-between; color: var(--ink); border: 0; border-top: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.card-action span { color: var(--accent); font-size: 16px; }
.empty-catalog { grid-column: 1 / -1; padding: 80px 30px; text-align: center; background: var(--white); border: 1px solid var(--line); }
.catalog-footer { margin-top: 14px; padding: 26px 28px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); }
.catalog-footer div { display: flex; flex-direction: column; gap: 6px; }
.catalog-footer b { font: 600 17px/1.2 "Onest", sans-serif; }
.catalog-footer span { color: var(--muted); font-size: 11px; }
.catalog-price-note { max-width: 980px; margin: 20px 0 0; color: var(--muted); font-size: 9px; line-height: 1.65; }

.catalog-page-hero { padding: 82px 0 90px; }
.catalog-page-hero .eyebrow { margin-top: 55px; }
.catalog-page-hero h1 { max-width: 980px; margin: 0; font: 500 clamp(50px, 6vw, 82px)/.98 "Onest", sans-serif; letter-spacing: -.05em; }
.catalog-page-hero .container > p:last-child { max-width: 720px; margin: 25px 0 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.75; }
.catalog-page { padding-top: 65px; }
.catalog-page .catalog-tabs { margin-top: 0; }

.calculator-section { padding: 120px 0; background: #ded9cd; }
.calc-layout { display: grid; grid-template-columns: .78fr 1.5fr; gap: 95px; align-items: start; }
.calc-intro { position: sticky; top: 35px; padding-top: 22px; }
.calc-intro > p:not(.eyebrow) { max-width: 430px; margin: 27px 0; color: #43504c; font-size: 14px; line-height: 1.75; }
.source-note { padding: 16px 0; display: flex; gap: 13px; border-top: 1px solid rgba(21,33,30,.18); border-bottom: 1px solid rgba(21,33,30,.18); color: #46534f; font-size: 10px; line-height: 1.6; }
.source-note svg { width: 19px; min-width: 19px; fill: none; stroke: var(--ink); stroke-width: 1.6; }
.source-note a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.calc-card { padding: 38px; background: var(--white); box-shadow: 0 25px 70px rgba(21,33,30,.08); }
.calc-fieldset { margin: 0; padding: 0 0 27px; border: 0; }
.calc-fieldset + .calc-fieldset { padding-top: 27px; border-top: 1px solid var(--line); }
.calc-fieldset[hidden], [data-calc-field][hidden], [data-calc-section][hidden], .calc-conditions[hidden] { display: none; }
.calc-fieldset legend { width: 100%; margin: 0 0 22px; padding: 0; color: var(--ink); font: 600 16px/1.2 "Onest", sans-serif; }
.calc-fieldset legend span { margin-right: 9px; color: #8d681d; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.form-row { display: grid; gap: 14px; }
.form-row-3 { grid-template-columns: repeat(3, 1fr); }
.form-row-2 { grid-template-columns: repeat(2, 1fr); }
.form-row + .form-row { margin-top: 21px; }
.calc-card label, .lead-dialog label { display: flex; flex-direction: column; gap: 8px; }
.calc-card label > span, .lead-dialog label > span { color: #626d69; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.calc-card select, .calc-card input, .lead-dialog input, .lead-dialog textarea { width: 100%; height: 49px; padding: 0 13px; color: var(--ink); border: 1px solid rgba(21,33,30,.2); border-radius: 2px; outline: none; background: transparent; font-size: 13px; font-weight: 700; }
.calc-card input::placeholder { color: #939b97; font-weight: 500; opacity: 1; }
.calc-card select {
  padding-right: 43px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='m1 1 6 6 6-6' fill='none' stroke='%2315211e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 8px;
}
.lead-dialog textarea { height: auto; padding-top: 12px; resize: vertical; }
.calc-card select:focus, .calc-card input:focus, .lead-dialog input:focus, .lead-dialog textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(21,33,30,.06); }
.input-unit { position: relative; }
.input-unit input { padding-right: 50px; }
.input-unit i { position: absolute; top: 50%; right: 13px; color: var(--muted); transform: translateY(-50%); font-size: 11px; font-style: normal; }
.select-pair { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 6px; }
.select-pair select { padding: 0 26px 0 10px; background-position: right 9px center; background-size: 12px 7px; }
.input-with-select { display: grid; grid-template-columns: minmax(0, 1fr) 78px; }
.input-with-select input { border-right: 0; }
.input-with-select select { padding: 0 30px 0 10px; background-position: right 10px center; background-size: 12px 7px; }
.rates-details { margin-top: 23px; border-top: 1px solid var(--line); }
.rates-details summary { padding: 16px 0; display: flex; justify-content: space-between; cursor: pointer; font-size: 11px; font-weight: 700; list-style: none; }
.rates-details summary::-webkit-details-marker { display: none; }
.rates-details summary span { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.rates-details > p { color: var(--muted); font-size: 9px; line-height: 1.5; }
.calc-rate-summary { margin-top: 23px; padding: 14px 16px; color: #5f6965; background: #f3f0e9; font-size: 11px; line-height: 1.5; }
.calc-rate-summary b { color: var(--ink); font-weight: 800; }
.calc-divider { height: 1px; margin: 28px 0; background: var(--line); }
.estimate-grid { margin-bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.estimate-main { display: flex; flex-direction: column; }
.estimate-main span { color: var(--muted); font-size: 10px; }
.estimate-main strong { margin: 10px 0 8px; font: 600 clamp(34px, 3vw, 47px)/1 "Onest", sans-serif; letter-spacing: -.045em; }
.estimate-main small { color: #7a847f; font-size: 9px; line-height: 1.45; }
.estimate-main small.is-warning { color: #a55f3f; }
.estimate-main small.estimate-assumptions { color: #8a9490; font-style: italic; }
.estimate-lines { margin: 0; }
.estimate-lines div { padding: 9px 0; display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); font-size: 10px; }
.estimate-lines dt { color: var(--muted); }
.estimate-lines dd { margin: 0; font-weight: 800; text-align: right; }
.estimate-lines .estimate-lines-total { margin-top: 4px; border-bottom: 0; font-size: 11px; font-weight: 800; }
.calc-card .button + .button { margin-top: 9px; }
.calc-exclusions { margin-top: 18px; padding: 15px 16px; border-left: 2px solid var(--accent); background: #f7f4ed; }
.calc-exclusions b { font-size: 10px; }
.calc-exclusions p { margin: 6px 0 0; color: var(--muted); font-size: 9px; line-height: 1.55; }
.legal-note { margin: 15px 0 0; color: #59635f; font-size: 10px; line-height: 1.6; text-align: center; }

.process-section { padding: 120px 0; }
.process-heading { align-items: flex-end; }
.process-heading > p { width: 410px; margin: 0 0 4px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }
.process-list { margin: 65px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.process-list li { position: relative; padding: 30px 30px 0 0; border-right: 1px solid rgba(255,255,255,.15); }
.process-list li + li { padding-left: 30px; }
.process-list li::before { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.process-list li + li::before { left: 30px; }
.process-list > li > span { color: var(--accent); font-size: 10px; font-weight: 800; }
.process-list b { margin-top: 40px; display: block; font: 500 25px/1.2 "Onest", sans-serif; }
.process-list p { margin: 17px 0 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.7; }

.transparency-section { padding: 130px 0; background: var(--white); }
.transparency-layout { display: grid; grid-template-columns: 1fr .95fr; gap: 120px; align-items: center; }
.transparency-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.text-link { padding: 8px 0; color: var(--ink); border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.text-link span { margin-left: 10px; color: #a77e2e; font-size: 16px; }
.cost-sheet { padding: 34px; color: var(--white); background: var(--ink); transform: rotate(1.5deg); box-shadow: 24px 26px 0 #ded9cd; }
.sheet-head { padding-bottom: 15px; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.sheet-head small { color: var(--accent); }
.sheet-car { padding: 28px 0; display: flex; justify-content: space-between; align-items: flex-end; }
.sheet-car span { font: 500 24px/1.2 "Onest", sans-serif; }
.sheet-car b { color: rgba(255,255,255,.55); font-size: 9px; }
.sheet-row { padding: 12px 0; display: flex; align-items: baseline; gap: 10px; color: rgba(255,255,255,.67); font-size: 10px; }
.sheet-row i { height: 1px; flex: 1; border-top: 1px dotted rgba(255,255,255,.24); }
.sheet-row b { color: var(--white); }
.sheet-total { margin-top: 18px; padding: 24px 0; display: flex; align-items: flex-end; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.25); }
.sheet-total span { font-size: 10px; text-transform: uppercase; }
.sheet-total b { color: var(--accent); font: 500 30px/1 "Onest", sans-serif; }
.cost-sheet > p { margin: 5px 0 0; color: rgba(255,255,255,.7); font-size: 10px; line-height: 1.6; }

.faq-section { padding: 120px 0; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 25px 42px 25px 0; position: relative; cursor: pointer; list-style: none; font: 500 17px/1.45 "Onest", sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i, .faq-list summary i::after { position: absolute; top: 50%; right: 5px; width: 16px; height: 1px; content: ""; background: var(--ink); transition: transform .2s; }
.faq-list summary i::after { top: 0; right: 0; transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list p { max-width: 680px; margin: -5px 40px 24px 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.final-cta { padding: 100px 0; }
.final-cta-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 120px; align-items: end; }
.final-cta-layout > div:last-child p { margin: 0 0 28px; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; }

footer { color: var(--white); background: #0d1614; }
.footer-main { padding: 65px 0 55px; display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 42px; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-main small { margin-bottom: 7px; color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.footer-main a, .footer-main button, .footer-main span { padding: 0; color: rgba(255,255,255,.68); border: 0; background: transparent; font-size: 10px; text-align: left; }
.footer-main button { cursor: pointer; }
.brand-footer .brand-logo { height: 68px; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; color: rgba(255,255,255,.68); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }

.lead-dialog { width: min(620px, calc(100vw - 30px)); max-height: calc(100vh - 30px); padding: 45px; color: var(--ink); border: 0; border-radius: 3px; background: var(--white); box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.lead-dialog::backdrop { background: rgba(8,15,13,.72); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 14px; right: 16px; width: 35px; height: 35px; border: 0; background: transparent; cursor: pointer; font-size: 28px; font-weight: 300; }
.dialog-copy h2 { margin: 0; font: 500 35px/1.08 "Onest", sans-serif; letter-spacing: -.04em; }
.dialog-copy > p:not(.eyebrow) { color: var(--muted); font-size: 11px; line-height: 1.6; }
.lead-dialog form { margin-top: 27px; display: grid; gap: 16px; }
.checkbox { flex-direction: row !important; align-items: flex-start; }
.checkbox input { width: 15px; height: 15px; margin: 1px 0 0; }
.checkbox span { font-size: 9px !important; line-height: 1.5; text-transform: none !important; letter-spacing: 0 !important; }
.form-status { min-height: 15px; margin: 0; color: #3d7b4a; font-size: 10px; text-align: center; }

.extras-preview { padding: 120px 0; }
.extras-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 95px; align-items: center; }
.extras-image { min-height: 500px; overflow: hidden; background: var(--ink); box-shadow: 22px 22px 0 #ded9cd; }
.extras-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.extras-copy h2 { margin: 0; font: 500 clamp(42px, 4.3vw, 66px)/1.04 "Onest", sans-serif; letter-spacing: -.045em; }
.extras-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.extras-copy ul { margin: 0 0 30px; padding: 0; list-style: none; }
.extras-copy li { padding: 12px 0 12px 24px; position: relative; border-bottom: 1px solid var(--line); font-size: 12px; }
.extras-copy li::before { position: absolute; left: 0; color: #a77e2e; content: "✓"; }

.contact-section, .content-contact { padding: 110px 0; }
.content-contact { color: var(--white); background: #1c2a26; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.contact-copy h2, .content-contact h2 { max-width: 650px; margin: 0; font: 500 clamp(42px, 4.3vw, 64px)/1.04 "Onest", sans-serif; letter-spacing: -.045em; }
.contact-copy > p:not(.eyebrow), .content-contact .contact-layout > div > p:not(.eyebrow) { max-width: 560px; margin: 25px 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.75; }
.messenger-links { margin: 32px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.messenger-links a { min-width: 0; padding: 16px 14px; display: flex; flex-direction: column; gap: 5px; border: 1px solid rgba(255,255,255,.2); transition: background .2s, border-color .2s; }
.messenger-links a:hover { border-color: var(--accent); background: rgba(255,255,255,.06); }
.messenger-links b { font: 600 13px/1.2 "Onest", sans-serif; }
.messenger-links span { color: rgba(255,255,255,.5); font-size: 8px; }
.contact-phone-large { color: var(--accent); font: 500 25px/1 "Onest", sans-serif; }
.inline-lead-form { padding: 34px; display: grid; gap: 16px; color: var(--ink); background: var(--white); box-shadow: 0 25px 70px rgba(0,0,0,.16); }
.inline-lead-form label { display: flex; flex-direction: column; gap: 8px; }
.inline-lead-form label > span { color: #626d69; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inline-lead-form input, .inline-lead-form textarea { width: 100%; height: 49px; padding: 0 13px; color: var(--ink); border: 1px solid rgba(21,33,30,.2); border-radius: 2px; outline: none; background: transparent; font-size: 13px; font-weight: 700; }
.inline-lead-form textarea { height: auto; padding-top: 12px; resize: vertical; }
.inline-lead-form .checkbox { flex-direction: row; align-items: flex-start; }
.inline-lead-form .checkbox input { width: 15px; height: 15px; padding: 0; }
.inline-lead-form input:focus, .inline-lead-form textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(21,33,30,.06); }
.inline-lead-form button:disabled { cursor: wait; opacity: .65; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.content-hero { position: relative; padding: 100px 0 110px; overflow: hidden; color: var(--white); background: var(--ink); }
.content-hero .eyebrow { margin-top: 70px; }
.content-hero h1, .article-header h1 { max-width: 980px; margin: 0; font: 500 clamp(48px, 5.5vw, 80px)/1 "Onest", sans-serif; letter-spacing: -.048em; }
.content-hero .container > p:last-child, .services-hero-content > p:not(.eyebrow) { max-width: 700px; margin: 28px 0 0; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.75; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: rgba(255,255,255,.46); font-size: 9px; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs i { font-style: normal; opacity: .45; }
.content-hero-blog::after { position: absolute; right: -80px; bottom: -190px; width: 560px; height: 560px; border: 1px solid rgba(226,185,101,.25); transform: rotate(45deg); content: ""; }

.directions-preview { padding: 105px 0 115px; border-bottom: 1px solid var(--line); }
.direction-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.direction-card { min-height: 350px; padding: 28px; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.direction-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(21,33,30,.08); }
.direction-card-top { min-height: 50px; display: flex; justify-content: space-between; gap: 18px; }
.direction-card-top span { color: #9a7228; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.direction-card-top small { max-width: 165px; color: var(--muted); font-size: 8px; line-height: 1.45; text-align: right; text-transform: uppercase; }
.direction-card h2, .direction-card h3 { margin: 28px 0 18px; font: 500 clamp(28px, 2.8vw, 40px)/1.05 "Onest", sans-serif; letter-spacing: -.04em; }
.direction-card p { margin: 0 0 28px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.direction-card > a { margin-top: auto; padding-top: 17px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.direction-card > a i { color: #9a7228; font-size: 15px; font-style: normal; }
.directions-all { margin-top: 28px; display: inline-flex; }

.directions-hero { padding: 95px 0 110px; position: relative; overflow: hidden; }
.directions-hero::after { position: absolute; top: 80px; right: -80px; width: 560px; height: 560px; border: 1px solid rgba(226,185,101,.22); transform: rotate(45deg); content: ""; }
.directions-hero .container { position: relative; z-index: 1; }
.directions-hero .eyebrow { margin-top: 70px; }
.directions-hero h1 { max-width: 1050px; margin: 0; font: 500 clamp(52px, 6vw, 88px)/.98 "Onest", sans-serif; letter-spacing: -.052em; }
.directions-hero .container > p:last-child { max-width: 760px; margin: 30px 0 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.8; }
.directions-page { padding: 100px 0 115px; }
.directions-page .direction-grid { margin-top: 0; }
.country-compare { margin-top: 90px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.country-compare h2 { margin: 15px 0 0; font: 500 clamp(38px, 4.5vw, 60px)/1.05 "Onest", sans-serif; letter-spacing: -.045em; }
.country-compare-table { border-top: 1px solid var(--line); }
.country-compare-table > div { padding: 18px 0; display: grid; grid-template-columns: .55fr 1.25fr 1.3fr; gap: 20px; border-bottom: 1px solid var(--line); }
.country-compare-table b { font: 600 14px/1.35 "Onest", sans-serif; }
.country-compare-table span { color: var(--muted); font-size: 10px; line-height: 1.55; }
.country-caution { margin-top: 70px; padding: 26px 30px; display: grid; grid-template-columns: .25fr 1fr; gap: 40px; background: #ded9cd; }
.country-caution b { font: 600 18px/1.3 "Onest", sans-serif; }
.country-caution p { margin: 0; color: #4d5a55; font-size: 12px; line-height: 1.75; }

.country-hero { min-height: 700px; position: relative; display: flex; overflow: hidden; color: var(--white); background: var(--ink); }
.country-hero::before { position: absolute; inset: 0; background: var(--country-image) right center / auto 100% no-repeat; content: ""; }
.country-hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(13,23,20,.99) 0%, rgba(13,23,20,.92) 47%, rgba(13,23,20,.3) 76%, rgba(13,23,20,.08)); }
.country-hero-inner { padding-top: 78px; padding-bottom: 75px; position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.country-hero .eyebrow { margin-top: 62px; }
.country-hero .eyebrow::before { margin-right: 2px; font-size: 27px; line-height: 1; letter-spacing: 0; }
.country-china .eyebrow::before { content: "🇨🇳"; }
.country-japan .eyebrow::before { content: "🇯🇵"; }
.country-korea .eyebrow::before { content: "🇰🇷"; }
.country-uae .eyebrow::before { content: "🇦🇪"; }
.country-hero h1 { max-width: 850px; margin: 0; font: 500 clamp(52px, 5.8vw, 84px)/.98 "Onest", sans-serif; letter-spacing: -.052em; }
.country-hero-inner > p:not(.eyebrow) { max-width: 720px; margin: 28px 0; color: rgba(255,255,255,.69); font-size: 15px; line-height: 1.75; }
.country-hero .button { align-self: flex-start; }
.country-proof { background: var(--white); border-bottom: 1px solid var(--line); }
.country-proof .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.country-proof .container > div { min-height: 115px; padding: 27px 30px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.country-proof .container > div:last-child { border-right: 1px solid var(--line); }
.country-proof b { font: 600 17px/1.25 "Onest", sans-serif; }
.country-proof span { margin-top: 6px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.country-fit { padding: 110px 0 120px; }
.country-fit-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.country-fit-grid article { min-height: 345px; padding: 31px; background: var(--white); border: 1px solid var(--line); }
.country-fit-grid article > span { color: #9a7228; font-size: 9px; font-weight: 800; }
.country-fit-grid h3 { margin: 70px 0 20px; font: 500 clamp(24px, 2.7vw, 36px)/1.08 "Onest", sans-serif; letter-spacing: -.035em; }
.country-fit-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.country-process { padding: 105px 0 115px; }
.country-process h2 { margin: 15px 0 0; font: 500 clamp(42px, 4.6vw, 64px)/1.03 "Onest", sans-serif; letter-spacing: -.045em; }
.country-process ol { margin: 58px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.country-process li { padding: 25px 25px 0 0; border-right: 1px solid rgba(255,255,255,.13); }
.country-process li + li { padding-left: 25px; }
.country-process li > b { color: var(--accent); font-size: 9px; }
.country-process h3 { margin: 30px 0 13px; font: 500 20px/1.25 "Onest", sans-serif; }
.country-process li p { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.7; }
.country-cost { padding: 110px 0; background: #ded9cd; }
.country-cost-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.country-cost h2, .country-check h2, .country-guide h2, .country-faq h2, .more-directions h2 { margin: 15px 0 25px; font: 500 clamp(38px, 4.4vw, 60px)/1.05 "Onest", sans-serif; letter-spacing: -.045em; }
.country-cost-layout > div > p:not(.eyebrow) { margin: 0 0 25px; color: #56615d; font-size: 13px; line-height: 1.8; }
.country-cost ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(21,33,30,.18); }
.country-cost li { padding: 17px 5px; display: grid; grid-template-columns: 55px 1fr; border-bottom: 1px solid rgba(21,33,30,.18); font-size: 12px; font-weight: 700; }
.country-cost li span { color: #8b6b2c; font-size: 9px; }
.country-check { padding: 110px 0; }
.country-check-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.country-check-layout > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: 13px; line-height: 1.8; }
.country-check aside { margin-top: 30px; padding: 22px 24px; display: flex; flex-direction: column; background: #ede2c9; border-left: 3px solid #ad7f2d; }
.country-check aside b { font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.country-check aside span { margin-top: 8px; color: #5b5548; font-size: 10px; line-height: 1.65; }
.country-check ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.country-check li { padding: 16px 5px 16px 35px; position: relative; border-bottom: 1px solid var(--line); font-size: 11px; line-height: 1.5; }
.country-check li::before { position: absolute; left: 5px; color: #9a7228; content: "✓"; }
.country-sources { margin-top: 30px; padding: 24px; display: flex; flex-direction: column; gap: 10px; background: var(--white); border: 1px solid var(--line); }
.country-sources b { margin-bottom: 3px; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.country-sources a { color: #765b25; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }
.country-guide { padding: 85px 0; background: var(--white); }
.country-guide .container { display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.country-guide h2 { max-width: 750px; margin-bottom: 0; }
.country-guide .button { flex: 0 0 auto; }
.country-faq { padding: 105px 0 115px; }
.country-faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.country-faq details { border-bottom: 1px solid var(--line); }
.country-faq summary { padding: 20px 35px 20px 0; position: relative; cursor: pointer; list-style: none; font: 500 17px/1.4 "Onest", sans-serif; }
.country-faq summary::-webkit-details-marker { display: none; }
.country-faq summary i, .country-faq summary i::after { position: absolute; top: 50%; right: 4px; width: 15px; height: 1px; background: var(--ink); content: ""; }
.country-faq summary i::after { top: 0; right: 0; transform: rotate(90deg); }
.country-faq details[open] summary i::after { transform: none; }
.country-faq details p { margin: 0 35px 22px 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.more-directions { padding: 100px 0 110px; }
.more-directions .direction-grid { grid-template-columns: repeat(3, 1fr); }
.more-directions .direction-card { color: var(--ink); }
.text-link-light { color: var(--white); border-color: rgba(255,255,255,.35); }

.blog-index { padding: 100px 0 120px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.blog-card { min-height: 370px; padding: 34px; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); }
.blog-card > p:first-child { margin: 0 0 24px; color: #8a6b2e; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-card h2 { margin: 0; font: 500 clamp(28px, 3vw, 40px)/1.08 "Onest", sans-serif; letter-spacing: -.035em; }
.blog-card h2 a:hover { color: #8a6b2e; }
.blog-card > div { margin: 20px 0; display: flex; gap: 14px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.blog-card > p:not(:first-child) { margin: 0 0 30px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.blog-card .text-link { margin-top: auto; align-self: flex-start; }
.editorial-note { margin-top: 14px; padding: 28px 34px; display: grid; grid-template-columns: .35fr 1fr; gap: 45px; border: 1px solid var(--line); }
.editorial-note b { font: 600 17px/1.2 "Onest", sans-serif; }
.editorial-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.article-header { padding: 80px 0 85px; color: var(--white); background: var(--ink); }
.article-header .eyebrow { margin-top: 62px; }
.article-header-inner > p:not(.eyebrow) { max-width: 780px; margin: 28px 0; color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.75; }
.article-meta { display: flex; flex-wrap: wrap; gap: 25px; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.article-layout { padding-top: 90px; padding-bottom: 110px; display: grid; grid-template-columns: minmax(0, 790px) 320px; justify-content: space-between; gap: 90px; align-items: start; }
.article-body { color: #2d3835; }
.article-lead { margin: 0 0 55px; padding: 26px 28px; color: #3f4d48; border-left: 3px solid var(--accent); background: #ebe6da; font-size: 14px; line-height: 1.75; }
.article-body > section { margin: 0 0 62px; }
.article-body h2 { margin: 0 0 24px; color: var(--ink); font: 500 clamp(30px, 3vw, 43px)/1.12 "Onest", sans-serif; letter-spacing: -.035em; }
.article-body p { margin: 0 0 18px; font-size: 15px; line-height: 1.85; }
.article-body ul { margin: 26px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-body li { padding: 15px 10px 15px 30px; position: relative; border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.5; }
.article-body li::before { position: absolute; left: 3px; color: #a77e2e; content: "✓"; }
.article-sources { margin-top: 28px; padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; background: var(--white); border: 1px solid var(--line); }
.article-sources b { margin-bottom: 4px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.article-sources a { color: #6f5725; font-size: 11px; text-decoration: underline; text-underline-offset: 3px; }
.article-faq { border-top: 1px solid var(--line); }
.article-faq h2 { padding-top: 55px; }
.article-faq details { border-bottom: 1px solid var(--line); }
.article-faq summary { padding: 20px 35px 20px 0; position: relative; cursor: pointer; list-style: none; font: 500 17px/1.4 "Onest", sans-serif; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary i, .article-faq summary i::after { position: absolute; top: 50%; right: 4px; width: 15px; height: 1px; content: ""; background: var(--ink); }
.article-faq summary i::after { top: 0; right: 0; transform: rotate(90deg); }
.article-faq details[open] summary i::after { transform: none; }
.article-faq details p { margin: 0 35px 22px 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.article-aside { position: sticky; top: 30px; display: grid; gap: 25px; }
.article-aside > div { padding: 25px; color: var(--white); background: var(--ink); }
.article-aside > div > b { font: 500 22px/1.2 "Onest", sans-serif; }
.article-aside > div > p { margin: 15px 0 22px; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.65; }
.article-aside nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.article-aside nav > span { padding: 17px 0; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-aside nav a { padding: 16px 0; display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--line); }
.article-aside nav small { color: #8a6b2e; font-size: 8px; text-transform: uppercase; }
.article-aside nav b { font: 500 14px/1.35 "Onest", sans-serif; }

.services-hero { min-height: 680px; display: flex; align-items: stretch; overflow: hidden; padding: 0; }
.services-hero-media, .services-hero-shade { position: absolute; inset: 0; }
.services-hero-media { background: url('/assets/images/social/services-og.jpg') center/cover; }
.services-hero-shade { background: linear-gradient(90deg, rgba(13,23,20,.96), rgba(13,23,20,.79) 45%, rgba(13,23,20,.14)); }
.services-hero-content { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; display: flex; flex-direction: column; justify-content: center; }
.services-hero-content .eyebrow { margin-top: 70px; }
.services-hero-content h1 { max-width: 820px; margin: 0; font: 500 clamp(50px, 5.7vw, 82px)/.99 "Onest", sans-serif; letter-spacing: -.048em; }
.services-hero-content .button { margin-top: 30px; align-self: flex-start; }
.services-list { padding: 115px 0 125px; }
.services-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-card { min-height: 390px; padding: 34px; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); }
.service-card > span { color: #a77e2e; font-size: 10px; font-weight: 800; }
.service-card h2 { margin: 35px 0 18px; font: 500 clamp(28px, 3vw, 42px)/1.05 "Onest", sans-serif; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.service-card ul { margin: 25px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.service-card li { padding: 6px 9px; background: var(--paper); font-size: 9px; }
.service-card > a { margin-top: auto; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.service-card > a i { color: #a77e2e; font-size: 16px; font-style: normal; }
.service-card:last-child { grid-column: 1 / -1; min-height: 330px; }
.service-process { padding: 110px 0; }
.service-process h2 { max-width: 750px; margin: 0; font: 500 clamp(42px, 4.3vw, 66px)/1.04 "Onest", sans-serif; letter-spacing: -.045em; }
.service-process ol { margin: 60px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.service-process li { padding: 26px 24px 0 0; border-right: 1px solid rgba(255,255,255,.13); }
.service-process li + li { padding-left: 24px; }
.service-process li b { color: var(--accent); font-size: 10px; }
.service-process li span { margin-top: 30px; display: block; font: 500 20px/1.25 "Onest", sans-serif; }
.service-process li p { color: rgba(255,255,255,.54); font-size: 10px; line-height: 1.7; }
.service-note { padding: 100px 0; background: #ded9cd; }
.service-note .container { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.service-note h2 { margin: 0; font: 500 clamp(35px, 4vw, 55px)/1.08 "Onest", sans-serif; letter-spacing: -.04em; }
.service-note p { margin: 10px 0 0; color: #59645f; font-size: 14px; line-height: 1.8; }

.not-found { min-height: 70vh; padding: 130px 0; display: flex; align-items: center; }
.not-found span { color: var(--accent); font: 500 18px/1 "Onest", sans-serif; }
.not-found h1 { margin: 25px 0; font: 500 clamp(55px, 8vw, 110px)/.95 "Onest", sans-serif; letter-spacing: -.05em; }
.not-found p { max-width: 600px; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; }
.not-found .container > div { margin-top: 30px; display: flex; gap: 10px; }

.car-detail-hero { padding: 48px 0 74px; }
.car-detail-hero .breadcrumbs { color: var(--muted); }
.car-detail-hero .breadcrumbs a:hover { color: var(--ink); }
.car-back-link { margin-bottom: 18px; display: inline-flex; color: #59645f; font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.car-back-link:hover { color: #7f5b17; }
.car-detail-heading { margin: 52px 0 42px; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 80px; align-items: end; }
.car-detail-heading h1 { max-width: 980px; margin: 18px 0 16px; font: 500 clamp(48px, 6.5vw, 88px)/.98 "Onest", sans-serif; letter-spacing: -.055em; }
.car-detail-heading > div:first-child > p:last-child { color: var(--muted); font-size: 13px; }
.car-detail-price { padding: 27px; display: flex; flex-direction: column; align-items: flex-start; background: var(--white); border: 1px solid var(--line); }
.car-detail-price small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.car-detail-price > b { margin: 7px 0 18px; font: 600 29px/1 "Onest", sans-serif; }
.car-detail-price > span { width: 100%; padding-top: 16px; color: var(--muted); border-top: 1px solid var(--line); font-size: 10px; line-height: 1.55; }
.car-detail-price strong { color: var(--ink); font: 600 20px/1.3 "Onest", sans-serif; }
.car-detail-price .button { margin-top: 20px; width: 100%; text-align: center; }
.car-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 215px); gap: 8px; }
.car-gallery-item { min-width: 0; padding: 0; position: relative; overflow: hidden; border: 0; background: #d8d4ca; cursor: zoom-in; }
.car-gallery-main { grid-row: 1 / 3; }
.car-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.car-gallery-item:hover img { transform: scale(1.025); }
.gallery-more { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--white); background: rgba(14,24,21,.58); font-size: 15px; font-weight: 800; }
.car-lightbox { width: min(1180px, calc(100vw - 48px)); height: min(860px, calc(100vh - 48px)); padding: 24px 78px; position: fixed; overflow: hidden; color: var(--white); border: 1px solid rgba(255,255,255,.18); background: #0d1714; }
.car-lightbox::backdrop { background: rgba(8,13,12,.88); backdrop-filter: blur(7px); }
.car-lightbox figure { width: 100%; height: 100%; margin: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 14px; }
.car-lightbox figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.car-lightbox figcaption { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.65); font-size: 11px; }
.car-lightbox figcaption b { color: var(--white); font-size: 12px; }
.car-lightbox-close, .car-lightbox-control { position: absolute; z-index: 2; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.35); background: rgba(13,23,20,.72); cursor: pointer; }
.car-lightbox-close { top: 18px; right: 18px; width: 42px; height: 42px; font-size: 27px; line-height: 1; }
.car-lightbox-control { top: 50%; width: 46px; height: 58px; transform: translateY(-50%); font-size: 21px; }
.car-lightbox-prev { left: 16px; }
.car-lightbox-next { right: 16px; }
.car-detail-content { padding: 90px 0 105px; background: var(--white); }
.car-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 90px; align-items: start; }
.car-detail-section + .car-detail-section { margin-top: 75px; }
.car-detail-section h2, .related-cars h2 { margin: 15px 0 30px; font: 500 clamp(34px, 4vw, 52px)/1.05 "Onest", sans-serif; letter-spacing: -.04em; }
.car-spec-table { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.car-spec-table div { padding: 15px 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 18px; border-bottom: 1px solid var(--line); }
.car-spec-table div:nth-child(odd) { padding-right: 30px; }
.car-spec-table div:nth-child(even) { padding-left: 30px; border-left: 1px solid var(--line); }
.car-spec-table dt { color: var(--muted); font-size: 10px; }
.car-spec-table dd { margin: 0; font-size: 11px; font-weight: 700; }
.car-source-section p { color: #55615d; font-size: 13px; line-height: 1.85; }
.car-source-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 18px; }
.car-source-actions a { color: var(--ink); font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.car-cost-card { position: sticky; top: 28px; padding: 30px; background: #ded9cd; }
.car-cost-card h2 { margin: 17px 0 4px; font: 600 35px/1 "Onest", sans-serif; letter-spacing: -.04em; }
.car-cost-card > span { color: var(--muted); font-size: 10px; }
.car-cost-card dl { margin: 26px 0; border-top: 1px solid rgba(21,33,30,.18); }
.car-cost-card dl div { padding: 13px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(21,33,30,.18); }
.car-cost-card dt { color: var(--muted); font-size: 10px; }
.car-cost-card dd { margin: 0; font-size: 11px; font-weight: 800; text-align: right; }
.car-cost-card > small { display: block; color: #5a6561; font-size: 9px; line-height: 1.65; }
.car-cost-card .car-cost-warning { padding: 14px; color: #624b20; background: rgba(255,253,248,.55); border-left: 2px solid #ad7f2d; font-size: 10px; line-height: 1.55; }
.car-cost-card .button { margin-top: 23px; }
.related-cars { padding: 90px 0 105px; }
.related-cars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.related-car { background: var(--white); border: 1px solid var(--line); }
.related-car img { width: 100%; height: 165px; object-fit: cover; }
.related-car > span { padding: 18px; display: flex; flex-direction: column; }
.related-car small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.related-car b { margin: 6px 0 15px; font: 600 16px/1.25 "Onest", sans-serif; }
.related-car i { padding-top: 13px; color: var(--ink); border-top: 1px solid var(--line); font-size: 11px; font-style: normal; font-weight: 800; }

@media (max-width: 1320px) and (min-width: 1101px) {
  .calc-card .form-row-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  :root { --container: min(100% - 44px, 960px); }
  .desktop-nav, .header-phone { display: none; }
  .site-header { padding: 0 22px; grid-template-columns: 1fr auto; }
  .header-actions { display: none; }
  .menu-button { width: 44px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; cursor: pointer; }
  .menu-button span { width: 23px; height: 1px; background: var(--white); }
  .site-header.is-open { height: auto; min-height: 88px; align-items: start; padding-top: 27px; background: var(--ink); }
  .site-header.is-open .desktop-nav { grid-column: 1 / -1; padding: 28px 0 35px; display: flex; flex-direction: column; gap: 10px; font-size: 18px; }
  .proof-strip { padding: 0 22px; }
  .filters { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .filters label:nth-of-type(4), .filter-reset { border-top: 1px solid var(--line); }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-layout { grid-template-columns: 1fr; gap: 45px; }
  .calc-intro { position: static; }
  .transparency-layout { gap: 70px; }
  .extras-layout { gap: 55px; }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 45px; }
  .car-detail-heading { grid-template-columns: 1fr 330px; gap: 45px; }
  .car-detail-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 45px; }
  .related-cars-grid { grid-template-columns: repeat(2, 1fr); }
  .direction-grid { grid-template-columns: repeat(2, 1fr); }
  .country-compare, .country-cost-layout, .country-check-layout, .country-faq-layout { gap: 55px; }
  .country-process ol { grid-template-columns: repeat(2, 1fr); }
  .country-process li:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .country-process li:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
  .footer-main { grid-template-columns: 1.25fr repeat(2, 1fr); }
  .brand-footer { grid-row: span 2; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 32px); }
  .site-header { height: 74px; padding: 0 16px; }
  .brand-logo { height: 48px; }
  .hero { min-height: 740px; height: 93vh; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(13,23,20,.93), rgba(13,23,20,.36)), linear-gradient(0deg, rgba(9,16,14,.65), transparent 55%); }
  .hero-content { padding-top: 145px; padding-bottom: 50px; justify-content: flex-start; }
  .hero h1 { max-width: 100%; overflow-wrap: break-word; font-size: clamp(40px, 10vw, 50px); }
  .hero-copy { margin-top: 23px; font-size: 13px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-notes { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-notes span:last-child { display: none; }
  .proof-strip { padding: 0; grid-template-columns: repeat(2, 1fr); }
  .proof-item { min-height: 92px; padding: 19px 16px; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(odd) { border-left: 0; }
  .proof-item b { font-size: 15px; }
  .catalog-section, .calculator-section, .process-section, .transparency-section, .faq-section, .extras-preview, .directions-preview, .contact-section, .content-contact { padding: 82px 0; }
  .country-links { padding: 62px 0; }
  .country-links nav { grid-template-columns: 1fr 1fr; }
  .country-links nav a:nth-child(odd) { border-left: 0; }
  .country-links nav a:nth-child(n+3) { border-top: 1px solid var(--line); }
  .country-links nav a:last-child { border-right: 0; }
  .catalog-tabs { margin-top: 35px; }
  .catalog-tab { padding: 13px 17px; }
  .catalog-page-hero { padding: 55px 0 70px; }
  .catalog-page-hero .eyebrow { margin-top: 40px; }
  .catalog-page-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .catalog-page { padding-top: 55px; }
  .section-heading, .process-heading { align-items: flex-start; flex-direction: column; gap: 28px; }
  .section-heading h2, .calc-intro h2, .transparency-copy h2, .faq-layout h2, .final-cta h2 { font-size: clamp(38px, 11vw, 52px); }
  .heading-aside, .process-heading > p { width: 100%; }
  .filters { margin-top: 38px; grid-template-columns: 1fr 1fr; }
  .search-field { grid-column: 1 / -1; }
  .filter-reset { height: 60px; }
  .catalog-meta { align-items: flex-start; flex-direction: column; gap: 8px; line-height: 1.5; }
  .car-grid { grid-template-columns: 1fr; }
  .car-image { height: 225px; }
  .catalog-footer { align-items: stretch; flex-direction: column; gap: 22px; }
  .form-row-3, .form-row-2 { grid-template-columns: 1fr; }
  .calc-card { padding: 24px 18px; }
  .calc-fieldset legend { font-size: 15px; }
  .estimate-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-list { grid-template-columns: 1fr; border-top: 0; }
  .process-list li, .process-list li + li { padding: 25px 0 25px 45px; border-top: 1px solid rgba(255,255,255,.18); border-right: 0; }
  .process-list li::before, .process-list li + li::before { top: 28px; left: 5px; }
  .process-list b { margin-top: 12px; }
  .transparency-layout, .faq-layout, .final-cta-layout { grid-template-columns: 1fr; gap: 55px; }
  .extras-layout, .article-layout, .service-note .container { grid-template-columns: 1fr; gap: 45px; }
  .extras-image, .extras-image img { min-height: 330px; }
  .extras-image { box-shadow: 10px 12px 0 #ded9cd; }
  .messenger-links { grid-template-columns: 1fr; }
  .inline-lead-form { padding: 24px 18px; }
  .content-hero { padding: 70px 0 80px; }
  .content-hero .eyebrow, .article-header .eyebrow, .services-hero-content .eyebrow { margin-top: 45px; }
  .content-hero h1, .article-header h1, .services-hero-content h1 { font-size: clamp(40px, 11vw, 54px); }
  .blog-index { padding: 70px 0 85px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: 340px; padding: 25px 20px; }
  .editorial-note { grid-template-columns: 1fr; gap: 12px; padding: 24px 20px; }
  .article-header { padding: 55px 0 65px; }
  .article-layout { padding-top: 60px; padding-bottom: 75px; }
  .article-aside { position: static; }
  .article-body p { font-size: 14px; }
  .services-hero { min-height: 680px; }
  .services-hero-shade { background: linear-gradient(90deg, rgba(13,23,20,.94), rgba(13,23,20,.48)); }
  .services-list, .service-process, .service-note { padding: 82px 0; }
  .services-grid, .service-process ol { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 340px; padding: 26px 20px; }
  .service-process ol { border-top: 0; }
  .service-process li, .service-process li + li { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.18); border-right: 0; }
  .service-process li span { margin-top: 12px; }
  .not-found .container > div { align-items: stretch; flex-direction: column; }
  .car-detail-hero { padding: 35px 0 55px; }
  .car-detail-heading, .car-detail-layout { grid-template-columns: 1fr; gap: 35px; }
  .car-detail-heading { margin: 38px 0 30px; }
  .car-detail-heading h1 { font-size: clamp(42px, 12vw, 58px); }
  .car-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 270px 145px 145px; }
  .car-gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .car-lightbox { width: 100vw; height: 100dvh; max-width: none; max-height: none; padding: 64px 14px 20px; border: 0; }
  .car-lightbox-control { top: auto; bottom: 64px; transform: none; }
  .car-lightbox-prev { left: 14px; }
  .car-lightbox-next { right: 14px; }
  .car-lightbox figcaption { padding: 0 55px; align-items: flex-start; flex-direction: column; gap: 3px; }
  .car-detail-content { padding: 70px 0 80px; }
  .car-spec-table { grid-template-columns: 1fr; }
  .car-spec-table div, .car-spec-table div:nth-child(odd), .car-spec-table div:nth-child(even) { padding: 14px 0; border-left: 0; }
  .car-cost-card { position: static; }
  .related-cars { padding: 70px 0 80px; }
  .related-cars-grid { grid-template-columns: 1fr; }
  .directions-hero { padding: 65px 0 78px; }
  .directions-hero .eyebrow { margin-top: 48px; }
  .directions-hero h1 { font-size: clamp(43px, 12vw, 58px); }
  .directions-page, .country-fit, .country-process, .country-cost, .country-check, .country-faq, .more-directions { padding: 78px 0; }
  .direction-grid, .more-directions .direction-grid, .country-fit-grid, .country-proof .container, .country-process ol, .country-cost-layout, .country-check-layout, .country-faq-layout, .country-compare { grid-template-columns: 1fr; }
  .direction-card { min-height: 315px; padding: 24px 20px; }
  .country-compare { margin-top: 65px; gap: 32px; }
  .country-compare-table > div { grid-template-columns: 1fr; gap: 7px; }
  .country-caution { margin-top: 50px; grid-template-columns: 1fr; gap: 9px; padding: 23px 20px; }
  .country-hero { min-height: 690px; }
  .country-hero::before { opacity: .72; background-position: 58% center; }
  .country-hero-shade { background: linear-gradient(90deg, rgba(13,23,20,.96), rgba(13,23,20,.62)); }
  .country-hero-inner { padding-top: 58px; padding-bottom: 60px; }
  .country-hero .eyebrow { margin-top: 42px; }
  .country-hero h1 { font-size: clamp(42px, 12vw, 57px); }
  .country-hero-inner > p:not(.eyebrow) { font-size: 13px; }
  .country-proof .container > div, .country-proof .container > div:last-child { min-height: 90px; padding: 21px 8px; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .country-fit-grid { margin-top: 38px; }
  .country-fit-grid article { min-height: 300px; padding: 26px 20px; }
  .country-fit-grid h3 { margin-top: 45px; }
  .country-process ol { margin-top: 40px; border-top: 0; }
  .country-process li, .country-process li + li, .country-process li:nth-child(3) { padding: 23px 0; border-top: 1px solid rgba(255,255,255,.18); border-right: 0; }
  .country-process h3 { margin-top: 13px; }
  .country-cost-layout, .country-check-layout, .country-faq-layout { gap: 45px; }
  .country-guide { padding: 70px 0; }
  .country-guide .container { align-items: stretch; flex-direction: column; gap: 30px; }
  .country-guide .button { width: 100%; }
  .cost-sheet { padding: 23px 18px; transform: none; box-shadow: 10px 12px 0 #ded9cd; }
  .sheet-car { align-items: flex-start; flex-direction: column; gap: 8px; }
  .sheet-total b { font-size: 25px; }
  .final-cta { padding: 75px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .brand-footer { grid-column: 1 / -1; grid-row: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .lead-dialog { padding: 38px 20px 25px; }
}

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