:root {
  --ink: #202522;
  --muted: #64706a;
  --paper: #fbfaf7;
  --soft: #eef1ea;
  --sage: #687d68;
  --sage-dark: #344a3a;
  --clay: #b46d55;
  --gold: #bd975b;
  --ivory: #fffdf8;
  --line: rgba(32, 37, 34, 0.14);
  --shadow: 0 22px 70px rgba(32, 37, 34, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(180, 109, 85, 0.45);
  outline-offset: 3px;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 12px 36px rgba(32, 37, 34, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 4px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 50%;
  background: rgba(52, 74, 58, 0.58);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  background: var(--sage-dark);
  border-color: rgba(52, 74, 58, 0.18);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-cta:hover {
  background: rgba(255, 253, 248, 0.14);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 31, 25, 0.82), rgba(23, 31, 25, 0.5) 44%, rgba(23, 31, 25, 0.16)),
    linear-gradient(0deg, rgba(23, 31, 25, 0.38), transparent 32%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 104px;
  color: var(--ivory);
}

.hero-premium .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.hero-copy-block {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #f4c7b6;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.05;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3rem, 7vw, 6.25rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-portrait-card {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 390px);
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: mghFadeUp 760ms ease both;
}

.hero-portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 6px;
}

.portrait-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 13px 4px 3px;
  color: var(--ivory);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption span {
  color: rgba(255, 253, 248, 0.74);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 86px;
  padding: 18px;
  background: var(--ivory);
}

.trust-strip span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ivory);
  background: var(--sage-dark);
  border-radius: 50%;
  font-weight: 800;
}

.trust-strip p {
  margin: 0;
  color: var(--sage-dark);
  font-weight: 800;
}

.approach {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(251, 250, 247, 0.96)),
    radial-gradient(circle at 12% 8%, rgba(189, 151, 91, 0.14), transparent 34%);
}

.approach-layout,
.philosophy-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
}

.approach-layout {
  grid-template-columns: minmax(260px, 390px) minmax(320px, 1fr);
  align-items: center;
}

.approach-photo {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 24px 70px rgba(32, 37, 34, 0.12);
}

.approach-photo::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 42%;
  border-right: 2px solid rgba(189, 151, 91, 0.5);
  border-bottom: 2px solid rgba(189, 151, 91, 0.5);
  pointer-events: none;
}

.approach-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 6px;
}

.approach-copy {
  max-width: 760px;
}

.approach-copy .lead {
  margin-top: 18px;
  color: var(--sage-dark);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
}

.approach-copy p:not(.eyebrow):not(.lead),
.philosophy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.philosophy {
  padding: clamp(70px, 10vw, 118px) clamp(18px, 5vw, 72px);
}

.philosophy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.philosophy article {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}

.areas {
  background: var(--paper);
}

.tag-cloud {
  width: min(980px, 100%);
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag-cloud span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  background: var(--ivory);
  box-shadow: 0 10px 28px rgba(32, 37, 34, 0.05);
  font-weight: 800;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(32, 37, 34, 0.16);
}

.button.primary {
  color: var(--ivory);
  background: var(--sage-dark);
}

.button.primary:hover {
  background: #26392d;
}

.hero .button.primary {
  background: #fffdf8;
  color: var(--sage-dark);
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.72);
  color: var(--ivory);
  background: rgba(255, 253, 248, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 253, 248, 0.16);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 44px 0 0;
}

.hero-facts div {
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  font-weight: 800;
  font-size: 1.45rem;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
}

.section {
  padding: clamp(70px, 10vw, 126px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--soft);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.section-text,
.section-heading,
.about-content,
.contact-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid article,
.service-card,
.credentials,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 10px 30px rgba(32, 37, 34, 0.06);
}

.intro-grid article {
  padding: 24px;
}

.intro-grid p,
.service-card p,
.timeline p,
.about p,
.contact p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--clay);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.2rem;
}

.service-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid-expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid-premium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 252px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 151, 91, 0.4);
  box-shadow: 0 18px 44px rgba(32, 37, 34, 0.11);
}

.service-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--sage-dark);
  background: var(--soft);
  border-radius: 50%;
  font-weight: 800;
}

.service-card-featured {
  border-color: rgba(180, 109, 85, 0.36);
  background: linear-gradient(180deg, var(--ivory), #f7f0ea);
}

.service-card a {
  margin-top: auto;
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background: var(--sage-dark);
}

.cta-band > div {
  width: min(760px, 100%);
}

.cta-band .eyebrow {
  color: #f2c6b6;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.cta-band .button.primary {
  color: var(--sage-dark);
  background: var(--ivory);
  flex: 0 0 auto;
}

.formation {
  background: var(--paper);
}

.formation-grid {
  width: min(1020px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.formation-grid article {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--sage-dark);
  background: var(--ivory);
  box-shadow: 0 12px 34px rgba(32, 37, 34, 0.06);
  font-weight: 800;
  text-align: center;
}

.signature-quote {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(52, 74, 58, 0.96), rgba(104, 125, 104, 0.88)),
    var(--sage-dark);
}

.signature-quote blockquote {
  width: min(940px, 100%);
  margin: 0 auto;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 3.25rem);
  line-height: 1.15;
  text-align: center;
}

.timeline {
  width: min(1040px, 100%);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline article {
  padding: 30px 22px 0;
  border-left: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 1px solid var(--line);
}

.timeline span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 800;
}

.about {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 72px);
}

.about-content,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.about-premium .about-content {
  grid-template-columns: minmax(260px, 380px) minmax(320px, 1fr);
  align-items: center;
}

.about-photo {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 20px 54px rgba(32, 37, 34, 0.12);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 6px;
}

.about-title {
  margin-top: 10px !important;
  color: var(--clay) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem !important;
}

.specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.specialty-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.72);
  font-weight: 700;
  font-size: 0.9rem;
}

.about p,
.contact p {
  max-width: 710px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.credentials {
  padding: 26px;
}

.credentials ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.credentials li + li {
  margin-top: 10px;
}

.faq-list {
  width: min(860px, 100%);
  margin: 34px auto 0;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.04rem;
}

details p {
  padding-top: 12px;
}

.contact {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 72px);
}

.contact-methods {
  margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
  text-decoration: none;
  font-weight: 700;
}

.contact-methods .contact-highlight {
  color: var(--ivory);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--sage-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(52, 74, 58, 0.72);
  box-shadow: 0 0 0 4px rgba(104, 125, 104, 0.14);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sage-dark);
}

