:root {
  --navy: #142E4C;
  --navy-dark: #0E2038;
  --navy-light: #1B3D63;
  --orange: #C14721;
  --orange-hover: #A83B1B;
  --gray: #B3B3B3;
  --gray-light: #E5E5E5;
  --gray-bg: #F5F5F5;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --muted: #666;
  --font-brand: 'Questrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hover); }

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

/* ============ Header ============ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo img { height: 38px; width: auto; }
.site-logo .location {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav a:hover { color: var(--orange); }
.nav .nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
}
.nav .nav-cta:hover { background: var(--orange-hover); color: var(--white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============ Hero ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 100px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero .btn-primary { font-size: 14px; padding: 16px 32px; }

/* ============ Buttons ============ */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-hover); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ============ Sections ============ */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title .eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.5px;
}

/* ============ Services grid ============ */
.services { background: var(--gray-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: 6px;
  text-align: center;
  border-top: 3px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(20,46,76,0.08);
}
.service-card h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card p { color: var(--muted); font-size: 15px; }

/* ============ About / split ============ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split h2 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-split p { color: var(--text); font-size: 17px; margin-bottom: 16px; }
.about-image {
  background: var(--navy);
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ============ Story (Est. 2020 band) ============ */
.story-section { padding-top: 0; padding-bottom: 80px; }
.story-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 40px;
  background: var(--gray-bg);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  align-items: center;
}
.story-stat {
  text-align: center;
  padding-right: 32px;
  border-right: 1px solid var(--gray-light);
}
.story-stat-label {
  display: block;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.story-stat-number {
  display: block;
  color: var(--navy);
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
}
.story-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.story-body p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 24px;
  }
  .story-stat {
    border-right: none;
    border-bottom: 1px solid var(--gray-light);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .story-stat-number { font-size: 48px; }
}

/* ============ Conditions ============ */
.conditions { background: var(--gray-bg); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.condition-card {
  background: var(--white);
  padding: 28px;
  border-radius: 6px;
  border-left: 4px solid var(--orange);
}
.condition-card h3 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.condition-card ul { list-style: none; }
.condition-card li {
  color: var(--text);
  padding: 4px 0;
  font-size: 15px;
}
.condition-card li::before {
  content: '— ';
  color: var(--orange);
}

/* ============ Team grid ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
}
.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 20px;
  border: 3px solid var(--gray-light);
}
.team-card .team-body { padding: 24px; }
.team-card h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.team-card .credentials {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-card p { color: var(--text); font-size: 15px; text-align: left; margin-bottom: 14px; line-height: 1.6; }
.team-card p:last-of-type { margin-bottom: 20px; }
.team-card:only-child { max-width: 760px; margin: 0 auto; }

.cert-heading {
  color: var(--navy);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
  text-align: left;
}
.cert-list { list-style: none; text-align: left; }
.cert-list li {
  color: var(--text);
  padding: 4px 0;
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}
.cert-list li::before {
  content: '—';
  color: var(--orange);
  position: absolute;
  left: 0;
}

/* ============ CTA band ============ */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 17px;
}

/* ============ Testimonials ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: 6px;
  border: 1px solid var(--gray-light);
}
.testimonial .stars { color: var(--orange); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial cite {
  display: block;
  font-style: normal;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ============ Contact ============ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "info form"
    "info faq";
  gap: 32px 60px;
  align-items: start;
}
.contact-info { grid-area: info; }
.contact-form { grid-area: form; }
.faq-block { grid-area: faq; }
.contact-info h3 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 24px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info a { font-size: 17px; color: var(--text); }
.contact-info a:hover { color: var(--orange); }
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--gray-light);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--muted); }

.contact-form {
  background: var(--gray-bg);
  padding: 28px;
  border-radius: 6px;
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-family: var(--font-brand);
  font-size: 15px;
  background: var(--white);
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(20,46,76,0.12);
}
.contact-form textarea { min-height: 96px; resize: vertical; }
.contact-form button:disabled { opacity: 0.65; cursor: progress; }

/* Honeypot — hidden from people, visible to bots */
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.form-error {
  font-size: 13px;
  color: var(--orange-hover);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-error a { color: var(--orange-hover); text-decoration: underline; }

.form-success {
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 36px 30px;
  text-align: center;
}
.form-success h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ Map (inside contact-info column) ============ */
.location-note {
  background: #FFF6F0;
  border-left: 4px solid var(--orange);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.location-note strong { color: var(--navy); }

.map-link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--gray-light);
  line-height: 0;
}
.location-map {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.map-link:hover .location-map { transform: scale(1.03); }

.map-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-brand);
}

/* ============ FAQ (right column, under the form) ============ */
.faq-block-title {
  color: var(--navy);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.faq-item {
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item[open] {
  border-color: var(--orange);
  background: var(--white);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding-right: 46px;
  user-select: none;
  line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--orange); }
.faq-answer {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--gray-light);
}
.faq-answer p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}
.faq-answer a { color: var(--orange); }
.faq-answer a:hover { text-decoration: underline; }

