/* ===== Praxis am Ring – Landing page ===== */

:root {
  --green: #5e6c5b;
  --green-dark: #495447;
  --green-deep: #424d40;
  --beige: #f5f4f2;
  --beige-warm: #ece8e1;
  --sand: #d8d2c4;
  --ink: #2b2f2a;
  --muted: #6f756d;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--beige);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}

h1 em, h2 em {
  font-style: italic;
  color: var(--green);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(94, 108, 91, 0.28);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(94, 108, 91, 0.36);
}

.btn-ghost {
  color: var(--ink);
  border: 1.5px solid rgba(43, 47, 42, 0.25);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.text-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.text-link span { transition: transform 0.2s ease; display: inline-block; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1rem;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 242, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43, 47, 42, 0.07);
}

.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-name em { color: var(--green); }

.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 0.7rem 1.4rem; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1100px 600px at 85% -10%, var(--beige-warm) 0%, transparent 60%),
    var(--beige);
  overflow: hidden;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 2rem 5.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  border-top: 1px solid rgba(43, 47, 42, 0.12);
  padding-top: 1.6rem;
}

.hero-facts li,
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.92rem;
}

.fact-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green);
}

.hero-facts a {
  color: var(--ink);
  text-decoration: none;
}
.hero-facts a:hover { color: var(--green); }

/* Hero media composition */
.hero-media {
  position: relative;
  justify-self: end;
  width: min(460px, 100%);
}

.hero-arch {
  border-radius: 240px 240px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(43, 47, 42, 0.18);
  position: relative;
  z-index: 2;
}

.hero-arch img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0.35;
  z-index: 1;
}
.ring-1 { width: 180px; height: 180px; top: -40px; left: -60px; }
.ring-2 { width: 110px; height: 110px; bottom: 60px; right: -45px; opacity: 0.5; }

.hero-card {
  position: absolute;
  z-index: 3;
  bottom: -36px;
  left: -88px;
  width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 10px 12px;
  box-shadow: 0 20px 44px rgba(43, 47, 42, 0.2);
  transform: rotate(-3deg);
}

.hero-card img {
  border-radius: 12px;
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.hero-card figcaption {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  padding-top: 8px;
}

/* ===== Trust bar ===== */
.trustbar {
  background: var(--green);
  color: var(--beige);
}

.trustbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.trustbar .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(245, 244, 242, 0.5);
}

/* ===== Sections ===== */
.section { padding: 6rem 0; }

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-head h2,
.split-text h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

/* Split layout (Über uns, Kontakt) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(43, 47, 42, 0.14);
}

.split-text p { color: var(--muted); margin-bottom: 1.2rem; }
.split-text h2 { margin-bottom: 1.4rem; }
.split-text .btn { margin-top: 0.6rem; }

/* ===== Services ===== */
.services { background: var(--white); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.service-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(43, 47, 42, 0.14);
}

.service-media {
  height: 320px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-media img { transform: scale(1.04); }

.service-body { padding: 2.2rem 2.4rem 2.6rem; }

.service-body h3 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.service-body p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1.4rem;
}

/* ===== Team ===== */
.team { background: var(--beige); }

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

.team-photo {
  border-radius: 160px 160px var(--radius-md) var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.3rem;
}

.team-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img { transform: scale(1.05); }

.team-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.team-contact {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.team-contact:hover { text-decoration: underline; }

/* ===== Infos ===== */
.infos { background: var(--green); }

.infos .eyebrow { color: var(--sand); }
.infos h2 { color: var(--beige); }

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

.info-card {
  background: rgba(245, 244, 242, 0.07);
  border: 1px solid rgba(245, 244, 242, 0.16);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.info-card:hover {
  background: rgba(245, 244, 242, 0.13);
  transform: translateY(-4px);
}

.info-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--sand);
  display: block;
  margin-bottom: 1.1rem;
}

.info-card h3 {
  color: var(--beige);
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.info-card p {
  color: rgba(245, 244, 242, 0.78);
  font-size: 0.9rem;
}

/* ===== Location ===== */
.location { background: var(--white); }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.6rem 0 2rem;
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
}
.contact-list a:hover { color: var(--green); }

.map-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(43, 47, 42, 0.14);
}

.map-media iframe {
  width: 100%;
  height: 540px;
  border: 0;
  display: block;
}

.map-link {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(43, 47, 42, 0.2);
}
.map-link:hover { color: var(--green); }

/* ===== Footer ===== */
.footer {
  background: var(--green-deep, #424d40);
  background-color: #424d40;
  color: var(--beige);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
}

.footer-brand p {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: rgba(245, 244, 242, 0.75);
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--sand);
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: rgba(245, 244, 242, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(245, 244, 242, 0.14);
  padding: 1.4rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 244, 242, 0.55);
}

