/* ============================================================
   Kingdom Welding Solutions — Stylesheet
   Converted 1:1 from the original Tailwind/React design tokens
   ============================================================ */

:root {
  --radius: 0.25rem;

  /* Kingdom Welding brand */
  --kw-red: oklch(0.58 0.22 27);
  --kw-red-deep: oklch(0.32 0.15 27);
  --kw-yellow: oklch(0.86 0.18 92);
  --kw-ink: oklch(0.14 0.01 260);
  --kw-steel: oklch(0.55 0.01 260);

  --background: oklch(0.99 0.003 250);
  --foreground: oklch(0.14 0.01 260);
  --muted: oklch(0.96 0.005 250);
  --muted-foreground: oklch(0.45 0.01 260);
  --border: oklch(0.9 0.005 250);

  --surface-dark: oklch(0.14 0.01 260);
  --surface-darker: oklch(0.08 0.005 260);
  --surface-light: oklch(0.97 0.005 250);

  --font-display: "Oswald", "Barlow Condensed", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

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

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

ul { list-style: none; margin: 0; padding: 0; }

.container-x {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn-red, .btn-yellow, .btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  font-size: 0.9rem;
  border: none;
  transition: all 0.25s ease;
}
.btn-red {
  background: var(--kw-red);
  color: #fff;
  font-weight: 600;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-red:hover { background: var(--kw-red-deep); transform: translateY(-2px); }

.btn-yellow {
  background: var(--kw-yellow);
  color: var(--kw-ink);
  font-weight: 700;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-yellow:hover { background: oklch(0.78 0.18 92); transform: translateY(-2px); }

.btn-ghost-white {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 0.8rem 1.75rem;
}
.btn-ghost-white:hover { border-color: var(--kw-yellow); color: var(--kw-yellow); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--kw-red);
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--kw-red); }
.eyebrow.center { margin-left: auto; margin-right: auto; }
.eyebrow.yellow { color: var(--kw-yellow); }
.eyebrow.yellow::before { background: var(--kw-yellow); }

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
}

@keyframes kw-reveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: kw-reveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; }

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in { animation: fade-in 0.3s ease both; }

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: oklch(0.14 0.01 260 / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 0;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo img, .nav-logo svg { height: 2.25rem; width: auto; }
@media (min-width: 768px) { .nav-logo img, .nav-logo svg { height: 60px; } }
.nav-logo .logo-word {
  font-family: var(--font-display);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  line-height: 1;
}
.nav-logo .logo-word span { color: var(--kw-red); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--kw-yellow); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-call { display: none; }
.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: #fff;
  padding: 0.5rem;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  display: none;
  background: oklch(0.14 0.01 260);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.75rem;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
}
.mobile-menu .btn-red { margin-top: 0.75rem; align-self: flex-start; }

@media (min-width: 640px) {
  .nav-call { display: inline-flex; }
  .mobile-menu .btn-red { display: none; }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3));
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface-darker), transparent 40%);
}
.hero-rail {
  position: absolute;
  left: 1.5rem; top: 0; bottom: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.4em;
}
.hero-rail span { writing-mode: vertical-rl; transform: rotate(180deg); }
@media (min-width: 768px) { .hero-rail { display: flex; } }

.hero-content {
  position: relative;
  padding: 10rem 0 6rem;
}
@media (min-width: 768px) { .hero-content { padding: 12rem 0 8rem; } }
.hero-content .inner { max-width: 56rem; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}
.hero-kicker .line { height: 1px; width: 2.5rem; background: var(--kw-red); }
.hero-kicker .txt { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.75rem; }

.hero-title {
  color: #fff;
  font-size: 2.75rem;
}
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-title .yellow { color: var(--kw-yellow); }
.hero-title .red { color: var(--kw-red); }

