/* ═══════════════════════════════════════════════════════
   DINCHO BIKES — styles.css  (complete rebuild v2)
   Premium. Clean. Works on every page.
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  --orange:    #E8591A;
  --orange-dk: #c94a12;
  --navy:      #0F1B2D;
  --navy-mid:  #1a2d47;
  --white:     #FFFFFF;
  --cream:     #F7F5F2;
  --gray:      #6B7280;
  --gray-lt:   #E5E2DD;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --max-w:   1160px;
  --nav-h:   72px;
  --r:       8px;
  --section: clamp(64px, 8vw, 100px);
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--white); color: var(--navy); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CONTAINER ────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ── TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; line-height: 1.05; }
h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); }
p  { font-size: clamp(0.9rem, 1.4vw, 1rem); color: var(--gray); line-height: 1.75; }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(15,27,45,0.97); backdrop-filter: blur(8px); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding-left: clamp(12px, 2vw, 24px);
}

/* ── LOGO ─────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 0px;          /* logo image and text sit right next to each other */
  flex-shrink: 0;
  margin-right: auto; /* push everything else to the right */
}
.logo img.logo-img {
  height: 79px;      /* +15px from original 64px */
  width: auto;
  display: block;
  object-fit: contain;
}
/* Fallback badge if logo.png fails */
.logo-badge {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.logo-text span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
  margin-top: 3px;
}

/* ── NAV LINKS ────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--orange); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ── LANG SWITCHER ────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.lang-switcher a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.lang-switcher a:hover { color: var(--white); }
.lang-switcher .active-lang { color: var(--orange); }

/* ── HAMBURGER ────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ───────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); }
.mobile-nav a.active { color: var(--orange); }

/* ── BREADCRUMB ───────────────────────────────────────── */
.breadcrumb {
  padding: calc(var(--nav-h) + 16px) 0 0;
  background: var(--cream);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  padding-top: 12px;
  padding-bottom: 12px;
}
.breadcrumb a { color: var(--gray); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--gray-lt); }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

/* ── HERO (static image) ──────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  min-height: 100svh;
  background: url('../images/interior1.webp') center / cover no-repeat var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Dark overlay for readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,27,45,0.82) 0%,
    rgba(15,27,45,0.62) 55%,
    rgba(15,27,45,0.48) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* EN version uses a relative path one level up */
.hero--en {
  background-image: url('../../images/interior1.webp');
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  max-width: 820px;
}
.hero .container {
  position: relative;
  z-index: 10;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,89,26,0.18);
  border: 1px solid rgba(232,89,26,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 9vw, 6.5rem);
  margin-bottom: 20px;
  line-height: 0.95;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 900;
}
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: nowrap; align-items: flex-start; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── PAGE HEADER (inner pages) ────────────────────────── */
.page-header {
  padding-top: var(--nav-h);
  min-height: 340px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(0.7);
}
.page-header .container {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
  padding-top: 40px;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.55); max-width: 560px; font-size: 1rem; }

/* ── STRIP ────────────────────────────────────────────── */
.strip {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.strip-item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 28px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.strip-item:last-child { border-right: none; }

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: var(--section) 0; }
.section-alt { background: var(--cream); }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 520px; }
.section-header.center p { margin: 0 auto; }

/* ── SERVICES GRID ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.section-alt .service-card { background: var(--white); }
.service-card:hover { box-shadow: 0 8px 32px rgba(15,27,45,0.1); transform: translateY(-2px); }
.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 16px; }
.service-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── SPLIT LAYOUT ─────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img { border-radius: 12px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 16px; }
.split-text p { margin-bottom: 14px; }
.split-text .btn { margin-top: 8px; }

/* ── IMG GRID ─────────────────────────────────────────── */
.img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.img-grid img {
  width: 100%; height: 240px;
  object-fit: cover;
  border-radius: 10px;
}
.img-grid img.span2 {
  grid-column: span 2;
  height: 320px;
}

/* ── OPENING HOURS ────────────────────────────────────── */
.hours { display: flex; flex-direction: column; gap: 2px; }
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-lt);
  gap: 12px;
}
.hour-row:last-child { border-bottom: none; }
.hour-row .day { font-weight: 600; font-size: 0.88rem; }
.hour-row .time { font-weight: 600; color: var(--navy); font-size: 0.88rem; }
.hour-row .closed { font-weight: 600; color: var(--gray); font-size: 0.88rem; }
.hour-row.today-row .day { color: var(--orange); font-weight: 700; }
.hour-row.today-row .time { color: var(--orange); }