.privacy-check a {
  color: var(--sage-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  padding: 0;
  color: var(--sage-dark);
  font-weight: 800;
}

.form-status[data-type="error"] {
  color: #9d3f2f;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 253, 248, 0.78);
  background: var(--sage-dark);
}

.premium-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: center;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.premium-footer > p {
  grid-column: 1 / -1;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: invert(1) brightness(2.4);
}

.footer-brand strong,
.footer-brand p {
  display: block;
}

.footer-brand strong {
  color: var(--ivory);
  font-size: 1.05rem;
}

.footer-brand p {
  margin: 2px 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.site-footer span {
  color: var(--ivory);
  font-weight: 800;
  text-decoration: none;
}

.site-footer span {
  color: rgba(255, 253, 248, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
}

.legal-brand {
  color: var(--ink);
}

.legal-main {
  padding: clamp(44px, 8vw, 86px) clamp(18px, 5vw, 72px);
}

.legal-content {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 14px 42px rgba(32, 37, 34, 0.08);
}

.legal-content h1 {
  margin: 0 0 24px;
  color: var(--sage-dark);
  font-size: clamp(2.45rem, 6vw, 4.4rem);
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--sage-dark);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.22rem;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--sage-dark);
  font-weight: 800;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.last-updated {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .nav-cta {
    border-radius: 6px;
  }

  .intro,
  .approach-layout,
  .about-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-premium .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 46px;
  }

  .hero-portrait-card {
    justify-self: start;
    width: min(100%, 340px);
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .service-grid,
  .formation-grid,
  .philosophy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
  }

  .timeline article {
    border-top: 1px solid var(--line);
  }

  .service-card {
    min-height: 220px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .premium-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(23, 31, 25, 0.88), rgba(23, 31, 25, 0.62));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .hero-portrait-card {
    width: min(100%, 300px);
  }

  .hero-portrait-card img {
    aspect-ratio: 1 / 1.12;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-methods {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .contact-methods a,
  .contact-methods span {
    width: 100%;
  }

  .hero-facts div {
    padding: 13px 14px;
  }

  .section,
  .about,
  .contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .intro-grid article,
  .service-card,
  .credentials,
  .contact-form {
    padding: 22px;
  }

  .hero-facts,
  .intro-grid,
  .service-grid,
  .formation-grid,
  .philosophy-grid,
  .timeline,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .approach-photo {
    max-width: 320px;
  }

  .tag-cloud {
    justify-content: flex-start;
  }

  .trust-strip div {
    justify-content: flex-start;
    min-height: 66px;
  }

  .timeline article,
  .timeline article:last-child {
    border-left: 0;
    border-right: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .legal-header {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-content {
    padding: 24px 20px;
  }
}

/* Art direction v7: editorial portrait and repaired formation timeline */
h1,
h2,
h3,
p,
a,
span,
li {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.therapist-profile .approach-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(64px, 8vw, 128px);
}

.therapist-profile .approach-photo {
  padding: clamp(24px, 3vw, 42px);
  background: #fffdf8;
  border: 1px solid rgba(38, 63, 49, 0.07);
  box-shadow: 0 20px 64px rgba(32, 37, 34, 0.065);
}

.therapist-profile .approach-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  border-radius: 7px;
  box-shadow: 0 12px 34px rgba(32, 37, 34, 0.055);
}

.professional-card {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 24px 2px 0;
}

.professional-card .credential-badges {
  grid-template-columns: 1fr;
}

.professional-card .credential-badges span {
  min-height: auto;
  justify-content: flex-start;
  border-color: rgba(38, 63, 49, 0.1);
  background: rgba(255, 255, 255, 0.66);
}

.formation .section-heading {
  max-width: 900px;
}

.formation-timeline {
  width: min(980px, 100%);
  max-width: 980px;
  margin-top: 56px;
  border-left: 0;
  display: grid;
  gap: 26px;
}

.formation-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 62px 54px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding: 28px 30px;
  border: 1px solid rgba(38, 63, 49, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 42px rgba(32, 37, 34, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.formation-timeline article:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 163, 106, 0.36);
  box-shadow: 0 24px 58px rgba(32, 37, 34, 0.09);
}

.formation-timeline article::before {
  display: none;
}

.formation-timeline span {
  color: var(--gold);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1;
}

.timeline-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(38, 63, 49, 0.12);
  border-radius: 50%;
  color: var(--sage-dark);
  background: rgba(238, 242, 235, 0.72);
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.formation-timeline h3 {
  margin: 0 0 8px;
  color: var(--sage-dark);
  font-size: clamp(1.16rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.formation-timeline p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

  .therapist-profile .approach-photo {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .therapist-profile .approach-photo {
    padding: 16px;
  }

  .formation-timeline {
    gap: 18px;
  }

  .formation-timeline article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }

  .timeline-icon {
    width: 44px;
    height: 44px;
  }
}

/* Brand system v6: boutique clinic consistency */
.professional-card .credential-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.professional-card .credential-badges span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  border-radius: 999px;
  line-height: 1.25;
}

.service-card,
.contact-form,
.professional-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button,
.service-card a,
.contact-methods a {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.premium-footer {
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.premium-footer .footer-brand {
  gap: 18px;
}

.premium-footer .footer-brand p {
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .professional-card .credential-badges {
    grid-template-columns: 1fr;
  }
}

/* Boutique brand v5: editorial spacing and full portrait treatment */
body {
  letter-spacing: 0;
}

p {
  line-height: 1.72;
}

.section {
  padding-top: clamp(88px, 12vw, 150px);
  padding-bottom: clamp(88px, 12vw, 150px);
}

.hero-copy {
  line-height: 1.75;
}

.hero-actions {
  gap: 16px;
}

.therapist-profile {
  padding-top: clamp(100px, 13vw, 164px);
  padding-bottom: clamp(100px, 13vw, 164px);
}

.therapist-profile .approach-layout {
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(58px, 8vw, 112px);
  align-items: center;
}

.therapist-profile .approach-photo {
  display: block;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(38, 63, 49, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 240, 0.86));
  box-shadow: 0 22px 70px rgba(32, 37, 34, 0.08);
}

.therapist-profile .approach-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 7px;
  filter: saturate(0.98) contrast(1.02) brightness(1.03);
}

.professional-card {
  margin-top: 24px;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(38, 63, 49, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 52px rgba(32, 37, 34, 0.07);
}

.professional-card strong {
  font-size: clamp(1.5rem, 2vw, 1.85rem);
}

.professional-card > span {
  font-size: 0.98rem;
}

.credential-badges {
  gap: 9px;
}

.credential-badges span {
  padding: 9px 12px;
  background: #fffdf8;
  font-size: 0.84rem;
}

.approach-copy p:not(.eyebrow):not(.lead) {
  margin-top: 22px;
  font-size: 1.07rem;
}

.approach-copy .lead {
  margin-top: 24px;
}

.services.band {
  padding-top: clamp(96px, 12vw, 154px);
  padding-bottom: clamp(96px, 12vw, 154px);
}

.service-grid-premium {
  gap: 24px;
}

.service-card {
  min-height: 318px;
  padding: clamp(28px, 3vw, 36px);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(32, 37, 34, 0.055);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 163, 106, 0.38);
  box-shadow: 0 28px 70px rgba(32, 37, 34, 0.11);
}

.service-icon {
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.22rem;
}

.service-card p {
  line-height: 1.65;
}

.formation {
  background: #fcfbf8;
}

.formation-timeline {
  max-width: 920px;
}

.formation-timeline article {
  padding-bottom: 42px;
}

.pre-contact-cta {
  padding-top: clamp(86px, 11vw, 132px);
  padding-bottom: clamp(86px, 11vw, 132px);
}

.contact {
  padding-top: clamp(86px, 11vw, 132px);
}

.site-footer.premium-footer {
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: 44px;
  gap: 38px;
}

.footer-links {
  gap: 14px 24px;
}

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

  .therapist-profile .approach-photo {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .therapist-profile .approach-photo {
    padding: 14px;
  }

  .professional-card {
    padding: 20px;
  }

  .service-card {
    min-height: 0;
  }
}

/* Boutique clinic v4 polish */
.button {
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  letter-spacing: 0;
}

.hero .button.primary {
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.hero .button.secondary {
  color: var(--ivory);
  border-color: rgba(255, 253, 248, 0.58);
  background: rgba(255, 253, 248, 0.08);
}

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

.professional-card {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(38, 63, 49, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 16px 48px rgba(32, 37, 34, 0.08);
}

.professional-card strong,
.professional-card > span {
  display: block;
}

.professional-card strong {
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.professional-card > span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.professional-card .credential-badges {
  margin-top: 18px;
}

.credential-badges span::before {
  content: "✓ ";
  color: var(--gold);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 30px 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(197, 163, 106, 0.8), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover::after {
  opacity: 1;
}

.formation-grid {
  display: none;
}

.formation-timeline {
  width: min(1040px, 100%);
  margin: 46px auto 0;
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(38, 63, 49, 0.16);
}

.formation-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 34px 28px;
}

.formation-timeline article::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(197, 163, 106, 0.14);
}

.formation-timeline span {
  color: var(--gold);
  font-weight: 800;
}

.formation-timeline h3 {
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-size: 1.25rem;
}

.formation-timeline p {
  margin: 0;
  color: var(--muted);
}

.pre-contact-cta {
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(31, 54, 40, 0.96), rgba(47, 77, 58, 0.9)),
    var(--sage-dark);
}

.pre-contact-cta > div {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.pre-contact-cta .eyebrow {
  color: #f0caa1;
}

.pre-contact-cta h2 {
  max-width: 820px;
  margin: 0 auto;
}

.pre-contact-cta p:not(.eyebrow) {
  margin: 20px auto 0;
  max-width: 620px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.15rem;
}

@media (max-width: 980px) {
  .professional-card {
    max-width: 420px;
  }

  .formation-timeline article {
    grid-template-columns: 54px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .button {
    width: 100%;
    min-height: 52px;
  }

  .professional-card {
    padding: 18px;
  }

  .credential-badges span {
    width: 100%;
  }

  .formation-timeline article {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 22px;
  }
}

/* Private-clinic editorial v3 */
.hero {
  min-height: 94svh;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 28, 22, 0.9), rgba(18, 28, 22, 0.66) 42%, rgba(18, 28, 22, 0.22) 72%, rgba(18, 28, 22, 0.08)),
    linear-gradient(0deg, rgba(18, 28, 22, 0.38), transparent 36%);
}

.hero-premium .hero-content {
  display: block;
  padding-top: clamp(132px, 16vh, 184px);
  padding-bottom: clamp(80px, 12vh, 132px);
}

.hero-copy-block {
  max-width: 760px;
}

.hero-copy {
  max-width: 680px;
}

.hero-portrait-scene {
  display: none;
}

.therapist-profile {
  scroll-margin-top: 110px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fcfbf8 58%, #f5f7f2 100%);
}

.therapist-profile .approach-layout {
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  width: min(1180px, 100%);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.therapist-profile .approach-photo {
  margin: 0;
  padding: clamp(10px, 1.6vw, 16px);
  border: 1px solid rgba(38, 63, 49, 0.09);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 24px 80px rgba(32, 37, 34, 0.11);
}

.therapist-profile .approach-photo::before,
.therapist-profile .approach-photo::after {
  display: none;
}

.therapist-profile .approach-photo img {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  object-position: 50% 34%;
  border-radius: 6px;
  filter: saturate(0.98) contrast(1.03) brightness(1.03);
  box-shadow: none;
}

.therapist-profile .approach-copy h2 {
  max-width: 760px;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-badges span {
  padding: 10px 13px;
  border: 1px solid rgba(38, 63, 49, 0.12);
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-grid-premium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 300px;
  padding: 30px;
  border-color: rgba(38, 63, 49, 0.1);
  background: rgba(255, 253, 248, 0.92);
}

.service-icon {
  width: 46px;
  height: 46px;
  color: var(--sage-dark);
  background: transparent;
  border: 1px solid rgba(38, 63, 49, 0.14);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(197, 163, 106, 0.72);
}

.site-footer.premium-footer {
  background: linear-gradient(135deg, #1f3628, #294734);
}

.premium-footer .footer-brand img {
  filter: brightness(0) invert(1);
}

@media (max-width: 980px) {
  .therapist-profile .approach-layout,
  .service-grid-premium {
    grid-template-columns: 1fr;
  }

  .therapist-profile .approach-photo {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .hero-premium .hero-content {
    padding-top: 118px;
    padding-bottom: 70px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 28, 22, 0.86), rgba(18, 28, 22, 0.62));
  }

  .therapist-profile .approach-photo {
    max-width: 100%;
  }
}

/* Premium v2 refinements */
:root {
  --paper: #fcfbf8;
  --soft: #f2f4ef;
  --sage-dark: #263f31;
  --sage: #627965;
  --clay: #a96a55;
  --gold: #c5a36a;
  --radius: 8px;
}

.site-header {
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-logo-wrap {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 50px;
  height: 50px;
  padding: 4px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  background: transparent;
  border-color: transparent;
}

.hero {
  min-height: 94svh;
  background: #1e2d24;
}

.hero-bg {
  filter: saturate(0.9) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 35, 29, 0.88), rgba(25, 35, 29, 0.62) 48%, rgba(25, 35, 29, 0.22) 74%),
    radial-gradient(circle at 82% 54%, rgba(255, 253, 248, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(25, 35, 29, 0.42), transparent 34%);
}

.hero-premium .hero-content {
  grid-template-columns: minmax(0, 0.7fr) minmax(250px, 0.3fr);
  gap: clamp(32px, 5vw, 68px);
  padding-top: 118px;
}

.hero-copy-block {
  max-width: 760px;
}

h1 {
  max-width: 760px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 253, 248, 0.92);
}

.hero-portrait-scene {
  position: relative;
  justify-self: end;
  align-self: end;
  width: min(31vw, 335px);
  min-width: 245px;
  margin: 78px 1vw -20px 0;
  animation: mghFadeUp 820ms ease both;
  isolation: isolate;
}

.hero-portrait-scene::before {
  content: "";
  position: absolute;
  inset: 16% -14% 2% 8%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 48% 50%, rgba(255, 253, 248, 0.18), transparent 38%),
    radial-gradient(ellipse at 54% 84%, rgba(0, 0, 0, 0.32), transparent 66%);
  filter: blur(24px);
}

.hero-portrait-scene::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 0;
  bottom: 1%;
  z-index: -2;
  height: 26%;
  background:
    radial-gradient(ellipse at center, rgba(238, 232, 218, 0.34), transparent 62%),
    radial-gradient(ellipse at center, rgba(28, 37, 31, 0.38), transparent 72%);
  filter: blur(18px);
  opacity: 0.9;
}

.hero-portrait-scene img {
  width: 100%;
  height: min(67svh, 620px);
  object-fit: contain;
  object-position: 50% 100%;
  filter:
    saturate(0.88)
    contrast(1.02)
    brightness(0.94)
    sepia(0.05)
    drop-shadow(0 20px 28px rgba(18, 28, 22, 0.26));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 5%, #000 94%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 5%, #000 94%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 86%, transparent 100%);
  mask-composite: intersect;
}

.trust-strip div {
  min-height: 92px;
}

.approach-layout {
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  max-width: 1180px;
}

.approach-photo {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.approach-photo::after {
  right: -18px;
  bottom: -18px;
  width: 46%;
  height: 46%;
  border-color: rgba(197, 163, 106, 0.48);
}

.approach-photo::before {
  content: "";
  position: absolute;
  inset: 24px -18px -22px 28px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(238, 242, 235, 0.96), rgba(255, 253, 248, 0.82));
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(32, 37, 34, 0.1);
}

.approach-photo img {
  filter: saturate(0.96) contrast(1.03) brightness(1.02);
  box-shadow: 0 18px 54px rgba(32, 37, 34, 0.1);
}

.approach-copy p:not(.eyebrow):not(.lead) {
  margin-top: 18px;
}

.areas {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.84), rgba(252, 251, 248, 1)),
    radial-gradient(circle at 50% 0%, rgba(197, 163, 106, 0.12), transparent 38%);
}

.tag-cloud {
  width: min(1060px, 100%);
  gap: 14px;
}

.tag-cloud span {
  padding: 13px 18px;
  border-color: rgba(38, 63, 49, 0.12);
  background: rgba(255, 253, 248, 0.88);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tag-cloud span:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 163, 106, 0.42);
  box-shadow: 0 16px 38px rgba(32, 37, 34, 0.08);
}

.services.band {
  background:
    linear-gradient(180deg, #f6f7f2, #eef2eb);
}

.services .section-heading {
  max-width: 860px;
  text-align: center;
}

.services .section-heading h2 {
  max-width: 820px;
  margin: 0 auto;
}

.service-grid-premium {
  gap: 20px;
}

.service-card {
  min-height: 286px;
  padding: 30px;
  border-color: rgba(38, 63, 49, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.9));
  box-shadow: 0 12px 34px rgba(32, 37, 34, 0.06);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(32, 37, 34, 0.12);
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--sage-dark);
  background: #eef2eb;
  border: 1px solid rgba(38, 63, 49, 0.1);
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 1.22rem;
}

