/* ========================================================
   DYNFX — Shared Design System
   ========================================================
   Editorial / luxury automotive aesthetic.
   Dark, warm, refined. Serif display + clean sans body.
   Place at /css/dynfx.css
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..900,0..100&family=Geist:wght@300..700&family=Geist+Mono:wght@400..600&display=swap');

:root {
  /* Colors */
  --bg: #0a0908;
  --bg-elevated: #14110e;
  --surface: #1a1714;
  --border: #2a2620;
  --border-strong: #3d3830;

  --text: #f5f0e8;
  --text-muted: #a8a094;
  --text-dim: #6b665d;

  --accent: #c9762d;
  --accent-soft: #d99a5a;
  --accent-dim: rgba(201, 118, 45, 0.15);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', monospace;

  /* Layout */
  --max-w: 1280px;
  --max-w-prose: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Misc */
  --radius: 4px;
  --transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent-soft);
}

/* ====================== TYPE ====================== */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.eyebrow--accent { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--text);
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 650;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 550;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 14, 'SOFT' 30;
}

p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 60ch;
}

p strong, .text-primary {
  color: var(--text);
  font-weight: 500;
}

.lead {
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  line-height: 1.55;
  color: var(--text);
  max-width: 50ch;
  font-weight: 350;
}

/* ====================== LAYOUT ====================== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 960px;
}

.container--prose {
  max-width: var(--max-w-prose);
}

section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================== NAV ====================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo img {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  background: var(--accent);
  color: var(--bg);
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.nav__cta:hover {
  background: var(--accent-soft);
  color: var(--bg);
}

.nav__mobile {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 800px) {
  .nav__links { display: none; }
  .nav__mobile { display: block; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-elevated);
    padding: 1.5rem var(--gutter);
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    align-items: flex-start;
  }
}

/* ====================== BUTTONS ====================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--accent-soft);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

/* ====================== HERO ====================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding-top: 6rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 8, 0.4) 0%,
    rgba(10, 9, 8, 0.6) 60%,
    rgba(10, 9, 8, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__eyebrow::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}

.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 350;
}

.hero__lead {
  margin-bottom: 2.5rem;
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ====================== TRUST BAR ====================== */

