@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: optional;
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

:root {
  --ink: #0b0d0c;
  --ink-soft: #181b19;
  --paper: #fbfaf6;
  --ivory: #f2eee6;
  --ivory-deep: #e8e0d3;
  --white: #fff;
  --gold: #c3a66c;
  --gold-pale: #ddcda9;
  --muted: #6a6b66;
  --line: rgba(11, 13, 12, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Avenir Next", Avenir, sans-serif;
  --container: min(1320px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font: 400 15px/1.75 var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open, body.dialog-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
i[class*="fa-"], svg.svg-inline--fa { display: inline-block; width: 1em; height: 1em; flex: 0 0 1em; }
address { font-style: normal; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(900px, 100%); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 12px 18px; background: var(--gold); color: var(--ink); font-weight: 600; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: none; }

.topbar { position: absolute; z-index: 50; top: 0; left: 0; width: 100%; height: 34px; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.72); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar p { margin: 0; }
.topbar i { margin-right: 7px; }
.topbar__inner > div { display: flex; gap: 20px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--white); }

.site-header { position: absolute; z-index: 49; top: 34px; left: 0; width: 100%; height: 90px; border-bottom: 1px solid rgba(255,255,255,.14); color: var(--white); transition: background .3s ease, transform .3s ease; }
.site-header.is-fixed { position: fixed; top: 0; height: 76px; background: rgba(11,13,12,.96); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.site-header__inner { display: grid; grid-template-columns: 215px 1fr 190px; align-items: center; height: 100%; }
.brand { display: inline-flex; width: 190px; }
.brand img { width: 190px; height: auto; object-fit: contain; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(20px, 2.2vw, 39px); }
.desktop-nav a { position: relative; padding: 14px 0; font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 8px; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; justify-self: end; width: 46px; height: 46px; padding: 12px; border: 1px solid rgba(255,255,255,.35); background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--white); transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 76px 0 auto; display: none; flex-direction: column; gap: 0; max-height: calc(100vh - 76px); overflow-y: auto; padding: 28px 32px 38px; background: var(--ink); border-top: 1px solid rgba(255,255,255,.14); }
.mobile-menu.is-open { display: flex; }
.mobile-menu > a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--serif); font-size: 29px; }
.mobile-menu .button { margin-top: 24px; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 18px; padding: 14px 22px; border: 1px solid transparent; background: none; font-size: 10px; font-weight: 600; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--gold { background: var(--gold); color: var(--ink); }
.button--gold:hover { background: var(--gold-pale); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: #272a28; }
.button--outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.button--outline:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.button--line { border-color: var(--line); }
.button--line:hover { border-color: var(--ink); }
.button--wide { width: 100%; }
.header-quote { justify-self: end; width: 180px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 13px; padding: 0 0 7px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.text-link i { transition: transform .25s ease; }
.text-link:hover i { transform: translateX(4px); }
.text-link--light { border-color: rgba(255,255,255,.55); color: var(--white); }

.eyebrow { margin: 0 0 22px; color: #7c704f; font-size: 9px; font-weight: 600; letter-spacing: .24em; line-height: 1.4; text-transform: uppercase; }
.eyebrow--light { color: var(--gold-pale); }

.home-hero { position: relative; display: flex; min-height: 880px; height: min(100svh, 980px); align-items: center; overflow: hidden; background: var(--ink); color: var(--white); }
.home-hero__slides, .home-hero__slide, .home-hero__veil { position: absolute; inset: 0; }
.home-hero__slide { margin: 0; opacity: 0; transform: scale(1.04); transition: opacity 1.25s ease, transform 8s linear; }
.home-hero__slide.is-active { opacity: 1; transform: scale(1); }
.home-hero__slide img { height: 100%; object-fit: cover; }
.home-hero__slide--fleet img { object-position: center 54%; }
.home-hero__veil { background: linear-gradient(90deg, rgba(6,8,7,.89) 0%, rgba(6,8,7,.56) 44%, rgba(6,8,7,.2) 74%, rgba(6,8,7,.42) 100%), linear-gradient(0deg, rgba(6,8,7,.62), transparent 44%); }
.home-hero__content { position: relative; z-index: 2; padding-top: 110px; }
.home-hero__content h1, .inner-hero h1, .simple-page h1 { max-width: 840px; margin: 0 0 27px; font-family: var(--serif); font-size: clamp(62px, 7.2vw, 112px); font-weight: 500; letter-spacing: -.045em; line-height: .88; }
.home-hero__content h1 em, .inner-hero h1 em, .simple-page h1 em { color: var(--gold-pale); font-weight: 400; }
.home-hero__content > p:not(.eyebrow) { max-width: 640px; margin: 0 0 38px; color: rgba(255,255,255,.78); font-size: 16px; }
.home-hero__bottom { position: absolute; z-index: 3; right: 0; bottom: 34px; left: 0; display: flex; align-items: flex-end; justify-content: space-between; }
.hero-facts { display: flex; gap: 44px; }
.hero-facts span { display: flex; flex-direction: column; color: rgba(255,255,255,.62); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hero-facts strong { color: var(--white); font-family: var(--serif); font-size: 29px; font-weight: 500; letter-spacing: 0; line-height: 1.1; text-transform: none; }
.hero-controls { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.75); font-size: 9px; letter-spacing: .13em; }
.hero-controls button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.34); background: rgba(0,0,0,.12); color: var(--white); }

.inner-hero { position: relative; display: flex; min-height: 680px; align-items: flex-end; overflow: hidden; background: var(--ink); color: var(--white); }
.inner-hero__image, .inner-hero__shade { position: absolute; inset: 0; height: 100%; }
.inner-hero__image { object-fit: cover; }
.inner-hero__shade { background: linear-gradient(90deg, rgba(7,9,8,.91), rgba(7,9,8,.58) 52%, rgba(7,9,8,.25)), linear-gradient(0deg, rgba(7,9,8,.66), transparent 55%); }
.inner-hero__content { position: relative; z-index: 2; padding-top: 190px; padding-bottom: 75px; }
.inner-hero h1 { max-width: 930px; font-size: clamp(56px, 7vw, 100px); }
.inner-hero__content > p:not(.eyebrow) { max-width: 690px; margin: 0 0 34px; color: rgba(255,255,255,.76); font-size: 16px; }
.breadcrumbs { margin-bottom: 55px; color: rgba(255,255,255,.67); font-size: 8px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: 10px; color: var(--gold); content: "/"; }
.breadcrumbs a:hover { color: var(--white); }

.section { padding: 120px 0; }
.section--paper { background: var(--paper); }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--ink); color: var(--white); }
.section-heading { max-width: 790px; margin-bottom: 55px; }
.section-heading--center { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading--light { color: var(--white); }
.section-heading h2, .statement h2, .feature-split h2, .info-columns h2, .local-intro h2, .editorial h2, .story-panel h2, .contact-grid h2, .final-cta h2, .process-grid h2 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(45px, 5vw, 70px); font-weight: 500; letter-spacing: -.035em; line-height: .98; }
.section-heading h2 em, .statement h2 em { color: #897652; font-weight: 400; }
.section-heading > p:last-child { max-width: 690px; margin: 0; color: var(--muted); }
.section-heading--center > p:last-child { margin-inline: auto; }
.section-heading--light > p:last-child { color: rgba(255,255,255,.64); }
.section-action { display: flex; justify-content: center; margin-top: 54px; }

.statement__grid { display: grid; grid-template-columns: .65fr 1.8fr; gap: 9vw; }
.statement h2 { max-width: 900px; }
.statement h2 + p { max-width: 790px; color: var(--muted); font-size: 16px; }
.ownership-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 790px; margin-top: 42px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ownership-proof > div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 18px 24px; border-right: 1px solid var(--line); }
.ownership-proof > div:first-child { padding-left: 0; }
.ownership-proof > div:last-child { border-right: 0; }
.ownership-proof strong { color: #897652; font-family: var(--serif); font-size: 43px; font-weight: 500; line-height: .9; }
.ownership-proof span { margin-top: 10px; color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }

.showroom-feature { padding: 125px 0; overflow: hidden; background: #171916; color: var(--white); }
.showroom-feature__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 8vw; align-items: center; }
.showroom-feature__copy h2 { max-width: 650px; margin: 0 0 28px; color: var(--white); font-family: var(--serif); font-size: clamp(52px, 6vw, 82px); font-weight: 500; letter-spacing: -.04em; line-height: .92; }
.showroom-feature__copy h2 em { color: var(--gold-pale); font-weight: 400; }
.showroom-feature__copy > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.64); }
.showroom-feature__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 42px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.showroom-feature__facts > div { display: flex; min-height: 105px; flex-direction: column; justify-content: center; padding: 18px; border-right: 1px solid rgba(255,255,255,.16); }
.showroom-feature__facts > div:first-child { padding-left: 0; }
.showroom-feature__facts > div:last-child { border-right: 0; }
.showroom-feature__facts strong { color: var(--gold-pale); font-family: var(--serif); font-size: 39px; font-weight: 500; line-height: 1; }
.showroom-feature__facts span { margin-top: 7px; color: rgba(255,255,255,.52); font-size: 7px; font-weight: 600; letter-spacing: .11em; line-height: 1.4; text-transform: uppercase; }
.showroom-feature__gallery { position: relative; min-height: 665px; }
.showroom-feature__gallery figure { position: absolute; margin: 0; overflow: hidden; box-shadow: 0 28px 65px rgba(0,0,0,.28); }
.showroom-feature__gallery figure img { height: 100%; object-fit: cover; }
.showroom-feature__gallery-main { z-index: 1; top: 0; right: 0; width: 91%; height: 475px; }
.showroom-feature__gallery > figure:nth-child(2) { z-index: 2; right: 0; bottom: 0; width: 49%; height: 305px; border: 9px solid #171916; }
.showroom-feature__label { position: absolute; z-index: 3; bottom: 40px; left: 0; display: flex; width: 245px; align-items: center; gap: 16px; padding: 22px; background: var(--paper); color: var(--muted); font-size: 8px; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.showroom-feature__label i { color: #8d7449; font-size: 22px; }
.showroom-feature__label strong { color: var(--ink); font-weight: 600; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.fleet-card { min-width: 0; background: var(--paper); transition: transform .4s var(--ease), box-shadow .4s ease; }
.section--dark .fleet-card { background: var(--ink-soft); }
.fleet-card:hover { transform: translateY(-7px); box-shadow: 0 20px 55px rgba(20,20,16,.12); }
.fleet-card__image { position: relative; display: block; aspect-ratio: 3/2; overflow: hidden; background: #ddd; }
.fleet-card__image img { height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.fleet-card:hover .fleet-card__image img { transform: scale(1.04); }
.fleet-card__image > span { position: absolute; top: 16px; left: 16px; padding: 7px 10px; background: var(--ink); color: var(--white); font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.fleet-card__body { padding: 25px 25px 28px; }
.fleet-card__body > p { margin: 0 0 7px; color: #897652; font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.fleet-card h3 { margin: 0 0 17px; font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: 1.1; }
.fleet-card__footer { display: grid; grid-template-columns: 1fr 42px; gap: 18px; align-items: end; }
.fleet-card__footer > span { color: var(--muted); font-size: 12px; line-height: 1.6; }
.section--dark .fleet-card__footer > span { color: rgba(255,255,255,.58); }
.fleet-card__footer a { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); transition: background .25s ease, color .25s ease; }
.section--dark .fleet-card__footer a { border-color: rgba(255,255,255,.2); }
.fleet-card__footer a:hover { background: var(--gold); color: var(--ink); }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--ink); color: var(--white); }
.feature-split__image { min-height: 680px; overflow: hidden; }
.feature-split__image img { height: 100%; object-fit: cover; }
.feature-split__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 125px); }
.feature-split__content > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.65); }
.number-list { padding: 0; margin: 40px 0; list-style: none; }
.number-list li { display: grid; grid-template-columns: 47px 1fr; gap: 22px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.16); }
.number-list li > span { color: var(--gold); font-family: var(--serif); font-size: 21px; }
.number-list strong { font-family: var(--serif); font-size: 25px; font-weight: 500; }
.number-list p { margin: 2px 0 0; color: rgba(255,255,255,.57); font-size: 12px; }
.feature-split .text-link { align-self: flex-start; border-color: rgba(255,255,255,.4); color: var(--white); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 430px; padding: 46px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease; }
.service-card:hover { background: var(--ivory); }
.service-card__icon { display: flex; align-items: center; justify-content: space-between; margin-bottom: 70px; }
.service-card__icon i { color: #8f7950; font-size: 34px; }
.service-card__icon span { color: #aaa69d; font-family: var(--serif); font-size: 17px; }
.service-card h3 { margin: 0 0 16px; font-family: var(--serif); font-size: 35px; font-weight: 500; line-height: 1.05; }
.service-card > p:not(.eyebrow) { min-height: 92px; color: var(--muted); font-size: 13px; }

.areas-feature { padding: 120px 0; background: var(--ink); color: var(--white); }
.areas-feature__grid { display: grid; grid-template-columns: .85fr 1.35fr; gap: 90px; align-items: start; }
.areas-feature .section-heading > p:last-child { color: rgba(255,255,255,.62); }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
.area-card { position: relative; display: flex; min-height: 190px; flex-direction: column; justify-content: flex-end; padding: 28px; overflow: hidden; background: var(--ink-soft); }
.section--ivory .area-grid, .section:not(.section--dark) > .container > .area-grid { background: var(--line); }
.section--ivory .area-card, .section:not(.section--dark) > .container > .area-grid .area-card { background: var(--paper); }
.area-card::before { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(195,166,108,.14), transparent); content: ""; opacity: 0; transition: opacity .3s ease; }
.area-card:hover::before { opacity: 1; }
.area-card > span { position: absolute; top: 26px; left: 28px; color: #9d8a63; font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.area-card strong { position: relative; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.07; }
.area-card i { position: absolute; right: 25px; bottom: 29px; color: var(--gold); }

.story-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.story-panel > div { padding: 30px 0; }
.story-panel > div > p:not(.eyebrow) { color: var(--muted); }
.story-panel figure { aspect-ratio: 4/3; margin: 0; overflow: hidden; }
.story-panel figure img { height: 100%; object-fit: cover; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 6px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.2; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: #8b7752; font-size: 16px; transition: transform .25s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item > div { max-width: 760px; padding: 0 6px 27px; color: var(--muted); }
.faq-item p { margin: 0; }

.final-cta { padding: 86px 0; background: #171916; color: var(--white); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 770px; margin-bottom: 0; font-size: clamp(43px, 5vw, 68px); }

.site-footer { padding: 80px 0 20px; background: var(--ink); color: rgba(255,255,255,.68); }
.site-footer__grid { display: grid; grid-template-columns: 1.25fr .65fr .9fr 1fr; gap: 65px; padding-bottom: 70px; }
.footer-brand img { width: 185px; height: auto; margin-bottom: 25px; }
.footer-brand p { max-width: 350px; }
.site-footer h2 { margin: 0 0 22px; color: var(--gold-pale); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--white); }
.social-links { display: flex; gap: 10px; margin-top: 26px; }
.social-links a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.2); }
.hours { margin: 0; }
.hours > div { display: flex; justify-content: space-between; gap: 20px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hours dd { margin: 0; color: var(--white); }
.site-footer__base { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: 9px; letter-spacing: .06em; }
.site-footer__base > div { display: flex; gap: 22px; }

.floating-ctas { position: fixed; z-index: 40; right: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
.floating-ctas > * { display: flex; width: 145px; height: 50px; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(255,255,255,.25); box-shadow: 0 14px 35px rgba(0,0,0,.2); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.floating-ctas__phone { background: var(--paper); color: var(--ink); }
.floating-ctas__quote { background: var(--gold); color: var(--ink); }

.quote-dialog { width: min(1120px, calc(100vw - 40px)); max-height: calc(100vh - 40px); padding: 0; overflow: auto; border: 0; background: var(--paper); color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.5); }
.quote-dialog::backdrop { background: rgba(5,6,5,.82); backdrop-filter: blur(6px); }
.quote-dialog__shell { display: grid; grid-template-columns: .7fr 1.3fr; min-height: 700px; }
.quote-dialog__close { position: fixed; z-index: 2; top: max(28px, calc((100vh - min(700px, 100vh - 40px))/2 + 18px)); right: max(30px, calc((100vw - min(1120px, 100vw - 40px))/2 + 18px)); display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); background: var(--paper); }
.quote-dialog__intro { padding: 70px 52px; background: var(--ink); color: var(--white); }
.quote-dialog__intro h2 { margin: 0 0 24px; font-family: var(--serif); font-size: 56px; font-weight: 500; letter-spacing: -.03em; line-height: .95; }
.quote-dialog__intro > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.quote-dialog__contact { display: flex; flex-direction: column; gap: 10px; margin-top: 45px; }
.quote-dialog__contact a { display: flex; align-items: center; gap: 12px; }
.quote-form { padding: 62px 58px 42px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1/-1; }
.field > span { font-size: 9px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.field em { color: #8a7141; font-size: 7px; font-style: normal; }
.field input, .field select, .field textarea { width: 100%; min-height: 47px; padding: 11px 13px; border: 1px solid rgba(11,13,12,.25); border-radius: 0; background: var(--white); outline: 0; }
.field small { color: var(--muted); font-size: 9px; line-height: 1.45; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #8a7141; box-shadow: 0 0 0 2px rgba(195,166,108,.18); }
.vehicle-choice { padding: 0; margin: 4px 0 0; border: 0; }
.vehicle-choice legend { margin-bottom: 5px; font-size: 9px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.vehicle-choice legend em { color: #8a7141; font-size: 7px; font-style: normal; }
.vehicle-choice > p { margin: 0 0 14px; color: var(--muted); font-size: 10px; }
.vehicle-choice__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 14px; }
.vehicle-choice__grid label { display: grid; grid-template-columns: 17px 1fr; gap: 7px; align-items: start; min-height: 30px; font-size: 10px; line-height: 1.35; }
.vehicle-choice__grid input { width: 15px; height: 15px; margin: 0; accent-color: #8a7141; }
.vehicle-choice.has-error { padding: 12px; outline: 1px solid #9b3d34; background: #f8e5e1; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 23px 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.consent input { margin: 3px 0 0; }
.consent a { border-bottom: 1px solid currentColor; }
.honeypot { position: absolute; left: -9999px; }
.form-status { display: none; margin-bottom: 20px; padding: 13px 15px; border: 1px solid #9d814e; background: #f8f0df; font-size: 12px; }
.form-status.is-visible { display: block; }
.form-status.is-error { border-color: #9b3d34; background: #f8e5e1; }

.fleet-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; margin-bottom: 55px; }
.fleet-toolbar .section-heading { margin-bottom: 0; }
.filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.filters button { padding: 9px 13px; border: 1px solid var(--line); background: transparent; font-size: 8px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.filters button.is-active, .filters button:hover { background: var(--ink); color: var(--white); }
.fleet-card.is-hidden { display: none; }

.vehicle-listing-hero { padding: 175px 0 72px; background: var(--ink); color: var(--white); }
.vehicle-listing-hero .breadcrumbs { margin-bottom: 34px; }
.vehicle-listing-hero__grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 6vw; align-items: start; }
.vehicle-listing-hero__media > figure { aspect-ratio: 3/2; margin: 0; overflow: hidden; background: #232522; }
.vehicle-listing-hero__media > figure img { height: 100%; object-fit: cover; }
.vehicle-listing-hero__thumbs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 9px; }
.vehicle-listing-hero__thumbs figure { aspect-ratio: 3/2; margin: 0; overflow: hidden; opacity: .72; }
.vehicle-listing-hero__thumbs img { height: 100%; object-fit: cover; }
.vehicle-listing-hero__summary { padding-top: 9px; }
.vehicle-listing-hero__summary h1 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(54px, 6.5vw, 86px); font-weight: 500; letter-spacing: -.045em; line-height: .9; }
.vehicle-listing-hero__lead { max-width: 610px; margin: 0 0 34px; color: rgba(255,255,255,.68); font-size: 15px; }
.listing-specs { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 36px; border-top: 1px solid rgba(255,255,255,.16); }
.listing-specs > div { min-height: 83px; padding: 17px 17px 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.listing-specs > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.16); }
.listing-specs > div:nth-child(even) { padding-left: 20px; }
.listing-specs dt { margin-bottom: 7px; color: var(--gold-pale); font-size: 7px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.listing-specs dd { margin: 0; color: rgba(255,255,255,.86); font-size: 12px; line-height: 1.45; }
.vehicle-listing-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.vehicle-listing-hero__note { margin: 24px 0 0; color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.vehicle-listing-hero__note i { margin-right: 8px; color: var(--gold-pale); }
.listing-jump { position: sticky; z-index: 18; top: 76px; border-bottom: 1px solid var(--line); background: rgba(246,244,238,.97); backdrop-filter: blur(12px); }
.listing-jump .container { display: flex; gap: 38px; overflow-x: auto; scrollbar-width: none; }
.listing-jump a { flex: 0 0 auto; padding: 19px 0 17px; color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.listing-jump a:hover { color: var(--ink); }
.vehicle-overview__grid { display: grid; grid-template-columns: 1.05fr 1fr .72fr; gap: 60px; align-items: start; }
.vehicle-overview__copy h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(36px, 4vw, 49px); font-weight: 500; letter-spacing: -.025em; line-height: 1; }
.vehicle-overview__lead { color: var(--muted); font-size: 17px; line-height: 1.8; }
.vehicle-overview__copy > p:last-child { padding-top: 24px; margin-top: 27px; border-top: 1px solid var(--line); color: var(--muted); }
.vehicle-detail-list { padding: 0; margin: 0; list-style: none; }
.vehicle-detail-list li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 18px 0; border-top: 1px solid var(--line); }
.vehicle-detail-list li > span { color: #8f774c; font-family: var(--serif); font-size: 20px; }
.vehicle-detail-list p { margin: 0; color: var(--muted); }
.vehicle-included { padding: 34px; background: var(--ink); color: var(--white); }
.vehicle-included ul { padding: 0; margin: 0 0 30px; list-style: none; }
.vehicle-included li { display: grid; grid-template-columns: 25px 1fr; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.7); font-size: 10px; }
.vehicle-included i { color: var(--gold-pale); font-size: 16px; }
.vehicle-gallery--listing { padding: 105px 0; background: var(--ivory); }
.vehicle-gallery__heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 38px; }
.vehicle-gallery__heading .eyebrow { margin-bottom: 8px; }
.vehicle-gallery__heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(37px, 4vw, 52px); font-weight: 500; line-height: 1; }
.booking-listing { padding: 100px 0; background: #171916; color: var(--white); }
.booking-listing > .container { display: grid; grid-template-columns: .85fr 1.25fr auto; gap: 55px; align-items: center; }
.booking-listing__intro h2 { margin: 0 0 18px; font-family: var(--serif); font-size: 43px; font-weight: 500; line-height: .98; }
.booking-listing__intro > p:last-child { color: rgba(255,255,255,.56); }
.booking-listing ol { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 0; list-style: none; }
.booking-listing li { min-height: 160px; padding: 24px; border-left: 1px solid rgba(255,255,255,.15); }
.booking-listing li > span { color: var(--gold-pale); font-family: var(--serif); font-size: 20px; }
.booking-listing h3 { margin: 22px 0 8px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.booking-listing li p { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; }

.info-columns { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 70px; align-items: start; }
.info-columns h2 { margin: 0; font-size: 51px; }
.info-columns > div:not(:first-child) { padding-top: 35px; color: var(--muted); }
.info-columns .text-link { margin-top: 15px; color: var(--ink); }

.vehicle-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 95px; }
.vehicle-intro > div:last-child > h2 { margin: 0 0 35px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); font-weight: 500; line-height: 1.08; }
.spec-list { margin: 0; border-top: 1px solid var(--line); }
.spec-list > div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.spec-list dd { margin: 0; font-family: var(--serif); font-size: 20px; line-height: 1.15; }
.tick-list { padding: 0; margin: 0 0 32px; list-style: none; }
.tick-list li { display: grid; grid-template-columns: 24px 1fr; gap: 13px; padding: 15px 0; border-top: 1px solid var(--line); }
.tick-list i { margin-top: 7px; color: #8c754a; }
.vehicle-gallery { padding: 0 0 120px; }
.vehicle-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vehicle-gallery figure { aspect-ratio: 3/2; margin: 0; overflow: hidden; }
.vehicle-gallery img { height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vehicle-gallery figure:hover img { transform: scale(1.025); }
.vehicle-listing-hero__media > figure > a { display: block; height: 100%; cursor: zoom-in; }
.vehicle-photo-thumb { display: block; position: relative; aspect-ratio: 3/2; overflow: hidden; cursor: zoom-in; }
.vehicle-photo-thumb span { position: absolute; bottom: 0; left: 0; padding: 5px 9px; background: rgba(11,13,12,.85); color: white; font-size: 12px; }
.vehicle-listing-hero__gallery-link { display: inline-block; margin-top: 16px; padding: 5px 0; color: var(--gold-pale); font-size: 14px; text-underline-offset: 4px; }
.vehicle-gallery__intro { margin: -16px 0 30px; color: var(--muted); }
.vehicle-gallery__intro a { text-decoration: underline; text-underline-offset: 3px; }
.vehicle-gallery__grid figure { position: relative; aspect-ratio: auto; overflow: visible; }
.vehicle-photo-link { display: block; position: relative; aspect-ratio: 3/2; overflow: hidden; cursor: zoom-in; background: #ddd9d0; }
.vehicle-photo-link img { width: 100%; height: 100%; object-fit: contain; }
.vehicle-photo-link__expand { position: absolute; bottom: 14px; right: 14px; display: grid; place-items: center; width: 38px; height: 38px; background: var(--paper); color: var(--ink); font-size: 25px; }
.vehicle-gallery__grid figcaption { padding: 14px 0 10px; font-size: 14px; color: var(--ink); }
body.photo-open { overflow: hidden; }
.photo-viewer { width: min(1200px, calc(100vw - 24px)); max-width: none; max-height: calc(100dvh - 24px); padding: 16px 24px; border: 1px solid #49463f; background: var(--ink); color: white; }
.photo-viewer::backdrop { background: rgba(0,0,0,.88); }
.photo-viewer__close { display: block; margin: 0 0 8px auto; min-height: 44px; padding: 6px 12px; background: transparent; color: white; border: 0; cursor: pointer; font: inherit; font-size: 14px; }
.photo-viewer__close span { margin-left: 10px; font-size: 25px; vertical-align: middle; }
.photo-viewer figure { margin: 0; }
.photo-viewer figure img { display: block; width: 100%; height: min(68dvh, 760px); object-fit: contain; }
.photo-viewer figcaption { min-height: 44px; padding-top: 16px; text-align: center; font-size: 15px; line-height: 1.5; }
.photo-viewer__controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.photo-viewer__controls button { min-height: 44px; padding: 8px 12px; background: transparent; color: white; border: 1px solid #696354; cursor: pointer; font: inherit; font-size: 14px; }
.photo-viewer__controls span { font-size: 14px; color: var(--gold-pale); }
@media (max-width: 700px) {
  .photo-viewer { padding: 10px 12px; }
  .photo-viewer figure img { height: 58dvh; }
}
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.process-steps { padding: 0; margin: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 26px; padding: 28px 0; border-top: 1px solid var(--line); }
.process-steps > li > span { color: #927b50; font-family: var(--serif); font-size: 22px; }
.process-steps h3 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.process-steps p { margin: 6px 0 0; color: var(--muted); }

.local-intro { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.local-intro > div > p { color: var(--muted); font-size: 16px; }
.answer-card { position: sticky; top: 110px; padding: 38px; background: var(--ivory); border-left: 3px solid var(--gold); }
.answer-card h2 { margin: 0 0 18px; font-size: 37px; }
.answer-card p:not(.eyebrow) { color: var(--muted); }
.answer-card .text-link { margin-top: 14px; }

.editorial { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.editorial aside { border-top: 1px solid var(--line); padding-top: 24px; }
.pullquote { font-family: var(--serif); font-size: 35px; line-height: 1.15; }
.editorial > div > p { color: var(--muted); font-size: 16px; }
.editorial h3 { margin: 45px 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.story-numbers { padding: 70px 0; background: var(--ink); color: var(--white); }
.story-numbers .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.story-numbers .container > div { display: flex; flex-direction: column; padding: 20px 35px; border-right: 1px solid rgba(255,255,255,.18); }
.story-numbers .container > div:last-child { border: 0; }
.story-numbers strong { color: var(--gold-pale); font-family: var(--serif); font-size: 61px; font-weight: 500; line-height: 1; }
.story-numbers span { margin-top: 9px; color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.showroom-intro__grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: start; }
.showroom-intro h2 { max-width: 760px; margin: 0 0 28px; font-family: var(--serif); font-size: clamp(45px, 5.4vw, 68px); font-weight: 500; letter-spacing: -.035em; line-height: .94; }
.showroom-intro__lead { max-width: 790px; color: var(--ink); font-family: var(--serif); font-size: 27px; line-height: 1.3; }
.showroom-intro__lead + p { max-width: 780px; color: var(--muted); font-size: 16px; }
.showroom-quickfacts { padding: 42px; background: var(--ink); color: var(--white); }
.showroom-quickfacts dl { margin: 0; }
.showroom-quickfacts dl > div { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.15); }
.showroom-quickfacts dt { color: var(--gold-pale); font-size: 7px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.showroom-quickfacts dd { margin: 7px 0 0; color: rgba(255,255,255,.76); font-family: var(--serif); font-size: 21px; line-height: 1.2; }
.showroom-gallery { padding: 0 0 120px; }
.showroom-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.showroom-gallery figure { position: relative; aspect-ratio: 3/2; margin: 0; overflow: hidden; }
.showroom-gallery__wide { grid-column: 1/-1; aspect-ratio: 2.2/1 !important; }
.showroom-gallery img { height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.showroom-gallery figure:hover img { transform: scale(1.025); }
.showroom-gallery figcaption { position: absolute; right: 0; bottom: 0; padding: 13px 18px; background: var(--paper); color: var(--ink); font-size: 8px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.showroom-amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.showroom-amenities article { position: relative; min-height: 355px; padding: 38px 31px; background: var(--paper); }
.showroom-amenities article > i { color: #8d7449; font-size: 30px; }
.showroom-amenities article > span { position: absolute; top: 35px; right: 31px; color: #a69d8a; font-family: var(--serif); font-size: 21px; }
.showroom-amenities h3 { margin: 72px 0 16px; font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: 1; }
.showroom-amenities p { color: var(--muted); font-size: 12px; }
.showroom-location { padding: 95px 0; background: #171916; color: var(--white); }
.showroom-location__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.showroom-location h2 { max-width: 760px; margin: 0 0 20px; font-family: var(--serif); font-size: clamp(45px, 5vw, 68px); font-weight: 500; line-height: .95; }
.showroom-location p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.58); }
.showroom-location__grid > div:last-child { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.showroom-location address { color: rgba(255,255,255,.76); font-family: var(--serif); font-size: 23px; font-style: normal; line-height: 1.3; }

.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: start; }
.contact-grid > div > p { max-width: 650px; color: var(--muted); }
.contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 50px; }
.contact-links a { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 20px; border: 1px solid var(--line); }
.contact-links i { color: #8e7548; font-size: 22px; }
.contact-links span { display: flex; flex-direction: column; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.contact-links strong { color: var(--ink); font-size: 11px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.hours-card { padding: 46px; background: var(--ink); color: var(--white); }
.hours-card .hours > div { padding: 10px 0; }
.hours-card > p:last-child { margin-top: 25px; color: rgba(255,255,255,.52); font-size: 11px; }
.contact-quote { scroll-margin-top: 90px; }
.contact-quote__grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 70px; align-items: start; }
.contact-quote__intro { position: sticky; top: 115px; }
.contact-quote__intro h2 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(45px, 5vw, 68px); font-weight: 500; letter-spacing: -.035em; line-height: .98; }
.contact-quote__intro > p:not(.eyebrow) { color: var(--muted); }
.contact-quote__intro ul { padding: 24px 0 0; margin: 30px 0 0; border-top: 1px solid var(--line); list-style: none; }
.contact-quote__intro li { display: flex; gap: 13px; align-items: center; padding: 8px 0; color: #403f3a; font-size: 12px; }
.contact-quote__intro li i { width: 20px; color: #8a7141; font-size: 17px; text-align: center; }
.contact-quote__form { background: var(--white); box-shadow: 0 20px 60px rgba(44,39,29,.08); }
.quote-form--inline { padding: 50px; }

.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.guide-card { position: relative; min-height: 440px; padding: 50px; background: var(--paper); }
.guide-card > span { position: absolute; top: 42px; right: 45px; color: #b1aa9c; font-family: var(--serif); font-size: 24px; }
.guide-card h2 { max-width: 490px; margin: 0 0 18px; font-family: var(--serif); font-size: 42px; font-weight: 500; line-height: 1.04; }
.guide-card > p:not(.eyebrow) { max-width: 540px; min-height: 86px; color: var(--muted); }
.article__grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 95px; }
.article aside { position: sticky; top: 105px; align-self: start; padding: 28px; border: 1px solid var(--line); }
.article aside ol { padding-left: 20px; margin: 0; }
.article aside li { padding: 7px 0; color: var(--muted); }
.article aside a:hover { color: var(--ink); }
.article__updated { margin: 28px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: #8d826b; font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.article__grid > div > section { max-width: 790px; padding: 0 0 55px; margin: 0 0 55px; border-bottom: 1px solid var(--line); }
.article__grid > div > section > span { color: #947d51; font-family: var(--serif); font-size: 22px; }
.article__grid h2 { margin: 8px 0 20px; font-family: var(--serif); font-size: 48px; font-weight: 500; line-height: 1.05; }
.article__grid section p { color: var(--muted); font-size: 17px; line-height: 1.9; }
.article__callout { max-width: 790px; padding: 45px; background: var(--ink); color: var(--white); }
.article__callout h2 { font-size: 42px; }
.article__callout p { color: rgba(255,255,255,.64); }
.checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.checklist-grid article { min-height: 330px; padding: 38px; background: var(--paper); }
.checklist-grid article > span { color: #967e51; font-family: var(--serif); font-size: 21px; }
.checklist-grid h2 { margin: 35px 0 16px; font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.05; }
.checklist-grid p { color: var(--muted); font-size: 13px; }

.legal__updated { margin: 0 0 50px; color: #8d826b; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.legal section { padding: 0 0 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal h2 { margin: 0 0 14px; font-family: var(--serif); font-size: 36px; font-weight: 500; }
.legal p { color: var(--muted); font-size: 16px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 70px 90px; }
.sitemap-grid h2 { margin: 0 0 24px; font-family: var(--serif); font-size: 40px; font-weight: 500; }
.sitemap-list { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.sitemap-list li { border-bottom: 1px solid var(--line); }
.sitemap-list a { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; color: var(--muted); }
.sitemap-list a:hover { color: var(--ink); }

.simple-page { display: flex; min-height: 100svh; align-items: center; padding: 180px 0 100px; background: linear-gradient(90deg, rgba(5,7,6,.9), rgba(5,7,6,.45)), url("../images/liverpool-wedding-car-hire.avif") center/cover; color: var(--white); }
.simple-page h1 { font-size: clamp(60px, 8vw, 110px); }
.simple-page .container > p:not(.eyebrow) { max-width: 650px; margin-bottom: 35px; color: rgba(255,255,255,.7); }
.simple-body .site-footer { display: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --container: min(100% - 56px, 1120px); }
  .site-header__inner { grid-template-columns: 190px 1fr 160px; }
  .brand, .brand img { width: 170px; }
  .desktop-nav { gap: 14px; }
  .header-quote { width: 155px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 34px; }
  .areas-feature__grid { gap: 55px; }
  .site-footer__grid { grid-template-columns: 1.2fr .7fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: 2/4; }
}

@media (max-width: 960px) {
  :root { --container: min(100% - 44px, 900px); }
  .topbar { display: none; }
  .site-header, .site-header.is-fixed { position: absolute; top: 0; height: 78px; background: rgba(11,13,12,.62); }
  .site-header.is-fixed { position: fixed; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-quote { display: none; }
  .menu-toggle { display: block; }
  .home-hero { min-height: 790px; height: 100svh; }
  .home-hero__content { padding-top: 80px; }
  .home-hero__slide--fleet img { object-position: center 58%; }
  .home-hero__bottom { bottom: 24px; }
  .hero-facts { gap: 22px; }
  .inner-hero { min-height: 620px; }
  .inner-hero__content { padding-top: 150px; padding-bottom: 60px; }
  .breadcrumbs { margin-bottom: 38px; }
  .section { padding: 90px 0; }
  .statement__grid { grid-template-columns: 1fr; gap: 30px; }
  .showroom-feature__grid { grid-template-columns: 1fr; gap: 65px; }
  .showroom-feature__gallery { min-height: 620px; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split__image { min-height: 540px; max-height: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card__icon { margin-bottom: 45px; }
  .service-card > p:not(.eyebrow) { min-height: 0; }
  .areas-feature__grid, .story-panel, .vehicle-intro, .process-grid, .local-intro, .editorial, .contact-grid, .contact-quote__grid, .article__grid, .vehicle-listing-hero__grid, .showroom-intro__grid, .showroom-location__grid { grid-template-columns: 1fr; gap: 55px; }
  .vehicle-listing-hero { padding-top: 135px; }
  .vehicle-listing-hero__summary { padding-top: 0; }
  .vehicle-overview__grid { grid-template-columns: 1fr 1fr; }
  .vehicle-included { grid-column: 1/-1; }
  .booking-listing > .container { grid-template-columns: 1fr; }
  .showroom-amenities { grid-template-columns: 1fr 1fr; }
  .showroom-location__grid > div:last-child { align-items: center; }
  .answer-card, .article aside { position: static; }
  .contact-quote__intro { position: static; }
  .info-columns { grid-template-columns: 1fr 1fr; gap: 40px; }
  .info-columns > div:first-child { grid-column: 1/-1; }
  .info-columns > div:not(:first-child) { padding-top: 0; }
  .story-numbers .container { grid-template-columns: 1fr 1fr; }
  .story-numbers .container > div:nth-child(2) { border-right: 0; }
  .story-numbers .container > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .checklist-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .quote-dialog__shell { grid-template-columns: 1fr; }
  .quote-dialog__intro { padding: 48px; }
  .quote-form { padding: 45px 48px; }
  .quote-dialog__close { position: sticky; float: right; top: 12px; right: 12px; margin: 12px 12px -56px 0; }
}

@media (max-width: 700px) {
  :root { --container: calc(100% - 34px); }
  body { font-size: 14px; }
  .brand, .brand img { width: 157px; }
  .home-hero { min-height: 720px; }
  .home-hero__content h1, .inner-hero h1, .simple-page h1 { font-size: clamp(48px, 15vw, 72px); line-height: .91; }
  .home-hero__slide--fleet img { object-position: center 62%; }
  .home-hero__content > p:not(.eyebrow), .inner-hero__content > p:not(.eyebrow) { font-size: 14px; }
  .home-hero__bottom { align-items: flex-end; }
  .hero-facts span:nth-child(n+2) { display: none; }
  .inner-hero { min-height: 600px; }
  .inner-hero__content { padding-top: 125px; padding-bottom: 45px; }
  .breadcrumbs { margin-bottom: 30px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .statement h2, .feature-split h2, .info-columns h2, .local-intro h2, .editorial h2, .story-panel h2, .contact-grid h2, .final-cta h2, .process-grid h2 { font-size: clamp(39px, 12vw, 53px); }
  .fleet-grid, .area-grid, .guide-grid, .vehicle-gallery__grid, .info-columns, .contact-links, .checklist-grid, .sitemap-grid { grid-template-columns: 1fr; }
  .ownership-proof { grid-template-columns: repeat(3, 1fr); }
  .ownership-proof > div { min-height: 96px; padding: 14px 10px; }
  .ownership-proof > div:first-child { padding-left: 0; }
  .ownership-proof strong { font-size: 34px; }
  .ownership-proof span { font-size: 7px; line-height: 1.4; }
  .showroom-feature { padding: 78px 0; }
  .showroom-feature__copy h2 { font-size: clamp(45px, 14vw, 62px); }
  .showroom-feature__facts > div { min-height: 90px; padding: 12px 8px; }
  .showroom-feature__facts > div:first-child { padding-left: 0; }
  .showroom-feature__facts strong { font-size: 31px; }
  .showroom-feature__facts span { font-size: 6px; }
  .showroom-feature__gallery { min-height: 455px; }
  .showroom-feature__gallery-main { width: 100%; height: 340px; }
  .showroom-feature__gallery > figure:nth-child(2) { width: 56%; height: 205px; border-width: 6px; }
  .showroom-feature__label { bottom: 17px; width: 195px; padding: 16px; }
  .fleet-card h3 { font-size: 29px; }
  .feature-split__image { min-height: 420px; }
  .feature-split__content { padding: 65px 24px; }
  .service-card { padding: 32px 26px; }
  .service-card__icon { margin-bottom: 38px; }
  .areas-feature { padding: 72px 0; }
  .area-card { min-height: 160px; }
  .story-panel { gap: 35px; }
  .faq-item summary { min-height: 76px; font-size: 22px; }
  .final-cta { padding: 70px 0; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-top: 65px; padding-bottom: 85px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 44px; }
  .site-footer__base { align-items: flex-start; flex-direction: column; }
  .site-footer__base > div { flex-wrap: wrap; }
  .floating-ctas { right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: .72fr 1.28fr; gap: 0; }
  .floating-ctas > * { width: 100%; height: 58px; border: 0; }
  .fleet-toolbar { align-items: flex-start; flex-direction: column; }
  .filters { justify-content: flex-start; }
  .vehicle-intro { gap: 48px; }
  .vehicle-listing-hero { padding: 112px 0 50px; }
  .vehicle-listing-hero .breadcrumbs { margin-bottom: 24px; }
  .vehicle-listing-hero__grid { gap: 38px; }
  .vehicle-listing-hero__summary h1 { font-size: clamp(49px, 17vw, 68px); }
  .listing-specs { grid-template-columns: 1fr; }
  .listing-specs > div:nth-child(odd) { border-right: 0; }
  .listing-specs > div:nth-child(even) { padding-left: 0; }
  .listing-jump { top: 78px; }
  .listing-jump .container { gap: 25px; }
  .vehicle-overview__grid { grid-template-columns: 1fr; gap: 44px; }
  .vehicle-included { grid-column: auto; }
  .vehicle-gallery--listing { padding: 72px 0; }
  .vehicle-gallery__heading { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vehicle-gallery__heading .eyebrow { margin-bottom: 0; }
  .vehicle-gallery__heading h2 { font-size: 38px; }
  .booking-listing { padding: 72px 0; }
  .booking-listing ol { grid-template-columns: 1fr; }
  .booking-listing li { min-height: 0; border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
  .showroom-gallery { padding-bottom: 72px; }
  .showroom-gallery__grid { grid-template-columns: 1fr; }
  .showroom-gallery__wide { grid-column: auto; aspect-ratio: 3/2 !important; }
  .showroom-amenities { grid-template-columns: 1fr; }
  .showroom-amenities article { min-height: 300px; }
  .showroom-location__grid > div:last-child { align-items: flex-start; flex-direction: column; }
  .vehicle-gallery { padding-bottom: 72px; }
  .process-steps li { grid-template-columns: 48px 1fr; }
  .local-intro { gap: 38px; }
  .answer-card { padding: 28px; }
  .story-numbers .container { grid-template-columns: 1fr; }
  .story-numbers .container > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .story-numbers .container > div:last-child { border-bottom: 0; }
  .guide-card { min-height: 0; padding: 40px 28px; }
  .guide-card h2 { font-size: 35px; }
  .guide-card > p:not(.eyebrow) { min-height: 0; }
  .article__grid h2 { font-size: 39px; }
  .article__grid section p { font-size: 15px; }
  .article__callout { padding: 32px 26px; }
  .quote-dialog { width: 100vw; max-height: 100svh; height: 100svh; }
  .quote-dialog__intro { padding: 42px 25px; }
  .quote-dialog__intro h2 { font-size: 46px; }
  .quote-form { padding: 38px 22px 80px; }
  .quote-form--inline { padding: 34px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .vehicle-choice__grid { grid-template-columns: 1fr 1fr; }
  .simple-page { padding-top: 120px; }
}

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