.hero-sub {
  margin-top: 2rem;
  max-width: 40rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.icon { width: 1rem; height: 1rem; stroke-width: 2.5; flex-shrink: 0; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--surface-darker); color: #fff; margin-top: -1px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  position: relative;
  padding: 2rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat:first-child { border-left: none; }
@media (min-width: 1024px) { .stat { padding: 2.5rem; } }
.stat::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 2.5rem; height: 3px;
  background: var(--kw-red);
  transition: width 0.5s ease;
}
.stat:hover::before { width: 100%; }
.stat-value { font-size: 2.25rem; color: #fff; }
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   GENERIC SECTION helpers
   ============================================================ */
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.section-sm { padding: 5rem 0; }
@media (min-width: 768px) { .section-sm { padding: 6rem 0; } }
.section-light { background: var(--surface-light); }
.section-dark { background: var(--surface-dark); color: #fff; }
.section-bg { background: var(--background); }
.max-w-2 { max-width: 42rem; }

/* ---------- About preview / two-col ---------- */
.two-col {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

.about-media { position: relative; }
.about-media img { width: 100%; height: 560px; object-fit: cover; position: relative; }
.about-frame {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 8rem; height: 8rem;
  border: 4px solid var(--kw-red);
  display: none;
}
@media (min-width: 768px) { .about-frame { display: block; } }
.about-badge {
    z-index: 1;
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--kw-yellow);
    color: var(--kw-ink);
    padding: 1rem 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
    /* display: none; */
}
@media (min-width: 768px) { .about-badge { display: block; } }
.about-badge .num { font-size: 2.25rem; line-height: 1; }
.about-badge .lbl { font-size: 0.7rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; }

.feature-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .feature-list { grid-template-columns: 1fr 1fr; } }
.feature-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; }
.feature-list .dot { width: 0.5rem; height: 0.5rem; background: var(--kw-red); flex-shrink: 0; }

.text-lead { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }
.text-muted { color: var(--muted-foreground); }

.link-arrow { font-size: 0.85rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; align-self: center; }
.link-arrow:hover { color: var(--kw-red); }

/* ---------- Why us cards ---------- */
.grid-cards {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-cards { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.why-card:hover { border-color: var(--kw-red); transform: translateY(-4px); }
.why-card-inner { display: flex; align-items: flex-start; gap: 1.25rem; }
.why-card .why-icon { color: var(--kw-red); flex-shrink: 0; }
.why-card .why-num { font-size: 0.7rem; font-family: var(--font-display); color: var(--muted-foreground); letter-spacing: 0.15em; }
.why-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; margin: 0.25rem 0 0; }
.why-card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.6; }
.why-card::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--kw-yellow);
  transition: width 0.5s ease;
}
.why-card:hover::after { width: 100%; }

/* ---------- Services preview (home) ---------- */
.services-preview-head {
  display: flex; flex-direction: column;
  gap: 1.5rem; margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .services-preview-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.services-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative;
  background: var(--surface-dark);
  padding: 2rem;
  transition: background 0.2s ease;
}
.service-card:hover { background: oklch(0.18 0.01 260); }
.service-card .svc-icon { color: var(--kw-red); width: 2.5rem; height: 2.5rem; }
.service-card h3 { margin: 1.5rem 0 0; font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; }
.service-card p { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.service-card .go-arrow {
  position: absolute; top: 2rem; right: 2rem;
  opacity: 0; transition: all 0.2s ease;
}
.service-card:hover .go-arrow { opacity: 1; transform: translateX(4px); }

/* ---------- Portfolio / gallery grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--muted);
  aspect-ratio: 1 / 1;
}
.portfolio-item.featured { aspect-ratio: 1/1; }
@media (min-width: 768px) {
  .portfolio-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
  opacity: 0; transition: opacity 0.2s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-caption {
  position: absolute; bottom: 0; left: 0;
  padding: 1rem;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.2s ease;
}
.portfolio-item:hover .portfolio-caption { transform: translateY(0); opacity: 1; }
.portfolio-caption .tag { color: var(--kw-yellow); font-size: 0.7rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; }
.portfolio-caption .name { color: #fff; font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 6rem 0;
  background: var(--kw-red);
  color: #fff;
  overflow: hidden;
}
.cta-band .diag {
  position: absolute; inset: 0; opacity: 0.2;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.3) 20px, rgba(0,0,0,0.3) 21px);
}
.cta-band-inner {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 1024px) { .cta-band-inner { flex-direction: row; text-align: left; } }
.cta-band .kicker { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.cta-band h2 { margin-top: 0.75rem; font-size: 2.25rem; }
@media (min-width: 768px) { .cta-band h2 { font-size: 3rem; } }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-content { position: relative; padding: 6rem 0; padding-top: 10rem; }
.page-hero h1 { color: #fff; font-size: 2.75rem; margin-top: 1.5rem; max-width: 56rem; }
@media (min-width: 768px) { .page-hero h1 { font-size: 4.5rem; } }
.page-hero p { margin-top: 1.5rem; max-width: 40rem; color: rgba(255,255,255,0.7); font-size: 1.125rem; }

.services-detail { display: flex; flex-direction: column; gap: 6rem; }
.service-row {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .service-row { grid-template-columns: 1fr 1fr; } }
.service-row.reverse .service-media { order: 2; }
@media (max-width: 1023px) { .service-row.reverse .service-media { order: 0; } }
.service-media { position: relative; }
.service-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-media .badge-icon {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--kw-red); color: #fff;
  height: 3.5rem; width: 3.5rem;
  display: grid; place-items: center;
}
.service-media .badge-count {
  position: absolute; bottom: 1rem; right: 1rem;
  background: var(--kw-yellow); color: var(--kw-ink);
  padding: 0.5rem 1rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.7rem;
}
.service-copy .tag { font-size: 0.75rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.3em; color: var(--kw-red); }
.service-copy h2 { margin-top: 1rem; font-size: 2.25rem; }
@media (min-width: 768px) { .service-copy h2 { font-size: 3rem; } }
.service-copy p { margin-top: 1.25rem; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }
.service-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.service-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.service-features .icon { color: var(--kw-red); }
.service-copy .actions { margin-top: 2rem; display: flex; gap: 1rem; }

/* ---------- Industries ---------- */
.industries-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(6, 1fr); } }
.industry-card {
  aspect-ratio: 1/1;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  transition: all 0.2s ease;
}
.industry-card:hover { border-color: var(--kw-red); background: rgba(255,255,255,0.05); }
.industry-card svg { color: var(--kw-yellow); transition: transform 0.2s ease; }
.industry-card:hover svg { transform: scale(1.1); }
.industry-card span { font-size: 0.7rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; text-align: center; padding: 0 0.5rem; }

