:root {
  --orange: #E87A1E;
  --orange-deep: #C95E0B;
  --green: #5BB85C;
  --green-deep: #3FA047;
  --ink: #2C3935;
  --ink-soft: #4A5550;
  --paper: #FAF8F2;
  --line: #E8E4DA;
  --max: 1200px;
}
html { -webkit-tap-highlight-color: transparent; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.5px; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: 1.4rem; font-weight: 700; }
p { font-size: 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV with TABS */
nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(44, 57, 53, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo img.brand-mark {
  height: 54px;
  width: auto;
  display: block;
}
footer .logo img.brand-mark {
  height: 72px;
}
@media (max-width: 640px) {
  .logo img.brand-mark { height: 44px; }
  footer .logo img.brand-mark { height: 60px; }
}

.tabs {
  display: flex; gap: 0.4rem;
  list-style: none;
  flex: 1; justify-content: center;
}
.tabs a {
  display: inline-block;
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem; font-weight: 500;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.tabs a:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}
.tabs a.active {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 600;
}
.tabs a.active:hover { background: var(--orange-deep); }

.nav-cta {
  background: var(--green); color: white;
  padding: 0.65rem 1.2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-deep); }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* PAGE HEADER (smaller hero on inner pages) */
.page-header {
  position: relative;
  padding: 6rem 1.5rem 4rem;
  background-size: cover;
  background-position: center;
  color: white;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,57,53,0.45) 0%, rgba(44,57,53,0.75) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
}
.page-header h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.page-header p { font-size: 1.15rem; max-width: 640px; color: rgba(255,255,255,0.85); }

