/* ===== CSS VARIABLES ===== */
:root {
  --charcoal: #1a1a1a;
  --forest: #1b3022;
  --forest-deep: #0f1f15;
  --offwhite: #f8f9fa;
  --accent: #ff4500;
  --accent-fg: #ffffff;
  --card: #ffffff;
  --border: #dcdcdc;
  --muted: #e8eaed;
  --muted-fg: #595959;
  --shadow-card: 0 2px 0 rgba(26,26,26,.08), 0 8px 32px -12px rgba(26,26,26,.18);
  --shadow-orange: 0 8px 24px -8px rgba(255,69,0,.5);
  --gradient-tactical: linear-gradient(135deg, #1a1a1a 0%, #0f1f15 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.85) 100%);
  --radius: 2px;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-serif);
  background: var(--offwhite);
  color: var(--charcoal);
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; }
img, video { -webkit-user-drag: none; user-select: none; -webkit-user-select: none; }
video::-webkit-media-controls-enclosure { overflow: hidden; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.heading-xl {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}
.heading-lg {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}
.accent-rule {
  width: 3rem;
  height: 2px;
  background: var(--accent);
}
.mono {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid currentColor;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 1.75rem;
  background: var(--accent);
  color: var(--accent-fg);
  transition: background .2s, box-shadow .2s;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: rgba(255,69,0,.85); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border: 1px solid rgba(248,249,250,.4);
  color: var(--offwhite);
  transition: all .2s;
}
.btn-outline:hover { background: var(--offwhite); color: var(--charcoal); border-color: var(--offwhite); }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .75rem 1.5rem;
  background: var(--charcoal);
  color: var(--offwhite);
  transition: background .2s;
}
.btn-dark:hover { background: rgba(26,26,26,.85); }

/* grain overlay */
.grain { position: relative; }
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all .3s;
  background: rgba(26,26,26,.3);
  backdrop-filter: blur(4px);
}
#site-header.scrolled {
  background: rgba(26,26,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header-inner { height: 80px; } }
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrap img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 2px;
}
@media (min-width: 768px) { .logo-wrap img { height: 48px; width: 48px; } }
.logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--offwhite);
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
}
@media (min-width: 768px) { .logo-name { font-size: 18px; } }
.logo-sub { font-size: 9px; color: var(--accent); }
@media (min-width: 768px) { .logo-sub { font-size: 10px; } }

nav.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) { nav.desktop-nav { display: flex; } }
.nav-link {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(248,249,250,.8);
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }

.header-ctas { display: none; gap: 8px; }
@media (min-width: 1024px) { .header-ctas { display: flex; } }
.header-cta-outline {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 16px;
  border: 1px solid rgba(248,249,250,.3);
  color: var(--offwhite);
  transition: all .2s;
}
.header-cta-outline:hover { border-color: var(--offwhite); background: var(--offwhite); color: var(--charcoal); }
.header-cta-accent {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 16px;
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-orange);
  transition: background .2s;
}
.header-cta-accent:hover { background: rgba(255,69,0,.85); }

.menu-btn { display: flex; align-items: center; color: var(--offwhite); padding: 8px; }
@media (min-width: 1024px) { .menu-btn { display: none; } }

.mobile-nav {
  display: none;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(248,249,250,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: block;
  transition: color .2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--accent); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; }
.mobile-nav-ctas a {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 16px;
  text-align: center;
  display: block;
}

/* ===== FOOTER ===== */
#site-footer {
  background: var(--charcoal);
  color: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding: 64px 0 80px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 4fr 3fr 3fr 2fr;
    gap: 40px;
  }
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: rgba(248,249,250,.7); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: rgba(248,249,250,.7); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== HOME PAGE ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4rem;
}
@media (min-width: 768px) { .hero-content { padding-bottom: 6rem; } }
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-text { max-width: 56rem; }
.hero-text p {
  margin-top: 28px;
  font-size: 1.125rem;
  color: rgba(248,249,250,.8);
  max-width: 42rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-text p { font-size: 1.25rem; } }
.hero-btns {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(26,26,26,.6);
  backdrop-filter: blur(12px);
  display: none;
}
@media (min-width: 768px) { .hero-stats { display: block; } }
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: rgba(255,255,255,.1);
}
.hero-stat {
  padding: 20px 24px;
  color: var(--offwhite);
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--accent);
}
.stat-label { font-size: 10px; color: rgba(248,249,250,.6); margin-top: 4px; }

