:root {
  color-scheme: light;
  --ink: #17191c;
  --muted: #60656f;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #ded9cd;
  --red: #e8663a;
  --red-dark: #b94824;
  --steel: #24475c;
  --mustard: #d79a24;
  --green: #2f7b5f;
  --shadow: 0 18px 48px rgba(18, 22, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(23, 25, 28, 0.88);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 54px;
  height: 44px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 4px;
  background: var(--mustard);
  color: #1e1605;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 14, 15, 0.93) 0%, rgba(12, 14, 15, 0.72) 40%, rgba(12, 14, 15, 0.16) 82%),
    linear-gradient(0deg, rgba(23, 25, 28, 0.18), rgba(23, 25, 28, 0.04));
}

.hero-content {
  align-self: center;
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 104px);
  padding: 80px 0 120px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mustard);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(4.3rem, 10vw, 8.8rem);
  line-height: 0.86;
}

.brand-promise {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--mustard);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.outline:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.button.full {
  width: 100%;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-info article {
  padding: 24px clamp(20px, 4vw, 44px);
  background: var(--surface);
}

.quick-info span,
.category-toolbar label,
.location-card dt {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  font-size: 1.05rem;
}

.section,
.brands-section,
.trust-section,
.services-band,
.interior-section,
.visit-section,
.whatsapp-section {
  padding: 88px clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.visit-section h2,
.trust-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.24fr);
  gap: 34px;
  align-items: center;
  background: #fff;
}

.trust-copy {
  max-width: 580px;
}

.trust-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.trust-section img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(18, 22, 26, 0.08);
}

.category-toolbar {
  display: grid;
  gap: 8px;
  max-width: 540px;
  margin: 32px 0 24px;
}

.category-toolbar input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  box-shadow: 0 8px 26px rgba(18, 22, 26, 0.06);
}

.category-toolbar input:focus {
  border-color: var(--steel);
  outline: 3px solid rgba(36, 71, 92, 0.18);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(18, 22, 26, 0.05);
}

.category-card[hidden] {
  display: none;
}

.category-icon {
  display: inline-flex;
  min-width: 44px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(189, 47, 42, 0.12);
  color: var(--red-dark);
  font-weight: 900;
}

.category-card h3,
.service-list h3 {
  margin: 22px 0 8px;
  font-size: 1.3rem;
}

.category-card p,
.service-list p,
.visit-section p {
  color: var(--muted);
  line-height: 1.65;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
  margin-top: 42px;
}

.product-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.product-card-large {
  grid-row: span 2;
  min-height: 554px;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 15, 17, 0.03) 24%, rgba(13, 15, 17, 0.78) 100%);
}

.product-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 20px;
}

.product-card span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 8px;
  padding: 5px 8px;
  background: rgba(232, 102, 58, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.12;
}

.product-card p {
  max-width: 360px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.brands-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 38px;
  align-items: center;
  background: #fff;
}

.brands-copy {
  max-width: 620px;
}

.brands-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.brands-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.brands-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(18, 22, 26, 0.08);
}

.brands-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.services-band {
  background: var(--steel);
  color: #fff;
}

.services-band .section-heading .eyebrow,
.services-band p {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.24);
}

.service-list article {
  min-height: 190px;
  padding: 28px;
  background: var(--steel);
}

.interior-section {
  background: #fff;
}

.interior-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  margin-top: 36px;
}

.interior-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(18, 22, 26, 0.08);
}

.interior-card img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.interior-card:first-child img {
  object-position: center center;
}

.interior-card:last-child img {
  object-position: center center;
}

.interior-card div {
  padding: 24px;
}

.interior-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.interior-card p {
  color: var(--muted);
  line-height: 1.6;
}

.interior-card .location-kicker {
  color: var(--red-dark);
}

.visit-section {
  display: grid;
  gap: 36px;
  align-items: start;
}

.visit-intro {
  max-width: 740px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(18, 22, 26, 0.08);
}

.location-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.location-card:first-child img {
  object-position: center center;
}

.location-card:last-child img {
  object-position: center center;
}

.location-body {
  padding: 24px;
}

.location-kicker {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0 0 20px;
  font-size: 1.35rem;
}

.location-card dl {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
}

.location-card dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

.whatsapp-section {
  background: var(--red);
  color: #fff;
}

.whatsapp-section .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.whatsapp-card {
  display: grid;
  min-height: 128px;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 20px;
  background: rgba(23, 25, 28, 0.18);
}

.whatsapp-card:hover {
  background: rgba(23, 25, 28, 0.28);
}

.whatsapp-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-card strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 88px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer strong {
  color: #fff;
}

@media (max-width: 860px) {
  .site-header {
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    padding: 10px;
    background: rgba(23, 25, 28, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 620px;
    object-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(12, 14, 15, 0.9), rgba(12, 14, 15, 0.38));
  }

  .hero-content {
    padding: 70px 0 96px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }

  .quick-info,
  .trust-section,
  .category-grid,
  .product-showcase,
  .brands-section,
  .service-list,
  .interior-grid,
  .location-grid,
  .whatsapp-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-large {
    min-height: 330px;
  }

  .section,
  .brands-section,
  .trust-section,
  .services-band,
  .interior-section,
  .visit-section,
  .whatsapp-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .interior-card img {
    height: 340px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .hero-image {
    min-height: 650px;
    object-position: 62% center;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