/* HERO (home only) */
.hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #2c3935;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,57,53,0.4) 0%, rgba(44,57,53,0.75) 100%);
  z-index: 1;
}
.hero-content {
  max-width: var(--max); margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  color: white; position: relative; z-index: 2;
}
.eyebrow {
  display: inline-block;
  background: var(--orange); color: white;
  padding: 0.4rem 0.9rem; border-radius: 4px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { max-width: 900px; margin-bottom: 1.5rem; font-size: clamp(2.5rem, 6vw, 5rem); color: #ffffff; }
.hero h1 em { font-style: normal; color: #ffffff; }
.hero h1 strong { color: #ffffff; font-weight: inherit; }
.hero-sub {
  font-size: 1.2rem; max-width: 640px;
  color: rgba(255,255,255,0.88); margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 1rem 1.8rem;
  border-radius: 6px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--green); background: rgba(47,166,63,0.15); }

/* SECTION BASE */
section { padding: 5rem 1.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.section-head .eyebrow { background: var(--green); }
.section-head h2 { color: var(--ink); margin-bottom: 1rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* ABOUT */
.about { background: white; }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.05rem; }
.about-img {
  position: relative; aspect-ratio: 4/5;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(44,57,53,0.22);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--orange); color: white;
  padding: 0.8rem 1.2rem; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}

/* SERVICES */
.services { background: var(--paper); }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.service-block.reverse > .service-img { order: 2; }
.service-img {
  position: relative; aspect-ratio: 5/4;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(44,57,53,0.2);
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.service-img:hover img { transform: scale(1.04); }
.service-tag {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(44,57,53,0.78); color: white;
  padding: 0.5rem 1rem; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  backdrop-filter: blur(8px);
}
.service-tag.sports { background: var(--green); }
.service-tag.build { background: var(--orange); }
.service-text h2 { margin-bottom: 1rem; }
.service-text > p { color: var(--ink-soft); margin-bottom: 1.5rem; font-size: 1.05rem; }
.service-list {
  list-style: none; display: grid; gap: 0.6rem;
  margin-top: 1.5rem;
}
.service-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  color: var(--ink-soft);
}
.service-list li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.build .service-list li::before { background-color: var(--orange); }

/* BRAND SHOWCASE */
.brand-showcase {
  background: var(--paper);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-showcase .container {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.brand-lockup-img {
  max-width: 560px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .brand-showcase { padding: 3.5rem 1.5rem; }
  .brand-lockup-img { max-width: 360px; }
}

/* BRAND BANNER (compact lockup near top of page) */
.brand-banner {
  background: var(--paper);
  padding: 2rem 1.5rem 1.6rem;
  border-bottom: 1px solid var(--line);
}
.brand-banner .container {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-banner-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 0.75rem;
}
.brand-banner-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .brand-banner { padding: 1.4rem 1.5rem 1.1rem; }
  .brand-banner-img { max-width: 200px; }
}

/* GALLERY */
.gallery { background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 10px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(44,57,53,0.78));
  color: white; font-size: 0.85rem; font-weight: 500;
}

.gallery-item { cursor: zoom-in; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(44, 57, 53, 0.86);
  display: none;
  align-items: center; justify-content: center;
  z-index: 9999; padding: 2rem;
  cursor: zoom-out;
  opacity: 0; transition: opacity 0.25s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 95vw; max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: rgba(255,255,255,0.12);
  color: white; border: none;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: white; font-size: 0.9rem;
  background: rgba(0,0,0,0.45);
  padding: 0.5rem 1rem; border-radius: 100px;
  letter-spacing: 0.5px;
}

/* PROCESS */
.process { background: var(--paper); }
.process-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  position: relative;
}
.process-step {
  background: white; padding: 2rem;
  border-radius: 12px; position: relative;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.process-step:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(44,57,53,0.12);
}
.step-num {
  width: 44px; height: 44px;
  background: var(--green); color: white;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.process-step:nth-child(2) .step-num { background: var(--orange); }
.process-step:nth-child(3) .step-num { background: var(--green); }
.process-step:nth-child(4) .step-num { background: var(--orange); }
.process-step h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.process-step p { color: var(--ink-soft); font-size: 0.92rem; }

/* PRICING */
.pricing { background: white; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1000px; margin: 0 auto;
}
.pricing-grid.single {
  grid-template-columns: 1fr;
  max-width: 560px;
}
.price-card {
  border: 1.5px solid var(--line);
  border-radius: 12px; padding: 2.5rem 2rem;
  transition: all 0.3s; text-align: center;
  background: white; position: relative;
}
.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, white, #FFF8F1);
  transform: scale(1.03);
  box-shadow: 0 30px 60px -15px rgba(232,122,30,0.25);
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  padding: 0.3rem 0.9rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--ink); line-height: 1;
  margin: 1.2rem 0 0.4rem;
}
.price-amount span { font-size: 1rem; color: var(--ink-soft); font-weight: 400; }
.price-desc { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1.5rem; }
.price-list {
  list-style: none; text-align: left;
  margin: 1.5rem 0; display: grid; gap: 0.6rem;
}
.price-list li {
  color: var(--ink-soft); font-size: 0.92rem;
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.price-list li::before {
  content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0;
}

/* CONTACT FORM */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; margin-bottom: 1.5rem; text-transform: uppercase;
}
.contact-info p { color: var(--ink-soft); margin-bottom: 1rem; }
.contact-list {
  list-style: none; margin: 1.5rem 0;
}
.contact-list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 0; border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.contact-list li strong { color: var(--ink); min-width: 90px; display: inline-block; }
.contact-form {
  background: white; padding: 2.5rem;
  border-radius: 12px; border: 1px solid var(--line);
  display: grid; gap: 1rem;
}
.contact-form label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--ink-soft); display: block; margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px; font-family: inherit; font-size: 0.95rem;
  transition: border 0.2s;
  background: var(--paper);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--orange);
  background: white;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  background: var(--orange); color: white;
  padding: 1rem; border: none; border-radius: 6px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--orange-deep); }

