/* Mit viszel magaddal? — soft feminine spiritual one-pager */

:root {
  --rose-deep: #9a5d68;
  --rose: #c4848e;
  --rose-soft: #e8c4c8;
  --blush: #f3ddd9;
  --peach: #f6e6d9;
  --cream: #faf6f1;
  --sand: #ebe0d4;
  --mauve: #8f7384;
  --sage: #8a9a8c;
  --sage-soft: #c5d0c6;
  --ink: #3a2c32;
  --ink-soft: #5c4a52;
  --ink-muted: #7a6670;
  --white: #fffefb;
  --radius: 1.75rem;
  --radius-sm: 1rem;
  --radius-pill: 999px;
  --shadow: 0 18px 50px rgba(90, 55, 70, 0.1);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(232, 196, 200, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 15%, rgba(197, 208, 198, 0.45), transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(246, 230, 217, 0.7), transparent 55%),
    linear-gradient(165deg, #f8ece8 0%, var(--cream) 35%, #f0e8ef 70%, #e9efe9 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.125rem;
  max-width: 38rem;
}

.slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--mauve);
  letter-spacing: 0.02em;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(90, 55, 70, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.logo span {
  color: var(--rose-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--rose-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white) !important;
  font-weight: 500;
  box-shadow: 0 8px 22px rgba(154, 93, 104, 0.28);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  transform: translate(-50%, -7px);
}

.nav-toggle span::after {
  transform: translate(-50%, 5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d498a0, var(--rose-deep));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(154, 93, 104, 0.32);
}

.btn-ghost {
  background: rgba(255, 254, 251, 0.65);
  color: var(--ink);
  border: 1px solid rgba(154, 93, 104, 0.22);
  backdrop-filter: blur(8px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  position: relative;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head p {
  margin-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 0px);
  min-height: 100dvh;
  padding-top: var(--header-h);
  overflow: hidden;
  background: #fdf8f3;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 0.95fr);
  min-height: calc(100dvh - var(--header-h));
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem);
  max-width: 40rem;
  animation: fadeUp 1s var(--ease) both;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(176, 148, 110, 0.28);
  pointer-events: none;
  z-index: 0;
}

.hero-copy::before {
  width: min(640px, 70vw);
  height: min(640px, 70vw);
  right: 20%;
  bottom: 36%;
}

.hero-copy::after {
  width: min(400px, 48vw);
  height: min(400px, 48vw);
  right: 36%;
  bottom: 44%;
  border-color: rgba(176, 148, 110, 0.18);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin: 0;
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a56b6d;
  line-height: 1.45;
  max-width: 34rem;
}

.hero-rule {
  display: block;
  width: 4.5rem;
  height: 1px;
  margin: 0.85rem 0 1.15rem;
  background: #a56b6d;
}

.hero-copy h1 {
  margin: 0 0 0.85rem;
  color: #2f2a28;
  font-size: clamp(3.12rem, 7.15vw, 4.875rem);
  line-height: 1.08;
  text-shadow: none;
}

.hero-slogan {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: normal;
  font-size: clamp(0.9rem, 1.44vw, 1.035rem);
  color: #3a3532;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: #5a534e;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.65;
}

.btn-hero {
  align-self: flex-start;
  gap: 0.55rem;
  padding: 0.95rem 1.45rem;
  border-radius: 0.55rem;
  background: #848971;
  color: #fffefb;
  box-shadow: 0 10px 28px rgba(100, 105, 80, 0.22);
  font-weight: 500;
}

.btn-hero:hover {
  background: #73785f;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-top-left-radius: 70% 100%;
  border-bottom-left-radius: 70% 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  min-height: calc(100dvh - var(--header-h));
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translateY(0);
  }
  to {
    transform: scale(1.07) translateY(-1.2%);
  }
}

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

/* Cards / rounded forms */
.soft-panel {
  background: rgba(255, 254, 251, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: clamp(1.4rem, 3vw, 2rem);
}

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

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

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

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(196, 132, 142, 0.14);
  color: var(--rose-deep);
  font-size: 0.9rem;
}

.movement-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.movement-num {
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--rose-soft), var(--blush));
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.form-card {
  text-align: center;
  padding: 1.4rem 1rem;
  transition: transform 0.3s var(--ease);
}

.form-card:hover {
  transform: translateY(-4px);
}

.form-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--peach), var(--sage-soft));
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.form-card p {
  font-size: 0.9rem;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split-media {
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(58, 44, 50, 0.18));
  pointer-events: none;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(143, 115, 132, 0.12);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--sage));
}

/* Leaders */
.leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.leader-card {
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.leader-photo {
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
  background: var(--sand);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}

.leader-card:hover .leader-photo img {
  transform: scale(1.04);
}

.leader-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.leader-role {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(143, 115, 132, 0.1);
  color: var(--mauve);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}

.social-chip:hover {
  background: rgba(154, 93, 104, 0.16);
  color: var(--rose-deep);
}

/* Timeline / practical */
.timeline {
  display: grid;
  gap: 0.75rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 254, 251, 0.55);
  border: 1px solid rgba(196, 132, 142, 0.12);
}

