:root {
  --ink: #0a0b0c;
  --ink-2: #111315;
  --ink-3: #181a1d;
  --paper: #f3f1ec;
  --white: #fff;
  --muted: #9c9d9d;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(10, 11, 12, .14);
  --accent: #d7be91;
  --accent-soft: #eee3ce;
  --success: #8fbd91;
  --radius: 2px;
  --shell: min(1400px, calc(100% - 80px));
  --ease: cubic-bezier(.22, .7, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
button { border: 0; cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 200; padding: 12px 18px; background: white; color: black; transition: top .2s; }
.skip-link:focus { top: 12px; }
.eyebrow { margin-bottom: 18px; color: #7e7060; font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.section { padding: 126px 0; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 440px); gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .about h2, .contact h2, .split-feature h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.035em; }
.section-heading > p { margin: 0; color: #686864; font-size: 16px; line-height: 1.75; }

.topbar { position: absolute; z-index: 12; top: 0; left: 0; width: 100%; height: 34px; color: rgba(255,255,255,.72); background: rgba(7,8,9,.75); border-bottom: 1px solid rgba(255,255,255,.07); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.topbar__inner { display: flex; height: 100%; justify-content: space-between; align-items: center; }
.status-dot { display: inline-block; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(143,189,145,.12); }
.status-dot--closed { background: #ad837a; box-shadow: 0 0 0 4px rgba(173,131,122,.12); }
.site-header { position: absolute; z-index: 11; top: 34px; left: 0; width: 100%; color: white; border-bottom: 1px solid var(--line); transition: background .3s, transform .3s; }
.site-header.scrolled { position: fixed; top: 0; background: rgba(9,10,11,.94); backdrop-filter: blur(18px); }
.header-inner { display: grid; grid-template-columns: 220px 1fr 220px; height: 92px; align-items: center; }
.brand { display: inline-flex; width: max-content; flex-direction: column; align-items: center; }
.brand__name { font-family: Georgia, serif; font-size: 24px; letter-spacing: .36em; line-height: 1; text-indent: .36em; }
.brand__sub { margin-top: 8px; font-size: 8px; letter-spacing: .28em; text-transform: uppercase; }
.desktop-nav { display: flex; justify-content: center; gap: 36px; }
.desktop-nav a { position: relative; padding: 36px 0; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; transition: color .25s; }
.desktop-nav a::after { position: absolute; bottom: 25px; left: 0; width: 0; height: 1px; content: ""; background: var(--accent); transition: width .3s var(--ease); }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { width: 100%; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 13px; }
.icon-button { position: relative; display: grid; width: 38px; height: 38px; place-items: center; color: white; background: transparent; font-size: 25px; }
.icon-button b { position: absolute; top: -2px; right: -1px; display: grid; min-width: 17px; height: 17px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--accent); font-size: 9px; }
.button { display: inline-flex; min-height: 52px; padding: 0 25px; align-items: center; justify-content: center; gap: 22px; border: 1px solid transparent; border-radius: var(--radius); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 39px; padding-inline: 18px; }
.button--outline { color: white; background: transparent; border-color: rgba(255,255,255,.45); }
.button--outline:hover { color: var(--ink); background: white; border-color: white; }
.button--light { color: var(--ink); background: #f3f1ed; }
.button--light:hover { background: var(--accent-soft); }
.button--glass { color: white; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.button--glass:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.button--dark { color: white; background: var(--ink); }
.button--dark:hover { background: #292b2e; }
.button--outline-dark { color: var(--ink); background: transparent; border-color: var(--line-dark); }
.button--full { width: 100%; }
.menu-button { display: none; width: 42px; height: 42px; padding: 12px; background: transparent; }
.menu-button span { display: block; width: 18px; height: 1px; margin: 5px auto; background: white; transition: transform .2s; }
.menu-button.open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button.open span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 790px; height: 100svh; overflow: hidden; color: white; background: #08090a; }
.hero__image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 56% center; animation: heroZoom 9s var(--ease) both; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,5,6,.94) 0%, rgba(4,5,6,.78) 27%, rgba(4,5,6,.18) 58%, rgba(4,5,6,.08) 100%), linear-gradient(0deg, rgba(4,5,6,.55), transparent 42%); }
.hero__content { position: relative; z-index: 2; display: flex; height: 100%; padding-top: 170px; padding-bottom: 58px; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { margin: 0 0 28px; max-width: 650px; font-size: clamp(64px, 7.1vw, 114px); line-height: .87; letter-spacing: -.05em; }
.hero__lead { max-width: 545px; margin-bottom: 35px; color: rgba(255,255,255,.73); font-size: 16px; line-height: 1.7; }
.hero__actions { display: flex; gap: 12px; }
.hero__facts { display: flex; width: 100%; max-width: 690px; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); gap: 38px; }
.hero__facts span { display: flex; color: rgba(255,255,255,.72); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; gap: 9px; }
.hero__facts strong { color: var(--accent); font-weight: 500; }
.scroll-cue { position: absolute; z-index: 3; right: 32px; bottom: 42px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { width: 1px; height: 46px; background: linear-gradient(var(--accent), transparent); animation: scrollPulse 1.7s infinite; }
.reveal { opacity: 0; transform: translateY(24px); animation: reveal .8s .2s var(--ease) forwards; }
.reveal--delay-1 { animation-delay: .35s; }.reveal--delay-2 { animation-delay: .5s; }.reveal--delay-3 { animation-delay: .65s; }
@keyframes reveal { to { opacity: 1; transform: none; } }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes scrollPulse { 50% { opacity: .35; } }

.inventory { background: var(--paper); }
.filter-panel { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); padding: 26px; gap: 14px; background: white; border: 1px solid rgba(10,11,12,.09); box-shadow: 0 18px 60px rgba(20,20,18,.06); }
.filter-panel label, .form-modal label, .login-modal label, .vehicle-form label { display: flex; min-width: 0; flex-direction: column; gap: 9px; }
.filter-panel label > span, .form-modal label > span, .login-modal label > span, .vehicle-form label > span { color: #706e69; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
input, select, textarea { width: 100%; border: 1px solid #d8d5cf; border-radius: 0; outline: 0; color: var(--ink); background: #fbfaf7; transition: border-color .2s, box-shadow .2s; }
input, select { height: 48px; padding: 0 14px; }
textarea { padding: 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: #9b8664; box-shadow: 0 0 0 3px rgba(155,134,100,.12); }
select { cursor: pointer; }
.filter-toggle, .filter-reset { grid-column: auto / span 1; padding: 11px 0 2px; justify-self: start; color: #4b4a47; background: transparent; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.filter-toggle span { margin-left: 8px; color: #8f7550; font-size: 15px; }
.filter-reset { justify-self: end; text-decoration: underline; text-underline-offset: 4px; }
.advanced-filters { display: none; grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 12px; border-top: 1px solid #ebe8e1; }
.advanced-filters.open { display: grid; }
.inventory-toolbar { display: flex; margin: 42px 0 23px; justify-content: space-between; align-items: center; }
.inventory-toolbar p { margin: 0; color: #686864; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.inventory-toolbar strong { color: var(--ink); font-size: 18px; }
.sort-control { display: flex; align-items: center; color: #77746f; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; gap: 12px; }
.sort-control select { width: auto; height: 38px; padding-right: 38px; background: transparent; border: 0; border-bottom: 1px solid #bbb7ae; }
.vehicle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.vehicle-card { position: relative; overflow: hidden; background: white; border: 1px solid rgba(10,11,12,.09); transition: transform .35s var(--ease), box-shadow .35s; }
.vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(18,18,16,.12); }
.vehicle-card__image { position: relative; height: 285px; overflow: hidden; background: #17181a; cursor: pointer; }
.vehicle-card__image img { height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vehicle-card:hover .vehicle-card__image img { transform: scale(1.025); }
.vehicle-card__badge { position: absolute; top: 18px; left: 18px; padding: 8px 11px; color: white; background: rgba(8,9,10,.72); backdrop-filter: blur(8px); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.save-card { position: absolute; top: 15px; right: 15px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.33); border-radius: 50%; color: white; background: rgba(8,9,10,.25); backdrop-filter: blur(8px); font-size: 21px; transition: background .2s, color .2s; }
.save-card.saved { color: var(--ink); background: var(--accent-soft); }
.vehicle-card__body { padding: 24px 24px 22px; }
.vehicle-card__brand { margin-bottom: 8px; color: #89857f; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.vehicle-card h3 { margin: 0 0 20px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.vehicle-card__specs { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid #e7e4de; color: #6c6a65; font-size: 10px; gap: 8px; }
.vehicle-card__specs span { display: flex; flex-direction: column; gap: 5px; }
.vehicle-card__specs b { color: #9a958d; font-size: 8px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.vehicle-card__footer { display: flex; justify-content: space-between; align-items: end; }
.vehicle-card__price { font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.vehicle-card__price small { display: block; margin-top: 4px; color: #99958d; font-size: 8px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }
.card-details { padding: 8px 0; color: var(--ink); background: transparent; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.empty-state { padding: 80px 30px; text-align: center; background: white; }
.empty-state > span { color: #9a7f55; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.empty-state h3 { margin: 14px 0 9px; font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.empty-state p { margin-bottom: 25px; color: #77746e; }

.split-feature { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 770px; background: #e6e1d8; }
.split-feature__visual { position: relative; overflow: hidden; min-height: 680px; background: #151617; }
.split-feature__visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(8,9,10,.45), transparent 40%); }
.split-feature__visual img { height: 100%; object-fit: cover; }
.image-label { position: absolute; z-index: 1; bottom: 28px; left: 34px; color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.split-feature__content { display: flex; padding: 90px clamp(45px, 6vw, 100px); flex-direction: column; justify-content: center; }
.split-feature__content > p:not(.eyebrow) { max-width: 540px; margin: 30px 0 35px; color: #66635d; line-height: 1.75; }
.process-list { margin: 0 0 34px; padding: 0; list-style: none; }
.process-list li { display: flex; padding: 18px 0; border-top: 1px solid rgba(10,11,12,.14); gap: 20px; }
.process-list li:last-child { border-bottom: 1px solid rgba(10,11,12,.14); }
.process-list li > span { padding-top: 3px; color: #9a7c50; font-size: 10px; }
.process-list div { display: flex; flex-direction: column; gap: 6px; }
.process-list strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.process-list small { color: #77736c; font-size: 12px; }
.text-link { width: max-content; padding: 5px 0; color: inherit; background: transparent; border-bottom: 1px solid currentColor; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.text-link span { margin-left: 20px; }

.services { color: white; background: var(--ink-2); }
.section-heading--light .eyebrow { color: var(--accent); }
.section-heading--light > p { color: rgba(255,255,255,.52); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 350px; padding: 42px 38px; border-right: 1px solid var(--line); transition: background .3s; }
.service-card:last-child { border: 0; }
.service-card:hover { background: rgba(255,255,255,.035); }
.service-card > span { color: var(--accent); font-size: 10px; }
.service-card h3 { max-width: 270px; margin: 58px 0 18px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.service-card p { min-height: 70px; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.7; }
.service-card .text-link { margin-top: 25px; color: rgba(255,255,255,.75); }

.about { background: #ebe7df; }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; }
.about__copy { padding-top: 32px; }
.about__lead { max-width: 620px; margin-bottom: 26px; font-family: Georgia, serif; font-size: clamp(25px, 3vw, 40px); line-height: 1.25; }
.about__copy > p:not(.about__lead) { max-width: 620px; color: #6e6a64; line-height: 1.8; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--line-dark); gap: 20px; }
.metrics div { display: flex; flex-direction: column; gap: 9px; }
.metrics strong { font-family: Georgia, serif; font-size: 31px; font-weight: 400; }
.metrics span { color: #77726b; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }

.contact { padding: 125px 0; color: white; background: #16181a; }
.contact .eyebrow { color: var(--accent); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.contact__lead > p:not(.eyebrow) { max-width: 500px; margin: 32px 0 35px; color: rgba(255,255,255,.54); line-height: 1.75; }
.contact__details { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 42px 60px; }
.contact-block { display: flex; flex-direction: column; gap: 9px; }
.contact-block > span { margin-bottom: 8px; color: var(--accent); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-block a, .contact-block p { margin: 0; color: rgba(255,255,255,.76); font-family: Georgia, serif; font-size: 19px; line-height: 1.5; }
.contact-block small { color: rgba(255,255,255,.38); font-family: Inter, sans-serif; font-size: 10px; }
.contact-block--hours { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--line); }
.contact-block--hours p { display: grid; grid-template-columns: 1fr 1fr; padding: 8px 0; font-family: Inter, sans-serif; font-size: 12px; }
.contact-block--hours b { font-weight: 500; }.contact-block--hours em { color: rgba(255,255,255,.52); font-style: normal; }

.site-footer { color: rgba(255,255,255,.62); background: #090a0b; }
.footer-main { display: grid; grid-template-columns: 1.1fr 1fr 1fr .4fr; padding: 70px 0; align-items: start; gap: 55px; }
.brand--footer { color: white; align-items: flex-start; }
.brand--footer .brand__name { text-indent: 0; }
.footer-main > p { font-family: Georgia, serif; font-size: 18px; line-height: 1.5; }
.footer-main nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 25px; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.footer-main a:hover, .footer-bottom a:hover, .footer-bottom button:hover { color: white; }
.footer-social { display: flex; gap: 8px; }
.footer-social[hidden] { display: none !important; }
.footer-social a { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 9px; text-transform: uppercase; }
.footer-bottom { display: flex; padding: 24px 0; justify-content: space-between; border-top: 1px solid var(--line); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom button { padding: 0; color: inherit; background: transparent; font-size: inherit; letter-spacing: inherit; text-transform: inherit; }

.modal { width: min(920px, calc(100% - 30px)); max-height: calc(100vh - 30px); padding: 0; overflow: auto; color: var(--ink); background: #f7f5f0; border: 0; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.modal::backdrop { background: rgba(4,5,6,.83); backdrop-filter: blur(8px); }
.modal[open] { animation: modalIn .35s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.985); } }
.modal-close { position: absolute; z-index: 5; top: 16px; right: 18px; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: inherit; background: rgba(255,255,255,.82); font-size: 25px; line-height: 1; }
.form-modal { width: min(680px, calc(100% - 30px)); padding: 55px; }
.modal-heading h2 { margin-bottom: 12px; font-size: 40px; }
.modal-heading > p:not(.eyebrow) { color: #77736c; }
.form-modal form, .login-modal form { display: flex; margin-top: 30px; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-label { display: grid !important; grid-template-columns: 18px 1fr; align-items: start; gap: 9px !important; }
.checkbox-label input { width: 17px; height: 17px; margin: 0; accent-color: var(--ink); }
.checkbox-label span { font-size: 10px !important; font-weight: 400 !important; line-height: 1.5; letter-spacing: 0 !important; text-transform: none !important; }
.login-modal { width: min(470px, calc(100% - 30px)); padding: 158px 54px 54px; color: white; background: #111315; }
.login-modal .modal-close { color: white; background: rgba(255,255,255,.08); }
.login-brand { display: inline-flex; margin-bottom: 48px; flex-direction: column; }
.login-brand .brand__name { text-indent: 0; }
.login-brand--logo { align-items: flex-start; gap: 8px; }
.login-brand--logo img { display: block; width: min(250px, 72vw); height: auto; }
.login-brand--logo > span { color: rgba(255,255,255,.48); font-size: 8px; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; }
.login-modal .login-brand--logo { position: absolute; top: 28px; left: 30px; margin: 0; align-items: center; gap: 10px; }
.login-modal .login-brand--logo img { width: 205px; }
.login-modal .login-brand--logo > span { display: block; width: 100%; padding: 0; font-size: 7px; line-height: 1.5; letter-spacing: .16em; text-align: center; white-space: nowrap; }
.login-modal .eyebrow { color: var(--accent); }
.login-modal .modal-heading > p:not(.eyebrow) { color: rgba(255,255,255,.5); }
.login-modal label > span { color: rgba(255,255,255,.52); }
.login-modal input { color: white; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }
.login-error { min-height: 18px; margin: 0; color: #f0a8a8; font-size: 11px; }
.demo-note { margin: 0; color: rgba(255,255,255,.35); font-size: 9px; text-align: center; }

.vehicle-modal { width: min(1120px, calc(100% - 30px)); color: white; background: #111315; }
.vehicle-detail { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 670px; }
.vehicle-detail__visual { position: relative; min-height: 500px; background: #17191a; }
.vehicle-detail__visual img { height: 100%; object-fit: cover; }
.vehicle-detail__visual .vehicle-card__badge { top: 24px; left: 24px; }
.vehicle-detail__content { display: flex; padding: 64px 48px 42px; flex-direction: column; }
.vehicle-detail__content .eyebrow { color: var(--accent); }
.vehicle-detail__content h2 { margin-bottom: 10px; font-size: 43px; }
.detail-subtitle { color: rgba(255,255,255,.48); font-size: 12px; }
.detail-price { margin: 28px 0 25px; font-family: Georgia, serif; font-size: 31px; }
.detail-price small { margin-left: 8px; color: rgba(255,255,255,.36); font-family: Inter, sans-serif; font-size: 9px; text-transform: uppercase; }
.detail-specs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 28px; border-top: 1px solid var(--line); }
.detail-specs div { display: flex; padding: 13px 0; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 11px; }
.detail-specs div:nth-child(odd) { padding-right: 18px; }.detail-specs div:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
.detail-specs span { color: rgba(255,255,255,.38); }
.detail-description { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }
.detail-actions { display: flex; margin-top: auto; gap: 10px; }
.detail-actions .button { flex: 1; }

.admin-modal { width: min(1460px, calc(100% - 24px)); height: min(900px, calc(100vh - 24px)); max-height: none; background: #f2f0eb; }
.admin-topbar { position: sticky; z-index: 4; top: 0; display: flex; height: 78px; padding: 0 28px; justify-content: space-between; align-items: center; color: white; background: #0d0f10; border-bottom: 1px solid var(--line); }
.admin-topbar .login-brand { margin: 0; }
.admin-topbar .brand__name { font-size: 18px; }
.admin-topbar .login-brand--logo { min-height: 52px; justify-content: center; gap: 0; overflow: visible; }
.admin-topbar .login-brand--logo img { width: 175px; height: auto; max-height: none; }
.admin-topbar .login-brand--logo > span { display: none; }
.admin-topbar > div:last-child { display: flex; align-items: center; gap: 14px; }
.admin-topbar .modal-close { position: static; color: white; background: rgba(255,255,255,.07); }
.admin-logout { color: rgba(255,255,255,.52); background: transparent; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.admin-layout { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100% - 78px); }
.admin-sidebar { display: flex; padding: 42px 22px; flex-direction: column; background: #181a1c; }
.admin-sidebar .eyebrow { padding-left: 12px; color: var(--accent); }
.admin-nav { padding: 14px 12px; color: rgba(255,255,255,.52); background: transparent; border-left: 2px solid transparent; text-align: left; font-size: 11px; }
.admin-nav.active { color: white; background: rgba(255,255,255,.05); border-left-color: var(--accent); }
.admin-nav--sortable { display: flex; align-items: center; gap: 9px; cursor: grab; user-select: none; transition: color .18s ease, background-color .18s ease, opacity .18s ease, transform .18s ease; }
.admin-nav--sortable:active { cursor: grabbing; }
.admin-nav--sortable.is-dragging { opacity: .38; background: rgba(255,255,255,.08); transform: scale(.98); }
.admin-drag-handle { width: 10px; flex: 0 0 10px; overflow: hidden; color: rgba(255,255,255,.26); font-size: 10px; font-weight: 700; letter-spacing: -3px; line-height: 1; transition: color .18s ease; }
.admin-nav--sortable:hover .admin-drag-handle, .admin-nav--sortable:focus-visible .admin-drag-handle { color: var(--accent); }
.admin-tip { margin-top: auto; padding: 18px; color: rgba(255,255,255,.45); background: rgba(255,255,255,.04); font-size: 10px; line-height: 1.5; }
.admin-tip span { color: var(--accent); font-weight: 700; text-transform: uppercase; }
.admin-tip p { margin: 8px 0 0; }
.admin-content { padding: 48px clamp(28px, 5vw, 75px); overflow: auto; }
.admin-view { display: none; }.admin-view.active { display: block; }
.admin-heading { display: flex; margin-bottom: 35px; justify-content: space-between; align-items: end; }
.admin-heading h2 { margin: 0; font-size: 44px; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 30px; gap: 14px; }
.admin-stats div { display: flex; padding: 20px 24px; justify-content: space-between; align-items: center; background: white; border: 1px solid #e2dfd8; }
.admin-stats span { color: #77736d; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.admin-stats strong { font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.admin-list { background: white; border: 1px solid #e0ddd6; }
.admin-list-item { display: grid; grid-template-columns: 90px 1.5fr .8fr .65fr auto; padding: 12px; align-items: center; border-bottom: 1px solid #e8e5df; gap: 18px; }
.admin-list-item:last-child { border: 0; }
.admin-list-item img { height: 64px; object-fit: cover; background: #171819; }
.admin-list-item h4 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 17px; font-weight: 400; }
.admin-list-item p { margin: 0; color: #827e77; font-size: 9px; text-transform: uppercase; }
.admin-list-item > strong { font-size: 13px; }
.status-toggle { display: flex; align-items: center; gap: 8px; color: #696660; background: transparent; font-size: 9px; text-transform: uppercase; }
.status-toggle i { width: 8px; height: 8px; border-radius: 50%; background: #aaa; }.status-toggle.online i { background: #65a96b; }
.admin-delete { width: 34px; height: 34px; color: #9e5656; background: #f7eeee; font-size: 18px; }
.admin-edit { margin-right: 5px; color: #62605b; background: #f0eee9; }
.vehicle-form { display: flex; flex-direction: column; gap: 20px; }
.form-section { padding: 28px; background: white; border: 1px solid #e0ddd6; }
.form-section h3 { margin: 0 0 22px; font-family: Georgia, serif; font-size: 21px; font-weight: 400; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.field-span { grid-column: 1 / -1; }
.form-grid--media { grid-template-columns: 1fr 1fr; }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; }
.toast { position: fixed; z-index: 300; right: 25px; bottom: 25px; max-width: 360px; padding: 16px 20px; color: white; background: #1b1d1f; box-shadow: 0 16px 50px rgba(0,0,0,.3); font-size: 12px; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .3s, transform .3s; }
.toast.show { opacity: 1; transform: none; }
.vehicle-save-status { min-height: 22px; margin: 4px 0 14px; color: #666; font-size: 12px; line-height: 1.5; }
.vehicle-save-status.is-saving { color: #7d6844; }
.vehicle-save-status.is-error { padding: 12px 14px; color: #7d2525; background: #fff0f0; border: 1px solid #e4bcbc; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1000px); }
  .header-inner { grid-template-columns: 190px 1fr 150px; }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 9px; }
  .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-panel { grid-template-columns: repeat(3, 1fr); }
  .field-wide { grid-column: span 2; }
  .split-feature { grid-template-columns: 1fr 1fr; }
  .about__grid { gap: 60px; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100% - 36px); }
  .topbar__meta, .desktop-nav, .header-actions .button { display: none; }
  .header-inner { display: flex; height: 74px; justify-content: space-between; }
  .header-actions { margin-left: auto; }
  .menu-button { display: block; }
  .mobile-nav.open { display: flex; padding: 10px 18px 25px; flex-direction: column; background: rgba(9,10,11,.98); }
  .mobile-nav a { padding: 15px 2px; border-bottom: 1px solid var(--line); color: rgba(255,255,255,.75); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
  .hero { min-height: 720px; }
  .hero__image { object-position: 65% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(4,5,6,.9), rgba(4,5,6,.34)), linear-gradient(0deg, rgba(4,5,6,.72), transparent 50%); }
  .hero__content { padding-top: 140px; }
  .hero__facts { flex-wrap: wrap; margin-top: 45px; }
  .section { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature__visual { min-height: 540px; }
  .split-feature__content { padding: 80px 40px; }
  .service-card { padding: 35px 24px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .vehicle-detail { grid-template-columns: 1fr; }
  .vehicle-detail__visual { height: 430px; min-height: 0; }
  .detail-actions { margin-top: 28px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .form-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .topbar { font-size: 8px; }.topbar__inner { justify-content: center; }
  .brand__name { font-size: 20px; }
  .hero { min-height: 760px; }
  .hero__image { object-position: 69% center; opacity: .74; }
  .hero__shade { background: linear-gradient(0deg, rgba(4,5,6,.9) 3%, rgba(4,5,6,.4) 70%, rgba(4,5,6,.68)); }
  .hero__content { justify-content: flex-end; padding-bottom: 60px; }
  .hero h1 { font-size: 58px; }
  .hero__lead { font-size: 14px; }
  .hero__actions { width: 100%; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__facts { display: none; }
  .scroll-cue { display: none; }
  .section { padding: 75px 0; }
  .section-heading h2, .about h2, .contact h2, .split-feature h2 { font-size: 42px; }
  .filter-panel { grid-template-columns: 1fr; padding: 18px; }
  .field-wide { grid-column: auto; }
  .advanced-filters { grid-template-columns: 1fr; }
  .filter-reset { grid-column: 1; grid-row: auto; justify-self: start; }
  .inventory-toolbar { align-items: flex-start; gap: 20px; }
  .sort-control { flex-direction: column; align-items: flex-start; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .vehicle-card__image { height: 250px; }
  .split-feature__visual { min-height: 410px; }
  .split-feature__content { padding: 65px 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card h3 { margin-top: 35px; }
  .service-card p { min-height: 0; }
  .metrics { grid-template-columns: 1fr; }
  .metrics div { padding: 12px 0; flex-direction: row; justify-content: space-between; align-items: center; }
  .contact { padding: 80px 0; }
  .contact__details { grid-template-columns: 1fr; }
  .contact-block--hours { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; padding: 55px 0; }
  .footer-bottom { align-items: flex-start; gap: 20px; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
  .form-modal { padding: 45px 22px 28px; }
  .login-modal { padding: 145px 22px 28px; }
  .login-modal .login-brand--logo { top: 25px; left: 22px; }
  .login-modal .login-brand--logo img { width: 185px; }
  .form-row { grid-template-columns: 1fr; }
  .vehicle-detail__visual { height: 300px; }
  .vehicle-detail__content { padding: 40px 22px 26px; }
  .vehicle-detail__content h2 { font-size: 34px; }
  .detail-specs div:nth-child(odd), .detail-specs div:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
  .detail-specs { grid-template-columns: 1fr; }
  .detail-actions { flex-direction: column; }
  .admin-modal { width: 100%; height: 100vh; max-height: none; }
  .admin-topbar { padding: 0 14px; }
  .admin-topbar .login-brand--logo img { width: 142px; }
  .admin-content { padding: 30px 14px; }
  .admin-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .admin-stats { grid-template-columns: 1fr; }
  .admin-list-item { grid-template-columns: 65px 1fr auto; gap: 10px; }
  .admin-list-item img { height: 55px; }
  .admin-list-item > strong, .admin-list-item .status-toggle { display: none; }
  .form-grid, .form-grid--media { grid-template-columns: 1fr; }
  .field-span { grid-column: auto; }
  .form-section { padding: 20px 15px; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
}

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

/* Motorhaus Traiskirchen multipage edition */
.brand--image { width: 205px; align-items: flex-start; }
.brand--image img { width: 100%; height: auto; }
.brand--footer.brand--image { width: 235px; }
.header-inner { grid-template-columns: 215px 1fr 150px; }
.desktop-nav { gap: 23px; }
.desktop-nav a { font-size: 9px; }
.desktop-nav a.active { color: #fff; }
.desktop-nav a.active::after { width: 100%; }
.site-header--solid { background: rgba(9,10,11,.98); }
.heading-action > p { margin: 0 0 18px; color: #686864; font-size: 16px; line-height: 1.75; }
.home-inventory { padding-top: 110px; }
.home-inventory__footer { display: flex; margin-top: 48px; justify-content: center; }
.home-promise { padding: 120px 0; color: #fff; background: #141618; }
.home-promise__inner { display: grid; grid-template-columns: .5fr 1.1fr .8fr; align-items: start; gap: 70px; }
.home-promise h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.035em; }
.home-promise__inner > p:not(.eyebrow) { margin: 7px 0 0; color: rgba(255,255,255,.57); font-size: 15px; line-height: 1.8; }
.home-promise .eyebrow { color: var(--accent); }
.home-promise .text-link { grid-column: 3; color: rgba(255,255,255,.8); }

.inner-hero { position: relative; display: flex; min-height: 620px; padding: 205px 0 90px; align-items: flex-end; overflow: hidden; color: #fff; background: linear-gradient(90deg, rgba(6,7,8,.94), rgba(6,7,8,.56) 55%, rgba(6,7,8,.2)), url('assets/hero-showroom.webp') center 58% / cover no-repeat; }
.inner-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(6,7,8,.58), transparent 55%); }
.inner-hero .shell { position: relative; z-index: 1; }
.inner-hero .eyebrow { color: var(--accent); }
.inner-hero h1 { max-width: 850px; margin: 0 0 26px; font-size: clamp(58px, 7vw, 100px); line-height: .9; letter-spacing: -.05em; }
.inner-hero p:last-child { max-width: 600px; margin: 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; }
.inner-hero--vehicles { background-position: center 68%; }
.inner-hero--finance { background-position: center 35%; }
.inner-hero--service { background-position: center 50%; }
.inner-hero--about { background-position: center 64%; }
.inner-hero--contact { background-position: center 42%; }
.inventory-page { padding-top: 75px; }

.page-section { padding: 120px 0; background: var(--paper); }
.content-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; }
.content-split h2, .finance-copy h2, .contact-information h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: 1; letter-spacing: -.035em; }
.prose .lead, .finance-copy .lead { color: #262625; font-family: Georgia, serif; font-size: clamp(25px, 3vw, 36px); line-height: 1.3; }
.prose > p:not(.lead), .finance-copy > p:not(.lead) { color: #696660; font-size: 15px; line-height: 1.8; }
.prose .button { margin-top: 20px; }
.steps-section { padding: 0 0 120px; background: var(--paper); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.steps-grid article { min-height: 290px; padding: 38px 34px; border-right: 1px solid var(--line-dark); }
.steps-grid article:last-child { border-right: 0; }
.steps-grid span, .service-list-grid span, .values-grid span { color: #95794d; font-size: 10px; }
.steps-grid h3, .service-list-grid h3, .values-grid h3 { margin: 65px 0 15px; font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.steps-grid p, .service-list-grid p, .values-grid p { margin: 0; color: #74716b; font-size: 13px; line-height: 1.7; }
.page-cta { padding: 115px 0; color: #fff; text-align: center; background: #151719; }
.page-cta .eyebrow { color: var(--accent); }
.page-cta h2 { max-width: 850px; margin: 0 auto 35px; font-size: clamp(42px, 6vw, 76px); line-height: 1.02; }

.finance-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 100px; }
.finance-copy > p { max-width: 560px; }
.check-list { display: grid; margin: 35px 0 0; padding: 0; list-style: none; gap: 14px; }
.check-list li { position: relative; padding-left: 28px; color: #4e4b46; font-size: 13px; }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: #8e744f; }
.request-card { display: flex; padding: 42px; flex-direction: column; gap: 18px; background: #fff; border: 1px solid #dfdcd5; box-shadow: 0 25px 70px rgba(20,20,18,.08); }
.request-card .eyebrow { margin-bottom: 0; }
.request-card h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 32px; font-weight: 400; }
.request-card label { display: flex; min-width: 0; flex-direction: column; gap: 9px; }
.request-card label > span { color: #706e69; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.upload-field { position: relative; min-height: 135px; padding: 22px; justify-content: center; align-items: center; border: 1px dashed #bdb8ae; background: #faf9f6; text-align: center; cursor: pointer; }
.upload-field input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-field b { font-size: 12px; }.upload-field small { color: #8a867f; font-size: 9px; }
.form-disclaimer { margin: -4px 0 0; color: #908c84; font-size: 9px; text-align: center; }

.service-list-grid, .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.service-list-grid article, .values-grid article { min-height: 330px; padding: 38px 28px; border-right: 1px solid var(--line-dark); }
.service-list-grid article:last-child, .values-grid article:last-child { border-right: 0; }
.service-list-grid h3, .values-grid h3 { margin-top: 75px; }
.values-section { padding: 0 0 120px; background: var(--paper); }
.quote-section { padding: 130px 0; color: #fff; text-align: center; background: #151719; }
.quote-section blockquote { max-width: 1000px; margin: 0 auto 30px; font-family: Georgia, serif; font-size: clamp(35px, 5vw, 64px); line-height: 1.15; }
.quote-section p { margin: 0; color: var(--accent); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }

.contact-page-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 110px; }
.contact-information h2 { margin-bottom: 45px; }
.contact-data { display: grid; gap: 25px; }
.contact-data > div { padding-top: 20px; border-top: 1px solid var(--line-dark); }
.contact-data span { color: #8d714b; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-data p { margin: 10px 0 0; color: #4f4d48; font-family: Georgia, serif; font-size: 19px; line-height: 1.55; }
.contact-data .hours-row { display: grid; grid-template-columns: 1fr 1fr; font-family: Inter, sans-serif; font-size: 12px; }
.hours-row b { font-weight: 500; }.hours-row em { color: #77736c; font-style: normal; }

.motion-ready .vehicle-card { opacity: 0; transform: translateY(28px); }
.motion-ready .vehicle-card.is-visible { opacity: 1; transform: none; transition: opacity .65s var(--ease), transform .65s var(--ease), box-shadow .35s; }
.motion-ready .vehicle-card.is-visible:hover { transform: translateY(-6px); }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 180px 1fr 130px; }
  .brand--image { width: 175px; }
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: 8px; }
  .home-promise__inner { grid-template-columns: .4fr 1fr .8fr; gap: 35px; }
  .content-split, .finance-layout, .contact-page-grid { gap: 65px; }
}

@media (max-width: 860px) {
  .brand--image { width: 185px; }
  .home-promise__inner { grid-template-columns: 1fr; }
  .home-promise .text-link { grid-column: auto; }
  .inner-hero { min-height: 560px; padding-top: 180px; }
  .content-split, .finance-layout, .contact-page-grid { grid-template-columns: 1fr; gap: 55px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .steps-grid h3 { margin-top: 35px; }
  .service-list-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-list-grid article:nth-child(2), .values-grid article:nth-child(2) { border-right: 0; }
  .service-list-grid article:nth-child(-n+2), .values-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
}

@media (max-width: 620px) {
  .brand--image { width: 160px; }
  .home-promise { padding: 80px 0; }
  .inner-hero { min-height: 520px; padding: 165px 0 65px; }
  .inner-hero h1 { font-size: 51px; }
  .page-section { padding: 80px 0; }
  .content-split h2, .finance-copy h2, .contact-information h2 { font-size: 42px; }
  .request-card { padding: 28px 18px; }
  .service-list-grid, .values-grid { grid-template-columns: 1fr; }
  .service-list-grid article, .values-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .service-list-grid h3, .values-grid h3 { margin-top: 35px; }
  .page-cta { padding: 80px 0; }
  .contact-data .hours-row { grid-template-columns: 1.2fr .8fr; }
}

/* Clean homepage inspired by the supplied reference */
.home-clean { color: #fff; background: #0b0c0d; }
.home-clean .shell { width: min(1400px, calc(100% - 72px)); }
.home-clean main { padding-top: 96px; }
.home-header { top: 0; height: 96px; background: #0a0b0c; border-bottom: 1px solid rgba(255,255,255,.13); }
.home-header .home-header__inner { display: grid; grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr); height: 72px; align-items: center; column-gap: clamp(30px, 3.5vw, 52px); }
.home-brand { width: 225px; justify-self: center; align-items: center; }
.home-nav { display: grid; width: min(100%, 310px); grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(18px, 2vw, 28px); }
.home-nav--left { justify-self: start; }
.home-nav--right { justify-self: end; }
.home-nav > * { justify-self: center; }
.home-nav > :first-child { justify-self: start; }
.home-nav > :last-child { justify-self: end; }
.home-nav a { color: rgba(255,255,255,.72); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; transition: color .2s; }
.home-nav a:hover { color: #fff; }
.home-nav .home-nav__button { display: inline-flex; min-height: 34px; padding: 0 14px; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(215,190,145,.34); border-radius: 3px; color: rgba(255,255,255,.88); background: #111315; box-shadow: inset 0 1px rgba(255,255,255,.025); font-size: 8px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.home-nav .home-nav__button svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.home-nav .home-nav__button:hover { color: var(--accent); background: #181a1d; border-color: rgba(215,190,145,.68); }
.home-nav .home-nav__button:active { transform: translateY(1px); }
.home-contact { position: relative; }
.home-contact__phone { position: absolute; z-index: 20; top: calc(100% + 9px); right: 0; display: flex; min-width: 172px; min-height: 42px; padding: 0 16px; align-items: center; justify-content: center; color: rgba(255,255,255,.9) !important; background: #111315; border: 1px solid rgba(215,190,145,.34); border-radius: 3px; box-shadow: 0 16px 38px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.025); font-size: 11px !important; font-weight: 650 !important; letter-spacing: .04em !important; text-transform: none !important; white-space: nowrap; opacity: 0; visibility: hidden; transform: translateY(-5px); pointer-events: none; transition: color .2s, background .2s, border-color .2s, opacity .2s, visibility .2s, transform .2s; }
.home-contact__phone::before { position: absolute; top: -5px; right: 24px; width: 9px; height: 9px; content: ""; background: #111315; border-top: 1px solid rgba(215,190,145,.34); border-left: 1px solid rgba(215,190,145,.34); transform: rotate(45deg); }
.home-contact__phone:hover { color: var(--accent) !important; background: #181a1d; border-color: rgba(215,190,145,.68); }
.home-contact.is-open .home-contact__phone { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.home-contact.is-open .home-nav__button { color: var(--accent); background: #181a1d; border-color: rgba(215,190,145,.68); }
.home-header .menu-button { display: none; justify-self: end; }

.home-hero { position: relative; height: 440px; margin-top: 0; overflow: hidden; background: #090a0b; }
.home-hero__image, .home-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 58%; }
.home-hero__image { opacity: 1; animation: heroZoom 9s var(--ease) both; transition: opacity .85s var(--ease); }
.home-hero__video { opacity: 0; background: #090a0b; pointer-events: none; transition: opacity .85s var(--ease); }
.home-hero.hero-media-pending .home-hero__image, .home-hero.hero-media-pending .home-hero__video { opacity: 0 !important; animation: none; }
.home-hero.hero-video-loading .home-hero__image, .home-hero.has-intro-video .home-hero__image { opacity: 0; animation: none; transform: scale(1); }
.home-hero.has-intro-video .home-hero__video { opacity: 1; }
.home-hero.has-intro-video.intro-video-finished .home-hero__image { opacity: 1; animation: heroZoom 9s var(--ease) both; }
.home-hero.has-intro-video.intro-video-finished .home-hero__video { opacity: 0; }
.home-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,5,6,.94) 0%, rgba(4,5,6,.82) 22%, rgba(4,5,6,.35) 49%, rgba(4,5,6,.04) 78%), linear-gradient(0deg, rgba(4,5,6,.28), transparent 45%); }
.home-hero__content { position: relative; z-index: 1; display: flex; height: 100%; flex-direction: column; justify-content: center; align-items: flex-start; }
.home-hero .eyebrow { margin-bottom: 15px; color: var(--accent); font-size: 9px; }
.home-hero h1 { width: min(100%, 610px); margin: 0 0 16px; font-size: clamp(38px, 3vw, 47px); line-height: 1.06; letter-spacing: -.025em; text-transform: uppercase; }
.home-hero__content > p:not(.eyebrow) { width: min(100%, 610px); margin-bottom: 25px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.7; white-space: nowrap; }
.home-hero__actions { display: flex; gap: 13px; }
.home-hero__actions .button { min-width: 175px; min-height: 42px; padding-inline: 20px; font-size: 9px; }

.home-services { padding: 29px 0; background: #0d0e0f; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.12); }
.home-service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.home-service-card { position: relative; min-height: 146px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); background-position: center; background-size: cover; }
.home-service-card::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(12,13,14,.97), rgba(12,13,14,.72) 58%, rgba(12,13,14,.22)); transition: background .3s; }
.home-service-card:hover::before { background: linear-gradient(90deg, rgba(12,13,14,.92), rgba(12,13,14,.59) 58%, rgba(12,13,14,.12)); }
.home-service-card--vehicles { background-image: url('assets/vehicle-silver-suv.webp'); background-position: 67% center; }
.home-service-card--purchase { background-image: url('assets/vehicle-white-estate.webp'); background-position: 68% center; }
.home-service-card--service { background-image: url('assets/hero-showroom.webp'); background-position: 72% center; }
.home-service-card--finance { background-image: url('assets/vehicle-blue-sedan.webp'); background-position: 66% center; }
.home-service-card > div { position: relative; z-index: 1; display: flex; height: 100%; padding: 21px 18px; flex-direction: column; align-items: flex-start; }
.home-service-card h2 { margin: 0 0 9px; font-family: Georgia, serif; font-size: 15px; font-weight: 400; letter-spacing: .015em; text-transform: uppercase; }
.home-service-card p { max-width: 175px; margin: 0; color: rgba(255,255,255,.57); font-size: 10px; line-height: 1.55; }
.home-service-card span { margin-top: auto; color: rgba(255,255,255,.72); font-size: 8px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.home-footer { background: #181a1c; }
.home-footer__grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr .7fr; padding: 41px 0 36px; gap: 65px; }
.home-footer__brand .brand--image { width: 175px; }
.home-footer__brand > p { margin: 18px 0 19px; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.65; }
.home-footer__brand .footer-social a { width: 27px; height: 27px; font-size: 7px; }
.home-footer__column h3 { margin: 0 0 18px; color: rgba(255,255,255,.82); font-family: Inter, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-footer__column p, .home-footer__column a { color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.7; }
.home-footer__column p { margin: 0 0 10px; }
.home-footer__column nav { display: flex; flex-direction: column; align-items: flex-start; }
.home-footer__column nav a { line-height: 1.85; }
.home-footer__column a:hover { color: #fff; }
.footer-hours { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.footer-hours b { color: rgba(255,255,255,.47); font-weight: 400; }
.home-footer .footer-bottom { color: rgba(255,255,255,.36); }

@media (max-width: 1120px) {
  .home-header .home-header__inner { grid-template-columns: 1fr 210px 1fr; }
  .home-brand { width: 195px; }
  .home-nav { gap: 20px; }
  .home-nav a { font-size: 8px; }
  .home-service-grid { grid-template-columns: repeat(2, 1fr); }
  .home-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 42px 70px; }
}

@media (max-width: 860px) {
  .home-clean .shell { width: calc(100% - 36px); }
  .home-clean main { padding-top: 90px; }
  .home-header { height: 90px; }
  .home-header .home-header__inner { display: grid; grid-template-columns: 1fr auto; height: 68px; }
  .home-brand { width: 185px; justify-self: start; }
  .home-nav { display: none; }
  .home-header .menu-button { display: block; }
  .home-header .mobile-nav.open { display: flex; }
  .home-hero { height: 560px; margin-top: 0; }
  .home-hero__image, .home-hero__video { object-position: 64% center; }
  .home-hero__overlay { background: linear-gradient(90deg, rgba(4,5,6,.88), rgba(4,5,6,.26)), linear-gradient(0deg, rgba(4,5,6,.65), transparent); }
}

@media (max-width: 620px) {
  .home-clean .shell { width: calc(100% - 28px); }
  .home-hero { height: 610px; }
  .home-hero__image, .home-hero__video { object-position: 69% center; }
  .home-hero__image { opacity: .8; }
  .home-hero__overlay { background: linear-gradient(0deg, rgba(4,5,6,.94) 5%, rgba(4,5,6,.35) 80%); }
  .home-hero__content { padding-bottom: 42px; justify-content: flex-end; }
  .home-hero h1 { font-size: 42px; }
  .home-hero__content > p:not(.eyebrow) { white-space: normal; }
  .home-hero__actions { width: 100%; flex-direction: column; }
  .home-hero__actions .button { width: 100%; }
  .home-service-grid { grid-template-columns: 1fr; }
  .home-service-card { min-height: 155px; }
  .home-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .home-footer .footer-bottom { flex-direction: column; }
}