.service-card p {
  font-size: 0.98rem;
}

.service-card-featured {
  border-color: rgba(197, 163, 106, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 1), rgba(248, 241, 232, 0.95));
}

.site-footer.premium-footer {
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  align-items: start;
  padding-top: clamp(42px, 6vw, 68px);
  padding-bottom: 34px;
  background:
    linear-gradient(135deg, #203629, #2f4d3a);
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  filter: none;
}

.footer-brand p + p {
  margin-top: 2px;
}

.footer-links {
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a,
.footer-links span {
  padding: 8px 0;
}

@media (max-width: 980px) {
  .hero-premium .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-portrait-scene {
    justify-self: start;
    align-self: center;
    width: min(42vw, 300px);
    margin: 8px 0 -18px;
  }

  .approach-layout {
    grid-template-columns: 1fr;
  }

  .premium-footer .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand-logo-wrap,
  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero-premium .hero-content {
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(25, 35, 29, 0.86), rgba(25, 35, 29, 0.68)),
      radial-gradient(circle at 78% 64%, rgba(255, 253, 248, 0.15), transparent 42%);
  }

  .hero-portrait-scene {
    width: min(64vw, 260px);
    min-width: 0;
  }

  .hero-portrait-scene img {
    height: auto;
    max-height: 420px;
  }

  .service-card {
    min-height: 0;
  }

  .site-footer.premium-footer {
    grid-template-columns: 1fr;
  }
}

/* Final v7 override: keep portrait complete and formation readable */
.therapist-profile .approach-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(64px, 8vw, 128px);
}