/* CTA */
.cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(44,57,53,0.78), rgba(91,184,92,0.7)),
    url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?w=1800&q=80') center/cover;
  color: white; text-align: center;
}
.cta h2 { color: white; margin-bottom: 1rem; }
.cta p {
  max-width: 620px; margin: 0 auto 2rem;
  color: rgba(255,255,255,0.88); font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: var(--ink); color: rgba(255,255,255,0.78);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-inner h4 {
  color: white; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 1rem;
}
.footer-inner p, .footer-inner a {
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  line-height: 1.8; transition: color 0.2s;
}
.footer-inner a:hover { color: var(--orange); }
.footer-inner ul { list-style: none; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  flex-wrap: wrap; gap: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .nav-inner { flex-wrap: wrap; }
  .tabs { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding: 0.5rem 0; }
  .tabs a { font-size: 0.82rem; padding: 0.55rem 0.85rem; }
}
@media (max-width: 900px) {
  .about-grid, .service-block, .service-block.reverse > .service-img,
  .contact-grid {
    grid-template-columns: 1fr; order: unset; gap: 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-item:nth-child(1) { grid-row: span 1; grid-column: span 2; }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 4rem 1.5rem; }
}
@media (max-width: 520px) {
  .process-flow { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Phone-sized screens — tighter nav and bigger tap targets */
@media (max-width: 768px) {
  nav .nav-cta { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
  nav .nav-inner { padding: 0.7rem 1rem; }
  .hero-content { padding-top: 4rem; }
  .page-header { padding-top: 4rem; }
  .btn { padding: 0.95rem 1.5rem; font-size: 0.95rem; }
  .about-boxes { grid-template-columns: 1fr !important; }
}

/* ─── MOBILE IMPROVEMENTS ─────────────────────────────────── */

/* Hamburger button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-inner { flex-wrap: nowrap; padding: 0.75rem 1.1rem; }

  .tabs {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(20, 30, 24, 0.98);
    backdrop-filter: blur(8px);
    z-index: 200;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    display: none;
    width: auto;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .tabs.open { display: flex; }

  .tabs a {
    font-size: 1.15rem;
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    text-align: left;
    color: rgba(255,255,255,0.88);
    border: 1px solid transparent;
  }
  .tabs a.active { background: var(--orange); border-color: var(--orange); color: white; }
  .tabs a:hover { background: rgba(255,255,255,0.08); }

  .tabs-cta {
    margin-top: 1rem;
    background: var(--green) !important;
    color: white !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    padding: 0.95rem 1.1rem !important;
    border-radius: 8px;
    font-weight: 700;
    border: none !important;
  }

  /* Hero */
  .hero { min-height: 72vh; }
  .hero-content { padding: 4rem 1.2rem 3rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; }

  /* Sections */
  section { padding: 3rem 1.2rem; }

  /* Gallery: full-width first, then 2-col pair */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px 140px;
    gap: 8px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

  /* About grid */
  .about-grid { gap: 1.5rem; }
  .about-img { max-height: 260px !important; aspect-ratio: 16/9 !important; }

  /* Service blocks */
  .service-block { gap: 1.5rem; }
  .service-block.reverse > .service-img { order: unset; }
  .service-img { aspect-ratio: 16/9; }

  /* Info grids 3-col → 1-col */
  .about .container > div[style*="repeat(3"] { grid-template-columns: 1fr !important; }

  /* Process */
  .process-page .process-flow { gap: 2rem; }

  /* Pricing */
  .pricing-grid.single { max-width: 100%; }
  .price-card { padding: 1.5rem !important; }

  /* Contact */
  .contact-grid { gap: 2rem; }
  .contact-form { padding: 1.5rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Page headers */
  .page-header { padding: 4rem 1.2rem 2.5rem; }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2.6rem); }

  /* Brand banner */
  .brand-banner { padding: 1.4rem 1.2rem 1.2rem; }
  .brand-banner-img { max-width: 200px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-rows: 160px 120px 120px; }
  .hero h1 { font-size: 2rem; }
  .tabs a { font-size: 1.05rem; }
}