/* ---------- Process ---------- */
.process-grid {
  margin-top: 4rem;
  position: relative;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-line {
  position: absolute; top: 2rem; left: 10%; right: 10%;
  height: 2px; background: var(--border);
  display: none;
}
@media (min-width: 768px) { .process-line { display: block; } }
.process-card {
  position: relative;
  background: var(--background);
  padding: 2rem;
  border-top: 4px solid var(--kw-red);
}
.process-card .badge {
  position: absolute; top: -2rem; left: 2rem;
  height: 4rem; width: 4rem;
  background: var(--kw-ink); color: #fff;
  display: grid; place-items: center;
}
.process-card .step-num { margin-top: 2.5rem; font-size: 3.75rem; color: oklch(0.58 0.22 27 / 0.2); }
.process-card h3 { margin-top: 0.5rem; font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; }
.process-card p { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: 1fr 1.5fr; } }
.faq-list { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%; text-align: left;
  background: none; border: none;
  padding: 1.5rem 0;
}
.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
}
.faq-q span.q-text { font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; transition: color 0.2s ease; }
.faq-btn:hover .q-text { color: var(--kw-red); }
.faq-q .q-icon { color: var(--kw-red); flex-shrink: 0; margin-top: 0.25rem; }
.faq-answer { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ---------- Services CTA (image bg) ---------- */
.cta-image {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) { .cta-image { padding: 8rem 0; } }
.cta-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-image .scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
.cta-image .content { position: relative; }
.cta-image h2 { margin-top: 1.25rem; font-size: 2.25rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .cta-image h2 { font-size: 3.75rem; } }
.cta-image p { margin-top: 1.25rem; color: rgba(255,255,255,0.7); max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-image .actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   ABOUT / CONTACT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: var(--surface-dark);
  color: #fff;
  overflow: hidden;
}
@media (min-width: 768px) { .about-hero { padding: 10rem 0 7rem; } }
.about-hero-bgwrap { position: absolute; inset: 0; opacity: 0.3; }
.about-hero-bgwrap img { height: 100%; width: 100%; object-fit: cover; }
.about-hero-bgwrap .scrim { position: absolute; inset: 0; background: linear-gradient(to right, var(--surface-dark), oklch(0.14 0.01 260 / 0.8) 60%, transparent); }
.about-hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-hero-grid { grid-template-columns: 1fr 1fr; } }
.about-hero h1 { margin-top: 1.5rem; font-size: 2.75rem; }
@media (min-width: 768px) { .about-hero h1 { font-size: 4.5rem; } }
.about-hero p { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.7); max-width: 36rem; }
.about-hero-media { position: relative; display: none; }
@media (min-width: 1024px) { .about-hero-media { display: block; } }
.about-hero-media img { width: 100%; height: 500px; object-fit: cover; }
.about-hero-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--kw-red); color: #fff;
  padding: 1.5rem; max-width: 16rem;
}
.about-hero-badge .num { font-size: 2.25rem; }
.about-hero-badge .lbl { font-size: 0.7rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.25rem; }