/* ===== Reveal animations (active only with JS, see script.js) ===== */
html.js .reveal, html.js .reveal-img {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal-img { transform: translateY(34px); }

html.js .reveal.visible, html.js .reveal-img.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .reveal-img {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
/* Collapse nav to hamburger before links get cramped (6 links + CTA need ~1100px) */
@media (max-width: 1080px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--beige);
    flex-direction: column;
    padding: 1.4rem 2rem 1.8rem;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(43, 47, 42, 0.08);
    box-shadow: 0 18px 30px rgba(43, 47, 42, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-media { justify-self: center; }
  .hero-card { left: -20px; }
  .split { grid-template-columns: 1fr; gap: 2.8rem; }
  .split-media img, .map-media iframe { height: 420px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 760px) {
  .nav-cta { display: none; }

  .section { padding: 4.2rem 0; }
  .hero-inner { padding: 3rem 1.4rem 4.5rem; }
  .section-inner { padding: 0 1.4rem; }
  .navbar-inner { padding: 0.75rem 1.4rem; }

  .hero-arch img { height: 440px; }
  .hero-card { width: 160px; bottom: -28px; }
  .hero-card img { height: 120px; }
  .hero-facts { gap: 1.3rem; }

  .service-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

/* ===================================================== */
/* ===== Subpage components ===== */

/* Page hero */
.page-hero {
  background:
    radial-gradient(900px 500px at 90% -10%, var(--beige-warm) 0%, transparent 60%),
    var(--beige);
  padding: 4.5rem 0 4rem;
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1.3rem;
}

.page-hero .lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.page-hero .hero-actions { margin: 1.8rem 0 0; }

.page-hero-media img {
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 0 26px 54px rgba(43, 47, 42, 0.16);
}

.page-hero-media.round-all img { border-radius: var(--radius-lg); }

/* Breadcrumb-ish kicker spacing */
.page-hero .eyebrow { margin-bottom: 0.9rem; }

/* Chip list */
.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip-list li {
  background: var(--white);
  border: 1px solid rgba(94, 108, 91, 0.25);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
}

.chip-list.on-green li {
  background: rgba(245, 244, 242, 0.08);
  border-color: rgba(245, 244, 242, 0.25);
  color: var(--beige);
}

/* Check list */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 13px;
  height: 7px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

.check-list.single { grid-template-columns: 1fr; }

/* Numbered steps */
.step-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-list li {
  counter-increment: step;
  position: relative;
  padding-left: 3.2rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.step-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green);
  font-size: 1.15rem;
}

/* Accordion */
.accordion {
  border-top: 1px solid rgba(43, 47, 42, 0.12);
}

.accordion details {
  border-bottom: 1px solid rgba(43, 47, 42, 0.12);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink);
  transition: color 0.2s ease;
}

.accordion summary:hover { color: var(--green); }

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

.accordion summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

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

.accordion .acc-body {
  padding: 0 0.2rem 1.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.acc-body p { margin-bottom: 0.8rem; }
.acc-body p:last-child { margin-bottom: 0; }

.acc-body ul {
  margin: 0.4rem 0 0.9rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Quote banner */
.quote-banner {
  background: var(--green);
  padding: 5.5rem 0;
}

.quote-banner blockquote {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--beige);
  text-align: center;
}

.quote-banner cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}

/* Feature rows (physio services) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.9rem;
  border: 1px solid rgba(43, 47, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(43, 47, 42, 0.1);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-card .feature-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green);
  display: block;
  margin-bottom: 0.9rem;
}

/* Team member blocks */
.member {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(43, 47, 42, 0.1);
}

.member:first-of-type { border-top: none; padding-top: 0; }

.member.flip { grid-template-columns: 1.15fr 0.85fr; }
.member.flip .member-photo { order: 2; }

.member-photo img {
  border-radius: 180px 180px var(--radius-md) var(--radius-md);
  width: 100%;
  max-width: 380px;
  height: 440px;
  object-fit: cover;
}

.member h2 { font-size: 1.9rem; margin-bottom: 0.3rem; }

.member .team-role { margin-bottom: 1.2rem; }

.member-bio { color: var(--muted); margin-bottom: 1.6rem; }

.member .accordion { margin-bottom: 1.6rem; }

.member .accordion summary { font-size: 1.05rem; padding: 1.05rem 0.2rem; }

.member-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.member-contact-row .btn { padding: 0.7rem 1.4rem; font-size: 0.88rem; }

/* Timeline inside accordions */
.timeline {
  list-style: none;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.9rem !important;
}

.timeline li { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; }

.timeline .when {
  font-weight: 600;
  color: var(--green);
  font-size: 0.85rem;
  padding-top: 0.1rem;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(43, 47, 42, 0.07);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(43, 47, 42, 0.1);
}

.contact-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.contact-card h3 { font-size: 1.2rem; margin-bottom: 0.1rem; }

.contact-card .team-role { margin-bottom: 0.5rem; }

.contact-card .lines {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
}

.contact-card .lines a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}
.contact-card .lines a:hover { text-decoration: underline; }

/* Prose (legal pages) */
.prose { max-width: 780px; }

.prose h2 {
  font-size: 1.6rem;
  margin: 2.6rem 0 0.9rem;
}

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

.prose p, .prose li { color: var(--muted); font-size: 0.97rem; }

.prose p { margin-bottom: 0.9rem; }

.prose ul {
  margin: 0.4rem 0 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.prose a { color: var(--green); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.gallery-grid img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* CTA band */
.cta-band {
  background: var(--beige-warm);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }

.cta-band p { color: var(--muted); max-width: 540px; margin: 0 auto 1.8rem; }

/* Nav active state */
.nav-links a.active { color: var(--green); }
.nav-links a.active::after { transform: scaleX(1); }

/* Subpage responsive */
@media (max-width: 1024px) {
  .page-hero .section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .member, .member.flip { grid-template-columns: 1fr; gap: 2rem; }
  .member.flip .member-photo { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .check-list { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 3rem 0; }
  .page-hero-media img { height: 360px; }
  .timeline li { grid-template-columns: 1fr; gap: 0.1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 240px; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}
