/* =========================================================
   RAPID REHOUSE - styles.css
   Brand: Rapid Rehouse (trading name of The Locksley Group Ltd)
   ========================================================= */

    @view-transition {navigation: auto;}

/* ---------------------------------------------------------
   1. CSS Custom Properties
   --------------------------------------------------------- */
:root {
  --navy:        #162032;
  --navy-mid:    #1e3048;
  --navy-light:  #e8eaed;
  --amber:       #d7903f;
  --amber-dark:  #a86a28;
  --amber-light: #faf0e6;
  --off-white:   #f8f6f2;
  --white:       #ffffff;
  --text-dark:   #181c24;
  --text-mid:    #484850;
  --text-light:  #7a7880;
  --border:      #dcdae0;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;


  --max-width:   1200px;
  --section-pad: 80px;
  --radius:      6px;
  --transition:  0.25s ease;
}

/* ---------------------------------------------------------
   2. Reset & Base
   --------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ---------------------------------------------------------
   3. Typography
   --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.6rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1.2rem; color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-mid);
}

p a {
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 4px;;
}
/* ---------------------------------------------------------
   4. Layout Utilities
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--amber-light { background: var(--amber-light); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section__header p {
  font-size: 1.2rem;
  margin-top: 16px;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

/* ---------------------------------------------------------
   5. Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg { padding: 12px 32px; font-size: 1.2rem; }
.btn--phone { font-size: 1.15rem; letter-spacing: 0.02em; }

/* ---------------------------------------------------------
   6. Navigation
   --------------------------------------------------------- */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--amber);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-nav__logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.site-nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 2px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}

.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--white);
}

.site-nav__links a:hover::after,
.site-nav__links a.active::after {
  width: 100%;
}

.site-nav__cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--amber);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
  white-space: nowrap
}

.site-nav__cta:hover { background: var(--amber-dark) !important; }
.site-nav__cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   7. Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../media/images/hero-home.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0.7;
  z-index: 0;
  animation: fade-hero-bg 1s forwards ease;
}

@keyframes fade-hero-bg {
  0% {opacity: 0}
  100% {opacity: 1}
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(9, 36, 77, 0.7) 0%, rgba(15,37,69,0.7) 100%);
  z-index: 1;
  backdrop-filter: blur(0px);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 80px 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 3px 3px 3px rgba(0,0,0,0.4);}

.hero .lead { color: rgba(255,255,255,1); margin-bottom: 36px; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__trust {
  display: none; /* Change to flex */
  flex-wrap: wrap;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.hero__trust-item svg {
  color: white;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   8. CTA Banner
   --------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('../media/images/cta-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0.99;
  z-index: 0;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(9, 36, 77, 0.88) 0%, rgba(15, 37, 69, 0.88) 100%);
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0 auto 32px;
}

.cta-banner__content .section__eyebrow {
  color: var(--amber);
}

.cta-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------------------------------------------------------
   9. Feature Strip
   --------------------------------------------------------- */
.feature-strip {
  background: var(--amber);
  padding: 20px 0;
}

.feature-strip__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}



.contact-feature-strip .feature-strip__inner {
  justify-content: space-between;
}

.feature-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}


.contact-feature-strip span {
  font-size: 1.3rem;
}
/* ---------------------------------------------------------
   9. Cards
   --------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(15,37,69,0.1);
  transform: translateY(-4px);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--amber-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}

.card h3 { margin-bottom: 10px; }

/* Service card variant */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.service-card__body h3 { margin-bottom: 10px; }

/* ---------------------------------------------------------
   10. Audience Tabs / Who We Help
   --------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.audience-panel {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}

.audience-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.audience-panel:hover::before { transform: scaleX(1); }

.audience-panel__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  line-height: 1;
  margin-bottom: 12px;
}

.audience-panel h3 { margin-bottom: 10px; }

/* ---------------------------------------------------------
   11. Process / Steps
   --------------------------------------------------------- */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
}

.step h3 { margin-bottom: 8px; font-size: 1.6rem; }

/* ---------------------------------------------------------
   12. Stats Bar
   --------------------------------------------------------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stat {
  padding: 36px 20px;
}

.stat__value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---------------------------------------------------------
   13. Testimonial / Quote
   --------------------------------------------------------- */
.quote-block {
  background: var(--navy-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 36px;
}

.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 16px;
}

.quote-block cite {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-style: normal;
}

/* ---------------------------------------------------------
   14. Contact Section
   --------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--amber-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.contact-info__text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-info__text a,
.contact-info__text span {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-info__text a:hover { color: var(--amber); }

/* ---------------------------------------------------------
   15. Form
   --------------------------------------------------------- */