.therapist-profile .approach-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain !important;
  object-position: center;
}

/* Final v27: full-body portrait in Mi enfoque without cropping */
.therapist-profile .approach-photo img[src*="monica-gil-mi-enfoque-cuerpo-completo"] {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain !important;
  object-position: center center;
}

.therapist-profile .approach-photo img[src*="monica-gil-mi-enfoque-moni"] {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain !important;
  object-position: center center;
  filter: none !important;
}

.therapist-profile .approach-photo img[src*="monica-gil-mi-enfoque-adjunta"] {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain !important;
  object-position: center center;
  filter: none !important;
}

.formation-timeline {
  width: min(980px, 100%);
  max-width: 980px;
  margin: 56px auto 0;
  display: grid;
  gap: 26px;
  border-left: 0;
}

.formation-timeline article {
  display: grid;
  grid-template-columns: 62px 54px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 30px;
  border: 1px solid rgba(38, 63, 49, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 42px rgba(32, 37, 34, 0.055);
}

.formation-timeline article::before {
  display: none;
}

.formation-timeline h3,
.formation-timeline p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.formation-timeline p {
  max-width: 760px;
}

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

@media (max-width: 640px) {
  .formation-timeline article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }
}

/* Permanent educational section: Psicoterapia Transpersonal Integrativa */
.integrative-therapy {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 247, 242, 0.94)),
    radial-gradient(circle at 14% 12%, rgba(197, 163, 106, 0.1), transparent 36%);
}