.timeline-item strong {
  color: var(--rose-deep);
  font-weight: 500;
  font-size: 0.95rem;
}

.timeline-item span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 0.25rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  background: linear-gradient(145deg, var(--blush), var(--rose-soft));
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.meta-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}

/* Closing band */
.closing {
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.closing-panel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.5rem);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(90, 55, 70, 0.72), rgba(154, 93, 104, 0.55)),
    url("../assets/soft-nature.jpg") center/cover;
  box-shadow: var(--shadow);
}

.closing-panel h2,
.closing-panel p,
.closing-panel .slogan {
  color: var(--white);
  margin-inline: auto;
}

.closing-panel .lead {
  max-width: 34rem;
  color: rgba(255, 254, 251, 0.9);
}

.closing-panel .btn-primary {
  background: var(--white);
  color: var(--rose-deep);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(143, 115, 132, 0.15);
  background: rgba(255, 254, 251, 0.45);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.container.footer-inner {
  margin: 0;
  width: auto;
  max-width: none;
  padding-left: clamp(1.5rem, 5vw, 4.5rem);
  padding-right: clamp(1.5rem, 5vw, 4.5rem);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  color: var(--rose-deep);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(143, 115, 132, 0.12);
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.footer-bottom > :last-child {
  text-align: right;
}

.footer-legal,
.footer-credit a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-size: 0.9rem;
}

.footer-legal {
  display: inline-block;
  margin-top: 0.55rem;
}

.footer-legal:hover,
.footer-credit a:hover {
  color: var(--rose-deep);
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem;
}

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

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.legal-content li {
  margin-bottom: 0.55rem;
}

.legal-content a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 560px) {
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom > :last-child {
    text-align: left;
  }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .grid-5,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .split,
  .leaders,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(250, 246, 241, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.35rem;
  }

  .grid-2,
  .grid-5,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    order: 1;
    max-width: none;
    padding: 2rem 1.35rem 2.5rem;
  }

  .container.footer-inner {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .hero-visual {
    order: 0;
    min-height: 48vh;
    border-radius: 0;
    border-bottom-left-radius: 50% 28%;
    border-bottom-right-radius: 50% 28%;
  }

  .hero-visual img {
    min-height: 48vh;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-visual img,
  .reveal,
  .leader-photo img {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Topic + method grids */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}

.topic-grid h3 {
  margin-bottom: 0.35rem;
}

.topic-grid p {
  margin: 0;
  font-size: 0.95rem;
}

.method-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.nav-cta {
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

/* Contact modal */
.form-modal[hidden] {
  display: none !important;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 44, 50, 0.45);
  backdrop-filter: blur(4px);
}

.form-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem 1.75rem;
}

.form-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(143, 115, 132, 0.12);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.form-modal__dialog h2 {
  margin-right: 2rem;
  font-size: 1.75rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(143, 115, 132, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(250, 246, 241, 0.8);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(196, 132, 142, 0.45);
  outline-offset: 1px;
}

.contact-form .btn {
  margin-top: 0.35rem;
  justify-self: start;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .topic-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }
}

/* Compact leader cards */
.stack-full {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.leaders--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 350px));
  gap: 1.15rem;
  justify-content: center;
  max-width: 750px;
  margin-inline: auto;
}

.leader-card--compact {
  width: 100%;
  box-shadow: 0 10px 28px rgba(90, 55, 70, 0.07);
}

.leader-card--compact .leader-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-height: none;
}

.leader-card--compact .leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-card--compact .leader-body {
  padding: 0.85rem 0.95rem 1rem;
}

.leader-card--compact h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.leader-card--compact .leader-role {
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
  line-height: 1.35;
}

.leader-activity {
  font-size: 0.72rem;
  color: var(--mauve);
  margin: 0 0 0.4rem;
  line-height: 1.35;
}

.leader-teaser {
  font-size: 0.8rem;
  margin: 0 0 0.75rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

/* Profile subpages */
.page-profile .profile-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.profile-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.profile-portrait {
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand);
  aspect-ratio: 4 / 5;
}

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

.profile-aside .social-row {
  margin-top: 1rem;
  justify-content: center;
}

.profile-content h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin-bottom: 0.4rem;
}

.profile-content .leader-role {
  margin-bottom: 1.25rem;
}

.profile-block {
  margin-bottom: 1.75rem;
}

.profile-block h2 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.profile-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(143, 115, 132, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

@media (max-width: 860px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-aside {
    position: static;
    max-width: 280px;
    margin-inline: auto;
  }

  .leaders--compact {
    grid-template-columns: minmax(0, 350px);
    max-width: none;
  }
}

/* Soon / coming soon notice */
.page-soon .form-modal {
  display: none !important;
}

.seo-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.soon-notice {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.755rem, 3.64vw, 2.405rem);
  font-weight: bold;
  line-height: 1.4;
  color: #2f2a28;
}
