/* ============================================
   Inspired Options Inc — Stylesheet
   P5-influenced geometry + IOI brand colors
   WCAG 2.1 AA Compliant
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@400;700;900&family=Share+Tech+Mono&display=swap');

/* --- CSS Variables --- */
:root {
  /* IOI Brand (maps to P5 palette roles) */
  --navy:       #1B4F72;   /* P5 black */
  --navy-dark:  #102B40;   /* P5 deep black */
  --teal:       #148F77;   /* P5 red */
  --teal-light: #1ABC9C;   /* P5 red highlight */
  --amber:      #D4820A;   /* P5 gold */
  --amber-bright: #F39C12; /* P5 bright gold */
  --white:      #FFFFFF;
  --off-white:  #F4F7F8;
  --gray-light: #DDE4E8;
  --gray-mid:   #7F96A4;
  --gray-dark:  #4A6070;
  --text:       #0D1F2D;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;
  --font-mono:    'Share Tech Mono', 'Courier New', monospace;

  --max-width: 1100px;
  --section-pad: 90px 24px;
}

/* --- Reset --- */
*, *::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);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: underline; }
a:hover { color: var(--teal-light); }

:focus-visible {
  outline: 3px solid var(--amber-bright);
  outline-offset: 3px;
  border-radius: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-pad); }

/* --- P5 Section Labels --- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

/* --- P5 Buttons (parallelogram) --- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
  transition: background 0.15s ease-out, color 0.15s ease-out, transform 0.15s ease-out;
  position: relative;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) skewX(-1deg); }

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: -2px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  outline: 2px solid var(--navy);
  outline-offset: -2px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

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

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* P5 slash accent on brand */
.nav-brand::before {
  content: '//';
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--teal-light);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.nav-brand-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--teal-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  position: relative;
  transition: color 0.15s ease-out;
  white-space: nowrap;
}

/* P5 diagonal underline hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--teal-light);
  transform: scaleX(0) skewX(-8deg);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1) skewX(-8deg); }
.nav-links a[aria-current="page"] { color: var(--white); }

.nav-links .nav-cta a {
  background: var(--amber);
  color: var(--white);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  padding: 8px 22px;
  transition: background 0.15s ease-out;
}
.nav-links .nav-cta a::after { display: none; }
.nav-links .nav-cta a:hover { background: var(--amber-bright); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.2s;
}

/* --- Hero --- */
.hero {
  background: var(--navy-dark);
  padding: 100px 24px 130px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 3% 100%);
}

/* P5 diagonal accent stripes */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 80px,
    rgba(20, 143, 119, 0.04) 80px,
    rgba(20, 143, 119, 0.04) 82px
  );
  pointer-events: none;
}

/* P5 teal accent block */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--teal);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--teal-light);
}

.hero h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 0 rgba(20,143,119,0.25);
}

/* P5 amber highlight on headline word */
.hero h1 em {
  font-style: normal;
  color: var(--amber-bright);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin-bottom: 3rem;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--navy-dark);
  padding: 60px 24px 90px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 60px,
    rgba(20, 143, 119, 0.04) 60px,
    rgba(20, 143, 119, 0.04) 62px
  );
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.80); font-size: 1.05rem; max-width: 580px; }

/* --- Breadcrumb --- */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb span { color: var(--teal-light); }

/* --- P5 Cards (hard-edge, corner-clipped) --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 36px 28px;
  border-left: 4px solid var(--teal);
  border-bottom: 4px solid var(--navy);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  box-shadow: 4px 4px 0 var(--navy);
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--navy);
}
.card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}
.value-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--navy-dark);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  border-bottom: 3px solid var(--teal);
}
.value-icon { font-size: 1.8rem; margin-bottom: 0.6rem; display: block; }
.value-item h3 { font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--white); letter-spacing: 0.06em; }
.value-item p { font-size: 0.82rem; color: rgba(255,255,255,0.70); max-width: none; margin: 0; }

/* --- Two-col --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Band sections --- */
.band-teal {
  background: var(--teal);
  color: var(--white);
  padding: var(--section-pad);
  position: relative;
  clip-path: polygon(0 0, 100% 8px, 100% 100%, 0 calc(100% - 8px));
}
.band-teal::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--amber);
}
.band-teal h2 { color: var(--white); }
.band-teal p { color: rgba(255,255,255,0.92); }

.band-navy {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--section-pad);
  position: relative;
  clip-path: polygon(0 0, 100% 8px, 100% 100%, 0 calc(100% - 8px));
}
.band-navy::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--teal);
}
.band-navy h2 { color: var(--white); }
.band-navy p { color: rgba(255,255,255,0.85); }