.integrative-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(360px, 0.55fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.integrative-copy h2 {
  max-width: 720px;
}

.integrative-copy .lead {
  margin: 18px 0 26px;
  color: var(--sage-dark);
  font-size: clamp(1.16rem, 2vw, 1.36rem);
  font-weight: 800;
  line-height: 1.55;
}

.integrative-copy p:not(.eyebrow):not(.lead) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.integrative-benefits {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.integrative-benefits article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(38, 63, 49, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 12px 34px rgba(32, 37, 34, 0.045);
}

.integrative-benefits span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(38, 63, 49, 0.12);
  border-radius: 50%;
  color: var(--sage-dark);
  background: rgba(238, 242, 235, 0.72);
}

.integrative-benefits svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integrative-benefits h3 {
  margin: 0 0 4px;
  color: var(--sage-dark);
  font-size: 1rem;
}

.integrative-benefits p {
  margin: 0 !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

.integrative-video {
  align-self: center;
}

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

@media (max-width: 640px) {
  .integrative-benefits article {
    grid-template-columns: 1fr;
  }

}

/* Premium video card without embedded player */
.premium-video-card {
  overflow: hidden;
  border: 1px solid rgba(38, 63, 49, 0.1);
  border-radius: 12px;
  background: var(--ivory);
  box-shadow: 0 24px 70px rgba(32, 37, 34, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-video-card:hover,
.premium-video-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(197, 163, 106, 0.38);
  box-shadow: 0 30px 86px rgba(32, 37, 34, 0.16);
}

.premium-video-card:focus-visible {
  outline: 3px solid rgba(197, 163, 106, 0.34);
  outline-offset: 4px;
}

.premium-video-visual {
  position: relative;
  display: grid;
  min-height: clamp(230px, 32vw, 360px);
  place-items: center;
  background:
    linear-gradient(135deg, rgba(38, 63, 49, 0.96), rgba(104, 125, 104, 0.86)),
    radial-gradient(circle at 24% 22%, rgba(197, 163, 106, 0.22), transparent 34%);
}

.premium-video-visual::before,
.premium-video-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 50%;
}

.premium-video-visual::before {
  width: 72%;
  aspect-ratio: 1;
}

.premium-video-visual::after {
  width: 46%;
  aspect-ratio: 1;
}

.premium-play-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--sage-dark);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.premium-play-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateX(2px);
}

.premium-video-copy {
  padding: clamp(24px, 3vw, 34px);
}

.premium-video-copy .eyebrow {
  margin-bottom: 10px;
}

.premium-video-copy h3 {
  max-width: 520px;
  margin: 0;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.premium-video-copy p:not(.eyebrow) {
  margin: 14px 0 22px;
  color: var(--muted);
}

.video-support-text {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.video-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 22, 0.74);
  backdrop-filter: blur(10px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 12px;
  background: var(--ivory);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(38, 63, 49, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.video-modal-content {
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}

.video-modal-content h2 {
  max-width: 560px;
  margin: 0 auto;
  color: var(--sage-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.video-modal-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
}

.video-modal-loader {
  width: 48px;
  height: 48px;
  margin: 30px auto 0;
  border: 2px solid rgba(38, 63, 49, 0.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: mghSpin 900ms linear infinite;
}

.video-modal-player {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

body.video-modal-open {
  overflow: hidden;
}

@keyframes mghSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Próximos eventos */
.events {
  scroll-margin-top: 110px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(238, 241, 234, 0.72)),
    radial-gradient(circle at 88% 12%, rgba(189, 151, 91, 0.13), transparent 32%);
}

.events-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.events-copy h2 {
  max-width: 760px;
}

.events-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.events-copy .events-lead {
  margin: 22px 0 24px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  line-height: 1.7;
}

.event-calendar-card {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid rgba(52, 74, 58, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(238, 241, 234, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(189, 151, 91, 0.16), transparent 36%);
  box-shadow: 0 24px 70px rgba(32, 37, 34, 0.13);
}

.event-calendar-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(52, 74, 58, 0.13);
}

.event-calendar-top span,
.event-benefit-grid article span {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(189, 151, 91, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.82);
}

.event-calendar-top svg,
.event-benefit-grid svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-calendar-top p {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-calendar-top h3 {
  margin: 0;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.1;
}

.event-objective {
  margin: 20px 0 8px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(238, 241, 234, 0.78);
}

.event-objective strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
}

.event-objective p {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.62;
}

.event-details {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
}

.event-details div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(52, 74, 58, 0.1);
}

.event-details div:last-child {
  border-bottom: 0;
}

.event-details dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.event-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.event-quote {
  width: min(980px, 100%);
  margin: clamp(42px, 6vw, 76px) auto 0;
  padding: clamp(24px, 4vw, 38px);
  color: var(--sage-dark);
  border: 1px solid rgba(189, 151, 91, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 54px rgba(32, 37, 34, 0.08);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.35;
  text-align: center;
}

.event-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1050px, 100%);
  margin: clamp(28px, 5vw, 44px) auto 0;
}

.event-topics span {
  padding: 9px 14px;
  color: var(--sage-dark);
  border: 1px solid rgba(52, 74, 58, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.event-benefits,
.future-events {
  margin-top: clamp(48px, 7vw, 86px);
}

.event-benefit-grid,
.future-event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 28px auto 0;
}

.event-benefit-grid article,
.future-event-grid article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(52, 74, 58, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 48px rgba(32, 37, 34, 0.08);
}

.event-benefit-grid h3,
.future-event-grid h3 {
  margin: 18px 0 10px;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.2;
}

.event-benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(34px, 6vw, 56px);
}

.future-event-grid article {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
}

.future-events-intro {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.future-event-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  color: inherit;
  text-align: left;
  border: 1px solid rgba(52, 74, 58, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(250, 248, 242, 0.88));
  box-shadow: 0 18px 48px rgba(32, 37, 34, 0.08);
  cursor: pointer;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.future-event-card:hover,
.future-event-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(189, 151, 91, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 244, 236, 0.94));
  box-shadow: 0 24px 62px rgba(32, 37, 34, 0.12);
  outline: none;
}

.future-event-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(52, 74, 58, 0.13);
  border-radius: 999px;
  background: rgba(238, 241, 234, 0.82);
}

.future-event-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.future-event-card h3 {
  margin: 22px 0 auto;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.future-event-status {
  width: fit-content;
  margin-top: 28px;
  padding: 0;
  color: var(--sage-dark);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.82;
  transition: color 250ms ease, opacity 250ms ease, transform 250ms ease;
}

.future-event-card:hover .future-event-status,
.future-event-card:focus-visible .future-event-status {
  color: var(--gold);
  opacity: 1;
  transform: translateX(3px);
}

.future-event-grid article h3 {
  margin-top: 0;
}

.future-event-grid article > span {
  width: fit-content;
  padding: 7px 11px;
  color: var(--gold);
  border: 1px solid rgba(189, 151, 91, 0.28);
  border-radius: 999px;
  background: rgba(189, 151, 91, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.future-event-modal {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.future-event-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.future-event-modal-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(25, 35, 29, 0.54);
  cursor: pointer;
}

.future-event-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(189, 151, 91, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(248, 246, 239, 0.98));
  box-shadow: 0 28px 90px rgba(20, 29, 24, 0.26);
  transform: translateY(16px) scale(0.98);
  transition: transform 220ms ease;
}

.future-event-modal.is-open .future-event-modal-dialog {
  transform: translateY(0) scale(1);
}

.future-event-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(52, 74, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  cursor: pointer;
}

.future-event-modal-close span {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
}

.future-event-modal-close:hover,
.future-event-modal-close:focus-visible {
  color: var(--ivory);
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  outline: none;
}

.future-event-modal-dialog h3 {
  margin: 8px 42px 14px 0;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.08;
}

.future-event-modal-status {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: var(--gold);
  border: 1px solid rgba(189, 151, 91, 0.3);
  border-radius: 999px;
  background: rgba(189, 151, 91, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.future-event-modal-content {
  display: grid;
  gap: 8px;
}

.future-event-modal-content strong {
  margin-top: 8px;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.08rem;
}

.future-event-modal-content p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.72;
}

.future-event-modal-cta {
  margin-top: 26px;
}

body.future-event-modal-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .events-hero {
    grid-template-columns: 1fr;
  }

  .event-calendar-card {
    position: static;
  }

  .event-benefit-grid,
  .future-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .events {
    scroll-margin-top: 96px;
  }

  .event-calendar-card,
  .event-benefit-grid article,
  .future-event-grid article {
    padding: 22px;
  }

  .event-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .event-benefit-grid,
  .future-event-grid {
    grid-template-columns: 1fr;
  }

  .event-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Mini landing: Mujeres que sostienen todo */
.event-landing {
  padding: clamp(86px, 11vw, 138px) clamp(20px, 5vw, 70px);
}

.event-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.event-landing-copy h2 {
  max-width: 760px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.event-landing-copy .events-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.46rem);
  line-height: 1.7;
}

.event-hero-actions {
  justify-content: flex-start;
  margin-top: 32px;
}

.event-registration-open {
  max-width: 390px;
  min-height: 52px;
  line-height: 1.25;
  text-align: center;
}

.event-registration-help {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.event-landing-media {
  position: relative;
  min-height: clamp(430px, 50vw, 610px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 30px 92px rgba(32, 37, 34, 0.18);
}

.event-landing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(52, 74, 58, 0.18)),
    linear-gradient(90deg, rgba(52, 74, 58, 0.13), transparent 38%);
  pointer-events: none;
}

.event-landing-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.event-landing-section {
  width: min(1120px, 100%);
  margin: clamp(66px, 9vw, 112px) auto 0;
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.event-card-grid article,
.event-module-grid article,
.event-timeline article {
  border: 1px solid rgba(52, 74, 58, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 48px rgba(32, 37, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.event-card-grid article:hover,
.event-module-grid article:hover,
.event-timeline article:hover,
.future-event-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 151, 91, 0.28);
  box-shadow: 0 24px 64px rgba(32, 37, 34, 0.12);
}

.event-card-grid article {
  display: flex;
  min-height: 154px;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
}

.event-card-grid span,
.event-timeline span {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(189, 151, 91, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.86);
  font-weight: 800;
}

.event-card-grid svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-card-grid h3,
.event-module-grid h3,
.event-timeline h3 {
  margin: 0;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.24;
}

.event-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.event-module-grid article {
  min-height: 142px;
  padding: 24px;
}

.event-module-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.event-program {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.event-program-copy {
  position: sticky;
  top: 112px;
}

.event-program-copy h2 {
  max-width: 560px;
}

.event-program-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
}

.event-program .event-calendar-card {
  position: static;
}

.event-program .event-details div {
  grid-template-columns: 138px minmax(0, 1fr);
}

.event-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.event-timeline article {
  min-height: 206px;
  padding: 24px;
}

.event-timeline h3 {
  margin-top: 22px;
}

.event-timeline p {
  margin: 10px 0 0;
  color: var(--muted);
}

.event-contact-panel {
  width: min(940px, 100%);
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: clamp(30px, 5vw, 52px);
  color: var(--ivory);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(52, 74, 58, 0.98), rgba(104, 125, 104, 0.9)),
    radial-gradient(circle at 82% 16%, rgba(189, 151, 91, 0.28), transparent 34%);
  box-shadow: 0 28px 84px rgba(32, 37, 34, 0.18);
  text-align: center;
}

.event-contact-panel .eyebrow {
  color: rgba(255, 253, 248, 0.72);
}

.event-contact-panel h2 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ivory);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.event-contact-panel .event-actions {
  margin-top: 28px;
}

.event-form-panel {
  width: min(980px, 100%);
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: clamp(24px, 4.5vw, 44px);
  border: 1px solid rgba(52, 74, 58, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 241, 234, 0.72)),
    radial-gradient(circle at 88% 8%, rgba(189, 151, 91, 0.13), transparent 30%);
  box-shadow: 0 26px 80px rgba(32, 37, 34, 0.13);
}

.event-form-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.event-form-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.event-form-modal-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(22, 31, 25, 0.76);
  backdrop-filter: blur(9px);
  cursor: pointer;
}

.event-form-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.3);
  transform: translateY(18px) scale(0.985);
  transition: transform 220ms ease;
}

