/* Radius Anesthesia of Michigan -- Great Lakes steel & cherry red theme */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@600;700;800;900&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --color-steel: #3c4a56;
  --color-steel-deep: #2a3540;
  --color-steel-darker: #1b232b;
  --color-cherry: #9e3a3a;
  --color-cherry-light: #c25656;
  --color-mist: #eef1f3;
  --color-mist-deep: #e0e6e9;
  --color-paper: #fbfcfd;
  --color-ink: #1f262c;
  --color-muted: #5b6670;
  --color-border: #d8dee2;
  --shadow-card: 0 10px 26px rgba(27, 35, 43, 0.08);
  --shadow-card-hover: 0 18px 40px rgba(27, 35, 43, 0.14);
  --shadow-soft: 0 30px 60px rgba(27, 35, 43, 0.3);
  --radius-lg: 10px;
  --radius-md: 8px;
  --radius-pill: 999px;
  --max-width: 1180px;
  --font-display: "Source Serif 4", "Georgia", serif;
  --font-base: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-steel); text-decoration: none; }
a:hover { color: var(--color-steel-deep); }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 26px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-steel-deep);
  margin: 0 0 18px;
}

h1 { font-size: clamp(2.5rem, 4.8vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.14rem; font-weight: 700; }

p { margin: 0 0 16px; color: var(--color-muted); }

.section { padding: 108px 0; position: relative; }
.section--light { background: var(--color-mist); }
.section--steel { background: linear-gradient(160deg, var(--color-steel-deep) 0%, var(--color-steel-darker) 100%); color: #fff; }
.section--steel h2, .section--steel h4 { color: #fff; }
.section--steel p { color: #cfd6db; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-cherry);
  margin-bottom: 16px;
}
.section-eyebrow::after { content: ""; width: 36px; height: 2px; background: var(--color-cherry); display: inline-block; }
.section--steel .section-eyebrow { color: var(--color-cherry-light); }
.section--steel .section-eyebrow::after { background: var(--color-cherry-light); }
.section-head { max-width: 700px; margin: 0 auto 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-eyebrow::after { display: none; }
.section-head.center .section-eyebrow { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary { background: var(--color-cherry); color: #fff; box-shadow: 0 14px 30px rgba(158, 58, 58, 0.32); }
.btn-primary:hover { background: var(--color-cherry-light); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(158, 58, 58, 0.4); }
.btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; background: rgba(255,255,255,0.06); }
.btn-outline:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 253, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 86px; flex-wrap: wrap; gap: 14px; }
.site-header__logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--color-steel-deep); }
.site-header__logo img { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.site-nav a { position: relative; color: var(--color-ink); font-weight: 600; font-size: 0.92rem; padding: 4px 0; }
.site-nav a:hover { color: var(--color-steel); }
.site-nav a.active { color: var(--color-steel); border-bottom: 2px solid var(--color-cherry); }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.btn-sm { padding: 11px 22px; font-size: 0.84rem; }
.btn-secondary { background: transparent; color: var(--color-steel-deep); border-color: var(--color-border); }
.btn-secondary:hover { background: var(--color-steel-deep); color: #fff; border-color: var(--color-steel-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-steel-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-color: var(--color-steel-darker);
}
.hero__bg {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 120%;
  background-image:
    linear-gradient(125deg, rgba(27, 35, 43, 0.92) 0%, rgba(42, 53, 64, 0.86) 45%, rgba(60, 74, 86, 0.7) 100%),
    url("https://radiusmichigan.com/wp-content/uploads/2019/07/Ordinary-busy-day-of-surgeon-640076010_7360x4912-scaled.jpeg");
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero .container { position: relative; padding: 168px 26px 140px; }
.hero__inner { max-width: 680px; }
.hero__kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-cherry-light); margin-bottom: 24px; }
.hero__kicker::before { content: ""; width: 28px; height: 2px; background: var(--color-cherry-light); display: inline-block; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h5 { color: #e3e7ea; font-weight: 400; font-size: 1.18rem; max-width: 560px; margin-bottom: 40px; line-height: 1.6; font-family: var(--font-base); }
.hero p.lede { color: #e3e7ea; font-weight: 400; font-size: 1.18rem; max-width: 560px; margin-bottom: 40px; line-height: 1.6; font-family: var(--font-base); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.hero__badges span { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 600; color: #e3e7ea; }
.hero__badges span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--color-cherry-light); flex: none; }

/* About -- vertical trail-line accordion */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 360px; background-image: linear-gradient(160deg, rgba(27,35,43,0.35), rgba(27,35,43,0.55)), url("https://radiusmichigan.com/wp-content/uploads/2018/10/Detroit-Skyline-Long-Exposure-at-Dusk-803577472_5760x3166-1.jpg"); background-size: cover; background-position: center; }

.about-trail { position: relative; }
.about-trail__item { position: relative; padding-left: 34px; padding-bottom: 6px; margin-left: 9px; }
.about-trail__item::before { content: ""; position: absolute; left: -2px; top: 0; bottom: 0; width: 2px; background: var(--color-border); transform: scaleY(0); transform-origin: top; transition: transform 0.7s ease; }
.about-trail__item:last-child::before { background: transparent; }
.about-grid.is-visible .about-trail__item::before { transform: scaleY(1); }
.about-trail__item:nth-child(2)::before { transition-delay: 0.1s; }
.about-trail__item:nth-child(3)::before { transition-delay: 0.2s; }
.about-trail__item:nth-child(4)::before { transition-delay: 0.3s; }
.about-trail__item:nth-child(5)::before { transition-delay: 0.4s; }
.about-trail__dot { position: absolute; left: -9px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--color-paper); border: 2px solid var(--color-cherry); transition: background 0.2s ease; }
.about-trail__item.is-open .about-trail__dot { background: var(--color-cherry); animation: about-trail-dot-pulse 0.45s ease-out; }
@keyframes about-trail-dot-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.45); }
  100% { transform: scale(1); }
}
.about-trail__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-steel-deep);
}
.about-trail__toggle::after { content: "+"; margin-left: auto; font-size: 1.3rem; color: var(--color-cherry); font-family: var(--font-base); line-height: 1; flex: none; }
.about-trail__item.is-open .about-trail__toggle::after { content: "\2212"; }
.about-trail__body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s ease, opacity 0.35s ease 0.05s; }
.about-trail__item.is-open .about-trail__body { max-height: 480px; opacity: 1; }
.about-trail__body p { font-size: 1rem; padding-bottom: 26px; margin: 0; }