/* Trust ribbon */
.trust-ribbon {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
}
@media (min-width: 768px) { .trust-ribbon { padding: 32px 0; } }
.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248,249,250,.6);
  transition: color .2s;
}
.trust-item:hover { color: var(--accent); }
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* Timeline */
.timeline-section {
  background: var(--offwhite);
  padding: 80px 0;
}
@media (min-width: 768px) { .timeline-section { padding: 112px 0; } }
.timeline-wrap { position: relative; }
.timeline-line {
  position: absolute;
  left: 16px;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(26,26,26,.15);
}
@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}
.timeline-items { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 768px) { .timeline-items { gap: 80px; } }
.timeline-item {
  position: relative;
  padding-left: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s, transform .6s;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) {
  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-left: 0;
  }
  .timeline-item:nth-child(even) .ti-content { order: 2; text-align: right; padding-right: 48px; padding-left: 0; }
  .timeline-item:nth-child(even) .ti-spacer { order: 1; }
  .timeline-item:nth-child(odd) .ti-content { padding-left: 48px; }
}
.ti-dot {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 12px; height: 12px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--offwhite);
}
@media (min-width: 768px) {
  .ti-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}
.ti-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--accent);
  line-height: 1;
}
.ti-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-top: 12px;
}
.ti-body { color: rgba(26,26,26,.7); margin-top: 12px; line-height: 1.7; }

/* Gallery Slideshow */
.gallery-section {
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
}
@media (min-width: 768px) { .gallery-section { padding: 112px 0; } }
.slideshow-wrap { position: relative; }
.slideshow-main {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: black;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.8) 0%, transparent 50%);
  pointer-events: none;
}
.slide-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}
.slide-caption-text { font-size: 11px; color: var(--offwhite); }
.slide-count { font-size: 10px; color: rgba(248,249,250,.6); }
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(26,26,26,.6);
  color: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.slide-btn:hover { background: var(--accent); }
.slide-btn.prev { left: 12px; }
.slide-btn.next { right: 12px; }
.slide-thumbs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
@media (min-width: 768px) { .slide-thumbs { grid-template-columns: repeat(14, 1fr); } }
.thumb-btn {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  background: rgba(26,26,26,.4);
  opacity: .6;
  transition: all .2s;
}
.thumb-btn.active { border-color: var(--accent); opacity: 1; }
.thumb-btn:hover { opacity: 1; }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Dual Core */
.dual-core {
  display: grid;
}
@media (min-width: 768px) {
  .dual-core {
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
}
.dual-side {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) { .dual-side { padding: 64px; } }
@media (min-width: 1024px) { .dual-side { padding: 80px; } }
.dual-a { background: var(--offwhite); border-right: 1px solid rgba(26,26,26,.1); }
.dual-b {
  background: var(--gradient-tactical);
  color: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.dual-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dual-icon-a { background: var(--charcoal); }
.dual-icon-b { background: var(--accent); }
.dual-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.dual-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 0.95;
  margin-bottom: 20px;
  margin-top: 24px;
}
.dual-list { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14px; margin-bottom: 40px; }
.dual-list li { display: flex; align-items: center; gap: 8px; }
.dual-list li::before { content: ''; width: 4px; height: 4px; background: var(--accent); flex-shrink: 0; }
.dual-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap .2s;
}
.dual-link:hover { gap: 14px; }
.dual-link-a { color: var(--charcoal); }
.dual-link-a:hover { color: var(--accent); }
.dual-link-b { color: var(--accent); }
.dual-link-b:hover { color: var(--offwhite); }

/* Pedigree tease cards */
.cards-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.tease-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 32px;
  transition: border-color .2s;
}
.tease-card:hover { border-color: var(--accent); }

/* CTA Band */
.cta-band {
  background: var(--accent);
  color: var(--accent-fg);
}
.cta-band-inner {
  padding: 56px 0 80px;
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .cta-band-inner {
    grid-template-columns: 8fr 4fr;
    align-items: center;
    padding: 80px 0;
  }
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  line-height: 0.95;
}
.cta-btns { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .cta-btns { align-items: flex-end; } }
.cta-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 1.5rem;
  background: var(--charcoal);
  color: var(--offwhite);
  transition: background .2s;
  width: 100%;
}
@media (min-width: 768px) { .cta-btn-dark { width: auto; } }
.cta-btn-dark:hover { background: rgba(26,26,26,.8); }
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  transition: all .2s;
  width: 100%;
}
@media (min-width: 768px) { .cta-btn-outline { width: auto; } }
.cta-btn-outline:hover { background: var(--charcoal); color: var(--offwhite); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--gradient-tactical);
  color: var(--offwhite);
  position: relative;
  overflow: hidden;
  padding-top: 128px;
  padding-bottom: 80px;
}
@media (min-width: 768px) { .page-hero { padding-top: 160px; padding-bottom: 112px; } }
.page-hero-inner { position: relative; z-index: 10; max-width: 56rem; }
.page-hero-glow {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 384px;
  height: 384px;
  background: rgba(255,69,0,.1);
  filter: blur(80px);
}
.page-hero h1 { color: var(--offwhite); }
.page-hero p {
  margin-top: 24px;
  font-size: 1.125rem;
  color: rgba(248,249,250,.7);
  max-width: 42rem;
  line-height: 1.7;
}