.event-form-modal.is-open .event-form-modal-dialog {
  transform: translateY(0) scale(1);
}

.event-form-modal .event-form-panel {
  width: 100%;
  margin: 0;
  border: 0;
  box-shadow: none;
}

.event-form-modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(52, 74, 58, 0.18);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 28px rgba(32, 37, 34, 0.16);
  font: inherit;
  cursor: pointer;
}

.event-form-modal-close span {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.event-form-modal-close:hover,
.event-form-modal-close:focus-visible {
  color: var(--ivory);
  border-color: var(--sage-dark);
  background: var(--sage-dark);
}

body.event-form-modal-open {
  overflow: hidden;
}

.event-form-heading {
  max-width: 760px;
  margin: 0 auto clamp(24px, 4vw, 34px);
  text-align: center;
}

.event-form-heading h2 {
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.event-form-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.event-form {
  display: grid;
  gap: 18px;
  scroll-margin-top: 110px;
}

.event-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-form label {
  color: var(--sage-dark);
}

.event-form input,
.event-form select,
.event-form textarea {
  background: rgba(255, 253, 248, 0.92);
}

.event-form textarea {
  min-height: 116px;
}

.event-privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.event-privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sage-dark);
}

.event-privacy-check a {
  color: var(--sage-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.event-submit-button {
  width: fit-content;
  margin: 8px auto 0;
}

.event-form-message {
  min-height: 28px;
  margin: 0;
  padding: 14px 16px 0;
  color: var(--sage-dark);
  font-weight: 800;
  text-align: center;
}

.event-form-message[data-type="error"] {
  color: #9d3f2f;
}

@media (max-width: 700px) {
  .event-registration-open {
    max-width: none;
  }

  .event-registration-help {
    text-align: left;
  }

  .event-form-modal {
    align-items: end;
    padding: 10px;
  }

  .event-form-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
  }

  .event-form-modal .event-form-panel {
    padding: 54px 18px 24px;
  }

  .event-form-modal-close {
    top: 12px;
    right: 12px;
  }

  .event-form-heading h2 {
    font-size: 1.72rem;
  }

  .event-form-grid {
    grid-template-columns: 1fr;
  }

  .event-submit-button {
    width: 100%;
    justify-content: center;
  }
}

/* Final v31: compact group banner with internal landing modal */
.event-compact {
  padding-top: clamp(72px, 9vw, 116px);
  padding-bottom: clamp(72px, 9vw, 116px);
}

.event-feature-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3.6vw, 38px);
  color: inherit;
  text-align: left;
  border: 1px solid rgba(52, 74, 58, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(244, 242, 234, 0.94)),
    radial-gradient(circle at 12% 16%, rgba(189, 151, 91, 0.11), transparent 34%);
  box-shadow: 0 24px 76px rgba(32, 37, 34, 0.095);
  cursor: pointer;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.event-feature-banner:hover,