.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--bg-elevated);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 800px) {
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-bar__item strong {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

.trust-bar__item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ====================== SECTION HEADER ====================== */

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 60ch;
}

.section-header__eyebrow {
  margin-bottom: 1.25rem;
  display: inline-block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header h2 em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 350;
}

/* ====================== SERVICE CARDS / TIERS ====================== */

.tier {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tier:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.tier--featured {
  border-color: var(--accent);
}

.tier__badge {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.tier__eyebrow {
  margin-bottom: 0.75rem;
}

.tier h3 {
  margin-bottom: 0.75rem;
}

.tier__desc {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.tier__features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.tier__features li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.tier__features li::before {
  content: '+';
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
  flex-shrink: 0;
}

.tier__features li:last-child {
  border-bottom: none;
}

.tier__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
}

.tier__meta dt {
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.6875rem;
  margin-bottom: 0.25rem;
}

.tier__meta dd {
  color: var(--text);
  font-weight: 500;
}

.tier__photo {
  display: block;
  width: calc(100% + 2 * clamp(1.75rem, 3vw, 2.5rem));
  margin: calc(-1 * clamp(1.75rem, 3vw, 2.5rem)) calc(-1 * clamp(1.75rem, 3vw, 2.5rem)) clamp(1.5rem, 2.5vw, 2rem);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  background: #ededed;
  border-bottom: 1px solid var(--border);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

/* ====================== TINT PICKER ====================== */

.tint-picker {
  --tint-alpha: 0.62;
}

.tint-picker__stage {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, #ffffff 0%, #f0ebe0 55%, #d9d2c2 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  margin: 2.5rem auto 1.5rem;
  max-width: 980px;
  overflow: hidden;
  box-shadow:
    0 24px 48px -16px rgba(0, 0, 0, 0.45),
    0 6px 16px -4px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.tint-picker__readout {
  position: absolute;
  top: clamp(0.875rem, 2.2vw, 1.5rem);
  left: clamp(0.875rem, 2.2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  pointer-events: none;
  line-height: 1;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(0.875rem, 2vw, 1.25rem);
  background: linear-gradient(135deg, rgba(10, 9, 8, 0.78), rgba(10, 9, 8, 0.6));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tint-picker__readout-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 0.4rem;
}

.tint-picker__readout-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.tint-picker__readout-suffix {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 0.4rem;
}

.tint-picker__canvas {
  width: 100%;
  margin: 0;
  padding: 0;
}

.tint-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1d22;
}

.tint-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tint-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.tint-window {
  fill: #000;
  fill-opacity: var(--tint-alpha, 0.62);
  transition: fill-opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.tint-picker__shades {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.5rem, 1.2vw, 0.875rem);
  max-width: 900px;
  margin: 0 auto 2rem;
}

@media (max-width: 720px) {
  .tint-picker__shades {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tint-shade {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.875rem 0.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  min-height: 58px;
}

.tint-shade:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.tint-shade:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tint-shade.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

.tint-shade__num {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
}

.tint-picker__note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

.tint-picker__note strong {
  color: var(--text);
  font-weight: 600;
}

.tint-picker__note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.tint-picker__note a:hover {
  color: var(--accent-soft);
}

/* ====================== WHY DYNFX ====================== */

.why-dynfx {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-dynfx__intro {
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.why-dynfx__intro p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.why-dynfx__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 800px) {
  .why-dynfx__pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pillar h4 {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
}

.pillar p {
  font-size: 0.9375rem;
}

.credentials-bar {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

.credential img {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

/* ====================== FAQ ====================== */

.faq {
  list-style: none;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item summary {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 500;
  list-style: none;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  color: var(--accent-soft);
}

.faq__answer {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 65ch;
}

/* ====================== CTA BLOCK ====================== */

.cta-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-radius: var(--radius);
  text-align: center;
}

.cta-block h2 {
  margin-bottom: 1.25rem;
}

.cta-block p {
  max-width: 50ch;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}

.cta-block .btn {
  margin: 0 0.25rem;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-top: 1rem;
}

.cta-phone:hover {
  color: var(--accent-soft);
}

/* ====================== BREADCRUMB ====================== */

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span {
  color: var(--accent);
  margin: 0 0.5rem;
}

/* ====================== FOOTER ====================== */

.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer__logo img {
  height: 32px;
  margin-bottom: 1.5rem;
}

.footer__about {
  font-size: 0.9375rem;
  max-width: 36ch;
  color: var(--text-muted);
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__list a {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footer__list a:hover {
  color: var(--text);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.footer__creds {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer__creds a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__creds img {
  height: 24px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer__creds a:hover img {
  opacity: 1;
}

/* ====================== UTILITIES ====================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.accent { color: var(--accent); }
.serif { font-family: var(--font-display); }
.mono { font-family: var(--font-mono); }

/* ====================== PROSE / BLOG ====================== */

.prose {
  max-width: var(--max-w-prose);
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.prose p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  max-width: none;
}

.prose p strong {
  color: var(--text);
}

.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.prose ul li, .prose ol li {
  margin-bottom: 0.625rem;
  font-size: 1.0625rem;
}

.prose ul {
  list-style: none;
  padding-left: 0;
}

.prose ul li {
  padding-left: 1.5rem;
  position: relative;
}

.prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.prose hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

.prose em {
  color: var(--accent-soft);
  font-family: var(--font-display);
  font-style: italic;
}

.prose a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
}

.prose a:hover {
  color: var(--accent-soft);
  border-bottom-color: var(--accent-soft);
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.post-meta__category {
  color: var(--accent);
}

.post-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 6rem;
}

.post-header h1 {
  max-width: 24ch;
  margin: 0 auto 1.5rem;
}

.post-header .lead {
  margin: 0 auto;
}

/* ====================== BLOG INDEX ====================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 800px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blog-card {
  display: block;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--text);
}

.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  color: var(--text);
}

.blog-card__meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-card p {
  font-size: 0.9375rem;
  margin: 0;
}

/* ====================== ANIMATIONS ====================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content > * {
  animation: fadeUp 800ms ease-out backwards;
}

.hero__eyebrow { animation-delay: 100ms; }
.hero h1 { animation-delay: 200ms; }
.hero__lead { animation-delay: 400ms; }
.hero__actions { animation-delay: 600ms; }

/* ====================== ABOUT/STATS ====================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 800px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 350;
  color: var(--accent-soft);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 0.125rem;
}

.stat__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ====================== AREAS LIST ====================== */

.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
}

@media (max-width: 800px) {
  .areas-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.areas-list li {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  transition: all var(--transition);
}

.areas-list li:hover,
.areas-list a:hover li {
  border-color: var(--border-strong);
  color: var(--text);
}

.areas-list a {
  display: block;
  color: inherit;
}

/* ====================== GALLERY ====================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: opacity var(--transition);
}

.gallery img:hover {
  opacity: 0.85;
}

/* ====================== FORM ====================== */

.form {
  display: grid;
  gap: 1.25rem;
}

.form__field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form__field textarea {
  min-height: 100px;
  resize: vertical;
}

/* ====================== REVIEWS WIDGET CONTAINER ====================== */

.reviews-widget-anchor {
  /* Trustindex widget injects content here; container provides spacing only */
  min-height: 100px;
}
