:root {
  --gold: #e5a92e;
  --gold-light: #f2c35d;
  --black: #0b0c0c;
  --ink: #171717;
  --muted: #6f6b66;
  --paper: #f8f7f4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute; z-index: 5; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px)); height: 100px; display: flex; align-items: center;
  justify-content: space-between; color: #fff; border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 184px; }
.brand-mark { position: relative; width: 36px; height: 36px; display: inline-block; transform: rotate(45deg); border: 3px solid var(--gold); }
.brand-mark::before, .brand-mark::after, .brand-mark i { content: ""; position: absolute; border: 2px solid var(--gold); }
.brand-mark::before { width: 14px; height: 14px; top: 4px; left: 4px; }
.brand-mark::after { width: 14px; height: 14px; bottom: 4px; right: 4px; }
.brand-mark i:first-child { width: 8px; height: 8px; top: -7px; left: 11px; border-bottom: 0; }
.brand-mark i:last-child { width: 8px; height: 8px; bottom: -7px; right: 11px; border-top: 0; }
.brand-name { font-size: 20px; font-weight: 800; line-height: .94; letter-spacing: -.4px; }
.brand-name b { display: block; color: var(--gold); }
.site-header nav { display: flex; gap: 32px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.site-header nav a { padding: 42px 0 16px; border-bottom: 2px solid transparent; }
.site-header nav a:hover, .site-header nav .active { color: var(--gold-light); border-color: var(--gold); }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 46px; padding: 0 20px; border-radius: 6px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1px; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-outline { border: 1px solid var(--gold); color: var(--gold-light); }
.button-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #17130a; box-shadow: 0 8px 30px rgba(229,169,46,.18); }

.hero {
  height: 670px; color: #fff; position: relative; display: flex; align-items: center;
  background:
    linear-gradient(90deg, rgba(6,7,7,.96) 0%, rgba(6,7,7,.79) 36%, rgba(6,7,7,.28) 72%, rgba(6,7,7,.14) 100%),
    url("assets/hero.jpg") center/cover;
}
.hero-content { width: min(1180px, calc(100% - 48px)); margin: 58px auto 0; }
.hero h1 { margin: 14px 0 18px; max-width: 610px; font-size: clamp(50px, 6vw, 76px); line-height: .98; text-transform: uppercase; letter-spacing: -2.8px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-copy { max-width: 420px; font-size: 18px; line-height: 1.55; margin-bottom: 28px; }
.hero-dots { position: absolute; bottom: 26px; left: 50%; display: flex; gap: 9px; }
.hero-dots i, .hero-dots b { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); }
.hero-dots b { background: var(--gold-light); }
.eyebrow { margin: 0 0 13px; color: #d79418; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .25px; }
.eyebrow::after { content: ""; display: inline-block; width: 44px; height: 1px; margin-left: 13px; vertical-align: middle; background: var(--gold); }
.eyebrow.light { color: var(--gold-light); }

.section { padding: 76px max(24px, calc((100vw - 1180px) / 2)); }
.section h2 { margin: 0; font-size: clamp(29px, 3vw, 41px); line-height: 1.08; text-transform: uppercase; letter-spacing: -1.5px; }
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
.about-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.65; max-width: 580px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 36px; }
.metrics div { display: flex; flex-direction: column; gap: 6px; padding: 4px 18px; border-right: 1px solid #ddd; text-align: center; text-transform: uppercase; }
.metrics div:first-child { padding-left: 0; }
.metrics div:last-child { border: 0; }
.metrics span { color: var(--gold); font-size: 30px; height: 36px; }
.metrics b { font-size: 14px; }
.metrics small { font-size: 10px; color: #777; }
.showroom-image {
  height: 460px; border-radius: 16px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.4)), url("assets/showroom.jpg") center/cover;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.facade-sign { position: absolute; top: 42px; right: 28px; display: flex; align-items: center; gap: 13px; padding: 16px 20px; background: rgba(10,10,10,.82); color: white; font-size: 20px; font-weight: 800; }
.facade-sign b { color: var(--gold); }
.brand-mark.small { width: 28px; height: 28px; }

.brands { background: #faf9f7; text-align: center; }
.eyebrow.centered::before { content: ""; display: inline-block; width: 44px; height: 1px; margin-right: 13px; vertical-align: middle; background: var(--gold); }
.brand-row { display: flex; align-items: center; justify-content: space-between; gap: 34px; margin: 46px 0 38px; font-size: clamp(19px, 2.2vw, 29px); }
.brand-row small { display: block; font-size: 6px; letter-spacing: 4px; }
.brand-row .eliane { color: #bd2328; text-decoration: underline; }
.brand-row .incepa { color: #1977ad; }
.brand-row .ceusa { color: #2789b5; letter-spacing: 6px; }
.dark-text { color: #be7d0d; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); background: linear-gradient(100deg, #090a0a, #181919, #090a0a); color: #fff; padding: 42px max(24px, calc((100vw - 1180px) / 2)); }
.benefit { min-height: 140px; padding: 8px 30px; display: flex; align-items: center; flex-direction: column; text-align: center; border-right: 1px solid #393a3a; }
.benefit:last-child { border: 0; }
.benefit span { color: var(--gold); font-size: 33px; height: 45px; }
.benefit b { text-transform: uppercase; font-size: 14px; }
.benefit p { max-width: 220px; font-size: 12px; color: #d0d0d0; line-height: 1.5; }

.reviews { background: #f7f5f1; }
.reviews-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.reviews-heading h2 { max-width: 690px; }
.rating-summary { flex: 0 0 auto; display: flex; align-items: center; gap: 16px; padding: 20px 25px; background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.rating-summary strong { font-size: 48px; line-height: 1; }
.rating-summary div { display: flex; flex-direction: column; gap: 5px; }
.rating-summary small { font-size: 11px; color: #777; }
.stars { color: #f4b400; letter-spacing: 2px; }
.demo-note { margin: 25px 0 0; color: #8a8176; font-size: 11px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 26px 0 32px; }
.review-card { background: #fff; padding: 26px; border-radius: 12px; border: 1px solid #ece8e0; box-shadow: 0 13px 35px rgba(22,17,10,.05); }
.review-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-bottom: 18px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: #171717; color: var(--gold-light); display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.review-top div { display: flex; flex-direction: column; gap: 4px; }
.review-top small { color: #8a8a8a; font-size: 10px; }
.google-g { font-weight: 900; font-size: 20px; color: #4285f4; }
.review-card p { color: #555; line-height: 1.6; font-size: 14px; margin-bottom: 0; }
.review-actions { display: flex; justify-content: center; align-items: center; gap: 28px; }
.text-link { color: #a56c0a; font-size: 12px; font-weight: 800; text-transform: uppercase; }

.visit { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.visit h2 { max-width: 390px; }
.visit ul { list-style: none; padding: 0; margin: 30px 0; color: #555; font-size: 14px; }
.visit li { position: relative; padding-left: 34px; margin: 15px 0; line-height: 1.45; }
.visit li span { position: absolute; left: 0; top: 0; color: #111; font-size: 19px; }
.map-card { height: 390px; position: relative; border-radius: 16px; overflow: hidden; background-color: #f4f2ed; background-image: linear-gradient(32deg, transparent 45%, #fff 46%, #fff 50%, transparent 51%), linear-gradient(122deg, transparent 45%, #fff 46%, #fff 50%, transparent 51%); background-size: 70px 70px; border: 1px solid #e4e0d8; }
.road { position: absolute; background: #fff; border: 1px solid #dedbd4; }
.r1 { width: 650px; height: 38px; top: 160px; left: -40px; transform: rotate(16deg); }
.r2 { width: 500px; height: 32px; top: 70px; left: 70px; transform: rotate(-58deg); }
.r3 { width: 600px; height: 18px; top: 300px; left: 10px; transform: rotate(-12deg); }
.r4 { width: 18px; height: 430px; top: -20px; left: 380px; transform: rotate(8deg); }
.pin { position: absolute; z-index: 2; left: 51%; top: 46%; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; background: #0b0c0c; transform: rotate(-45deg); box-shadow: 0 7px 17px rgba(0,0,0,.3); }
.brand-mark.tiny { width: 18px; height: 18px; border-width: 2px; transform: rotate(90deg); }
.brand-mark.tiny::before, .brand-mark.tiny::after { display: none; }
.map-label { position: absolute; z-index: 1; color: #888; font-size: 10px; }
.label-one { left: 30%; top: 45%; transform: rotate(-58deg); }
.label-two { left: 43%; top: 61%; transform: rotate(16deg); }

footer { background: linear-gradient(100deg, #090a0a, #171818, #080909); color: #ddd; padding: 60px max(24px, calc((100vw - 1180px) / 2)) 25px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .9fr 1.25fr; gap: 42px; margin-bottom: 42px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 12px; }
.footer-grid > div:first-child p { max-width: 240px; color: #aaa; font-size: 12px; line-height: 1.5; }
.footer-grid > div > b { color: #fff; text-transform: uppercase; font-size: 12px; margin-bottom: 6px; }
.footer-grid a, .footer-grid span { font-size: 12px; color: #aaa; }
footer > small { display: block; text-align: center; color: #777; border-top: 1px solid #242626; padding-top: 22px; font-size: 10px; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .about, .visit { grid-template-columns: 1fr; gap: 42px; }
  .showroom-image { height: 390px; }
  .brand-row { flex-wrap: wrap; justify-content: center; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .reviews-heading { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .site-header { width: calc(100% - 32px); height: 82px; }
  .header-cta { min-width: 46px; width: 46px; padding: 0; overflow: hidden; font-size: 0; }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 30px; height: 30px; }
  .hero { height: 620px; background-position: 62% center; }
  .hero-content { width: calc(100% - 40px); }
  .hero h1 { font-size: 46px; letter-spacing: -2px; }
  .hero-copy { font-size: 16px; max-width: 300px; }
  .section { padding: 58px 20px; }
  .section h2 { font-size: 30px; }
  .metrics { gap: 0; }
  .metrics div { padding: 4px 8px; }
  .metrics b { font-size: 11px; }
  .showroom-image { height: 320px; }
  .facade-sign { top: 26px; right: 18px; font-size: 14px; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid #393a3a; }
  .rating-summary { width: 100%; }
  .review-actions { flex-direction: column; }
  .visit { gap: 38px; }
  .map-card { height: 310px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