.event-feature-banner:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(189, 151, 91, 0.34);
  box-shadow: 0 30px 90px rgba(32, 37, 34, 0.13);
  outline: none;
}

.event-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.event-feature-title {
  display: block;
  max-width: 720px;
  margin: 0;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 0.98;
}

.event-feature-summary {
  display: block;
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  line-height: 1.72;
}

.event-feature-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 780px;
  margin: 28px 0 0;
}

.event-feature-details span {
  display: grid;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(52, 74, 58, 0.1);
}

.event-feature-details strong {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.event-feature-details em {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 800;
}

.event-feature-button {
  width: fit-content;
  margin-top: 30px;
}

.event-feature-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0.82;
  transition: color 250ms ease, opacity 250ms ease, transform 250ms ease;
}

.event-feature-banner:hover .event-feature-link,
.event-feature-banner:focus-visible .event-feature-link {
  color: var(--gold);
  opacity: 1;
  transform: translateX(4px);
}

.event-feature-media {
  display: block;
  min-height: clamp(280px, 38vw, 470px);
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.event-feature-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02) brightness(1.01);
}

.event-program-modal {
  z-index: 150;
}

.event-program-modal .event-form-modal-dialog {
  width: min(1180px, 90vw);
  max-height: 90vh;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(248, 246, 239, 0.98));
}

.event-modal-landing {
  padding: clamp(28px, 5vw, 58px) clamp(22px, 5vw, 58px) clamp(12px, 2vw, 18px);
}

.event-modal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.event-modal-hero h2 {
  max-width: 720px;
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.event-modal-hero .event-landing-media {
  min-height: clamp(310px, 34vw, 460px);
}

.event-modal-hero .event-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.event-modal-section {
  width: min(1040px, 100%);
  margin: clamp(36px, 6vw, 66px) auto 0;
}

.event-description {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(52, 74, 58, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

.event-description p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.event-program-modal .event-quote {
  margin-top: clamp(34px, 6vw, 58px);
}

.event-program-modal .event-program {
  width: min(1040px, 100%);
  margin-top: clamp(40px, 6vw, 70px);
}

.event-program-modal .event-benefits {
  margin-top: clamp(40px, 6vw, 70px);
}

.event-program-modal .event-form-panel {
  width: min(1040px, calc(100% - clamp(44px, 10vw, 116px)));
  margin: clamp(44px, 7vw, 76px) auto clamp(28px, 5vw, 52px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(52, 74, 58, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 58px rgba(32, 37, 34, 0.07);
}

@media (max-width: 980px) {
  .event-feature-banner,
  .event-modal-hero {
    grid-template-columns: 1fr;
  }

  .event-feature-media {
    order: -1;
  }

  .event-program-modal .event-form-modal-dialog {
    width: min(94vw, 1180px);
  }
}

@media (max-width: 700px) {
  .event-feature-banner {
    padding: 18px;
  }

  .event-feature-details {
    grid-template-columns: 1fr;
  }

  .event-feature-button {
    width: 100%;
    justify-content: center;
  }

  .event-program-modal {
    align-items: center;
    padding: 8px;
  }

  .event-program-modal .event-form-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 16px);
  }

  .event-modal-landing {
    padding: 54px 18px 12px;
  }

  .event-modal-hero .event-actions .button {
    width: 100%;
    justify-content: center;
  }

  .event-program-modal .event-form-panel {
    width: calc(100% - 24px);
    padding: 24px 16px;
  }
}

/* Final v32: MasterClass modal and official social links */
.masterclass-modal {
  position: fixed;
  inset: 0;
  z-index: 155;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.masterclass-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.masterclass-modal-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(25, 35, 29, 0.54);
  cursor: pointer;
}

.masterclass-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(189, 151, 91, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(248, 246, 239, 0.98));
  box-shadow: 0 28px 90px rgba(20, 29, 24, 0.26);
  transform: translateY(16px) scale(0.98);
  transition: transform 220ms ease;
}

.masterclass-modal.is-open .masterclass-modal-dialog {
  transform: translateY(0) scale(1);
}

.masterclass-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(52, 74, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  cursor: pointer;
}

.masterclass-modal-close span {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
}

.masterclass-modal-close:hover,
.masterclass-modal-close:focus-visible {
  color: var(--ivory);
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  outline: none;
}

.masterclass-modal-dialog h2 {
  max-width: 620px;
  margin: 8px 44px 18px 0;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.06;
}

.masterclass-status {
  display: inline-flex;
  margin: 6px 0 24px;
  padding: 8px 12px;
  color: var(--gold);
  border: 1px solid rgba(189, 151, 91, 0.3);
  border-radius: 999px;
  background: rgba(189, 151, 91, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masterclass-copy {
  display: grid;
  gap: 16px;
}

.masterclass-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.masterclass-cta {
  margin-top: 30px;
}

body.masterclass-modal-open {
  overflow: hidden;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1080px, 100%);
  margin: 26px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
}

.footer-social p {
  max-width: none;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(0.96rem, 1.6vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 16px;
  margin: 0;
}

.social-links a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 253, 248, 0.86);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 200ms ease, opacity 200ms ease, outline-color 200ms ease;
}

.social-links a:hover {
  opacity: 0.9;
  transform: translateY(-2px) scale(1.06);
}

.social-links a:focus-visible {
  outline: 2px solid rgba(189, 151, 91, 0.9);
  outline-offset: 5px;
}

.social-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.social-icon-instagram svg rect,
.social-icon-instagram svg circle {
  fill: none;
  stroke: url(#instagramGradient);
  stroke-width: 1.8;
}

.social-icon-facebook svg,
.social-icon-linkedin svg,
.social-icon-youtube svg,
.social-whatsapp-link svg {
  fill: currentColor;
}

.social-icon-facebook {
  color: #1877f2;
}

.social-icon-linkedin {
  color: #0a66c2;
}

.social-icon-youtube {
  color: #ff0000;
}

@media (max-width: 700px) {
  .masterclass-modal {
    padding: 10px;
  }

  .masterclass-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 54px 20px 28px;
  }

  .masterclass-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding-top: 20px;
    text-align: center;
  }

  .footer-social p {
    width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
    gap: 14px;
  }

  .social-icon svg {
    width: 26px;
    height: 26px;
  }
}

/* Final v33: premium structure for Mujeres que sostienen todo */
.event-process-indicator {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 24px auto 26px;
  color: var(--sage-dark);
}

.event-process-indicator span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(52, 74, 58, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(32, 37, 34, 0.06);
}

.event-process-indicator i {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.event-process-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-process-timeline article {
  min-height: 260px;
  position: relative;
}

.event-process-timeline article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(189, 151, 91, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.event-process-timeline article:hover::after {
  opacity: 1;
}

.event-process-timeline small {
  display: inline-flex;
  margin: 18px 0 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-process-timeline p + p {
  margin-top: 8px;
}

.event-process-timeline svg,
.event-premium-card svg,
.event-commitment-grid svg,
.event-before-register svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.event-participation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
}

.event-premium-card,
.event-commitment-grid article {
  border: 1px solid rgba(52, 74, 58, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 48px rgba(32, 37, 34, 0.075);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.event-premium-card:hover,
.event-commitment-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 151, 91, 0.28);
  box-shadow: 0 24px 62px rgba(32, 37, 34, 0.11);
}

.event-premium-card {
  padding: clamp(24px, 4vw, 34px);
}

.event-premium-card > span,
.event-commitment-grid span,
.event-before-register > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(52, 74, 58, 0.13);
  border-radius: 999px;
  background: rgba(238, 241, 234, 0.82);
}

.event-premium-card h2,
.event-before-register h2 {
  margin: 18px 0 14px;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.1;
}

.event-investment-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
}

.event-premium-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-premium-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.58;
}