/* ── PRICE TABLE ──────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.price-table thead { background: var(--navy); }
.price-table thead th { color: var(--white); padding: 16px 20px; text-align: left; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.price-table thead th:last-child { text-align: right; }
.price-table tbody tr { border-bottom: 1px solid var(--gray-lt); transition: background 0.15s; }
.price-table tbody tr:hover { background: var(--cream); }
.price-table tbody td { padding: 14px 20px; color: var(--navy); }
.price-table tbody td:last-child { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; }
.price-category td {
  background: var(--cream);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 10px 20px !important;
}

/* ── GALLERY GRID ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.2s;
}
.gallery-grid img:hover { transform: scale(1.02); opacity: 0.9; }
.gallery-grid img:first-child {
  grid-column: span 2;
  height: 360px;
}

/* ── LIGHTBOX ─────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── CONTACT GRID ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-item-text p { color: var(--navy); font-size: 0.95rem; margin: 0; }
.contact-item-text a { color: var(--orange); font-weight: 600; font-size: 1.05rem; }
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-lt);
}
.map-embed iframe { display: block; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-lt, #e5e7eb);
  padding: 0;
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange, #f26522);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px 0;
  color: var(--gray, #6b7280);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1rem; }
.btn-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-directions { box-shadow: 0 0 0 2px rgba(255,255,255,0.45); }

/* ── FOOTER ───────────────────────────────────────────── */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.87rem; margin-top: 16px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.87rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer .hour-row { border-color: rgba(255,255,255,0.08); padding: 7px 0; }
.footer .hour-row .day { color: var(--orange); font-size: 0.82rem; }
.footer .hour-row .time { color: var(--orange); font-size: 0.82rem; }
.footer .hour-row .closed { color: rgba(255,255,255,0.25); font-size: 0.82rem; }
.footer .hour-row:has(.closed) .day { color: rgba(255,255,255,0.25); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ── SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { gap: 40px; }
}

@media (max-width: 860px) {
  .nav-links, .nav-right .lang-switcher { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-stats { gap: 28px; }
  .hero-stat strong { font-size: 2rem; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-img { order: -1; }
  .split-img img { height: 260px; }

  .img-grid { grid-template-columns: 1fr 1fr; }
  .img-grid img.span2 { grid-column: span 2; height: 220px; }
  .img-grid img { height: 180px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 200px; }
  .gallery-grid img:first-child { height: 250px; }

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

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

  .strip-item { padding: 4px 16px; font-size: 0.72rem; }
}

@media (max-width: 600px) {
  :root { --nav-h: 64px; }

  .hero-content { padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.7rem; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .page-header { min-height: 260px; }
  .page-header .container { padding-bottom: 32px; }

  .strip-inner { flex-direction: column; gap: 4px; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); width: 100%; text-align: center; padding: 8px 20px; }
  .strip-item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid img:first-child { grid-column: span 1; height: 220px; }
  .img-grid { grid-template-columns: 1fr; }
  .img-grid img, .img-grid img.span2 { grid-column: span 1; height: 200px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-grid { gap: 32px; }

  .btn-actions { flex-direction: column; align-items: center; }
  .btn-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .cta-band { padding: 52px 0; }

  h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  /* Breadcrumbs smaller on mobile */
  .breadcrumb .container { font-size: 0.68rem; gap: 6px; }
}

/* ── VIDEO MOBILE ─────────────────────────────────────── */
/* Keep wrap visible on mobile — JS handles video vs fallback */
@media (max-width: 768px) {
  .hero-video-wrap { display: block; }
}

/* ── DIRECTIONS MODAL ─────────────────────────────────── */
.dir-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,35,0.72);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.dir-modal-overlay.open { display: flex; }
.dir-modal {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px 28px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  animation: dirSlideUp 0.22s ease;
}
@keyframes dirSlideUp {
  from { opacity:0; transform: translateY(24px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.dir-modal h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.dir-modal p {
  color: #666;
  font-size: 0.88rem;
  margin: 0 0 24px;
}
.dir-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dir-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #e8eaf0;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}
.dir-choice:hover {
  border-color: var(--orange);
  background: #fff8f5;
  transform: translateY(-2px);
}
.dir-choice img { width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0; }
.dir-cancel {
  display: block;
  margin-top: 18px;
  font-size: 0.82rem;
  color: #aaa;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Barlow', sans-serif;
  text-decoration: underline;
}
.dir-cancel:hover { color: #555; }

/* ── WHY-GRID (2×2 icon grid) ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-grid.why-grid-1col {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.why-grid.why-grid-1col .why-card {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
  padding: 28px 32px;
}
.why-grid.why-grid-1col .why-card .why-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-bottom: 0;
}
.why-grid.why-grid-1col .why-card h3 {
  margin-bottom: 6px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: 16px;
  padding: 44px 32px 36px;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.why-card:hover {
  box-shadow: 0 16px 48px rgba(15,27,45,0.11);
  transform: translateY(-4px);
  border-color: var(--orange);
}
.why-icon {
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0 0 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: #5a6475;
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 540px) {
  .why-grid { gap: 14px; }
  .why-card { padding: 28px 16px 24px; }
  .why-icon { font-size: 2.2rem; margin-bottom: 12px; }
  .why-card h3 { font-size: 1.1rem; }
}

/* ── PYRAMID PROBLEMS LAYOUT ────────────────────────────── */
.problems-pyramid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 40px auto 0;
}
.problems-pyramid .why-card {
  /* inherit existing why-card styles */
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 28px;
}
.problems-pyramid .why-card .why-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 2px;
}
/* Lighter, smaller heading for problem cards */
.problems-pyramid .why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
/* Bottom card centres itself in the grid */
.problems-pyramid .pyramid-bottom {
  grid-column: 1 / -1;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .problems-pyramid { grid-template-columns: 1fr; }
  .problems-pyramid .pyramid-bottom { max-width: 100%; }
}
