:root {
  --red: #e4032c;
  --ink: #000;
  --paper: #f2f2f2;
  --mist: #dedede;
  --graphite: #111;
  --silverline-blue: #002b66;
  --silver: #bfc1c3;
  --line: rgba(18, 18, 18, .13);
  --shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", "DIN Condensed", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
body::selection { background: var(--red); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}
nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.brand-logo { width: 174px; height: auto; display: block; }
.brand span { display: inline-flex; min-height: 28px; align-items: center; padding: 0 9px; border-left: 3px solid var(--red); color: rgba(255, 255, 255, .82); font-size: 12px; }
.navlinks { display: flex; align-items: center; gap: 22px; color: rgba(255, 255, 255, .8); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.navlinks a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: none;
}
.topbar .btn { min-height: 42px; }
.btn.secondary { background: #fff; color: var(--ink); border: 1px solid rgba(255, 255, 255, .75); box-shadow: none; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .55) 42%, rgba(0, 0, 0, .08) 100%),
    url("https://www.fantic.com//Uploads/Veicoli/8cb6b9f019f5411bb713d5cddb197cef.jpg?bkg=fff&h=900&v=1.0&w=1500") center right / contain no-repeat,
    #111;
}
.hero.stealth-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .56) 44%, rgba(0, 0, 0, .12) 100%),
    url("https://www.fantic.com//Uploads/Veicoli/7f46777d8bdd4ad585f5226b7739e962.jpg?bkg=fff&h=900&v=1.0&w=1500") center right / cover no-repeat,
    #111;
}
.hero.dealer-hero {
  align-items: stretch;
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .66) 44%, rgba(0, 0, 0, .18) 100%),
    url("assets/nieuwsbrief-open-dagen/fantic-caballero-700-travel.jpg") center right / cover no-repeat,
    #101010;
}
.hero .container { padding: 96px 0 78px; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 34px;
}
.hero-copy { max-width: 800px; }
.hero-panel {
  display: grid;
  gap: 9px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.hero-panel strong { font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.hero-panel span,
.hero-panel a { color: rgba(255, 255, 255, .78); font-weight: 800; }
.hero-panel a:hover { color: #fff; }
.label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 6px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.light .label,
.model-card .label,
.range-block .label,
.dark-label { border-color: var(--line); color: var(--red); }
h1, h2, h3 { margin: 0; line-height: .96; text-transform: uppercase; font-family: "Arial Narrow", "Roboto Condensed", "DIN Condensed", Impact, Arial, sans-serif; }
h1 { max-width: 800px; margin-top: 18px; font-size: clamp(48px, 8vw, 108px); font-weight: 900; }
h1 span { color: var(--red); }
h2 { margin-top: 12px; font-size: clamp(34px, 5.2vw, 66px); font-weight: 900; letter-spacing: 0; }
h3 { font-size: clamp(26px, 3vw, 42px); }
.hero p { max-width: 650px; margin: 22px 0 0; color: rgba(255, 255, 255, .86); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.section { padding: 86px 0; }
.section.dark { color: #fff; background: #000; }
.dealer-strip { padding: 42px 0; border-bottom: 1px solid var(--line); background: #fff; }
.strip-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 44px; align-items: center; }
.intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 40px; align-items: end; margin-bottom: 34px; }
.lead { margin: 0; color: #4a4a4a; font-size: 18px; }
.dark .lead { color: rgba(255, 255, 255, .72); }

.choice-grid,
.model-grid,
.range,
.contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.dealer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.choice-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}
.choice-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .86; transition: transform .35s ease; }
.caballero-choice img { object-fit: contain; background: #fff; padding: 22px; }
.choice-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .82)); }
.choice-card:hover img { transform: scale(1.04); }
.choice-copy { position: relative; z-index: 1; padding: 30px; }
.choice-copy p { max-width: 520px; color: rgba(255, 255, 255, .82); font-size: 18px; }
.text-link { display: inline-flex; margin-top: 8px; color: #fff; border-bottom: 3px solid var(--red); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }

.dealer-card {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}
.dealer-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .35s ease; }
.dealer-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .02) 25%, rgba(0, 0, 0, .86)); }
.dealer-card:hover img { transform: scale(1.04); }
.dealer-card > div { position: relative; z-index: 1; padding: 30px; }
.dealer-card p { max-width: 520px; color: rgba(255, 255, 255, .82); font-size: 18px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.category-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
}
.category-card span {
  display: inline-flex;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.category-card h3 { margin-top: 12px; font-size: 30px; }
.category-card p { margin: 12px 0 0; color: #4c4c4c; }
.category-card.action { background: #111; color: #fff; }
.category-card.action p { color: rgba(255, 255, 255, .76); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-step {
  min-height: 270px;
  padding: 24px;
  border-top: 5px solid var(--red);
  background: #f7f7f4;
}
.process-step b { color: var(--red); font-size: 14px; letter-spacing: .08em; }
.process-step h3 { margin-top: 18px; font-size: 28px; }
.process-step p { margin: 14px 0 0; color: #4c4c4c; }

.model-card,
.range-block {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
}
.model-card { display: grid; grid-template-rows: 270px 1fr; }
.model-card img { width: 100%; height: 100%; object-fit: contain; background: #fff; padding: 16px; }
.model-card.feature img { object-fit: cover; padding: 0; }
.model-body,
.range-block { padding: 28px; }
.model-body p,
.range-block p { margin: 14px 0 0; color: #4c4c4c; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.spec { min-height: 76px; padding: 12px; border: 1px solid var(--line); border-radius: 6px; background: #f7f7f4; }
.spec b { display: block; color: #686868; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.spec span { display: block; margin-top: 4px; font-size: 17px; font-weight: 900; }
.range-block ul { margin: 18px 0 0; padding-left: 20px; color: #454545; }

.price-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 18px 55px rgba(0, 0, 0, .08); }
table { width: 100%; min-width: 820px; border-collapse: collapse; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #171717; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; }
tr:last-child td { border-bottom: 0; }
td:first-child, td:last-child { font-weight: 900; }
.note { max-width: 920px; margin: 16px 0 0; color: #626262; font-size: 13px; }

.benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.benefit { padding: 28px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 8px; background: rgba(255, 255, 255, .06); }
.benefit h3 { margin-top: 12px; font-size: 26px; }
.benefit p { margin: 12px 0 0; color: rgba(255, 255, 255, .72); }

.contact { grid-template-columns: minmax(0, 1fr) 420px; align-items: stretch; }
.contact-panel {
  padding: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, .92), rgba(18, 18, 18, .9)),
    url("https://www.fantic.com//Uploads/Veicoli/7f46777d8bdd4ad585f5226b7739e962.jpg?bkg=fff&h=700&v=1.0&w=1100") center / cover;
  color: #fff;
}
.contact-panel p { max-width: 600px; color: rgba(255, 255, 255, .84); font-size: 18px; }
.contact-card { padding: 34px; border-radius: 8px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.dealer-logo { width: 92px; height: auto; margin: 0 0 18px; border-radius: 4px; opacity: .92; }
.contact-card h3 { margin-bottom: 18px; color: var(--red); font-size: 30px; }
.contact-card p { margin: 0 0 18px; }
.contact-card strong { display: block; margin-bottom: 4px; text-transform: uppercase; font-size: 12px; letter-spacing: .07em; color: #777; }

footer { padding: 28px 0; background: #111; color: rgba(255, 255, 255, .62); font-size: 13px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 900px) {
  .navlinks { display: none; }
  .hero { min-height: 760px; background: linear-gradient(180deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .96)), url("https://www.fantic.com//Uploads/Veicoli/8cb6b9f019f5411bb713d5cddb197cef.jpg?bkg=fff&h=900&v=1.0&w=1500") center bottom 34px / contain no-repeat, #111; }
  .hero.stealth-hero { background: linear-gradient(180deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .96)), url("https://www.fantic.com//Uploads/Veicoli/7f46777d8bdd4ad585f5226b7739e962.jpg?bkg=fff&h=900&v=1.0&w=1500") center bottom / cover no-repeat, #111; }
  .hero.dealer-hero { min-height: 780px; background: linear-gradient(180deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .95)), url("assets/nieuwsbrief-open-dagen/fantic-caballero-700-travel.jpg") center / cover no-repeat, #111; }
  .hero .container { padding-bottom: 330px; }
  .hero.dealer-hero .container { padding-bottom: 64px; }
  .hero-layout,
  .strip-grid,
  .intro,
  .choice-grid,
  .dealer-grid,
  .model-grid,
  .range,
  .category-grid,
  .process-grid,
  .benefits,
  .contact { grid-template-columns: 1fr; }
  .choice-card { min-height: 500px; }
  .dealer-card { min-height: 500px; }
  .hero-panel { max-width: 420px; }
  .footer-grid { display: grid; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand { font-size: 22px; }
  .brand-logo { width: 138px; }
  .brand span { display: none; }
  nav .btn { display: none; }
  .section { padding: 64px 0; }
  .hero { min-height: 720px; }
  .hero .container { padding-top: 58px; }
  .choice-card { min-height: 430px; }
  .dealer-card { min-height: 440px; }
  .model-card { grid-template-rows: 220px 1fr; }
  .model-body,
  .range-block,
  .benefit,
  .category-card,
  .process-step,
  .contact-panel,
  .contact-card,
  .choice-copy,
  .dealer-card > div { padding: 22px; }
  .spec-grid { grid-template-columns: 1fr; }
}