.event-premium-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.event-commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.event-commitment-grid article {
  padding: 24px;
}

.event-commitment-grid h3 {
  margin: 18px 0 10px;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.event-commitment-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.event-before-register {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--ivory);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 79, 62, 0.98), rgba(66, 84, 62, 0.96));
  box-shadow: 0 22px 60px rgba(32, 37, 34, 0.16);
}

.event-before-register > span {
  color: var(--ivory);
  border-color: rgba(255, 253, 248, 0.24);
  background: rgba(255, 253, 248, 0.08);
}

.event-before-register h2 {
  margin-top: 0;
  color: var(--ivory);
}

.event-before-register p {
  margin: 0;
  color: rgba(255, 253, 248, 0.84);
  line-height: 1.72;
}

.event-before-register p + p {
  margin-top: 12px;
}

@media (max-width: 980px) {
  .event-process-timeline,
  .event-participation-grid,
  .event-commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .event-process-indicator {
    justify-content: flex-start;
  }

  .event-process-timeline,
  .event-participation-grid,
  .event-commitment-grid {
    grid-template-columns: 1fr;
  }

  .event-process-timeline article {
    min-height: auto;
  }

  .event-before-register {
    grid-template-columns: 1fr;
  }
}

/* Testimonios éticos */
.testimonials {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(238, 241, 234, 0.66)),
    radial-gradient(circle at 12% 20%, rgba(189, 151, 91, 0.12), transparent 30%);
}

.testimonials .section-heading {
  width: min(860px, 100%);
}

.testimonials .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: clamp(30px, 5vw, 48px) auto 0;
}

.testimonial-grid article {
  position: relative;
  min-height: 250px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(52, 74, 58, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 52px rgba(32, 37, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.testimonial-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 151, 91, 0.28);
  box-shadow: 0 24px 68px rgba(32, 37, 34, 0.12);
}

.testimonial-mark {
  display: block;
  height: 36px;
  color: rgba(189, 151, 91, 0.52);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 4rem;
  line-height: 0.72;
}

.testimonial-grid blockquote {
  margin: 18px 0 28px;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.28rem, 2vw, 1.58rem);
  line-height: 1.42;
}

.testimonial-grid p {
  width: fit-content;
  margin: auto 0 0;
  padding: 8px 12px;
  color: var(--gold);
  border: 1px solid rgba(189, 151, 91, 0.28);
  border-radius: 999px;
  background: rgba(189, 151, 91, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-ethics {
  width: min(850px, 100%);
  margin: clamp(28px, 5vw, 42px) auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: center;
}

/* Recursos gratuitos */
.free-resources {
  scroll-margin-top: 110px;
  background:
    linear-gradient(180deg, rgba(238, 241, 234, 0.74), rgba(255, 253, 248, 0.98)),
    radial-gradient(circle at 88% 10%, rgba(189, 151, 91, 0.12), transparent 28%);
}

.free-resources .section-heading {
  width: min(900px, 100%);
}

.free-resources .section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: clamp(30px, 5vw, 50px) auto 0;
}

.resource-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(52, 74, 58, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 52px rgba(32, 37, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resource-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 151, 91, 0.28);
  box-shadow: 0 24px 68px rgba(32, 37, 34, 0.12);
}

.resource-grid article > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.resource-grid h3 {
  margin: 0;
  color: var(--sage-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.16;
}

.resource-grid p {
  margin: 14px 0 16px;
  color: var(--muted);
}

.resource-grid ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--ink);
}

.resource-grid .button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.resources-note {
  width: min(860px, 100%);
  margin: clamp(28px, 5vw, 42px) auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: center;
}

.resource-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.resource-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.resource-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 22, 0.72);
  backdrop-filter: blur(10px);
}

.resource-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(90vh, 780px);
  overflow: auto;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.resource-modal.is-open .resource-modal-dialog {
  transform: translateY(0) scale(1);
}

.resource-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--sage-dark);
  border: 1px solid rgba(38, 63, 49, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.resource-modal-content {
  padding: clamp(28px, 5vw, 48px);
}

.resource-modal-content h2 {
  max-width: 540px;
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.resource-modal-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 22px;
  color: var(--muted);
}

.resource-form {
  display: grid;
  gap: 16px;
}

.resource-form input[readonly] {
  color: var(--sage-dark);
  background: rgba(238, 241, 234, 0.72);
  font-weight: 700;
}

.resource-privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.resource-privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sage-dark);
}

.resource-privacy-check a {
  color: var(--sage-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.resource-form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 800;
}

.resource-form-status[data-type="error"] {
  color: #9d3f2f;
}

body.resource-modal-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .event-landing-hero,
  .event-program {
    grid-template-columns: 1fr;
  }

  .event-program-copy {
    position: static;
  }

  .event-card-grid,
  .event-module-grid,
  .event-timeline,
  .testimonial-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .event-landing {
    padding-inline: 18px;
  }

  .event-landing-media {
    min-height: 360px;
  }

  .event-card-grid,
  .event-module-grid,
  .event-timeline,
  .testimonial-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .event-program .event-details div {
    grid-template-columns: 1fr;
  }

  .event-form-grid {
    grid-template-columns: 1fr;
  }

  .event-submit-button {
    width: 100%;
    justify-content: center;
  }
}
