:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --red: #e30613;
  --red-dark: #b00410;
  --white: #ffffff;
  --grey: #f5f5f5;
  --grey-2: #e6e6e6;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.5px; line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }
.center { text-align: center; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6em;
}
.eyebrow-light { color: var(--red); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 34px; width: auto; }

.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.site-nav a:hover { color: var(--red); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--white);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url('images/shop-products.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 90px 0 110px;
  text-align: center;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-logo { height: 70px; width: auto; margin: 0 auto 18px; }
.hero-tag {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
}
.hero h1 { color: var(--white); }
.hero-sub { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--black); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark .muted { color: rgba(255,255,255,0.7); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

/* ---------- Team ---------- */
.team-section { background: var(--grey); }
.team-intro {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.team-intro h2 { color: var(--black); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--grey-2);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-body {
  padding: 24px 26px 28px;
}
.team-name {
  margin: 0 0 4px;
  color: var(--black);
}
.team-role {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.team-quote {
  margin: 0;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.product-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: 0.25s;
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.product-icon {
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.product-card h3 { color: var(--white); margin-bottom: 8px; }
.product-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin: 0; }

/* ---------- Featured Brands strip ---------- */
.featured-brands {
  background: var(--black);
  color: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.featured-label {
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 22px;
}
.featured-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 50px;
}
.featured-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  min-width: 130px;
  padding: 10px 22px;
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.featured-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.featured-tile img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.featured-tile .brand-name,
.featured-tile .featured-name {
  display: none;
  font-family: 'Arial Black', Impact, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: var(--white);
}
.featured-cta {
  text-align: center;
  margin: 24px 0 0;
}
.featured-cta a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.featured-cta a:hover { color: var(--red); }

/* ---------- Brands ---------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px 0 24px;
}
.brand-tile {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  transition: 0.25s;
}
.brand-tile:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.brand-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
/* Per-brand scale tuning — main Brands grid (conservative, fits inside tile) */
.brand-tile img[alt="Timberland"] { transform: scale(1.3); }
.brand-tile img[alt="Police"] { transform: scale(1.15); }
.brand-tile img[alt="Bench"] { transform: scale(1.3); }

/* Per-brand scale tuning — Featured Brands strip (more aggressive) */
.featured-tile img[alt="Timberland"] { transform: scale(1.7); }
.featured-tile img[alt="Police"] { transform: scale(1.45); }
.featured-tile img[alt="Bench"] { transform: scale(1.7); }
.featured-tile img[alt="Ben Sherman"] { transform: scale(1.55); }
.brand-tile .brand-name {
  display: none;
  font-family: 'Arial Black', Impact, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--black);
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.brands-extra { margin-top: 24px; font-style: italic; }

/* ---------- The Smiling Coast (Beach Edit) ---------- */
.beach-section { background: linear-gradient(180deg, #faf6f0 0%, #f1ead9 100%); }
.beach-text h2 { color: var(--black); }
.beach-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (min-width: 901px) {
  .beach-section .two-col { grid-template-columns: 1.1fr 0.9fr; }
}

/* ---------- Styled in The Gambia ---------- */
.styled-section { background: var(--white); }
.styled-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.styled-intro h2 { color: var(--black); }
.styled-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.styled-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--grey);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}
.styled-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.styled-tile:hover img { transform: scale(1.06); }
.styled-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
}

/* ---------- Airport Banner (Visit Us) ---------- */
.airport-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 50px;
  aspect-ratio: 21 / 9;
  box-shadow: var(--shadow);
}
.airport-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.airport-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  color: var(--white);
}
.airport-banner-overlay h2 { color: var(--white); margin: 0; }
.visit-grid { align-items: start; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.gallery-grid.gallery-two {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-two .gallery-item { aspect-ratio: 4 / 3; }
.gallery-grid.gallery-shop-pair {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 36px auto 18px;
}
.gallery-shop-pair .gallery-item { aspect-ratio: 4 / 3; }
.gallery-grid.gallery-displays {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-displays .gallery-item { aspect-ratio: 3 / 4; }
.gallery-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--grey);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 36px 0 50px;
}
.review-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.stars { color: var(--red); font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { color: rgba(255,255,255,0.9); font-style: italic; }
.review-author { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

.review-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}
.review-form-wrap h3 { color: var(--white); }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.85);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
}
.form-row textarea { resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 14px 0 0; }

/* ---------- Visit ---------- */
.info-list { list-style: none; padding: 0; margin: 24px 0 0; }
.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-2);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
}
.info-list li:last-child { border-bottom: 0; }
.info-list strong { color: var(--red); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.info-list a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--red); }
.info-list a:hover { color: var(--red); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 20px;
  cursor: zoom-out;
  animation: lb-fade 0.2s ease;
}
.lightbox.open { display: flex; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: default;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--red);
  color: #fff;
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.lightbox-close:hover {
  background: var(--red-dark);
  transform: scale(1.08);
}
body.lightbox-open { overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  text-align: center;
  border-top: 3px solid var(--red);
}
.footer-logo { height: 32px; width: auto; margin: 0 auto 14px; }
.footer-site { margin: 4px 0 0; }
.footer-site a { color: var(--red); text-decoration: none; font-weight: 600; }
.footer-site a:hover { text-decoration: underline; }
.copyright { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 8px 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 480px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .info-list li { grid-template-columns: 1fr; gap: 4px; }
  .airport-banner { aspect-ratio: 16 / 10; }
  .airport-banner-overlay { padding: 20px; }
  .featured-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    justify-items: stretch;
  }
  .featured-tile { width: 100%; min-width: 0; }
  .beach-img img { aspect-ratio: 4 / 5; }
  .styled-grid { grid-template-columns: repeat(2, 1fr); }
  .styled-tile:last-child { grid-column: span 2; aspect-ratio: 16 / 9; }
  .gallery-displays { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .styled-grid { grid-template-columns: 1fr; }
  .styled-tile, .styled-tile:last-child { grid-column: span 1; aspect-ratio: 4 / 5; }
  .featured-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 3px solid var(--red);
  }
  .site-nav.open { max-height: 400px; }
  .site-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-wrap { position: relative; }
  .hero { padding: 60px 0 80px; }
  .hero-logo { height: 56px; }
  .section { padding: 60px 0; }
}