.band-light {
  background: var(--off-white);
  padding: var(--section-pad);
  position: relative;
}
.band-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--amber) 100%);
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.contact-detail-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.contact-detail-text strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 3px;
}

.form-card {
  background: var(--white);
  padding: 40px 36px;
  border-left: 4px solid var(--teal);
  border-bottom: 4px solid var(--navy-dark);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  box-shadow: 6px 6px 0 var(--navy-dark);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-light);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s ease-out;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 3px 3px 0 rgba(20, 143, 119, 0.2);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--gray-mid); margin-top: 1rem; margin-bottom: 0; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s ease-out;
}
.faq-question:hover { color: var(--teal); }
.faq-chevron {
  font-size: 1.1rem;
  transition: transform 0.25s ease-out;
  flex-shrink: 0;
  color: var(--teal);
  font-family: var(--font-mono);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 8px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--gray-dark); }

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 0;
  background: var(--navy-dark);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gray-mid);
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--amber);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.team-card h4 { margin-bottom: 0.15rem; font-size: 1rem; }
.team-card .team-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}
.team-card p { font-size: 0.88rem; color: var(--gray-dark); max-width: none; }

/* --- Services --- */
.service-block {
  background: var(--white);
  padding: 32px 28px 32px 36px;
  margin-bottom: 24px;
  border-left: 5px solid var(--teal);
  border-bottom: 3px solid var(--navy);
  box-shadow: 4px 4px 0 rgba(27, 79, 114, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.service-block:hover {
  transform: translateX(4px);
  box-shadow: 6px 6px 0 rgba(27, 79, 114, 0.18);
}
.service-block h3 { margin-bottom: 0.4rem; }
.service-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

/* --- Policy pages --- */
.policy-content { max-width: 780px; }
.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-left: 12px;
  border-left: 3px solid var(--amber);
}
.policy-content h2:first-child { margin-top: 0; }

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 24px 32px;
  position: relative;
  border-top: 4px solid var(--teal);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--amber);
  opacity: 0.4;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.9rem; line-height: 1.6; max-width: 300px; margin-bottom: 0; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col h4::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 2px;
  background: var(--teal-light);
  flex-shrink: 0;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s ease-out;
  position: relative;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; }

/* --- P5 Camera Arrival Animations --- */

/* Initial hidden states */
.p5-reveal {
  opacity: 0;
  transform: translateX(-32px) skewX(-4deg);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.p5-reveal.p5-reveal-right {
  transform: translateX(32px) skewX(4deg);
}
.p5-reveal.p5-reveal-up {
  transform: translateY(28px) skewX(-2deg);
}
.p5-reveal.is-visible {
  opacity: 1;
  transform: translateX(0) skewY(0) skewX(0);
}

/* Stagger delays for grid children */
.p5-stagger > *:nth-child(1) { transition-delay: 0ms; }
.p5-stagger > *:nth-child(2) { transition-delay: 100ms; }
.p5-stagger > *:nth-child(3) { transition-delay: 200ms; }
.p5-stagger > *:nth-child(4) { transition-delay: 300ms; }
.p5-stagger > *:nth-child(5) { transition-delay: 400ms; }

/* Hero entrance (no JS needed — instant on load) */
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-40px) skewX(-3deg); }
  to   { opacity: 1; transform: translateX(0) skewX(0); }
}
@keyframes heroSubSlideIn {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroBtnsSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: heroSubSlideIn 0.5s ease-out 0.1s both; }
.hero h1 { animation: heroSlideIn 0.7s ease-out 0.2s both; }
.hero-sub { animation: heroSubSlideIn 0.6s ease-out 0.45s both; }
.hero-actions { animation: heroBtnsSlideIn 0.5s ease-out 0.65s both; }

/* P5-style amber flash on load */
@keyframes p5Flash {
  0%   { opacity: 0; }
  15%  { opacity: 0.18; }
  30%  { opacity: 0; }
  45%  { opacity: 0.08; }
  100% { opacity: 0; }
}
.hero::before { animation: p5Flash 1.2s ease-out 0.15s both; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

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

  .nav-toggle { display: flex; }
  .nav-brand::before { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 16px 0 24px;
    gap: 0;
    border-top: 2px solid var(--teal);
    border-bottom: 2px solid var(--amber);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 28px; }
  .nav-links .nav-cta a { margin: 12px 24px 0; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); text-align: center; }
  .site-header { position: relative; }

  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    padding: 70px 20px 90px;
  }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .band-teal, .band-navy {
    clip-path: polygon(0 4px, 100% 0, 100% 100%, 0 100%);
  }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-card { padding: 28px 20px; clip-path: none; box-shadow: 3px 3px 0 var(--navy-dark); }
  .card { clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%); }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.9rem; }
}

/* --- Skip link --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto; height: auto;
  background: var(--amber);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 9999;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
