/* ===== Tokens ===== */
:root {
  --red: #de2220;
  --red-dark: #c41d1b;
  --ink: #131010;
  --ink-card: #1e1a19;
  --ink-border: rgba(255, 255, 255, 0.1);
  --pink: #f0e9e7;
  --heading: #1a1715;
  --text: #4f4b48;
  --text-light: rgba(255, 255, 255, 0.66);
  --white: #ffffff;
  --radius: 16px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 880px; }

/* ===== Shared bits ===== */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 18px;
}
.eyebrow--red { color: var(--red); }
.eyebrow--dark { color: var(--heading); }
.eyebrow--muted { color: #9a8f8b; }
.center { text-align: center; }
.text-red { color: var(--red); }
.muted { color: var(--text); margin: 0 0 16px; }

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.section-title--light { color: var(--white); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); }
.btn--ghost { background: rgba(255,255,255,.9); color: var(--heading); border-color: rgba(0,0,0,.08); }
.btn--ghost:hover { background: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn--outline:hover { border-color: rgba(255,255,255,.6); }
.btn--phone svg { margin-left: -2px; }

/* ===== Brand / logo ===== */
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 38px; width: auto; display: block; }
.footer .brand__logo { height: 34px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  background: url("assets/hero.png") center/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.85) 32%, rgba(255,255,255,.4) 55%, rgba(255,255,255,0) 78%);
}
.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 26px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 40px;
  padding-bottom: 64px;
}
.hero__inner p.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,.6);
  border-radius: 999px;
  border: 1px solid #DDD6D4;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 720px;
}
.hero__lead {
  font-size: 17px;
  max-width: 540px;
  color: #46423f;
  margin: 0 0 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Intention ===== */
.intention { background: var(--pink); padding: 86px 0; }
.intention__text {
  text-align: left;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  font-weight: 600;
  color: var(--heading);
  margin: 0;
  max-width: 920px;
}

/* ===== Showroom ===== */
.showroom { background: #fff; padding: 96px 0; }
.showroom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.showroom__media { display: flex; }
.showroom__media img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.showroom__content { display: flex; flex-direction: column; }
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  justify-content: space-between;
}
.features li { display: flex; flex-direction: column; gap: 3px; }
.features__label { text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 800; color: var(--red); }
.features__value { font-size: 16px; font-weight: 700; color: var(--heading); }

/* ===== Brands ===== */
.brands { background: var(--pink); padding: 72px 0; }
.brands .eyebrow { margin-bottom: 44px; }
.brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.brand-card {
  background: #fff;
  border-radius: 14px;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.brand-card img { max-height: 64px; width: auto; object-fit: contain; }

/* ===== Contact ===== */
.contact {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  position: relative;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 520px; height: 520px;
  background-image: url("assets/image_blur.png");
  background-repeat: no-repeat;
  background-size: cover;

  /* background: radial-gradient(120% 90% at 100% 30%, rgba(222,34,32,.22), transparent 60%); */
  pointer-events: none;
}
.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contact__lead { color: var(--text-light); font-size: 16px; max-width: 420px; margin: 0 0 30px; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.contact__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.contact__card-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 28px;
}
.info { display: flex; gap: 14px; }
.info__icon { width: 20px; height: 20px; flex: none; color: var(--red); margin-top: 2px; }
.info__label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; font-weight: 700; color: #8c8480; margin: 0 0 6px; }
.info__value { font-size: 15px; color: #ece9e7; margin: 0; line-height: 1.55; }
.info__value a:hover { color: #fff; }

/* ===== Footer ===== */
.footer { background: #fff; padding: 26px 0; border-top: 1px solid #ece6e3; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer__copy { color: #9a8f8b; font-size: 13px; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .showroom__grid { grid-template-columns: 1fr; gap: 36px; }
  .showroom__media { order: -1; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { min-height: 92vh; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 45%, rgba(255,255,255,.55) 100%);
  }
  .hero nav.nav {
    padding-top: 20px !important;
  }
  .brand__logo { height: 30px; }
  .btn--phone { padding: 10px 16px; font-size: 14px; }
  .intention, .showroom, .brands, .contact { padding: 64px 0; }
  .features { gap: 28px; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact__card { padding: 28px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 380px) {
  .brand__logo { height: 26px; }
}
