:root {
  --bg: #0d1117;
  --panel: #ffffff;
  --text: #111827;
  --muted: #5b6472;
  --light: #f5f1ea;
  --accent: #b58b50;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 146px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.22) 72%, rgba(0,0,0,0));
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 136px; /* ~25% larger */
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,.95))
    drop-shadow(0 0 5px rgba(255,255,255,.85))
    drop-shadow(0 0 14px rgba(255,255,255,.45))
    drop-shadow(0 8px 22px rgba(0,0,0,.34));
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  opacity: .96;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,.30);
}

nav a:hover { opacity: 1; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 190px clamp(22px, 7vw, 96px) 86px;
}

.hero-video,
.hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(17,24,39,.85), rgba(17,24,39,.35)),
    url("assets/retail-center-poster.jpg") center/cover no-repeat,
    linear-gradient(135deg, #162033, #73644f);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 36%, rgba(0,0,0,.04), rgba(0,0,0,.40) 42%, rgba(0,0,0,.72) 100%),
    linear-gradient(90deg, rgba(9, 13, 20, .84) 0%, rgba(9, 13, 20, .56) 42%, rgba(9, 13, 20, .22) 100%),
    linear-gradient(0deg, rgba(9, 13, 20, .60), rgba(9, 13, 20, .12));
}

.value-words {
  position: absolute;
  top: 16%;
  right: 6%;
  width: 34%;
  height: 62%;
  z-index: 2;
  pointer-events: none;
}

.value {
  position: absolute;
  color: rgba(255,255,255,.98);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(24px, 3vw, 44px);
  text-shadow: 0 4px 20px rgba(0,0,0,.50);
  opacity: 0;
  animation: valueFade 15s infinite ease-in-out;
}

.value-1 { top: 4%; left: 44%; animation-delay: 0s; }
.value-2 { top: 23%; left: 4%; animation-delay: 3s; }
.value-3 { top: 43%; left: 48%; animation-delay: 6s; }
.value-4 { top: 64%; left: 8%; animation-delay: 9s; }
.value-5 { top: 0%; left: 0%; animation-delay: 12s; }

@keyframes valueFade {
  0%   { opacity: 0; transform: translateY(10px) scale(.98); }
  10%  { opacity: 0; }
  22%  { opacity: 1; transform: translateY(0) scale(1); }
  42%  { opacity: 1; transform: translateY(0) scale(1); }
  58%  { opacity: 0; transform: translateY(-8px) scale(1.01); }
  100% { opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  margin-top: 40px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.1vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  text-shadow: 0 3px 12px rgba(0,0,0,.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  color: #111827;
  background: var(--accent);
}

.button.primary:hover { background: #c69d62; }

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.section,
.split-section,
.contact-section {
  padding: clamp(72px, 8vw, 120px) clamp(22px, 7vw, 96px);
}

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

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

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

.card {
  min-height: 250px;
  padding: 28px;
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.card p,
.split-section p,
.contact-section p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 96px);
  background: #111827;
  color: var(--white);
}

.split-section p {
  color: rgba(255,255,255,.76);
  font-size: 20px;
}

.contact-section {
  text-align: center;
  background: var(--light);
}

.contact-section h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.contact-section .button.primary { color: #111827; }

footer {
  padding: 28px clamp(22px, 7vw, 96px);
  background: #0d1117;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-words {
    right: 4%;
    width: 38%;
  }
  .hero-content {
    max-width: 600px;
  }
}

@media (max-width: 960px) {
  .site-header {
    height: 118px;
  }

  .brand-logo {
    height: 104px;
  }

  .cards, .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .value-words {
    top: 14%;
    right: 4%;
    width: 42%;
    height: 52%;
  }

  .value {
    font-size: clamp(20px, 3vw, 30px);
  }

  .hero-content {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 160px;
    align-items: end;
  }

  .value-words {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 92px;
    padding-top: 10px;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 13px;
  }

  .brand-logo {
    height: 76px;
  }

  .cards, .split-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(40px, 12.6vw, 58px);
  }
}