/* ===== SECTION HELPERS ===== */
.section-offwhite { background: var(--offwhite); padding: 80px 0; }
@media (min-width: 768px) { .section-offwhite { padding: 112px 0; } }
.section-charcoal { background: var(--charcoal); color: var(--offwhite); padding: 80px 0; position: relative; }
@media (min-width: 768px) { .section-charcoal { padding: 96px 0; } }
.section-forest { background: var(--forest); color: var(--offwhite); padding: 80px 0; }
@media (min-width: 768px) { .section-forest { padding: 96px 0; } }

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .service-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.service-card {
  background: white;
  box-shadow: var(--shadow-card);
  padding: 32px 40px;
  transition: transform .2s;
  border-top: 2px solid transparent;
}
.service-card:hover { transform: translateY(-4px); border-top-color: var(--accent); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-code { font-size: 10px; color: rgba(26,26,26,.4); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.service-body { color: rgba(26,26,26,.7); line-height: 1.7; font-size: 14px; }

/* Security stats grid */
.stats-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.1);
}
.stat-block {
  background: var(--forest);
  padding: 24px;
}
.stat-block .stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--accent);
}
.stat-block .stat-label { font-size: 10px; color: rgba(248,249,250,.6); margin-top: 4px; }

/* ===== BREEDING LINES ===== */
.lines-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) { .lines-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.line-card { background: white; box-shadow: var(--shadow-card); }
.line-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--charcoal);
}
.line-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
  display: block;
}
.line-card:hover .line-card-img img { transform: scale(1.05); }
.line-card-body { padding: 28px 36px; }
.line-card-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.line-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(26,26,26,.8);
  font-size: 14px;
}
.line-card-body li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ===== FOUNDER ===== */
.founder-grid {
  display: grid;
  gap: 48px;
  align-items: flex-start;
}
@media (min-width: 768px) { .founder-grid { grid-template-columns: 5fr 7fr; } }
.founder-img-wrap { position: relative; }
.founder-img-wrap img { width: 100%; object-fit: cover; box-shadow: var(--shadow-card); display: block; }
.founder-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: var(--shadow-orange);
}
.pillars-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 28px;
  transition: border-color .2s;
}
.pillar-card:hover { border-color: var(--accent); }
.eakc-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .eakc-grid { grid-template-columns: repeat(3, 1fr); } }
.eakc-card {
  background: white;
  padding: 28px;
  border-left: 2px solid var(--accent);
  box-shadow: var(--shadow-card);
}
blockquote {
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.4;
}

/* ===== CORPORATE ===== */
.corp-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .corp-grid { grid-template-columns: repeat(3, 1fr); } }
.corp-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 32px;
  transition: border-color .2s;
}
.corp-card:hover { border-color: var(--accent); }
.tender-box {
  margin-top: 64px;
  border: 1px solid rgba(255,69,0,.4);
  background: rgba(255,69,0,.05);
  padding: 32px 48px;
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) { .tender-box { grid-template-columns: 8fr 4fr; } }

