/* ================================================================
   IRONBARK CONSTRUCTIONS — styles.css
   ================================================================ */

/* ----------------------------------------------------------------
   CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  --navy:       #1c2636;
  --navy-dark:  #141c28;
  --navy-mid:   #253045;
  --gold:       #c8973a;
  --gold-light: #dba84d;
  --gold-dark:  #a87a2a;
  --off-white:  #f6f5f0;
  --light-gray: #eceae4;
  --mid-gray:   #9a9690;
  --dark-gray:  #4a4843;
  --text:       #1a1a1a;
  --text-light: #5a5856;
  --white:      #ffffff;

  --radius:     4px;
  --radius-lg:  8px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);

  --max-w:      1200px;
  --section-py: 96px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --transition:   0.25s ease;
  --transition-slow: 0.45s ease;
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

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

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* ----------------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-py) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label-light {
  color: var(--gold-light);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 151, 58, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ----------------------------------------------------------------
   SPLIT LAYOUT
   ---------------------------------------------------------------- */
.container-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.container-split-reverse .split-image { order: -1; }

/* ----------------------------------------------------------------
   IMAGE FRAMES
   ---------------------------------------------------------------- */
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.image-frame:hover img { transform: scale(1.03); }

.image-frame-right {
  border-radius: var(--radius-lg);
}

/* Decorative accent block behind image */
.split-image {
  position: relative;
}

.image-accent-block {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: var(--gold);
  opacity: 0.12;
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 28, 40, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.2);
}

/* Compact sticky bar that slides in after scrolling past the initial header */
.site-header.is-sticky {
  position: fixed;
  background: rgba(20, 28, 40, 0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  animation: headerSlideDown 0.4s ease forwards;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 120px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: height 0.35s ease;
}

.site-header.is-sticky .header-inner {
  height: 96px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.35s ease;
}

.site-header.is-sticky .header-logo img {
  height: 80px;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-nav ul {
  display: flex;
  gap: 4px;
}
.site-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.site-nav a.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 8px 20px;
}
.site-nav a.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.header-phone {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100svh;
  width: 280px;
  background: var(--navy-dark);
  z-index: 200;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
}
.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.mobile-nav-phone {
  margin-top: 8px;
  color: var(--gold-light) !important;
  font-weight: 600 !important;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.mobile-nav-close:hover { color: var(--white); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(135deg, rgba(20, 28, 40, 0.85) 0%, rgba(28, 38, 54, 0.7) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(20,28,40,0.3));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 32px 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(200, 151, 58, 0.4);
  border-radius: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}
.hero-scroll-indicator svg {
  width: 28px;
  height: 28px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ----------------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------------- */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0;
}
.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 48px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   ABOUT — BACKGROUND SECTION
   ---------------------------------------------------------------- */
.section-about {
  background: var(--white);
}

.section-about h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-about p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.icon-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.icon-list .icon-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--gold);
}
.icon-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.icon-list p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}

/* ----------------------------------------------------------------
   COMPANY OVERVIEW SECTION
   ---------------------------------------------------------------- */
.section-company {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.company-card {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.company-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 40px;
  color: var(--navy);
}
.company-body {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  margin-bottom: 32px;
}
.company-body p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}
.company-body p:first-child {
  grid-column: 1 / -1;
  font-size: 1.1rem;
  color: var(--text);
}
.company-tagline {
  font-size: 1.1rem;
  color: var(--navy);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   SERVICE SECTIONS
   ---------------------------------------------------------------- */
.section-service {
  background: var(--white);
}
.section-service.section-alt {
  background: var(--off-white);
}

.section-service h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--navy);
}

.section-service .split-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.section-service .btn {
  margin-top: 12px;
}

/* ----------------------------------------------------------------
   ACCREDITATIONS
   ---------------------------------------------------------------- */
.section-accreditations {
  background: var(--navy);
  color: var(--white);
}

.section-accreditations .section-label {
  color: var(--gold-light);
}

.accred-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.accred-header h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.accred-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.accred-card {
  grid-column: span 2;
}
/* Center the last 2 cards in the bottom row */
.accred-grid .accred-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.accred-grid .accred-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.accred-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
}
.accred-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,151,58,0.4);
  transform: translateY(-4px);
}
.accred-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 16px;
}
.accred-icon svg {
  width: 100%;
  height: 100%;
}
.accred-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.accred-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1.5;
}
.accred-card code {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--gold-light);
  background: rgba(200,151,58,0.12);
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */
.section-contact {
  background: var(--navy-dark);
  background-image:
    linear-gradient(135deg, rgba(20,28,40,0.97) 0%, rgba(28,38,54,0.96) 100%),
    url('images/contact-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.contact-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold);
}
.contact-detail-icon svg {
  width: 100%;
  height: 100%;
}
.contact-details strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.contact-details span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.contact-details a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.contact-details a:hover { color: var(--white); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,0.15);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid-gray);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  padding: 4px 10px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact a {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-contact a:hover { color: var(--white); }

.footer-credit {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-credit p { margin: 0; }
.footer-credit a {
  display: inline-block;
}
.footer-credit img {
  display: inline-block;
  vertical-align: middle;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.footer-credit a:hover img { opacity: 1; }

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (max 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .container-split {
    gap: 48px;
  }

  .stats-bar-inner {
    flex-wrap: wrap;
  }
  .stat {
    padding: 20px 32px;
  }
  .stat-divider {
    display: none;
  }

  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .accred-card { grid-column: span 1; }
  .accred-grid .accred-card:nth-child(4),
  .accred-grid .accred-card:nth-child(5) {
    grid-column: span 1;
  }

  .contact-grid {
    gap: 48px;
  }

  .company-body {
    grid-template-columns: 1fr;
  }
  .company-body p:first-child {
    grid-column: 1;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (max 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  html { scroll-padding-top: 80px; }

  .site-nav,
  .header-phone { display: none; }

  .hamburger { display: flex; }

  .header-inner {
    height: 80px;
    padding: 0 20px;
  }

  .header-logo img {
    height: 64px;
  }

  .site-header.is-sticky .header-inner {
    height: 72px;
  }

  .site-header.is-sticky .header-logo img {
    height: 56px;
  }

  .container { padding: 0 20px; }

  /* Hero */
  .hero {
    background-attachment: scroll;
    min-height: 100svh;
  }
  .hero-inner {
    padding: 120px 20px 60px;
    max-width: 100%;
  }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-actions { gap: 12px; }

  /* Stats */
  .stats-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
  .stat { padding: 20px 16px; }

  /* Split layouts */
  .container-split,
  .container-split-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .container-split-reverse .split-image { order: 0; }

  .image-frame img { height: 260px; }

  /* Company */
  .company-body { gap: 0; }
  .company-card h2 { font-size: 1.75rem; }

  /* Accreditations */
  .accred-grid {
    grid-template-columns: 1fr;
  }
  .accred-card { grid-column: 1; }
  .accred-grid .accred-card:nth-child(4),
  .accred-grid .accred-card:nth-child(5) {
    grid-column: 1;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }

  /* Footer */
  .footer-contact { flex-direction: column; gap: 8px; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — SMALL MOBILE (max 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }
  .stat { padding: 16px; }

  .btn { padding: 13px 24px; font-size: 0.8125rem; }

  .hero h1 { font-size: 1.9rem; }

  .accred-card { padding: 24px 20px; }

  .contact-form-wrap { padding: 24px 16px; }
}
