:root {
  --orange: #ff5a00;
  --orange-deep: #f24a00;
  --ink: #101820;
  --muted: #64707d;
  --white: #ffffff;
  --soft: #fff7f2;
  --line: rgba(16, 24, 32, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: #f7f7f7;
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 54px 24px 64px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,.08), transparent);
  z-index: -1;
}

.hero-content {
  width: min(920px, 100%);
  text-align: center;
  color: var(--white);
  animation: fadeUp .8s ease both;
}

.brand-logo {
  display: block;
  width: min(760px, 94vw);
  max-height: 330px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 28px;
  border-radius: 16px;
  mix-blend-mode: screen;
  filter: saturate(.95) brightness(1.02);
}

.eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,.90);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-deep);
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(92, 26, 0, .20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(92, 26, 0, .28);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: .22;
  z-index: -1;
}

.glow-one {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 50px;
  background: #fff;
}

.glow-two {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: 20px;
  background: #ffb37e;
}

.locations-section {
  background: var(--white);
  padding: 42px 24px 30px;
}

.locations-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 22px;
}

.location {
  position: relative;
  min-height: 200px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fffaf7);
  box-shadow: 0 18px 60px rgba(16,24,32,.07);
}

.location-main {
  padding-right: 36px;
}

.location-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.location h2 {
  margin: 18px 0 8px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -.035em;
}

.location p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.location-main::before,
.location-branch::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 12px;
  height: 12px;
  border: 4px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  opacity: .85;
}

.contact-section {
  background: var(--white);
  padding: 4px 24px 44px;
}

.contact-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-card {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  font-size: .92rem;
  font-weight: 700;
  word-break: break-word;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,90,0,.35);
  box-shadow: 0 14px 38px rgba(16,24,32,.08);
}

.icon-wrap,
.multi-icons {
  color: var(--orange);
}

.icon-wrap svg {
  width: 34px;
  height: 34px;
}

.multi-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.multi-icons svg {
  width: 28px;
  height: 28px;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

footer {
  padding: 22px 24px 30px;
  text-align: center;
  background: #101820;
  color: rgba(255,255,255,.70);
  font-size: .84rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .brand-logo {
    width: min(680px, 96vw);
    max-height: 250px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-logo {
    width: 100%;
    max-height: 195px;
    border-radius: 12px;
  }

  .hero-copy {
    font-size: .98rem;
  }

  .locations-section,
  .contact-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .location {
    min-height: 180px;
    padding: 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-card {
    min-height: 120px;
    padding: 14px 8px;
    font-size: .78rem;
  }
}
