:root {
  color-scheme: light;
  --red: #b61b1c;
  --red-dark: #7f1011;
  --red-soft: #fae9e8;
  --ink: #251b1b;
  --muted: #706565;
  --line: #e2d7d5;
  --paper: #f7f2ef;
  --white: #fff;
  --warm: #eaded9;
  --yellow: #d98972;
  --navy: #270b0c;
  --navy-soft: #541415;
  --copper: #d6543f;
  --sand: #ead2cc;
  --green: #23844a;
  --container: 1280px;
  --header: 82px;
  --radius: 16px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--white); }
body { margin: 0; overflow-x: hidden; background: var(--white); color: var(--ink); font-family: var(--font-inter), -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif; font-optical-sizing: auto; font-feature-settings: "kern" 1, "liga" 1; letter-spacing: -.015em; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
::selection { color: #fff; background: var(--red); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; left: 1rem; top: 1rem; padding: .8rem 1rem; background: var(--ink); color: #fff; transform: translateY(-180%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; height: var(--header); background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(17,19,24,.1); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: grid; grid-template-columns: 220px 1fr auto; gap: 28px; align-items: center; }
.brand { width: 205px; height: 68px; display: block; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.desktop-nav a { position: relative; padding: 29px 0 27px; color: #303238; font-size: .78rem; font-weight: 650; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--red); transition: right .25s var(--ease); }
.desktop-nav a:hover::after { right: 0; }
.header-cta { min-height: 46px; padding: 0 21px; display: inline-flex; align-items: center; gap: 26px; border-radius: 999px; background: var(--red); color: #fff; font-size: .76rem; font-weight: 750; box-shadow: 0 10px 30px rgba(182,27,28,.18); transition: background .2s, transform .2s var(--ease); }
.header-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.mobile-header-actions { display: none; }
.mobile-nav { display: none; }

.vehicle-selector { position: relative; z-index: 20; border-block: 1px solid #e3d8d5; background: linear-gradient(135deg,#fbf7f4,#f2e8e4); box-shadow: 0 14px 38px rgba(70,16,17,.06); }
.vehicle-selector-inner { min-height: 112px; padding-block: 16px; display: grid; grid-template-columns: 165px minmax(0,1fr); gap: 26px; align-items: center; }
.vehicle-selector-intro { display: flex; flex-direction: column; gap: 7px; }
.vehicle-selector-intro span { color: var(--red); font-size: .57rem; font-weight: 850; letter-spacing: .14em; }
.vehicle-selector-intro strong { font-family: var(--font-inter-tight),sans-serif; font-size: 1.05rem; letter-spacing: -.035em; }
.vehicle-selector-form { display: grid; grid-template-columns: 1.1fr 1fr .72fr auto; gap: 9px; align-items: end; }
.vehicle-selector-field { min-width: 0; }
.vehicle-selector-field > label { display: block; margin: 0 0 6px 3px; color: #6f7177; font-size: .55rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.vehicle-selector-control { height: 58px; display: grid; grid-template-columns: 48px minmax(0,1fr); align-items: center; overflow: hidden; border: 1px solid #d4d3cf; border-radius: 12px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.vehicle-selector-control:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(182,27,28,.1); }
.vehicle-selector-control select { width: 100%; height: 100%; min-width: 0; padding: 0 30px 0 11px; border: 0; outline: 0; background: #fff; color: var(--ink); cursor: pointer; font-size: .74rem; font-weight: 690; }
.vehicle-selector-control select:disabled { cursor: not-allowed; color: #9a9b9f; background: #fafafa; }
.vehicle-selector-step, .vehicle-selector-logo { width: 48px; height: 100%; display: grid; place-items: center; border-right: 1px solid #ecebe8; color: var(--red); font-size: .58rem; font-weight: 850; }
.vehicle-selector-logo .brand-logo { width: 40px; height: 32px; margin: 0; padding: 4px; border: 0; border-radius: 0; }
.vehicle-selector-logo .brand-logo-wordmark { font-size: .48rem; }
.vehicle-selector-submit { min-height: 58px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 0; border-radius: 12px; background: var(--ink); color: #fff; cursor: pointer; white-space: nowrap; font-size: .68rem; font-weight: 780; transition: background .2s, transform .2s var(--ease); }
.vehicle-selector-submit:hover:not(:disabled) { background: var(--red); transform: translateY(-1px); }
.vehicle-selector-submit:disabled { background: #c9c8c5; cursor: not-allowed; }
.vehicle-selector-submit span { font-size: 1rem; }

.button { min-height: 54px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-size: .78rem; font-weight: 730; transition: transform .22s var(--ease), background .22s, border-color .22s, color .22s, box-shadow .22s; }
.button:hover { transform: translateY(-2px); }
.button span { transition: transform .22s var(--ease); }
.button:hover span { transform: translateX(3px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 14px 34px rgba(182,27,28,.2); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 18px 40px rgba(182,27,28,.28); }
.button-outline { background: #fff; border-color: #bfc1c5; color: var(--ink); }
.button-outline:hover { border-color: var(--ink); }
.button-white { background: #fff; color: var(--red-dark); }
.button-wide { width: 100%; }

.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 20px; color: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.eyebrow::before { content: ""; width: 25px; height: 2px; background: currentColor; }
.section { padding: 112px 0; }
.section-heading { margin-bottom: 48px; display: grid; grid-template-columns: minmax(0,1.35fr) minmax(260px,.65fr); gap: 64px; align-items: end; }
.section-heading h2, .content-aside h2, .location-copy h2, .faq-grid h2 { margin: 0; max-width: 820px; font-family: var(--font-inter-tight), sans-serif; font-size: clamp(2.35rem, 4.4vw, 4.8rem); line-height: .98; letter-spacing: -.06em; font-weight: 630; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.75; }
.section-heading > a { justify-self: end; padding-bottom: 5px; border-bottom: 2px solid var(--red); color: var(--red-dark); font-size: .82rem; font-weight: 760; }

.light-hero { position: relative; overflow: hidden; min-height: calc(100svh - var(--header)); display: flex; align-items: center; background: linear-gradient(135deg,#fff 0 54%,#f2f0eb 54%); color: var(--ink); isolation: isolate; }
.hero-accent { position: absolute; z-index: -1; top: -35%; left: -14%; width: 58vw; aspect-ratio: 1; border: clamp(50px,8vw,130px) solid rgba(182,27,28,.04); border-radius: 50%; }
.hero-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(45px, 6vw, 90px); align-items: center; padding-block: 68px 74px; }
.hero-copy { position: relative; z-index: 2; }
.local-badge { width: fit-content; margin-bottom: 34px; padding: 8px 10px 8px 12px; display: flex; gap: 14px; align-items: center; border: 1px solid #d8dadc; border-radius: 999px; background: rgba(255,255,255,.84); font-size: .58rem; letter-spacing: .1em; }
.local-badge span { color: var(--muted); font-weight: 750; }
.local-badge b { padding: 5px 8px; border-radius: 999px; background: #e8f6ed; color: var(--green); font-size: .55rem; }
.light-hero h1 { margin: 0; max-width: 760px; font-family: var(--font-inter-tight), sans-serif; font-size: clamp(3.45rem, 6.1vw, 6.8rem); line-height: .9; letter-spacing: -.075em; font-weight: 640; }
.light-hero h1 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 680px; margin: 30px 0 35px; color: #52555c; font-size: 1.03rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { margin-top: 50px; padding-top: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; border-top: 1px solid #d8dade; }
.hero-proof div { display: flex; flex-direction: column; gap: 6px; }
.hero-proof strong { font-size: .78rem; }
.hero-proof span { color: #777a80; font-size: .66rem; }
.hero-visual { position: relative; min-height: 640px; }
.hero-image-frame { position: absolute; inset: 3% 0 5% 8%; overflow: hidden; background: var(--white); border: 10px solid #fff; box-shadow: 0 35px 90px rgba(40,37,31,.16); }
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.42)); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(.96) brightness(1.12); }
.hero-image-frame > span { position: absolute; z-index: 2; left: 20px; bottom: 20px; padding: 9px 12px; background: #fff; color: var(--ink); font-size: .56rem; font-weight: 850; letter-spacing: .12em; }
.hero-location-card { position: absolute; z-index: 3; left: 0; bottom: 0; width: min(330px,80%); padding: 24px; background: var(--red); color: #fff; box-shadow: 0 22px 60px rgba(182,27,28,.24); }
.hero-location-card span { display: block; margin-bottom: 12px; color: #ffd5d6; font-size: .58rem; font-weight: 800; letter-spacing: .15em; }
.hero-location-card strong { display: block; margin-bottom: 18px; line-height: 1.35; }
.hero-location-card a { font-size: .72rem; font-weight: 780; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-strip .container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; overflow: hidden; }
.trust-strip span { white-space: nowrap; color: #6f7278; font-size: .62rem; font-weight: 750; letter-spacing: .06em; }
.trust-strip span:not(:last-child)::after { content: "•"; margin-left: clamp(28px,4vw,64px); color: var(--red); }

.services-section { background: var(--paper); }
.service-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.service-cards.corporate-cards { grid-template-columns: repeat(2,1fr); }
.service-cards > a { min-height: 360px; padding: 30px; display: flex; flex-direction: column; background: #fff; border: 1px solid #e4e4e5; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.service-cards > a:hover { transform: translateY(-7px); border-color: #d7b5b7; box-shadow: 0 24px 54px rgba(23,23,25,.08); }
.service-cards > a > span { color: var(--red); font-size: .68rem; font-weight: 800; }
.service-cards h3 { margin: auto 0 14px; font-family: var(--font-inter-tight), sans-serif; font-size: 1.75rem; letter-spacing: -.045em; line-height: 1.05; }
.service-cards p { min-height: 58px; margin: 0 0 22px; color: var(--muted); font-size: .85rem; line-height: 1.65; }
.service-cards strong { padding-top: 18px; border-top: 1px solid var(--line); color: var(--red-dark); font-size: .72rem; }

.brand-preview { background: #fff; }
.brand-ticker { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-ticker a { min-height: 165px; padding: 23px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s, color .2s; }
.brand-ticker a:hover { background: var(--red); color: #fff; }
.brand-ticker strong { font-family: var(--font-inter-tight), sans-serif; font-size: 1.25rem; }
.brand-ticker a > span:not(.brand-logo) { margin-top: 9px; color: var(--muted); font-size: .65rem; line-height: 1.5; }
.brand-ticker a:hover > span:not(.brand-logo) { color: #ffdfe0; }
.brand-logo { width: 96px; height: 48px; margin-bottom: 17px; padding: 7px 9px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; overflow: hidden; border: 1px solid #ecebed; border-radius: 10px; background: #fff; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-logo-wordmark { color: var(--ink); font-family: var(--font-inter-tight),sans-serif; font-size: .7rem; font-weight: 850; letter-spacing: .08em; }
.brand-disclaimer { margin: 18px 0 0; color: #81838a; font-size: .68rem; }

.home-reviews { background: var(--paper); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.review-card { min-height: 330px; padding: 30px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(25,25,28,.045); }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.review-stars { display: flex; gap: 3px; color: #d8d8d8; font-size: .82rem; }
.review-stars .filled { color: var(--red); }
.google-maps-attribution { color: #5e5e5e; font-family: Roboto,Arial,sans-serif; font-size: .64rem; white-space: nowrap; }
.review-card blockquote { margin: auto 0; padding: 35px 0; color: #303238; font-family: var(--font-inter-tight),sans-serif; font-size: 1.22rem; line-height: 1.45; letter-spacing: -.035em; }
.review-card footer { padding-top: 18px; display: grid; grid-template-columns: 40px minmax(0,1fr) auto; gap: 11px; align-items: center; border-top: 1px solid var(--line); }
.review-avatar { width: 40px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--red-soft); color: var(--red); font-size: .68rem; font-weight: 850; }
.review-avatar.photo { height: 40px; object-fit: cover; background: #f3f3f3; }
.review-card footer > div:nth-child(2) { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.review-card footer > div:nth-child(2) > a { width: fit-content; }
.review-card footer strong { font-size: .7rem; }
.review-card footer span,.review-card footer time { color: #92949a; font-size: .55rem; }
.review-card footer span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.review-source-link { max-width: 105px; color: #60636a; font-size: .55rem; font-weight: 700; line-height: 1.35; text-align: right; }
.reviews-page { background: #fff; }
.google-review-summary { margin-bottom: 20px; padding: 24px 28px; display: grid; grid-template-columns: 190px 1fr auto; gap: 28px; align-items: center; border: 1px solid #dfe4e8; background: #f8fafb; }
.google-review-summary > div { display: grid; grid-template-columns: auto 1fr; gap: 2px 9px; align-items: center; }
.google-review-summary > div span { grid-column: 1/-1; color: #5e5e5e; font-family: Roboto,Arial,sans-serif; font-size: .64rem; }
.google-review-summary > div strong { color: #202124; font-family: var(--font-inter-tight),sans-serif; font-size: 1.45rem; }
.google-review-summary > div small { color: #73767d; font-size: .57rem; }
.google-review-summary p { margin: 0; color: #6c7077; font-size: .67rem; line-height: 1.65; }
.google-review-summary > a { color: var(--red-dark); font-size: .65rem; font-weight: 780; white-space: nowrap; }
.reviews-empty { max-width: 760px; margin: 0 auto; padding: 70px 35px; border: 1px solid var(--line); background: var(--paper); text-align: center; }
.reviews-empty > span { color: var(--red); font-size: .6rem; font-weight: 820; letter-spacing: .13em; }
.reviews-empty h2 { margin: 20px 0 13px; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(2.3rem,4vw,4rem); line-height: 1; letter-spacing: -.055em; }
.reviews-empty p { margin: 0 auto 28px; max-width: 540px; color: var(--muted); line-height: 1.7; }
.reviews-empty .button b { font-weight: 500; }
.review-policy { padding: 42px 0; background: var(--paper); border-block: 1px solid var(--line); }
.review-policy .container { display: grid; grid-template-columns: 220px 1fr; gap: 45px; align-items: start; }
.review-policy strong { color: var(--red-dark); font-size: .72rem; }
.review-policy p { margin: 0; max-width: 760px; color: var(--muted); font-size: .74rem; line-height: 1.7; }

.request-section { background: #f4f1eb; }
.request-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(50px,8vw,120px); align-items: start; }
.request-grid > div:first-child { position: sticky; top: calc(var(--header) + 40px); }
.request-grid h2 { margin: 0; font-family: var(--font-inter-tight), sans-serif; font-size: clamp(2.7rem,4.8vw,5rem); line-height: .97; letter-spacing: -.06em; }
.request-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.request-grid ol { margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid #d7d3cc; }
.request-grid li { padding: 15px 0; display: grid; grid-template-columns: 42px 1fr; border-bottom: 1px solid #d7d3cc; color: #4b4e54; font-size: .82rem; }
.request-grid li span { color: var(--red); font-size: .65rem; font-weight: 800; }
.request-grid > div:first-child > a { color: var(--red-dark); font-size: .78rem; font-weight: 750; }
.part-form { padding: clamp(24px,4vw,48px); background: #fff; border: 1px solid #dfdedb; box-shadow: 0 28px 70px rgba(41,38,33,.08); }
.field { margin-bottom: 17px; }
.field label { display: flex; justify-content: space-between; margin-bottom: 7px; color: #3d4045; font-size: .68rem; font-weight: 750; }
.field label span { color: #989a9f; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d4d5d8; border-radius: 8px; background: #fafafa; padding: 13px 14px; color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s; }
.field input, .field select { min-height: 50px; }
.field select { cursor: pointer; }
.field select:disabled { color: #999ba0; cursor: not-allowed; background: #f0f0ef; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(182,27,28,.1); }
.form-select-with-logo { display: grid; grid-template-columns: 54px minmax(0,1fr); overflow: hidden; border: 1px solid #d4d5d8; border-radius: 8px; background: #fafafa; }
.form-select-with-logo:focus-within { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(182,27,28,.1); }
.form-select-with-logo > span { width: 54px; height: 50px; margin: 0; padding: 7px; display: grid; place-items: center; border: 0; border-right: 1px solid #e2e2e2; border-radius: 0; color: var(--red); font-size: .58rem; font-weight: 850; }
.form-select-with-logo > .brand-logo-wordmark { color: var(--ink); font-size: .47rem; }
.form-select-with-logo select { border: 0; border-radius: 0; box-shadow: none !important; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr .7fr; gap: 12px; }
.form-error { padding: 10px; background: var(--red-soft); color: var(--red-dark); font-size: .75rem; }
.form-note { margin: 14px 0 0; color: #85878c; font-size: .66rem; line-height: 1.55; }

.location-section { background: #fff; }
.location-grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 650px; }
.store-image { position: relative; min-height: 600px; margin: 0; overflow: hidden; }
.store-image img { width: 100%; height: 100%; object-fit: cover; }
.store-image figcaption { position: absolute; left: 18px; bottom: 18px; padding: 10px 12px; background: rgba(255,255,255,.94); color: var(--ink); font-size: .65rem; font-weight: 700; }
.location-copy { padding: clamp(50px,7vw,110px); display: flex; flex-direction: column; justify-content: center; background: var(--paper); }
.location-copy address { margin: 30px 0; font-family: var(--font-inter-tight), sans-serif; font-size: clamp(1.25rem,2vw,1.8rem); line-height: 1.45; }
.location-copy > div { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.location-copy > div > a:not(.button) { color: var(--red-dark); font-size: .76rem; font-weight: 740; }
.location-copy > p:not(.eyebrow) { margin-top: 25px; color: var(--muted); font-size: .77rem; line-height: 1.7; }

.blog-preview { background: #fff; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.blog-preview-grid article { padding: 30px; border: 1px solid var(--line); }
.blog-preview-grid article > span { color: var(--red); font-size: .62rem; font-weight: 800; letter-spacing: .08em; }
.blog-preview-grid h3 { margin: 28px 0 14px; font-family: var(--font-inter-tight), sans-serif; font-size: 1.65rem; line-height: 1.12; letter-spacing: -.045em; }
.blog-preview-grid p { color: var(--muted); font-size: .84rem; line-height: 1.7; }
.blog-preview-grid article > a { display: inline-block; margin-top: 20px; color: var(--red-dark); font-size: .75rem; font-weight: 760; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px,8vw,120px); }
.faq-list { border-top: 1px solid #cfd0d3; }
.faq-list details { border-bottom: 1px solid #cfd0d3; }
.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-weight: 680; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-size: 1.3rem; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { margin: 0; padding: 0 48px 24px 0; color: var(--muted); font-size: .85rem; line-height: 1.75; }

.final-cta { padding: 80px 0; background: var(--red); color: #fff; }
.final-cta .container { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.final-cta .eyebrow { color: #ffd8d9; }
.final-cta h2 { margin: 0; max-width: 790px; font-family: var(--font-inter-tight), sans-serif; font-size: clamp(2.5rem,4.7vw,5rem); line-height: .96; letter-spacing: -.06em; }
.final-cta .container > div:last-child { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.final-cta .container > div:last-child > a:last-child { font-size: .9rem; font-weight: 760; }

.breadcrumbs { padding-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; color: #777a80; font-size: .65rem; }
.breadcrumbs span { display: flex; gap: 8px; }
.breadcrumbs i { color: #b4b5b9; font-style: normal; }
.breadcrumbs b { color: var(--ink); }
.page-hero { position: relative; overflow: hidden; padding-bottom: 90px; background: linear-gradient(145deg,#fff,#f2f0eb); }
.page-hero::after { content: ""; position: absolute; right: -8vw; bottom: -16vw; width: 45vw; aspect-ratio: 1; border: 7vw solid rgba(182,27,28,.04); border-radius: 50%; }
.page-hero-grid { position: relative; z-index: 2; min-height: 450px; padding-top: 70px; display: grid; grid-template-columns: 1fr 230px; gap: 50px; align-items: center; }
.page-hero h1 { margin: 0; max-width: 980px; font-family: var(--font-inter-tight), sans-serif; font-size: clamp(3.1rem,6.3vw,6.7rem); line-height: .91; letter-spacing: -.07em; font-weight: 630; }
.page-lead { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.page-index { text-align: right; }
.page-index span { color: var(--red); font-family: var(--font-inter-tight), sans-serif; font-size: clamp(4.5rem,8vw,8rem); font-weight: 700; letter-spacing: -.08em; }
.page-index p { color: #8b8d92; font-size: .6rem; font-weight: 800; letter-spacing: .14em; }

.content-section { padding: 110px 0; background: #fff; }
.content-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,8vw,120px); }
.content-aside { align-self: start; position: sticky; top: calc(var(--header) + 40px); }
.content-aside > a { display: inline-block; margin-top: 26px; color: var(--red-dark); font-size: .75rem; font-weight: 750; }
.content-aside > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.content-body, .seo-copy { color: #55585f; font-size: .98rem; line-height: 1.83; }
.content-body > p:first-child, .seo-copy > p:first-of-type, .lead-copy { color: #282a2f; font-size: 1.12rem; }
.content-body h2, .seo-copy h2 { margin: 50px 0 18px; color: var(--ink); font-family: var(--font-inter-tight), sans-serif; font-size: clamp(2rem,3.6vw,3.5rem); line-height: 1; letter-spacing: -.055em; }
.content-body h3, .seo-copy h3 { margin: 38px 0 12px; color: var(--ink); font-size: 1.3rem; }
.content-body a, .seo-copy a { color: var(--red-dark); text-decoration: underline; text-underline-offset: 3px; }
a.button { text-decoration: none; }
a.button-primary, a.button-copper { color: #fff; }
.content-body li, .seo-copy li { margin-bottom: 8px; }
.process-list { margin-top: 40px; border-top: 1px solid var(--line); }
.process-item { padding: 25px 0; display: grid; grid-template-columns: 55px 1fr; border-bottom: 1px solid var(--line); }
.process-item > span { color: var(--red); font-size: .68rem; font-weight: 820; }
.process-item h3 { margin: 0 0 6px; font-size: 1rem; }
.process-item p { margin: 0; color: var(--muted); font-size: .86rem; }
.service-cta { margin-top: 45px; padding: 30px; display: flex; justify-content: space-between; gap: 30px; align-items: center; background: var(--red-soft); border-left: 4px solid var(--red); color: var(--ink); }
.service-cta strong { font-size: 1rem; }
.service-cta p { margin: 7px 0 0; color: var(--muted); font-size: .78rem; }
.service-cta .button { flex: none; color: #fff; text-decoration: none; }
.related-section { padding: 90px 0; background: var(--paper); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.related-grid a { padding: 28px; background: #fff; border: 1px solid #e0e1e3; }
.related-grid h2 { margin: 0; font-size: 1.25rem; }
.related-grid p { min-height: 65px; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.related-grid span { color: var(--red-dark); font-size: .72rem; font-weight: 750; }
.source-links { padding: 26px 0; background: #fff; border-top: 1px solid var(--line); }
.source-links .container { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.source-links strong { margin-right: auto; font-size: .75rem; }
.source-links a { color: var(--red-dark); font-size: .7rem; }

.service-directory { display: grid; gap: 12px; }
.service-directory article { padding: 30px; display: grid; grid-template-columns: 60px 1fr 220px; gap: 25px; align-items: center; border: 1px solid var(--line); background: #fff; }
.service-directory article > span { color: var(--red); font-size: .68rem; font-weight: 800; }
.service-directory h2 { margin: 0 0 9px; font-size: 1.65rem; }
.service-directory p { margin: 0; color: var(--muted); }
.service-directory ul { display: flex; gap: 22px; margin: 14px 0 0; padding: 0; list-style: none; color: #888a90; font-size: .68rem; }
.service-directory article > a { justify-self: end; color: var(--red-dark); font-size: .76rem; font-weight: 760; }
.service-directory article > a i { margin-left: 15px; font-style: normal; }
.cross-link-section { padding: 65px 0; background: var(--red-soft); }
.cross-link-section .container { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.cross-link-section h2 { margin: 0; font-family: var(--font-inter-tight), sans-serif; font-size: clamp(2rem,3.4vw,3.6rem); letter-spacing: -.055em; }

.brand-directory { background: #fff; }
.brand-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-grid a { position: relative; min-height: 225px; padding: 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-grid a:hover { background: var(--red-soft); }
.brand-grid a > span:not(.brand-logo) { color: #8c8e94; font-size: .6rem; }
.brand-grid strong { margin: 10px 0 7px; font-family: var(--font-inter-tight),sans-serif; font-size: 1.55rem; }
.brand-grid small { color: var(--muted); }
.brand-grid i { position: absolute; right: 22px; bottom: 22px; color: var(--red); font-style: normal; }
.directory-note { margin-top: 45px; padding: 32px; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; background: var(--paper); }
.directory-note p { color: var(--muted); }

.model-hero { padding: 0 0 95px; background: linear-gradient(145deg,#fff,#f4f2ed); }
.model-hero .container > .eyebrow { margin-top: 28px; }
.model-hero-brand { width: fit-content; margin-top: 56px; display: flex; align-items: center; gap: 12px; }
.model-hero-brand .brand-logo { width: 118px; height: 62px; margin: 0; padding: 10px 13px; box-shadow: 0 12px 34px rgba(17,19,24,.06); }
.model-hero-brand > span { color: #777980; font-size: .62rem; font-weight: 730; letter-spacing: .06em; text-transform: uppercase; }
.model-hero h1 { margin: 0; max-width: 1050px; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(3rem,6.2vw,6.6rem); line-height: .91; letter-spacing: -.07em; }
.model-hero .container > p:not(.eyebrow) { max-width: 730px; margin: 28px 0 35px; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.model-content { background: #fff; }
.model-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 60px; }
.model-grid a { min-height: 105px; padding: 22px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); }
.model-grid a:hover { border-color: var(--red); background: var(--red-soft); }
.model-grid span { margin-top: 9px; color: var(--red-dark); font-size: .68rem; }
.external-note, .trademark-note { margin-top: 45px; padding: 24px; background: var(--paper); color: #73767c; font-size: .72rem; line-height: 1.7; }
.external-note span { color: var(--red); font-size: .6rem; font-weight: 800; letter-spacing: .1em; }
.external-note p { margin: 8px 0; }
.info-checklist { margin: 36px 0 50px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.info-checklist div { padding: 22px; border: 1px solid var(--line); }
.info-checklist span { color: var(--red); font-size: .62rem; font-weight: 800; }
.info-checklist strong { display: block; margin: 20px 0 8px; color: var(--ink); }
.info-checklist p { margin: 0; font-size: .75rem; line-height: 1.55; }
.model-faq { margin-top: 45px; }
.sibling-links { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.sibling-links strong { grid-column: 1/-1; color: var(--ink); }
.sibling-links a { font-size: .75rem; }

.blog-index { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.blog-grid article { min-height: 330px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); }
.blog-grid article.featured { grid-column: 1/-1; min-height: 390px; background: var(--red-soft); }
.blog-grid article > div { display: flex; justify-content: space-between; color: var(--red); font-size: .62rem; font-weight: 750; }
.blog-grid h2 { margin: auto 0 15px; max-width: 850px; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(1.8rem,3.4vw,3.5rem); line-height: 1; letter-spacing: -.055em; }
.blog-grid p { max-width: 760px; color: var(--muted); line-height: 1.7; }
.article-link { margin-top: 20px; color: var(--red-dark); font-size: .75rem; font-weight: 760; }
.article-header { padding-bottom: 80px; background: linear-gradient(145deg,#fff,#f3f1ec); }
.article-cover { margin-top: -34px; position: relative; z-index: 2; overflow: hidden; background: #fff; box-shadow: 0 24px 70px rgba(25,25,28,.12); }
.article-cover img { width: 100%; max-height: 560px; object-fit: cover; }
.article-narrow { max-width: 940px; }
.article-meta { margin: 65px 0 20px; display: flex; gap: 22px; color: var(--red); font-size: .65rem; font-weight: 750; }
.article-header h1 { margin: 0; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(3rem,6vw,6.2rem); line-height: .92; letter-spacing: -.07em; }
.article-header .article-narrow > p { max-width: 760px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.article-layout { padding-block: 90px 120px; display: grid; grid-template-columns: 1fr 300px; gap: clamp(50px,8vw,110px); }
.article-body { max-width: 760px; color: #4f5258; font-size: 1rem; line-height: 1.85; }
.article-body section { margin-bottom: 52px; }
.article-body h2 { margin: 0 0 18px; color: var(--ink); font-family: var(--font-inter-tight),sans-serif; font-size: clamp(2rem,3.4vw,3.4rem); line-height: 1; letter-spacing: -.055em; }
.article-body li { margin-bottom: 10px; }
.article-disclaimer { padding: 24px; background: var(--red-soft); border-left: 3px solid var(--red); }
.article-disclaimer p { margin-bottom: 0; font-size: .78rem; }
.article-aside { align-self: start; position: sticky; top: calc(var(--header) + 35px); display: grid; gap: 14px; }
.article-aside > div { padding: 24px; background: var(--paper); }
.article-aside strong { display: block; margin-bottom: 15px; }
.article-aside a { display: block; padding: 10px 0; border-bottom: 1px solid #d8d5cf; color: var(--red-dark); font-size: .72rem; }
.article-aside p { color: var(--muted); font-size: .76rem; line-height: 1.6; }
.article-aside .aside-cta { background: var(--red); color: #fff; }
.article-aside .aside-cta p { color: #ffdfe0; }
.article-aside .aside-cta a { border-color: rgba(255,255,255,.25); color: #fff; }

.about-hero, .mission-hero { padding-bottom: 100px; background: var(--paper); }
.about-hero-grid { padding-top: 65px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.about-hero h1, .mission-hero h1 { margin: 0; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(3rem,5.8vw,6.2rem); line-height: .93; letter-spacing: -.07em; }
.about-hero p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.about-hero figure { margin: 0; }
.about-hero figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 30px 70px rgba(29,27,23,.14); }
.about-hero figcaption { margin-top: 10px; color: var(--muted); font-size: .67rem; }
.value-grid { margin: 45px 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.value-grid a { padding: 22px; border: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.value-grid span { color: var(--red); font-size: .62rem; font-weight: 800; }
.value-grid strong { display: block; margin: 16px 0 8px; }
.value-grid p { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.55; }
.mission-hero .eyebrow { margin-top: 70px; }
.mission-hero h1 { max-width: 1050px; }
.mission-section { background: #fff; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mission-grid article { min-height: 480px; padding: clamp(30px,5vw,62px); background: var(--paper); }
.mission-grid article > span { display: block; margin-bottom: 80px; color: var(--red); font-size: .7rem; font-weight: 800; }
.mission-grid h2 { margin: 0 0 20px; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(2rem,3.4vw,3.6rem); line-height: 1; letter-spacing: -.055em; }
.mission-grid article > p:last-child { color: var(--muted); line-height: 1.75; }
.principles { margin-top: 18px; padding: 30px; display: grid; grid-template-columns: 210px 1fr; gap: 30px; border: 1px solid var(--line); }
.principles div { display: flex; flex-wrap: wrap; gap: 10px; }
.principles span { padding: 8px 12px; border-radius: 999px; background: var(--red-soft); color: var(--red-dark); font-size: .7rem; }

.legal-hero { padding-bottom: 75px; background: var(--paper); }
.legal-hero .eyebrow { margin-top: 60px; }
.legal-hero h1 { margin: 0; max-width: 980px; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(2.8rem,5.5vw,5.8rem); line-height: .94; letter-spacing: -.065em; }
.legal-hero .container > p:not(.eyebrow) { max-width: 760px; color: var(--muted); line-height: 1.75; }
.legal-hero .container > span { display: block; margin-top: 25px; color: #888a8f; font-size: .66rem; }
.legal-section { padding: 85px 0 120px; }
.legal-document { max-width: 880px; color: #4f5258; line-height: 1.85; }
.legal-document h2 { margin: 50px 0 15px; color: var(--ink); font-family: var(--font-inter-tight),sans-serif; font-size: 1.75rem; letter-spacing: -.04em; }
.legal-document h2:first-child { margin-top: 0; }
.legal-document li { margin-bottom: 8px; }
.policy-table { margin: 25px 0; border-top: 1px solid var(--line); }
.policy-table > div { padding: 22px 0; display: grid; grid-template-columns: 1.2fr .8fr 2fr; gap: 25px; border-bottom: 1px solid var(--line); align-items: start; }
.policy-table span { color: var(--red-dark); font-size: .72rem; font-weight: 750; }
.policy-table p { margin: 0; font-size: .8rem; }

.contact-section { background: #fff; }
.contact-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.contact-card { padding: 30px; min-height: 270px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #fff; border-top: 4px solid var(--red); }
.contact-card > span { color: var(--red); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.contact-card strong { margin: 35px 0 12px; font-size: 1.15rem; line-height: 1.4; }
.contact-card p { color: var(--muted); font-size: .75rem; line-height: 1.6; }
.contact-card a { margin-top: auto; color: var(--red-dark); font-size: .75rem; font-weight: 760; }

.site-footer { padding-top: 44px; background: #efede8; border-top: 1px solid #dcd8d1; }
.footer-topline { min-height: 55px; padding-bottom: 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #d6d2cb; color: var(--muted); font-size: .65rem; }
.footer-topline strong { color: var(--red); letter-spacing: .04em; }
.footer-grid { padding-block: 55px; display: grid; grid-template-columns: 1.45fr .8fr .8fr .9fr 1fr; gap: 38px; }
.footer-brand img { width: 210px; height: 70px; object-fit: cover; object-position: center 56%; }
.footer-brand p { max-width: 340px; color: var(--muted); font-size: .78rem; line-height: 1.7; }
.footer-phone { display: inline-block; margin-top: 15px; color: var(--red-dark); font-size: 1rem; font-weight: 780; }
.footer-label { margin: 0 0 18px; color: #8a8b90; font-size: .6rem; font-weight: 800; letter-spacing: .12em; }
.footer-links, .footer-contact, .footer-address { display: flex; flex-direction: column; gap: 11px; font-size: .73rem; line-height: 1.55; }
.footer-links a:hover, .footer-address a:hover { color: var(--red); }
.footer-cookie-button { padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-size: .73rem; }
.footer-cookie-button:hover { color: var(--red); }
.footer-address a:last-child { margin-top: 10px; color: var(--red-dark); }
.footer-hours { margin-top: 8px; padding-top: 13px; display: grid; grid-template-columns: auto 1fr; gap: 7px 12px; border-top: 1px solid #d6d2cb; font-size: .62rem; }
.footer-hours strong { color: var(--ink); }
.footer-hours span { color: var(--muted); text-align: right; }
.footer-bottom { min-height: 62px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #d6d2cb; color: #85868a; font-size: .62rem; }

.cookie-banner { position: fixed; z-index: 500; left: 24px; right: 24px; bottom: 24px; margin-inline: auto; max-width: 1050px; padding: 24px; display: grid; grid-template-columns: 52px 1fr auto; gap: 24px; align-items: center; background: rgba(255,255,255,.98); border: 1px solid #d8d9dc; box-shadow: 0 25px 90px rgba(22,24,28,.2); backdrop-filter: blur(14px); }
.cookie-icon { width: 48px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--red-soft); color: var(--red); font-size: 1.5rem; }
.cookie-kicker { margin: 0 0 5px; color: var(--red); font-size: .56rem; font-weight: 800; letter-spacing: .12em; }
.cookie-banner h2 { margin: 0 0 7px; font-family: var(--font-inter-tight),sans-serif; font-size: 1.35rem; letter-spacing: -.035em; }
.cookie-banner div > p:last-child { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }
.cookie-banner div > p a { color: var(--red-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { min-height: 46px; padding-inline: 20px; }

.not-found { min-height: calc(100vh - var(--header)); padding: 100px 0; display: grid; place-items: center; background: var(--paper); }
.not-found .container { max-width: 880px; }
.not-found .code { color: var(--red); font-size: .7rem; font-weight: 800; }
.not-found h1 { margin: 20px 0; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(3rem,7vw,7rem); line-height: .95; letter-spacing: -.07em; }
.not-found p { color: var(--muted); line-height: 1.7; }

.premium-hero { position: relative; min-height: min(860px,calc(100svh - var(--header))); display: flex; align-items: stretch; isolation: isolate; overflow: hidden; color: #fff; background: var(--navy); }
.premium-hero-photo { position: absolute; z-index: -3; inset: 0; }
.premium-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: saturate(.92) contrast(1.03); }
.premium-hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,rgba(35,7,8,.97) 0%,rgba(58,10,11,.87) 43%,rgba(78,15,16,.35) 70%,rgba(35,7,8,.2) 100%),linear-gradient(0deg,rgba(32,6,7,.52),transparent 58%); }
.premium-hero-shade::after { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size: 84px 84px; mask-image: linear-gradient(90deg,#000,transparent 75%); }
.premium-hero-inner { min-height: inherit; padding-block: 88px 70px; display: grid; grid-template-columns: minmax(0,1fr) 330px; align-items: end; gap: 70px; }
.premium-hero-copy { max-width: 830px; align-self: center; }
.premium-hero .local-badge { border-color: rgba(255,255,255,.25); background: rgba(61,10,11,.7); backdrop-filter: blur(12px); }
.premium-hero .local-badge span { color: #ead8d6; }
.premium-hero .local-badge b { background: var(--copper); color: #fff; }
.premium-hero .eyebrow { color: #f1b0a3; }
.premium-hero h1 { margin: 0; max-width: 820px; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(3.8rem,6.6vw,7.4rem); line-height: .88; letter-spacing: -.075em; font-weight: 640; }
.premium-hero h1 em { color: #f29a87; font-style: normal; }
.premium-hero .hero-lead { color: #eadfdd; font-size: 1.03rem; }
.button-glass { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.button-glass:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.7); }
.button-copper { background: var(--copper); color: #fff; box-shadow: 0 15px 38px rgba(137,26,27,.24); }
.button-copper:hover { background: var(--red); }
.premium-proof { margin-top: 55px; padding-top: 25px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; border-top: 1px solid rgba(255,255,255,.2); }
.premium-proof span { display: flex; flex-direction: column; gap: 5px; color: #dbc8c6; font-size: .67rem; }
.premium-proof b { color: #fff; font-size: .84rem; }
.hero-store-card { align-self: end; padding: 28px; border: 1px solid rgba(255,255,255,.28); background: rgba(250,248,242,.92); color: var(--ink); box-shadow: 0 25px 70px rgba(0,0,0,.25); backdrop-filter: blur(16px); }
.hero-store-card > span { display: block; color: var(--red); font-size: .58rem; font-weight: 850; letter-spacing: .15em; }
.hero-store-card > strong { display: block; margin: 20px 0 6px; font-family: var(--font-inter-tight),sans-serif; font-size: 1.35rem; line-height: 1.18; letter-spacing: -.035em; }
.hero-store-card > small { color: var(--muted); }
.hero-store-card > div { margin: 24px 0; padding-block: 15px; display: flex; justify-content: space-between; border-block: 1px solid var(--line); font-size: .7rem; }
.hero-store-card em { color: var(--green); font-style: normal; font-weight: 800; }
.hero-store-card a { color: var(--red-dark); font-size: .73rem; font-weight: 800; }
.premium-trust { border: 0; background: var(--navy); color: #fff; }
.premium-trust .container { min-height: 76px; }
.premium-trust span { color: #eadcda; }
.premium-trust span:not(:last-child)::after { color: var(--copper); }

.premium-heading .eyebrow { color: var(--copper); }
.catalog-section { background: #f5f2ec; }
.catalog-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }
.catalog-card { position: relative; min-height: 390px; grid-column: span 4; overflow: hidden; isolation: isolate; color: #fff; background: var(--navy); }
.catalog-card:nth-child(4),.catalog-card:nth-child(5) { grid-column: span 6; min-height: 360px; }
.catalog-card > img { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease),filter .5s; }
.catalog-card:hover > img { transform: scale(1.045); filter: saturate(1.08); }
.catalog-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(0deg,rgba(35,7,8,.97),rgba(35,7,8,.08) 70%); }
.catalog-index { position: absolute; top: 22px; right: 22px; padding: 8px 10px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: .62rem; font-weight: 850; backdrop-filter: blur(8px); }
.catalog-card > div { position: absolute; left: 27px; right: 27px; bottom: 25px; }
.catalog-card h3 { margin: 0; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(1.8rem,2.6vw,3rem); letter-spacing: -.05em; }
.catalog-card p { max-width: 500px; margin: 10px 0 17px; color: #e8d9d7; font-size: .76rem; line-height: 1.55; }
.catalog-card strong { color: #f1a392; font-size: .7rem; }

.free-oil-section { background: var(--navy); color: #fff; }
.free-oil-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px,7vw,100px); align-items: center; }
.free-oil-grid figure { position: relative; min-height: 600px; margin: 0; overflow: hidden; }
.free-oil-grid figure::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); }
.free-oil-grid figure img { width: 100%; height: 100%; object-fit: cover; }
.free-oil-grid figcaption { position: absolute; left: 20px; bottom: 20px; padding: 10px 13px; background: rgba(55,9,10,.9); color: #fff; font-size: .65rem; }
.free-oil-grid .eyebrow { color: #f0a08f; }
.free-oil-grid h2 { margin: 0; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(2.7rem,4.6vw,5.3rem); line-height: .94; letter-spacing: -.065em; }
.free-oil-grid > div > p:not(.eyebrow) { margin: 28px 0; color: #ddccca; line-height: 1.75; }
.free-oil-grid ul { margin: 0 0 34px; padding: 0; list-style: none; }
.free-oil-grid li { padding: 13px 0 13px 27px; border-bottom: 1px solid rgba(255,255,255,.14); color: #eee3e1; font-size: .79rem; }
.free-oil-grid li::before { content: "+"; float: left; margin-left: -27px; color: #f29a87; font-weight: 850; }

.oil-brands-section { background: #fff; }
.oil-brand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.oil-brand-card { min-height: 370px; display: grid; grid-template-rows: 195px 1fr; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.oil-brand-visual { position: relative; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; isolation: isolate; background: var(--navy); color: #fff; }
.oil-brand-visual::before { content: ""; position: absolute; width: 180px; aspect-ratio: 1; right: -45px; top: -80px; border: 32px solid rgba(255,255,255,.09); border-radius: 50% 50% 55% 45%; transform: rotate(35deg); }
.oil-brand-visual span { position: absolute; top: 18px; right: 18px; color: rgba(255,255,255,.65); font-size: .58rem; font-weight: 800; }
.oil-brand-visual strong { position: relative; z-index: 2; width: 52%; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(1.65rem,2.3vw,2.35rem); line-height: .9; letter-spacing: -.06em; }
.oil-brand-visual i { position: relative; z-index: 2; width: 50%; margin-top: 10px; color: rgba(255,255,255,.78); font-size: .61rem; font-style: normal; letter-spacing: .06em; }
.oil-product-shot { position: absolute; z-index: 1; right: 16px; bottom: 14px; width: 43%; height: 164px; margin: 0; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.38); border-radius: 18px 5px 18px 5px; background: rgba(255,255,255,.94); box-shadow: 0 18px 42px rgba(62,13,14,.2); transform: rotate(1.5deg); transition: transform .35s var(--ease),box-shadow .35s; }
.oil-product-shot img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.oil-brand-card:hover .oil-product-shot { transform: translateY(-4px) rotate(0); box-shadow: 0 22px 48px rgba(62,13,14,.28); }
.oil-brand-card > div:last-child { padding: 24px; }
.oil-brand-card small { color: var(--copper); font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.oil-brand-card h3 { margin: 10px 0 8px; font-size: 1.03rem; }
.oil-brand-card p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.6; }
.oil-brand-card.castrol .oil-brand-visual { background: linear-gradient(135deg,#006b4e,#b52329); }
.oil-brand-card.mobil .oil-brand-visual { background: linear-gradient(135deg,#102f69,#6f7f91); }
.oil-brand-card.shell .oil-brand-visual { background: linear-gradient(135deg,#f5c400,#d94a2b); }
.oil-brand-card.motul .oil-brand-visual { background: linear-gradient(135deg,#b41924,#551015); }
.oil-brand-card.liqui .oil-brand-visual { background: linear-gradient(135deg,#134c96,#cf2128); }
.oil-brand-card.total .oil-brand-visual { background: linear-gradient(135deg,#173f91,#dd2e38); }
.oil-brand-card.elf .oil-brand-visual { background: linear-gradient(135deg,#10488c,#e02b38); }
.oil-brand-card.repsol .oil-brand-visual { background: linear-gradient(135deg,#eb6b1e,#153c68); }
.oil-brand-card.po .oil-brand-visual { background: linear-gradient(135deg,#d1212c,#e49b28); }
.oil-brand-card.lubex .oil-brand-visual { background: linear-gradient(135deg,#095a7a,#39a4b0); }
.oil-brand-card.fuchs .oil-brand-visual { background: linear-gradient(135deg,#193c73,#54a1d4); }
.catalog-note { margin: 25px 0 0; padding-left: 16px; border-left: 3px solid var(--copper); color: var(--muted); font-size: .7rem; line-height: 1.6; }

.partner-section { background: #f5f2ec; }
.partner-logo-grid { display: grid; grid-template-columns: repeat(6,1fr); border-top: 1px solid #d8d5cd; border-left: 1px solid #d8d5cd; }
.partner-logo-grid > div { min-height: 145px; padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid #d8d5cd; border-bottom: 1px solid #d8d5cd; background: rgba(255,255,255,.7); transition: background .2s,transform .2s; }
.partner-logo-grid > div:hover { z-index: 1; background: #fff; transform: translateY(-3px); box-shadow: 0 15px 35px rgba(86,20,21,.09); }
.partner-logo-grid img { width: 100%; max-width: 135px; height: 62px; object-fit: contain; }
.partner-logo-grid span { margin-top: 10px; color: #7b8385; font-size: .54rem; font-weight: 750; letter-spacing: .06em; }
.premium-services { background: #f6efec; }
.premium-services .service-cards > a { border-radius: 2px; }
.premium-reviews { background: var(--navy); color: #fff; }
.premium-reviews .section-heading > a { color: #fff; border-color: var(--copper); }
.premium-reviews .review-card { color: var(--ink); }

.premium-location { padding: 112px 0; background: #fff; }
.premium-location .location-grid { align-items: center; }
.store-gallery { min-height: 650px; display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.store-gallery figure { position: relative; min-height: 0; margin: 0; overflow: hidden; }
.store-gallery img { width: 100%; height: 100%; object-fit: cover; }
.google-business-photo-link { width: 100%; height: 100%; display: block; }
.store-gallery figcaption { position: absolute; z-index: 2; left: 12px; bottom: 12px; max-width: calc(100% - 24px); padding: 8px 10px; background: rgba(255,255,255,.92); color: #35373c; font-size: .58rem; line-height: 1.35; backdrop-filter: blur(8px); }
.store-gallery figcaption a { color: var(--red-dark); font-weight: 760; }
.store-main { grid-row: 1/-1; }
.store-detail.sign img { object-position: 55% 8%; transform: scale(1.55); }
.store-detail.entrance img { object-position: 72% 82%; transform: scale(1.45); }
.hours-card { margin: 28px 0; border-top: 1px solid var(--line); }
.hours-card span { padding: 13px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font-size: .73rem; }
.hours-card em { color: var(--red-dark); font-style: normal; font-weight: 800; }
.premium-final { padding: 82px 0; background: linear-gradient(120deg,var(--navy),#651617); color: #fff; }
.premium-final .container { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; }
.premium-final h2 { margin: 0; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(2.5rem,4.8vw,5.2rem); line-height: .95; letter-spacing: -.06em; }
.premium-final .eyebrow { color: #eab384; }
.premium-final .container > div:last-child { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.premium-final .container > div:last-child > a:last-child { color: #ead7d5; font-size: .78rem; }

.whatsapp-widget { position: fixed; z-index: 119; right: 22px; bottom: 24px; }
.whatsapp-bubble { min-height: 62px; padding: 8px 16px 8px 8px; display: flex; align-items: center; gap: 11px; border: 0; border-radius: 999px; background: #168a55; color: #fff; box-shadow: 0 16px 45px rgba(10,80,47,.32); cursor: pointer; font: inherit; transition: transform .2s var(--ease),box-shadow .2s; }
.whatsapp-bubble:hover { transform: translateY(-3px); box-shadow: 0 20px 55px rgba(10,80,47,.42); }
.whatsapp-bubble-icon { width: 46px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); font-size: 1.35rem; transform: rotate(-20deg); }
.whatsapp-bubble-copy { display: flex; flex-direction: column; gap: 2px; }
.whatsapp-bubble-copy b { font-size: .72rem; }
.whatsapp-bubble-copy small { color: #d9f1e5; font-size: .56rem; }
.whatsapp-menu-toggle,.quick-contact-menu { display: none; }

.premium-about-hero { background: linear-gradient(135deg,#f7f2ef,#f2e5e2); }
.heritage-strip { background: var(--navy); color: #fff; }
.heritage-strip .container { min-height: 155px; display: grid; grid-template-columns: repeat(4,1fr); gap: 35px; align-items: center; }
.heritage-strip span { display: flex; flex-direction: column; gap: 7px; color: #e2cecc; font-size: .67rem; }
.heritage-strip b { color: #fff; font-family: var(--font-inter-tight),sans-serif; font-size: 1.55rem; letter-spacing: -.035em; }
.mission-purpose { margin-top: 18px; padding: clamp(35px,6vw,75px); background: var(--navy); color: #fff; }
.mission-purpose .eyebrow { color: #eab384; }
.mission-purpose h2 { margin: 0; max-width: 780px; font-family: var(--font-inter-tight),sans-serif; font-size: clamp(2.4rem,4.5vw,4.8rem); line-height: .96; letter-spacing: -.06em; }
.mission-purpose > p:last-child { max-width: 850px; margin: 25px 0 0; color: #e4d2d0; line-height: 1.75; }

@media (max-width: 1060px) {
  .desktop-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 190px 1fr; }
  .mobile-header-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
  .mobile-header-call { position: relative; z-index: 101; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid #edc7c4; border-radius: 15px; background: var(--red-soft); color: var(--red); box-shadow: 0 8px 24px rgba(182,27,28,.1); transition: color .2s,background .2s,transform .2s var(--ease); }
  .mobile-header-call:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
  .mobile-header-call span { font-size: 1.22rem; line-height: 1; transform: rotate(-12deg); }
  .mobile-nav { display: block; }
  .menu-toggle { position: relative; z-index: 103; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid #decfcd; border-radius: 15px; background: #fff; cursor: pointer; box-shadow: 0 8px 24px rgba(58,16,17,.07); }
  .menu-toggle-lines { width: 22px; height: 16px; display: flex; flex-direction: column; justify-content: space-between; }
  .menu-toggle-lines i { width: 22px; height: 2px; display: block; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 102; inset: 0; padding: 90px 28px 28px; display: flex; flex-direction: column; background: #fff; visibility: hidden; pointer-events: none; opacity: 0; transform: translateY(-12px); transition: opacity .28s, transform .35s var(--ease), visibility 0s linear .35s; overflow-y: auto; }
  .mobile-menu.is-open { visibility: visible; pointer-events: auto; opacity: 1; transform: none; transition-delay: 0s; }
  .mobile-menu-head { padding-bottom: 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
  .mobile-menu-head img { width: 190px; height: 63px; object-fit: cover; object-position: center 56%; }
  .mobile-menu-head span { color: var(--red); font-size: .6rem; font-weight: 800; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { min-height: 72px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }
  .mobile-menu nav a span { color: var(--red); font-size: .58rem; font-weight: 800; }
  .mobile-menu nav a strong { font-family: var(--font-inter-tight),sans-serif; font-size: 1.65rem; font-weight: 620; }
  .mobile-menu nav a i { color: var(--red); font-style: normal; }
  .mobile-menu-contact { margin-top: 22px; display: grid; grid-template-columns: 1fr auto; gap: 10px; }
  .menu-whatsapp, .menu-call { min-height: 60px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
  .menu-whatsapp { background: var(--red); color: #fff; }
  .menu-whatsapp i { font-style: normal; }
  .menu-call { border: 1px solid var(--line); font-weight: 700; }
  .vehicle-selector-inner { min-height: 104px; grid-template-columns: 1fr; }
  .vehicle-selector-intro { display: none; }
  .light-hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 70px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 560px; }
  .hero-image-frame { inset: 0 0 5% 12%; }
  .service-cards { grid-template-columns: repeat(2,1fr); }
  .review-grid { grid-template-columns: repeat(2,1fr); }
  .google-review-summary { grid-template-columns: 1fr auto; }
  .google-review-summary p { grid-column: 1/-1; grid-row: 2; }
  .review-grid .review-card:last-child:nth-child(odd) { grid-column: 1/-1; }
  .brand-ticker, .brand-grid { grid-template-columns: repeat(3,1fr); }
  .content-grid, .faq-grid { grid-template-columns: 1fr; }
  .content-aside, .request-grid > div:first-child, .article-aside { position: static; }
  .content-aside { max-width: 760px; }
  .request-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-copy { padding: 70px 32px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-address { grid-column: auto; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { grid-template-columns: 1fr 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero figure { max-width: 780px; }
}

@media (max-width: 720px) {
  :root { --header: 70px; }
  body { padding-bottom: env(safe-area-inset-bottom); }
  .container { width: min(calc(100% - 28px),var(--container)); }
  .site-header { backdrop-filter: none; }
  .brand { width: 172px; height: 57px; }
  .header-inner { grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
  .mobile-header-actions { gap: 7px; }
  .mobile-header-call, .menu-toggle { width: 46px; height: 46px; border-radius: 14px; }
  .mobile-menu { padding: 80px 18px 20px; }
  .mobile-menu-head img { width: 155px; height: 52px; }
  .mobile-menu-head span { display: none; }
  .mobile-menu nav a { min-height: 65px; }
  .mobile-menu nav a strong { font-size: 1.4rem; }
  .mobile-menu-contact { grid-template-columns: 1fr; }
  .vehicle-selector-inner { min-height: 0; padding-block: 14px 17px; }
  .vehicle-selector-form { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vehicle-selector-brand { grid-column: 1 / -1; }
  .vehicle-selector-field > label { margin-bottom: 5px; }
  .vehicle-selector-control { height: 54px; }
  .vehicle-selector-submit { grid-column: 1 / -1; min-height: 52px; }
  .light-hero { background: linear-gradient(160deg,#fff 0 66%,#f2f0eb 66%); }
  .hero-inner { padding-block: 45px 55px; }
  .local-badge { margin-bottom: 28px; }
  .light-hero h1 { font-size: clamp(3.1rem,14.5vw,4.6rem); }
  .hero-lead { font-size: .9rem; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 13px; }
  .hero-proof div { flex-direction: row; justify-content: space-between; }
  .hero-visual { min-height: 420px; }
  .hero-image-frame { inset: 0 0 8% 0; border-width: 6px; }
  .hero-location-card { width: 88%; padding: 18px; }
  .trust-strip .container { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .section { padding: 76px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .section-heading > a { justify-self: start; }
  .section-heading h2, .content-aside h2, .location-copy h2, .faq-grid h2 { font-size: clamp(2.3rem,11vw,3.5rem); }
  .service-cards, .blog-preview-grid, .related-grid, .contact-card-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid .review-card:last-child:nth-child(odd) { grid-column: auto; }
  .review-card { min-height: 285px; padding: 22px; }
  .google-review-summary { padding: 20px; grid-template-columns: 1fr; gap: 14px; }
  .google-review-summary p { grid-column: auto; grid-row: auto; }
  .google-review-summary > a { white-space: normal; }
  .review-policy .container { grid-template-columns: 1fr; gap: 12px; }
  .service-cards > a { min-height: 285px; }
  .brand-ticker, .brand-grid { grid-template-columns: repeat(2,1fr); }
  .brand-ticker a { min-height: 140px; padding: 17px; }
  .brand-ticker a > span:not(.brand-logo) { display: none; }
  .brand-ticker .brand-logo { width: 78px; height: 41px; margin-bottom: 13px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .part-form { padding: 22px; }
  .store-image { min-height: 390px; }
  .location-copy { padding: 55px 22px; }
  .location-copy .button { width: 100%; }
  .final-cta { padding: 60px 0; }
  .final-cta .container { grid-template-columns: 1fr; }
  .final-cta .container > div:last-child { align-items: stretch; }
  .final-cta .button { width: 100%; }
  .page-hero { padding-bottom: 60px; }
  .page-hero-grid { min-height: 400px; padding-top: 45px; grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(3rem,14vw,4.5rem); }
  .page-index { display: none; }
  .content-section { padding: 75px 0; }
  .service-cta { align-items: stretch; flex-direction: column; }
  .service-cta .button { width: 100%; }
  .service-directory article { grid-template-columns: 38px 1fr; padding: 22px; }
  .service-directory article > a { grid-column: 2; justify-self: start; }
  .service-directory ul { flex-direction: column; gap: 5px; }
  .cross-link-section .container { grid-template-columns: 1fr; }
  .brand-grid a { min-height: 180px; padding: 18px; }
  .brand-grid .brand-logo { width: 78px; height: 41px; margin-bottom: 13px; }
  .brand-grid strong { font-size: 1.2rem; }
  .directory-note { grid-template-columns: 1fr; gap: 10px; }
  .model-hero { padding-bottom: 65px; }
  .model-hero-brand { margin-top: 42px; }
  .model-hero-brand .brand-logo { width: 100px; height: 54px; }
  .model-hero .container > .eyebrow { margin-top: 24px; }
  .model-hero h1 { font-size: clamp(3rem,14vw,4.5rem); }
  .model-hero .button { width: 100%; }
  .model-grid { grid-template-columns: 1fr; }
  .info-checklist { grid-template-columns: 1fr; }
  .sibling-links { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid article.featured { grid-column: auto; }
  .blog-grid article { min-height: 300px; padding: 24px; }
  .article-header { padding-bottom: 55px; }
  .article-meta { margin-top: 45px; flex-wrap: wrap; }
  .article-header h1 { font-size: clamp(3rem,13vw,4.5rem); }
  .article-layout { padding-block: 65px 85px; }
  .article-aside { grid-template-columns: 1fr; }
  .mission-grid, .value-grid { grid-template-columns: 1fr; }
  .mission-grid article { min-height: auto; }
  .mission-grid article > span { margin-bottom: 45px; }
  .principles { grid-template-columns: 1fr; }
  .policy-table > div { grid-template-columns: 1fr; gap: 8px; }
  .footer-topline { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-brand, .footer-address { grid-column: 1/-1; }
  .footer-bottom { min-height: 80px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
  .cookie-banner { left: 12px; right: 12px; bottom: calc(76px + env(safe-area-inset-bottom)); padding: 18px; grid-template-columns: 1fr; gap: 14px; }
  .cookie-icon { display: none; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1060px) {
  .premium-hero-inner { grid-template-columns: 1fr; align-items: center; }
  .premium-hero-copy { padding-top: 30px; }
  .hero-store-card { width: min(100%,620px); }
  .catalog-card,.catalog-card:nth-child(4),.catalog-card:nth-child(5) { grid-column: span 6; }
  .catalog-card:last-child { grid-column: 1/-1; }
  .free-oil-grid { grid-template-columns: 1fr; }
  .free-oil-grid figure { min-height: 520px; }
  .oil-brand-grid { grid-template-columns: repeat(2,1fr); }
  .partner-logo-grid { grid-template-columns: repeat(4,1fr); }
  .store-gallery { min-height: 580px; }
  .heritage-strip .container { grid-template-columns: repeat(2,1fr); padding-block: 35px; }
  .whatsapp-widget { z-index: 121; right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }
  .whatsapp-direct { display: none; }
  .whatsapp-menu-toggle { min-width: 56px; min-height: 56px; padding: 6px; display: flex; }
  .whatsapp-bubble-icon { width: 44px; }
  .whatsapp-bubble-copy { display: none; }
  .whatsapp-menu-toggle[aria-expanded="true"] { background: var(--navy); }
  .whatsapp-menu-toggle[aria-expanded="true"] .whatsapp-bubble-icon { font-size: 1.8rem; transform: none; }
  .quick-contact-menu { position: absolute; right: 0; bottom: calc(100% + 12px); width: min(286px,calc(100vw - 28px)); padding: 8px; display: grid; gap: 5px; border: 1px solid rgba(88,20,21,.13); border-radius: 18px 18px 5px 18px; background: rgba(255,255,255,.97); box-shadow: 0 24px 60px rgba(62,13,14,.24); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px) scale(.97); transform-origin: right bottom; transition: opacity .2s,transform .25s var(--ease),visibility 0s linear .25s; }
  .whatsapp-widget.is-open .quick-contact-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
  .quick-contact-menu a { min-height: 64px; padding: 10px 13px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; border-radius: 12px; color: var(--ink); transition: background .18s,transform .18s; }
  .quick-contact-menu a:hover { background: var(--red-soft); transform: translateX(-2px); }
  .quick-contact-menu a:nth-child(2) { background: #168a55; color: #fff; }
  .quick-contact-menu a > span { grid-row: 1/3; width: 42px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--sand); color: var(--red-dark); font-size: 1rem; }
  .quick-contact-menu a:nth-child(2) > span { background: rgba(255,255,255,.16); color: #fff; }
  .quick-contact-menu b { align-self: end; font-size: .76rem; }
  .quick-contact-menu small { align-self: start; color: var(--muted); font-size: .56rem; }
  .quick-contact-menu a:nth-child(2) small { color: #d9f1e5; }
  body:has(.mobile-menu.is-open) .whatsapp-widget { display: none; }
}

@media (max-width: 720px) {
  .premium-hero { min-height: auto; }
  .premium-hero-photo img { object-position: 62% center; }
  .premium-hero-shade { background: linear-gradient(90deg,rgba(35,7,8,.96),rgba(58,10,11,.77)),linear-gradient(0deg,rgba(32,6,7,.62),transparent); }
  .premium-hero-inner { padding-block: 54px 48px; gap: 30px; }
  .premium-hero h1 { font-size: clamp(3.35rem,15.5vw,5rem); }
  .premium-proof { grid-template-columns: 1fr; gap: 12px; }
  .premium-proof span { flex-direction: row; justify-content: space-between; }
  .hero-store-card { padding: 22px; }
  .premium-trust .container { overflow-x: auto; justify-content: flex-start; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card,.catalog-card:nth-child(4),.catalog-card:nth-child(5),.catalog-card:last-child { min-height: 345px; grid-column: auto; }
  .catalog-card > div { left: 20px; right: 20px; bottom: 20px; }
  .catalog-card p { font-size: .7rem; }
  .free-oil-grid figure { min-height: 390px; }
  .free-oil-grid h2 { font-size: clamp(2.7rem,12vw,4rem); }
  .free-oil-grid .button { width: 100%; }
  .oil-brand-grid { grid-template-columns: 1fr; }
  .oil-brand-card { min-height: 0; grid-template-rows: 178px auto; }
  .oil-brand-visual strong { font-size: 1.8rem; }
  .oil-product-shot { height: 150px; }
  .partner-logo-grid { grid-template-columns: repeat(2,1fr); }
  .partner-logo-grid > div { min-height: 125px; padding: 14px; }
  .premium-location { padding: 76px 0; }
  .store-gallery { min-height: 520px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.4fr .6fr; }
  .store-main { grid-column: 1/-1; grid-row: auto; }
  .premium-final .container { grid-template-columns: 1fr; }
  .premium-final .container > div:last-child { align-items: stretch; }
  .premium-final .button { width: 100%; }
  .heritage-strip .container { grid-template-columns: 1fr; gap: 22px; }
  .heritage-strip span { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
}

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