/* ============ Body Map (What We Treat) ============ */
.bodymap-intro {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
}
.bodymap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
.bodymap-figure {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-svg {
  width: 100%;
  max-width: 248px;
  height: auto;
  display: block;
  overflow: visible;
}
.body-silhouette path,
.body-silhouette circle {
  fill: #DCE2E9;
}
.hotspot { cursor: pointer; }
.hotspot-hit { fill: transparent; }
.hotspot-dot {
  fill: var(--navy);
  stroke: #fff;
  stroke-width: 3;
  transition: fill 0.15s;
}
.hotspot-ring {
  fill: var(--orange);
  transform-origin: center;
  transform-box: fill-box;
  animation: hotspotPulse 2.6s ease-out infinite;
}
@keyframes hotspotPulse {
  0% { transform: scale(1); opacity: 0.55; }
  70%, 100% { transform: scale(2.6); opacity: 0; }
}
.hotspot:hover .hotspot-dot { fill: var(--orange); }
.hotspot.active .hotspot-dot { fill: var(--orange); }
.hotspot.active .hotspot-ring { animation: none; opacity: 0; }
.hotspot:focus-visible { outline: none; }
.hotspot:focus-visible .hotspot-dot { stroke: var(--orange); stroke-width: 4; }

.bodymap-panel {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 32px 34px;
}
.panel-eyebrow {
  display: block;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.panel-title {
  color: var(--navy);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
.panel-label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-light);
}
.panel-conditions {
  list-style: none;
  margin-bottom: 22px;
}
.panel-conditions li {
  font-size: 15px;
  color: var(--text);
  padding: 4px 0 4px 18px;
  position: relative;
}
.panel-conditions li::before {
  content: '—';
  color: var(--orange);
  position: absolute;
  left: 0;
}
.panel-help {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
}
.panel-cta { display: inline-block; }

/* Performance callout */
.performance-callout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 56px auto 0;
  background: var(--navy);
  border-radius: 8px;
  padding: 40px;
  align-items: center;
}
.performance-eyebrow {
  display: block;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.performance-text h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
}
.performance-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}
.performance-list { list-style: none; }
.performance-list li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.performance-list li:last-child { border-bottom: none; }
.performance-list li::before {
  content: '—';
  color: var(--orange);
  position: absolute;
  left: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hotspot-ring { animation: none; opacity: 0.4; }
}

@media (max-width: 760px) {
  .bodymap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bodymap-figure { padding: 20px; }
  .body-svg { max-width: 210px; }
  .bodymap-panel { padding: 28px 24px; }
  .performance-callout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
}

/* ============ Paddle page — Olympian testimonials ============ */
.testimonials-paddle { background: var(--gray-bg); }
.testimonials-paddle .section-title .eyebrow {
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 18px;
}
.testimonials-paddle .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.testimonial-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
}
.testimonial-body {
  padding: 26px 30px 30px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}
.testimonial-quote p { margin: 0 0 12px; }
.testimonial-quote p:last-child { margin-bottom: 0; }
.testimonial-attribution {
  font-size: 16px;
  color: var(--navy);
  font-weight: 400;
}
.testimonial-credential {
  display: block;
  margin-top: 6px;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .testimonials-paddle .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-body { padding: 22px 22px 26px; }
}

/* ============ Legal pages (Privacy, Accessibility) ============ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content .legal-effective {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.legal-content .legal-note {
  background: #FFF6F0;
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  border-radius: 4px;
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.legal-content h2 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 400;
  margin: 36px 0 14px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  color: var(--navy);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 24px 0 10px;
}
.legal-content p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content a { color: var(--orange); }
.legal-content a:hover { text-decoration: underline; }

/* ============ Blog ============ */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(20, 46, 76, 0.08);
  border-color: var(--orange);
}
.post-card a {
  color: inherit;
  display: block;
}
.post-card-body { padding: 26px 24px; }
.post-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.post-card h2 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.post-card .post-excerpt {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
}
.post-card .post-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* Single article */
.article {
  max-width: 720px;
  margin: 0 auto;
}
.article-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}
.article-header .post-tag { margin-bottom: 14px; }
.article-header h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.article-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.article-meta a { color: var(--navy); }
.article-meta .dot { margin: 0 8px; color: var(--gray); }

.article-body h2 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 38px 0 14px;
  line-height: 1.3;
}
.article-body h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 400;
  margin: 28px 0 10px;
}
.article-body p,
.article-body li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.article-body p { margin-bottom: 16px; }
.article-body ul,
.article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--orange); }
.article-body a:hover { text-decoration: underline; }
.article-body strong { color: var(--navy); }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  background: var(--gray-bg);
  padding: 16px 22px;
  border-radius: 4px;
  margin: 20px 0;
  font-style: italic;
}

.article-footer {
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-light);
  text-align: center;
}
.article-footer a {
  color: var(--orange);
  letter-spacing: 1px;
  font-size: 13px;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 24px;
  font-size: 14px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.site-footer h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 4px 0; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-legal a:hover { color: var(--orange); }
.footer-copy { color: rgba(255,255,255,0.5); }

/* ============ Page header (interior pages) ============ */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
  border-bottom: 3px solid var(--orange);
}
.page-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 1px;
}
.page-header .eyebrow {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .contact-split {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "info"
      "faq";
    gap: 36px;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  section { padding: 56px 20px; }
  .hero { padding: 60px 20px 80px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 16px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08); gap: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 24px; border-bottom: 1px solid var(--gray-light); }
  .nav .nav-cta { margin: 12px 24px; text-align: center; }
  .hamburger { display: block; }
  .header-inner { position: relative; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