.experience-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.experience-stats div { border-left: 4px solid var(--kw-red); padding-left: 1rem; }
.experience-stats .n { font-size: 1.875rem; }
.experience-stats .l { font-size: 0.7rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); margin-top: 0.25rem; }

.experience-media { position: relative; }
.experience-media img { width: 100%; height: 560px; object-fit: cover; }
.experience-frame { position: absolute; inset: 0; border: 8px solid var(--kw-yellow); transform: translate(1.5rem, 1.5rem); z-index: -1; }

.values-grid { margin-top: 3.5rem; display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: var(--background);
  padding: 2rem;
  border-bottom: 4px solid var(--kw-red);
  transition: border-color 0.2s ease;
}
.value-card:hover { border-color: var(--kw-yellow); }
.value-card svg { color: var(--kw-red); }
.value-card h3 { margin-top: 1.25rem; font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; }
.value-card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.6; }

.gallery-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .gallery-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #000, rgba(0,0,0,0.3) 50%, transparent);
  opacity: 0.7; transition: opacity 0.2s ease;
}
.gallery-item:hover .overlay { opacity: 0.9; }
.gallery-item .caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.gallery-item .caption .tag { color: var(--kw-yellow); font-size: 0.7rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; }
.gallery-item .caption .name { color: #fff; font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; margin-top: 0.25rem; }

/* ---------- Contact ---------- */
.contact-section { padding: 6rem 0; background: var(--surface-dark); color: #fff; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .contact-section { padding: 8rem 0; } }
.contact-head { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.contact-head p { margin-top: 1.25rem; color: rgba(255,255,255,0.6); }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s ease;
}
.contact-card:hover { border-color: var(--kw-red); }
.contact-card .icon-box {
  height: 3rem; width: 3rem;
  display: grid; place-items: center;
  background: var(--kw-red); color: #fff;
  flex-shrink: 0;
}
.contact-card .label { font-size: 0.7rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); }
.contact-card .value { margin-top: 0.25rem; font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; }
.map-frame { aspect-ratio: 16/9; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-form { background: #fff; color: var(--foreground); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field label {
  display: block; font-size: 0.7rem; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 2px solid var(--border);
  outline: none;
  padding: 0.75rem;
  background: var(--background);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--foreground);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--kw-red); }
.form-error { margin-top: 0.25rem; font-size: 0.75rem; color: var(--kw-red); }
.form-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; padding-top: 0.5rem; }
.form-success { font-size: 0.9rem; color: var(--kw-red); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--surface-darker); color: rgba(255,255,255,0.7); position: relative; }
.footer-bar { height: 4px; width: 100%; background: linear-gradient(to right, var(--kw-red), var(--kw-yellow), var(--kw-red)); }
.footer-main { padding: 4rem 0; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .footer-main { grid-template-columns: repeat(4, 1fr); } }
.footer-brand img, .footer-brand svg {
    height: 60px;
    /* width: auto; */
    /* margin-bottom: 1.25rem; */
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  height: 2.5rem; width: 2.5rem;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s ease;
}
.footer-social a:hover { border-color: var(--kw-red); color: var(--kw-yellow); }
.footer-col h4 { color: #fff; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.875rem; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--kw-yellow); }
.footer-col ul li.flex-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-col ul li.flex-item svg { margin-top: 0.15rem; color: var(--kw-red); flex-shrink: 0; }
.hours-list li { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list li span:last-child { color: #fff; }
.hours-list li.emergency span:last-child { color: var(--kw-yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  padding: 1.5rem 0;
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; } }
.footer-bottom-inner .tagline { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.15em; }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