/* ===== PEDIGREE ===== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-btn {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 16px;
  border: 1px solid rgba(26,26,26,.2);
  color: rgba(26,26,26,.7);
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--charcoal); }
.filter-btn.active { background: var(--charcoal); color: var(--offwhite); border-color: var(--charcoal); }
.dogs-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .dogs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dogs-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.dog-card {
  background: white;
  box-shadow: var(--shadow-card);
  border-top: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-top-color .2s;
  text-align: left;
  display: block;
  width: 100%;
}
.dog-card:hover { border-top-color: var(--accent); }
.dog-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--charcoal);
  position: relative;
}
.dog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
  display: block;
}
.dog-card:hover .dog-card-img img { transform: scale(1.05); }
.dog-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dog-badge-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(26,26,26,.8);
  color: var(--offwhite);
}
.dog-reserved {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--charcoal);
  color: var(--offwhite);
}
.dog-card-body { padding: 24px; }
.dog-breed-sex { font-size: 10px; color: var(--accent); margin-bottom: 8px; }
.dog-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.125rem;
  margin-bottom: 6px;
  line-height: 1.2;
}
.dog-lineage { color: rgba(26,26,26,.6); font-size: 12px; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: white;
  max-width: 768px;
  width: 100%;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform .2s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-inner {
  display: grid;
}
@media (min-width: 768px) { .modal-inner { grid-template-columns: 1fr 1fr; } }
.modal-img {
  aspect-ratio: 4/5;
  background: var(--charcoal);
}
@media (min-width: 768px) { .modal-img { aspect-ratio: unset; } }
.modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-body { padding: 28px 36px; }
.modal-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.modal-sub { font-size: 10px; color: var(--accent); }
.modal-desc { color: rgba(26,26,26,.8); font-size: 14px; margin-top: 20px; line-height: 1.7; }
.modal-dl { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin-top: 24px; font-size: 14px; }
.modal-dl dt { font-size: 10px; color: rgba(26,26,26,.5); }
.modal-dl dd { color: var(--charcoal); }
.modal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.modal-badge { font-size: 10px; border: 1px solid var(--charcoal); color: var(--charcoal); padding: 4px 10px; }
.modal-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .75rem 1.25rem;
  background: var(--accent);
  color: white;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.modal-close:hover { background: var(--accent); }

/* ===== INQUIRE ===== */
.inquire-wrap { max-width: 768px; margin: 0 auto; }
.progress-bar-wrap {
  height: 4px;
  background: rgba(26,26,26,.1);
  position: relative;
  margin-bottom: 8px;
}
.progress-bar-fill {
  position: absolute;
  inset-y: 0;
  left: 0;
  background: var(--accent);
  transition: width .4s;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  font-size: 10px;
  color: rgba(26,26,26,.5);
}
.step-card {
  background: white;
  box-shadow: var(--shadow-card);
  padding: 28px 40px;
  min-height: 420px;
}
.step-section-num { margin-bottom: 12px; }
.step-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.step-desc { color: rgba(26,26,26,.6); font-size: 14px; margin-bottom: 28px; }
.choice-list { display: flex; flex-direction: column; gap: 12px; }
.choice-btn {
  text-align: left;
  padding: 20px;
  border: 1px solid rgba(26,26,26,.15);
  transition: all .2s;
  width: 100%;
  display: block;
}
.choice-btn:hover { border-color: var(--charcoal); }
.choice-btn.selected { border-color: var(--accent); background: rgba(255,69,0,.04); }
.choice-btn-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.choice-label { font-family: var(--font-display); font-weight: 700; color: var(--charcoal); }
.choice-sub { color: rgba(26,26,26,.6); font-size: 14px; margin-top: 2px; }
.form-field {
  margin-bottom: 16px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(26,26,26,.2);
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--charcoal);
  background: white;
  transition: border-color .2s;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--accent); }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.review-dl { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; font-size: 14px; }
.review-dl dt { font-size: 10px; color: rgba(26,26,26,.5); margin-bottom: 4px; }
.review-dl dd { color: var(--charcoal); }
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.step-back, .step-next, .step-submit {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .75rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.step-back {
  border: 1px solid rgba(26,26,26,.2);
  color: var(--charcoal);
}
.step-back:hover:not(:disabled) { background: var(--charcoal); color: var(--offwhite); }
.step-back:disabled { opacity: .3; }
.step-next {
  background: var(--charcoal);
  color: var(--offwhite);
}
.step-next:hover:not(:disabled) { background: rgba(26,26,26,.85); }
.step-next:disabled { opacity: .3; }
.step-submit {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-orange);
}
.step-submit:hover { background: rgba(255,69,0,.85); }
.submit-success {
  display: none;
  text-align: center;
  padding: 80px 0;
}
.submit-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* ===== SVG ICON HELPER ===== */
.icon { display: inline-block; vertical-align: middle; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp .8s ease-out forwards; }
.delay-1 { animation-delay: .1s; opacity: 0; }
.delay-2 { animation-delay: .25s; opacity: 0; }
.delay-3 { animation-delay: .4s; opacity: 0; }

/* Loader skeleton */
.skel { background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skel-card { aspect-ratio: 4/5; border-radius: 2px; }