/* Services -- icon-tab selector with shared content panel */
.service-select { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.service-select.reveal { transform: none; }
.service-select__tabs { display: flex; flex-direction: column; gap: 8px; }
.service-select__tab {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-base);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.service-select__tab:hover, .service-select__tab:focus-visible { border-color: var(--color-cherry-light); transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.service-select__tab.is-active { background: var(--color-steel-deep); border-color: var(--color-steel-deep); }
.service-select__tab-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--color-mist-deep); color: var(--color-cherry); font-weight: 800; font-family: var(--font-display); font-size: 0.92rem; transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease; }
.service-select__tab.is-active .service-select__tab-num { background: var(--color-cherry); color: #fff; transform: scale(1.12); }
.service-select__tab-label { font-weight: 700; color: var(--color-steel-deep); font-size: 1rem; }
.service-select__tab.is-active .service-select__tab-label { color: #fff; }
.service-select__panel {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  min-height: 220px;
  position: relative;
  transition: height 0.3s ease;
}
.service-select__pane {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 38px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.service-select__pane.is-active { pointer-events: auto; z-index: 2; }
.service-select__pane.is-active.is-pane-visible { opacity: 1; }
.service-select__pane h4 { color: var(--color-steel-deep); margin-bottom: 14px; font-size: 1.3rem; }
.service-select__pane h3 { color: var(--color-steel-deep); margin-bottom: 14px; font-size: 1.3rem; }
.service-select__pane p { font-size: 1rem; margin: 0; }

/* Why us / advantage */
.advantage-band .section-head { max-width: 720px; margin-left: auto; margin-right: auto; }
.advantage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 52px; }
.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.advantage-card:hover, .advantage-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(194, 86, 86, 0.55);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}
.advantage-card::before { content: ""; position: absolute; top: 0; left: 32px; width: 36px; height: 3px; background: var(--color-cherry-light); }
.advantage-card h4, .advantage-card h3 { color: #fff; margin: 18px 0 14px; font-size: 1.18rem; }
.advantage-card p { color: #cfd6db; font-size: 0.98rem; margin: 0; }
@media (max-width: 760px) {
  .advantage-grid { grid-template-columns: 1fr; }
}
.advantage-band p { color: #dde3e6; }

/* Team -- single-column roster list with inline toggle */
.roster { display: flex; flex-direction: column; border-top: 1px solid var(--color-border); margin-top: 50px; max-width: 880px; margin-left: auto; margin-right: auto; }
.roster__item { border-bottom: 1px solid var(--color-border); }
.roster__row {
  display: grid;
  grid-template-columns: 220px 1fr 24px;
  align-items: center;
  gap: 24px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--font-base);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.roster__row:hover, .roster__row:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.roster__name-block { display: flex; flex-direction: column; gap: 4px; }
.roster__name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--color-steel-deep); }
.roster__role { color: var(--color-cherry); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.roster__preview { color: var(--color-muted); font-size: 0.92rem; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.roster__item.is-open .roster__preview { display: none; }
.roster__chevron { position: relative; width: 24px; height: 24px; flex: none; }
.roster__chevron::before, .roster__chevron::after { content: ""; position: absolute; background: var(--color-cherry); border-radius: 2px; }
.roster__chevron::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.roster__chevron::after { width: 2px; height: 14px; top: 5px; left: 11px; transition: transform 0.2s ease; }
.roster__item.is-open .roster__chevron::after { transform: rotate(90deg); }
.roster__bio { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s ease, opacity 0.35s ease 0.05s; }
.roster__item.is-open .roster__bio { max-height: 420px; opacity: 1; }
.roster__bio p { font-size: 0.95rem; padding: 0 4px 26px; margin: 0; color: var(--color-muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-intro { color: #dde3e6; margin-bottom: 24px; }
.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-card__label {
  display: block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--color-cherry-light); margin-bottom: 10px;
}
.contact-topic-select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-md); margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff;
  font-family: var(--font-base); font-size: 0.95rem;
}
.contact-topic-select option { color: var(--color-ink); }
.contact-form { opacity: 0; transform: translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease; }
.contact-form.contact-form--visible { opacity: 1; transform: translateY(0); }
.contact-form__title { color: #fff; font-size: 1.1rem; margin: 26px 0 18px; }
.contact-form label {
  display: block; color: #dde3e6; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px;
}
.contact-form label .req { color: var(--color-cherry-light); margin-left: 3px; }
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  display: block; width: 100%; margin-top: 8px; padding: 12px 14px;
  border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08); color: #fff; font-family: var(--font-base);
  font-size: 0.95rem; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #aab2b9; }
.contact-form input[type="file"] { margin-top: 8px; color: #dde3e6; font-size: 0.85rem; }
.contact-form__consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
.contact-form__consent input { margin-top: 3px; flex: none; }
.contact-form__consent a { color: var(--color-cherry-light); font-weight: 600; }
.contact-form__placeholder { color: #aab2b9; font-size: 0.9rem; margin: 8px 0 0; }
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 42px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item h4 { font-size: 0.92rem; color: var(--color-cherry-light); margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-item h3 { font-size: 0.92rem; color: var(--color-cherry-light); margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-item p { margin: 0; color: #dde3e6; }
.contact-info-item a { color: #fff; font-weight: 600; }
.contact-info-item a:hover { color: var(--color-cherry-light); }

/* Footer */
.site-footer { background: var(--color-steel-darker); color: #c4cbd1; padding: 64px 0 28px; }
.site-footer .container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 28px; }
.site-footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; color: #fff; }
.site-footer__social { display: flex; gap: 14px; margin-top: 18px; }
.site-footer__social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; transition: background 0.2s ease; }
.site-footer__social a:hover { background: var(--color-cherry); }
.site-footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 36px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: #9fa7ad;
}
.site-footer__bottom a { color: #c4cbd1; }
.site-footer__bottom a:hover { color: #fff; }

/* Page hero */
.page-hero { background: linear-gradient(160deg, var(--color-steel-deep), var(--color-steel-darker)); color: #fff; padding: 100px 0 70px; text-align: center; }
.page-hero h1 { color: #fff; margin: 0; }

/* Blog */
.blog-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-cherry);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 34px;
}
.blog-disclaimer__icon { color: var(--color-cherry); flex-shrink: 0; margin-top: 2px; }
.blog-disclaimer__text {
  flex: 1;
  min-width: 0;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-muted);
  text-align: justify;
  text-align-last: left;
  margin: 0;
}
.blog-disclaimer__text a { color: var(--color-cherry); font-weight: 700; text-decoration: underline; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.blog-card__cover-link { display: flex; flex-direction: column; flex: 1; color: inherit; }
.blog-card__cover-link:hover { color: inherit; }
.blog-card__img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; }
.blog-card__body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__date { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; color: var(--color-steel); text-transform: uppercase; }
.blog-card__title { font-size: 1.1rem; margin: 0; }
.blog-card__excerpt { font-size: 0.92rem; margin: 0; flex: 1; color: var(--color-muted); }
.blog-card__link { font-weight: 700; font-size: 0.88rem; color: var(--color-steel); }

/* Post prev/next nav */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--color-border); }
.post-nav__link {
  display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--color-border); background: var(--color-mist);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.post-nav__link:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.post-nav__link--next { text-align: right; align-items: flex-end; }
.post-nav__link--empty { visibility: hidden; }
.post-nav__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-cherry); }
.post-nav__title { font-family: var(--font-display); font-weight: 700; color: var(--color-steel-deep); font-size: 1rem; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination a, .pagination span {
  padding: 11px 18px; border-radius: var(--radius-pill); border: 1px solid var(--color-border);
  font-weight: 700; font-size: 0.88rem; color: var(--color-ink);
}
.pagination a:hover { background: var(--color-mist-deep); }
.pagination .current { background: var(--color-steel-deep); color: #fff; border-color: var(--color-steel-deep); }

/* Legal content */
.legal-content h2 { margin-top: 44px; font-size: 1.3rem; }
.legal-content h3, .legal-content h5 { margin-top: 28px; font-size: 1.08rem; color: var(--color-steel-deep); }
.legal-content p, .legal-content li { color: var(--color-muted); font-size: 0.97rem; }
.legal-content ul { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }

/* Single post */
.post-hero-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); margin-bottom: 36px; }
.post-meta { color: var(--color-steel); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.post-content { max-width: 740px; margin: 0 auto; }
.post-content p { color: var(--color-ink); font-size: 1.05rem; }
.post-back { display: inline-block; margin-bottom: 28px; font-weight: 700; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.38s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.44s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .blog-card, .post-nav__link { transition: none; }
  .about-trail__body, .service-select__pane, .roster__bio, .service-select__panel { transition: none; }
  .about-trail__body, .roster__bio { opacity: 1; }
  .service-select__pane.is-active { opacity: 1; }
  .about-trail__item::before { transition: none; transform: scaleY(1); }
  .contact-form { transition: none; }
  .hero__bg { transform: none !important; }
  .service-select__tab, .service-select__tab-num, .roster__row { transition: none; }
  .service-select__tab:hover, .service-select__tab:focus-visible, .roster__row:hover, .roster__row:focus-visible { transform: none; box-shadow: none; }
  .service-select__tab.is-active .service-select__tab-num { transform: none; }
  .about-trail__item.is-open .about-trail__dot { animation: none; }
  .advantage-card { transition: none; }
  .advantage-card:hover, .advantage-card:focus-within { transform: none; box-shadow: none; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { display: none; }
  .service-select { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; order: 3; }
  .site-header .container { position: relative; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card-hover);
    padding: 10px 26px 18px;
    z-index: 99;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--color-border); }
  .site-nav a.active { border-bottom: 1px solid var(--color-cherry); }
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav__link--next { text-align: left; align-items: flex-start; }
  .section { padding: 72px 0; }
  .hero .container { padding: 130px 22px 90px; }
  .roster__row { grid-template-columns: 1fr 24px; }
  .roster__preview { display: none; }
  .service-select__pane { padding: 28px 24px; }
}