.form { display: grid; gap: 20px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form__group { display: flex; flex-direction: column; gap: 6px; }

.form__group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(26,140,140,0.12);
}

.form__group select {
  width: 100%;
}

.form .btn {justify-content: center;}

.form__group textarea { resize: vertical; min-height: 120px; }

/* ---------------------------------------------------------
   16. Footer
   --------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  padding: 60px 0 0;
  border-top: 4px solid var(--amber);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand__tagline {
  font-size: 0.75rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact__item svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }

.footer-contact__item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact__item a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.footer-bottom__inner a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer-bottom__inner a:hover { color: var(--amber); }

/* ---------------------------------------------------------
   17. Page Hero (inner pages)
   --------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(26,140,140,0.08);
  pointer-events: none;
}

.page-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: block;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }

.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 600px; }

/* ---------------------------------------------------------
   18. About Page Specifics
   --------------------------------------------------------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;

}

.about-intro-grid.zigzag .reveal--right {
  order: -1;
}

.about-intro-grid h2 {
  margin-bottom: 0.5em;
}

.about-intro__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 0.8;
  object-fit: cover;
  width: 100%;
}

.value-list { display: grid; gap: 20px; }

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-item__icon {
  width: 40px;
  height: 40px;
  background: var(--amber-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.about-locksley h2 {margin-bottom: 0.5em;}

/* ---------------------------------------------------------
   19. How It Works - Timeline variant
   --------------------------------------------------------- */
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hiw-col1 {
 position: sticky;
 top: calc(72px + 80px);
 align-content: start;
}

.hiw-steps { display: grid; gap: 0; }

.hiw-step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}

.hiw-step:last-child { padding-bottom: 0; }

.hiw-step__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiw-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hiw-step__line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
}

.hiw-step:last-child .hiw-step__line { display: none; }

.hiw-step__body h3 { margin-bottom: 8px; padding-top: 10px; }

/* ---------------------------------------------------------
   20. Scroll Reveal Animations
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-28px);
}

.reveal--left.visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--right.visible {
  transform: translateX(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------------------------------------------------------
   21. WhatsApp Widget
   --------------------------------------------------------- */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: none;
}

.whatsapp-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-widget a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-widget svg { color: var(--white); }

/* ---------------------------------------------------------
   22. Utility Classes
   --------------------------------------------------------- */
.text-teal   { color: var(--amber); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mt-32       { margin-top: 32px; }
.mb-0        { margin-bottom: 0; }

/* ---------------------------------------------------------
   23. Responsive
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .card-grid--3   { grid-template-columns: repeat(2, 1fr); }
  .steps          { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before  { display: none; }
  .stats-bar      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .hiw-grid       { grid-template-columns: 1fr; }
  .audience-grid  { grid-template-columns: 1fr; }
  .hiw-col1 {position: static;}
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .site-nav__links { display: none; flex-direction: column; gap: 0; }

  .site-nav__links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 16px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .site-nav__links a {
    padding: 12px 24px;
    font-size: 1.4rem;
  }

  .site-nav__links a::after { display: none; }

  .site-nav__cta {
    margin: 8px 24px 0;
    text-align: center;
    display: block;
  }

  .nav-toggle { display: flex; }

  /* .site-nav { position: relative; } */

  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .cta-banner__ctas { flex-direction: column; align-items: center; }

  .card-grid--3,
  .card-grid--2 { grid-template-columns: 1fr; }

  .about-intro-grid { grid-template-columns: 1fr; }

  .about-intro-grid.zigzag .reveal--right {
    order: 0;
  }

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

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

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

  .footer-bottom__inner { flex-direction: column; text-align: center; }

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

  .stats-bar { grid-template-columns: 1fr 1fr; }

  .btn {width: 100%; justify-content: center;}

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-grid:nth-of-type(even) div:has(img) {
    order: 2;
  }

  .about-intro__img {
    aspect-ratio: 4/3;
  }

  .contact-feature-strip span {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .feature-strip__inner { flex-direction: column; text-align: center; }
  .stats-bar { grid-template-columns: 1fr; }
}


/* Uniform grid - all images same aspect ratio (4:3) */
.gallery-grid {
    columns: 3;
    column-gap: 1rem;
}

.gallery-grid a {
    display: block;
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.1) saturate(1.1);
    transition: transform 0.3s, filter 0.3s;
}

.gallery-grid a:hover img {
    transform: scale(1.03);
}


.gallery-grid--uniform {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.gallery-grid--uniform a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
}

.gallery-grid--uniform img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.1) saturate(1.1);
    transition: transform 0.3s, filter 0.3s;
}

.gallery-grid--uniform a:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery-grid {
        columns: 2;
    }

    .gallery-grid--uniform {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }

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

