:root {
  --bg: #07090b;
  --panel: #0f1216;
  --panel2: #14181d;
  --orange: #ff7a00;
  --orange-hover: #ff8b22;
  --blue: #00a9ef;
  --green: #42c96b;
  --text: #f6f7f9;
  --muted: #a8afb8;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #e5b94d;
  --radius: 14px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Poppins, system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: 195px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
  /* subtle blend so it doesn't look pasted */
  filter: brightness(1.05) contrast(1.05);
}

.menu {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
}

.menu a {
  color: #dfe3e7;
  transition: color 0.2s;
}

.menu a:hover,
.menu a.active {
  color: var(--orange);
}

.phone {
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  color: var(--text);
}

.phone:hover {
  color: var(--orange);
}

.hamb {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 4px;
}

/* ========== HERO ========== */
.hero {
  min-height: 88vh;
  min-height: 780px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, 
      rgba(4, 6, 9, 0.99) 0%, 
      rgba(4, 6, 9, 0.96) 28%, 
      rgba(4, 6, 9, 0.82) 48%, 
      rgba(4, 6, 9, 0.45) 68%, 
      rgba(4, 6, 9, 0.18) 100%),
    url("../images/hero-batsman.jpg") 82% center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, var(--bg));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  max-width: 480px;
  margin-left: 0;
  margin-right: auto;
}

.eyebrow {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.86;
  margin: 18px 0;
  font-weight: 900;
  letter-spacing: -4px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 20px;
  color: #e5e8eb;
  max-width: 620px;
  margin: 0;
}

.btns {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--line);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ========== SECTIONS ========== */
.section {
  padding: 82px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin: 8px 0 0;
  line-height: 1;
  font-weight: 800;
}

.section p.lead {
  color: var(--muted);
  max-width: 650px;
  font-size: 17px;
}

/* ========== SPLIT ========== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.split-copy {
  padding: 55px;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.check {
  display: flex;
  gap: 10px;
  color: #e7eaed;
  font-size: 15px;
}

.check b {
  color: var(--orange);
}

/* ========== CARDS / GRID ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 0, 0.65);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 700;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

/* ========== SERVICES ========== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 0.25s;
}

.service:hover {
  border-color: rgba(255, 122, 0, 0.5);
}

.service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.92));
}

.service div {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  right: 18px;
}

.service h3 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 700;
}

/* ========== BRANDS ========== */
.brand-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.brand-pill {
  min-width: 150px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  font-size: 24px;
  font-weight: 900;
  color: #e8eaed;
  flex-shrink: 0;
}

/* ========== VISIT / MAP ========== */
.visit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.visit-copy {
  padding: 42px;
}

.address {
  font-size: 18px;
  line-height: 1.7;
  margin: 16px 0;
}

.visit-copy a {
  color: var(--muted);
}

.visit-copy a:hover {
  color: var(--orange);
}

.map {
  min-height: 430px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ========== PAGE HERO (About / Gallery) ========== */
.page-hero {
  padding: 110px 0 70px;
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 169, 239, 0.16), transparent 35%),
    radial-gradient(circle at 20% 20%, rgba(255, 122, 0, 0.15), transparent 35%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  margin: 10px 0;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero .lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin: 12px 0 0;
}

/* ========== GALLERY ========== */
.gallery {
  columns: 3 280px;
  column-gap: 16px;
}

.gallery img {
  width: 100%;
  margin: 0 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  break-inside: avoid;
  transition: transform 0.25s, border-color 0.25s;
}

.gallery img:hover {
  transform: scale(1.02);
  border-color: rgba(255, 122, 0, 0.4);
}

/* ========== FOOTER ========== */
.footer {
  padding: 50px 0 25px;
  border-top: 1px solid var(--line);
  background: #050608;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 9px 0;
  font-size: 14px;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--orange);
}

.footer .muted {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== WHATSAPP ========== */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 27px;
  z-index: 60;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .menu.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 7, 9, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 10px 4%;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  }

  .menu.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .phone {
    display: none;
  }

  .hamb {
    display: block;
  }

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

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

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

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

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .gallery {
    columns: 2 240px;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    height: 70px;
  }

  .brand img {
    width: 175px;
    height: 48px;
  }

  .hero-content {
    padding: 70px 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 16px;
  }

  .grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 60px 0;
  }

  .split-copy,
  .visit-copy {
    padding: 30px;
  }

  .map,
  .map iframe {
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .gallery {
    columns: 1;
  }

  .page-hero {
    padding: 90px 0 50px;
  }

  .page-hero h1 {
    font-size: 42px;
  }
}
