:root {
  --maroon: #9f1f27;
  --maroon-dark: #74151c;
  --rose: #e9b7a5;
  --gold: #c9983f;
  --ivory: #fff9ef;
  --cream: #f7eadc;
  --pink: #fff0f2;
  --emerald: #0e6d58;
  --ink: #2b2020;
  --muted: #6e6060;
  --line: #ead8c4;
  --shadow: 0 20px 50px rgba(116, 21, 28, 0.12);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffdfa;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.7;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .42;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 152, 63, .16), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(159, 31, 39, .08), transparent 22%),
    linear-gradient(180deg, #fffdfa, #fff8f3);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.12; color: var(--maroon-dark); margin: 0 0 18px; letter-spacing: 0; }
h1 { font-size: clamp(2.45rem, 3vw, 3.45rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 20px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 8px clamp(18px, 5vw, 76px);
  background: rgba(255, 253, 250, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  animation: headerDrop .7s var(--ease-out) both;
}
.brand img { width: 215px; max-width: 28vw; transition: transform .35s var(--ease-out); }
.brand:hover img { transform: translateY(-2px) scale(1.015); }
.main-nav { display: flex; gap: 20px; align-items: center; margin-left: auto; font-size: 0.94rem; white-space: nowrap; }
.main-nav a { position: relative; padding: 10px 0; border-bottom: 2px solid transparent; transition: color .25s ease; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease-out);
}
.main-nav a.active, .main-nav a:hover { color: var(--maroon); border-color: var(--maroon); }
.main-nav a.active::after, .main-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; }
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), background .28s var(--ease-out);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(116, 21, 28, .16); }
.btn:hover::after { transform: translateX(120%); }
.btn-primary { background: var(--maroon); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--maroon-dark); }
.btn-outline { border-color: var(--gold); color: var(--maroon-dark); background: white; }
.btn-whatsapp, .floating-wa { background: #1fb56a; color: white; }
.btn-light { background: white; color: var(--maroon-dark); }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(485px, 46vw, 590px);
  padding: clamp(34px, 4.2vw, 58px) clamp(18px, 5vw, 86px);
  background: #fff9ef;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fffdfa 0%, #fffdfa 27%, rgba(255, 252, 246, 0.98) 39%, rgba(255, 250, 242, 0.9) 52%, rgba(255, 250, 242, 0.62) 65%, rgba(255, 250, 242, 0.26) 78%, rgba(255, 250, 242, 0) 92%),
    radial-gradient(circle at 8% 34%, rgba(201, 152, 63, 0.1), transparent 22%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .46;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.36) 44%, transparent 58%);
  transform: translateX(-35%);
  animation: heroSoftLight 7s ease-in-out infinite alternate;
}
.hero-copy { max-width: 780px; position: relative; z-index: 2; }
.hero-copy h1 {
  margin-bottom: 32px;
  line-height: 1.16;
}
.hero-copy p {
  font-size: 0.98rem;
  max-width: 590px;
  margin-bottom: 24px;
}
.eyebrow {
  color: var(--maroon);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  font-size: clamp(0.68rem, .82vw, .78rem);
}
.hero .eyebrow::before,
.hero .eyebrow::after {
  content: "";
  width: clamp(64px, 8vw, 110px);
  height: 1px;
  background: var(--gold);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0 16px; }
.hero-points { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-weight: 600; }
.hero-points span { transition: color .25s ease, transform .25s var(--ease-out); }
.hero-points span:hover { color: var(--maroon-dark); transform: translateY(-2px); }
.hero-points span:first-child::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -4px;
  background: var(--gold);
  clip-path: polygon(50% 0, 88% 17%, 88% 58%, 50% 100%, 12% 58%, 12% 17%);
}
.hero-points span:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 12px 2px 0;
  border-radius: 50%;
  background: var(--gold);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(90deg, #fffdfa 0%, #fff8ef 42%, #f5dac8 100%);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 72%, rgba(255,250,242,.88) 100%);
}
.hero-media img {
  width: 72%;
  height: 100%;
  margin-left: auto;
  object-fit: contain;
  object-position: right center;
  animation: heroImageDrift 12s ease-in-out infinite alternate;
}

.trust-strip, .cards, .feature-grid, .steps, .two-col, .footer-grid, .admin-cards, .detail-grid {
  display: grid;
  gap: 24px;
}
.trust-strip { grid-template-columns: repeat(4, 1fr); padding: 30px clamp(18px, 5vw, 86px); background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip article, .card, .mini-card, .quote-panel, .list-panel, .process-section article, .admin-cards article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(116, 21, 28, 0.06);
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), border-color .32s var(--ease-out);
}
.trust-strip article:hover,
.card:hover,
.mini-card:hover,
.list-panel:hover,
.process-section article:hover,
.contact-methods a:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 152, 63, .7);
  box-shadow: 0 22px 45px rgba(116, 21, 28, .11);
}
.trust-strip article {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  column-gap: 18px;
  align-items: start;
  min-height: 170px;
  padding: 24px 24px 22px;
}
.trust-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 2px 0 18px;
  border-radius: 50%;
  background: var(--maroon);
  color: white;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.trust-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(201, 152, 63, 0.7);
  border-radius: 50%;
  animation: ringBreath 3.8s ease-in-out infinite;
}
.trust-icon::after {
  width: 27px;
  height: 27px;
  background: currentColor;
}
.trust-icon.people::after { content: ""; clip-path: path("M8 10a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm11 0a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM1 26c.8-5.3 3.1-8 7-8s6.2 2.7 7 8H1Zm13.5 0c.4-3 1.4-5.3 3.1-6.9.6-.1 1.2-.1 1.9-.1 3.9 0 6.2 2.7 7 7h-12Z"); }
.trust-icon.lock::after { content: ""; clip-path: path("M7 11V8a6 6 0 0 1 12 0v3h2v15H5V11h2Zm3 0h6V8a3 3 0 0 0-6 0v3Zm2 5v6h3v-6h-3Z"); }
.trust-icon.heart::after { content: ""; clip-path: path("M13 25 3.5 15.7C-1.8 10.4 5.4 1.4 13 8.2 20.6 1.4 27.8 10.4 22.5 15.7L13 25Z"); }
.trust-icon.globe::after { content: ""; clip-path: path("M13.5 1a12.5 12.5 0 1 0 0 25 12.5 12.5 0 0 0 0-25Zm0 3c1 1.2 1.8 2.8 2.2 4.7h-4.4C11.7 6.8 12.5 5.2 13.5 4ZM4.2 15a9.8 9.8 0 0 1 0-3h4.1a18.2 18.2 0 0 0 0 3H4.2Zm1.4 3h3.5c.4 1.5.9 2.8 1.6 4a9.6 9.6 0 0 1-5.1-4Zm3.5-9H5.6a9.6 9.6 0 0 1 5.1-4c-.7 1.2-1.2 2.5-1.6 4Zm4.4 13.9c-1-1.3-1.8-2.9-2.2-4.9h4.4c-.4 2-1.2 3.6-2.2 4.9Zm2.7-7.9h-5.4a15.8 15.8 0 0 1 0-3h5.4a15.8 15.8 0 0 1 0 3Zm.1 7c.7-1.2 1.2-2.5 1.6-4h3.5a9.6 9.6 0 0 1-5.1 4Zm2.4-7a18.2 18.2 0 0 0 0-3h4.1a9.8 9.8 0 0 1 0 3h-4.1Zm-.8-6c-.4-1.5-.9-2.8-1.6-4a9.6 9.6 0 0 1 5.1 4h-3.5Z"); }
.trust-strip h2 { font-size: 1.38rem; max-width: 220px; margin-top: 8px; margin-bottom: 10px; }
.trust-strip p { grid-column: 1 / -1; font-size: 0.92rem; max-width: none; margin-top: 6px; }
.trust-divider {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 1px;
  background: var(--gold);
}
.trust-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 32px;
  height: 11px;
  transform: translateX(-50%);
  background: white;
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.trust-strip article:hover .trust-icon { transform: translateY(-4px) scale(1.06); box-shadow: 0 12px 26px rgba(159, 31, 39, .2); }
.trust-strip article:hover .trust-divider { background: var(--maroon); }

.section, .split-section, .process-section, .form-section, .article, .page-hero {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 86px);
}
.split-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 42px; align-items: center; }
.inner-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 34px;
  align-items: end;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(255,253,250,.96), rgba(255,246,239,.84)),
    url('/assets/images/hero-matchmaking.png') right center / auto 120% no-repeat;
  border-bottom: 1px solid var(--line);
}
.inner-hero > div,
.inner-hero > aside { position: relative; z-index: 1; }
.inner-hero p { max-width: 780px; margin-inline: 0; }
.hero-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  color: var(--maroon);
  margin-bottom: 8px;
}
.hero-stat span { color: var(--muted); font-weight: 800; }
.about-intro { align-items: stretch; }
.founder-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
}
.about-intro > div:first-child {
  align-self: center;
}
.founder-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #fff, var(--ivory));
  border-color: rgba(201, 152, 63, 0.45);
}
.founder-photo {
  margin: 0;
  border: 1px solid rgba(201, 152, 63, 0.55);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(116, 21, 28, 0.12);
  background: white;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}
.founder-message span,
.mission-card small {
  color: var(--maroon);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
}
.founder-message p {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.35;
}
.founder-message strong { color: var(--maroon); }
.mission-section { padding-top: 28px; }
.mission-card { min-height: 260px; }
.values-band {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) 1.3fr;
  gap: 34px;
  align-items: center;
}
.contact-section { align-items: start; }
.guidance-section {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: center;
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
  background: linear-gradient(180deg, #fff, #fff9ef);
  border-bottom: 1px solid var(--line);
}
.consultation-photo {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.consultation-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.contact-list {
  background: linear-gradient(180deg, #fff, var(--ivory));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.contact-methods {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), border-color .32s var(--ease-out);
}
.contact-methods strong { color: var(--maroon); }
.contact-methods span { color: var(--muted); overflow-wrap: anywhere; }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.cards { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.card small { color: var(--emerald); font-weight: 800; display: block; margin-bottom: 12px; }
.cards .card h2,
.cards .media-card h2,
.story-cards .card h2,
.blog-cards .card h2 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.18;
  margin-bottom: 14px;
}
.media-card {
  padding: 0;
  overflow: hidden;
}
.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.media-card > div {
  padding: 22px 24px 26px;
}
.blog-cards .media-card img {
  aspect-ratio: 16 / 9;
}
.text-link { color: var(--maroon); font-weight: 800; border-bottom: 1px solid var(--gold); }
.success-section {
  padding-top: 0;
  padding-bottom: clamp(42px, 5vw, 72px);
  background: #fffdfa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.success-section .cards {
  margin: 34px clamp(18px, 5vw, 86px) 0;
}
.success-lead {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 38vw, 540px);
  padding: clamp(38px, 5vw, 68px) clamp(18px, 5vw, 86px);
  overflow: hidden;
}
.success-lead > div {
  position: relative;
  z-index: 2;
  width: min(640px, 52%);
}
.success-lead p:not(.eyebrow) {
  max-width: 570px;
}
.success-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #fffdfa;
}
.success-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fffdfa 0%, rgba(255,253,250,.98) 19%, rgba(255,253,250,.8) 34%, rgba(255,253,250,.34) 51%, rgba(255,253,250,0) 70%),
    linear-gradient(180deg, rgba(255,253,250,0) 72%, rgba(255,253,250,.62) 100%);
}
.success-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.soft { background: var(--ivory); }
.process-section { text-align: center; background: linear-gradient(180deg, #fff, var(--pink)); }
.steps { grid-template-columns: repeat(5, 1fr); text-align: left; margin: 32px 0; }
.steps strong { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--maroon); color: white; margin-bottom: 16px; }
.steps article:hover strong { animation: softPop .55s var(--ease-out); }
.large { text-align: left; display: grid; grid-template-columns: repeat(2, 1fr); }
.large .btn { justify-self: start; }
.process-page {
  padding: clamp(46px, 7vw, 88px) clamp(18px, 5vw, 86px);
  background:
    linear-gradient(180deg, #fffdfa 0%, #fff7f6 100%),
    radial-gradient(circle at 90% 10%, rgba(201, 152, 63, .1), transparent 28%);
}
.process-intro {
  max-width: 820px;
  margin-bottom: 34px;
}
.process-intro h2 {
  margin-bottom: 16px;
}
.process-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 1060px;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 152, 63, .12));
}
.process-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(234, 216, 196, .9);
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0 14px 32px rgba(116, 21, 28, .06);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.process-timeline article:hover {
  transform: translateX(6px);
  border-color: rgba(201, 152, 63, .72);
  box-shadow: 0 22px 42px rgba(116, 21, 28, .1);
}
.process-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--maroon);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(116, 21, 28, .18);
}
.process-timeline h2 {
  font-size: clamp(1.42rem, 2.2vw, 2.05rem);
  margin-bottom: 10px;
}
.process-timeline p {
  max-width: 760px;
  margin-bottom: 0;
}
.process-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  max-width: 1060px;
  margin-top: 26px;
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  box-shadow: var(--shadow);
}
.process-cta h2,
.process-cta p {
  color: white;
}
.process-cta h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  margin-bottom: 8px;
}
.process-cta p {
  margin-bottom: 0;
}
.accent-section {
  margin: clamp(24px, 5vw, 64px) clamp(18px, 5vw, 86px);
  padding: clamp(38px, 6vw, 72px);
  border-radius: 8px;
  background: var(--maroon);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.accent-section::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -8%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  animation: slowSweep 9s ease-in-out infinite alternate;
}
.accent-section > * { position: relative; z-index: 1; }
.accent-section h2, .accent-section p, .final-cta h2, .final-cta p { color: white; }
.two-col { grid-template-columns: 1fr 1fr; }
.list-panel a, details { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); }
.list-panel span { display: block; color: var(--muted); margin-top: 6px; }
summary { cursor: pointer; font-weight: 800; color: var(--maroon-dark); }
.final-cta { text-align: center; padding: clamp(54px, 8vw, 96px) 18px; background: linear-gradient(135deg, var(--maroon), var(--emerald)); }
.final-cta p { max-width: 760px; margin-inline: auto; }
.page-hero { background: var(--ivory); text-align: left; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero p { max-width: 850px; margin-inline: 0; }
.page-hero:not(.inner-hero) {
  background:
    linear-gradient(90deg, rgba(255,253,250,.96), rgba(255,246,239,.9)),
    url('/assets/images/hero-matchmaking.png') right center / auto 120% no-repeat;
  border-bottom: 1px solid var(--line);
}
.page-hero:not(.inner-hero) p { margin-inline: 0; }
.tag-cloud { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.tag-cloud span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; background: white; color: var(--maroon-dark); font-weight: 700; transition: transform .28s var(--ease-out), border-color .28s var(--ease-out), box-shadow .28s var(--ease-out); }
.tag-cloud span:hover { transform: translateY(-3px); border-color: rgba(201, 152, 63, .7); box-shadow: 0 14px 28px rgba(116, 21, 28, .08); }

.pj-form { background: white; border: 1px solid var(--line); border-radius: 8px; padding: clamp(22px, 4vw, 42px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
label { display: grid; gap: 8px; font-weight: 700; color: var(--maroon-dark); }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; font: inherit; background: #fffdfa; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(201, 152, 63, .22);
  border-color: var(--gold);
  background: white;
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; }
.consent { display: flex; grid-template-columns: auto 1fr; align-items: start; gap: 10px; margin: 20px 0; }
.consent input { width: auto; margin-top: 7px; }
.honeypot { position: absolute; left: -9999px; }
.notice { padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; font-weight: 700; }
.success { background: #e7f8ee; color: #12643c; }
.error { background: #ffe9e9; color: #8c1515; }
.compact { max-width: 760px; }
.article { max-width: 900px; margin: 0 auto; }
.lead { font-size: 1.2rem; color: var(--ink); }
.article-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 10px 0 28px;
}
.faq-list { max-width: 980px; margin: 0 auto; }

.profile-wizard {
  max-width: 1120px;
  margin: 0 auto;
}
.wizard-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}
.wizard-head h2 { margin-bottom: 0; }
.wizard-head strong {
  color: var(--maroon);
  white-space: nowrap;
}
.wizard-progress {
  height: 10px;
  border-radius: 999px;
  background: #f1e1cf;
  overflow: hidden;
  margin-bottom: 20px;
}
.wizard-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transition: width .38s var(--ease-out);
}
.wizard-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.wizard-steps button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out), color .25s ease, background .25s ease;
}
.wizard-steps button:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 152, 63, .72);
  color: var(--maroon-dark);
}
.wizard-steps button.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: white;
  box-shadow: 0 12px 24px rgba(116, 21, 28, .14);
}
.wizard-step {
  border: 0;
  padding: 0;
  margin: 0;
}
.profile-wizard.is-ready .wizard-step {
  display: none;
}
.profile-wizard.is-ready .wizard-step.active {
  display: block;
  animation: wizardStepIn .38s var(--ease-out) both;
}
.wizard-step legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.step-help {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
}
.upload-grid label {
  min-height: 112px;
  justify-content: center;
  border: 1px dashed rgba(201, 152, 63, .72);
  border-radius: 8px;
  padding: 16px;
  background: #fffdfa;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.wizard-actions .btn {
  min-width: 150px;
}

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

.footer { background: #221616; color: white; padding: 56px clamp(18px, 5vw, 86px) 24px; }
.footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); }
.footer h3, .footer p { color: white; }
.footer a { display: block; color: #f5d7c8; margin-bottom: 10px; }
.social-link { display: inline-flex !important; align-items: center; gap: 8px; }
.social-link.inline { color: var(--maroon); font-weight: 800; }
.social-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b1d5f, #e3445b 48%, #f6b343);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  font-family: Inter, system-ui, sans-serif;
}
.footer-logo { width: 250px; background: white; border-radius: 8px; padding: 8px; margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px; margin-top: 34px; }
.footer-bottom a { display: inline; margin-left: 16px; }
.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 30; border-radius: 999px; padding: 13px 20px; font-weight: 800; box-shadow: var(--shadow); animation: whatsappPulse 2.8s ease-in-out infinite; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity .76s var(--ease-out) var(--reveal-delay, 0ms),
    transform .76s var(--ease-out) var(--reveal-delay, 0ms),
    filter .76s var(--ease-out) var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.hero-media.reveal {
  opacity: 0;
  transform: scale(1.025);
  filter: blur(3px);
}
.hero-media.reveal.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.hero-copy h1.reveal {
  transform: translateY(28px);
}
.hero-copy .eyebrow.reveal {
  transform: translateY(16px);
}

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

@keyframes heroImageDrift {
  from { transform: translateX(0) scale(1); }
  to { transform: translateX(-10px) scale(1.018); }
}

@keyframes heroSoftLight {
  from { transform: translateX(-42%); opacity: .22; }
  to { transform: translateX(20%); opacity: .46; }
}

@keyframes ringBreath {
  0%, 100% { transform: scale(.94); opacity: .48; }
  50% { transform: scale(1.08); opacity: .95; }
}

@keyframes softPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes slowSweep {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(78%, 34%, 0) scale(1.18); }
}

@keyframes whatsappPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 14px 30px rgba(31, 181, 106, .24); }
  50% { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(31, 181, 106, .36); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.login-page { min-height: 100vh; display: grid; place-items: center; background: var(--ivory); padding: 20px; }
.login-card { width: min(440px, 100%); background: white; border: 1px solid var(--line); border-radius: 8px; padding: 34px; box-shadow: var(--shadow); }
.login-card img { width: 230px; margin: 0 auto 20px; }
.admin-body { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-side { background: #221616; color: white; padding: 24px; position: sticky; top: 0; height: 100vh; }
.admin-side img { background: white; border-radius: 8px; padding: 6px; margin-bottom: 26px; }
.admin-side a { display: block; padding: 11px 0; color: #f5d7c8; }
.admin-main { padding: 34px; overflow-x: auto; }
.admin-cards { grid-template-columns: repeat(3, 1fr); }
.admin-cards strong { display: block; font-size: 2.2rem; color: var(--maroon); }
.admin-table { width: 100%; border-collapse: collapse; background: white; margin-top: 22px; }
.admin-table th, .admin-table td { border-bottom: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
.admin-filter { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.detail-grid { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
.detail-grid div { border-bottom: 1px solid var(--line); padding: 12px; background: white; }
.detail-grid strong { display: block; color: var(--maroon-dark); text-transform: capitalize; }

@media (max-width: 1100px) {
  .menu-toggle { display: inline-flex; margin-left: auto; border: 1px solid var(--line); border-radius: 8px; background: white; padding: 10px 14px; }
  .main-nav { display: none; position: absolute; inset: 76px 18px auto; flex-direction: column; align-items: stretch; padding: 18px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .header-wa { display: none; }
  .brand img { max-width: 200px; }
  .hero { min-height: auto; padding-top: 36px; padding-bottom: 0; flex-direction: column; align-items: stretch; }
  .hero::before { background: linear-gradient(180deg, #fffdfa 0%, rgba(255,250,242,.92) 62%, rgba(255,250,242,0) 100%); }
  .hero-media { position: relative; inset: auto; width: calc(100% + 36px); min-height: 360px; margin: 28px -18px 0; }
  .hero-media img { width: 100%; object-fit: cover; object-position: center; }
  .trust-strip, .cards, .steps, .footer-grid, .admin-cards { grid-template-columns: repeat(2, 1fr); }
  .split-section, .two-col, .large, .inner-hero, .values-band, .founder-grid, .guidance-section { grid-template-columns: 1fr; }
  .success-lead {
    display: grid;
    gap: 24px;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 0;
  }
  .success-lead > div { width: 100%; }
  .success-photo {
    position: relative;
    width: calc(100% + 36px);
    height: auto;
    min-height: 280px;
    margin: 0 -18px;
  }
  .success-photo img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: center;
  }
  .success-section .cards { margin-inline: clamp(18px, 5vw, 86px); }
  .founder-photo img { min-height: 0; aspect-ratio: 4 / 5; height: auto; }
  .process-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  h1 { font-size: 2.45rem; }
  .site-header { min-height: 68px; padding: 8px 14px; }
  .brand img { max-width: 168px; }
  .main-nav { inset-top: 68px; }
  .hero .eyebrow::before,
  .hero .eyebrow::after { display: none; }
  .hero-media { min-height: 300px; }
  .trust-strip, .cards, .steps, .feature-grid, .form-grid, .footer-grid, .admin-cards, .detail-grid, .wizard-steps { grid-template-columns: 1fr; }
  .wizard-head { align-items: flex-start; flex-direction: column; }
  .wizard-head strong { white-space: normal; }
  .wizard-actions { flex-direction: column-reverse; }
  .wizard-actions .btn { width: 100%; }
  .process-page { padding-top: 38px; }
  .process-timeline::before { display: none; }
  .process-timeline article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }
  .process-timeline article:hover { transform: translateY(-3px); }
  .process-timeline span {
    width: 46px;
    height: 46px;
  }
  .process-cta .btn { width: 100%; }
  .accent-section { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-side { height: auto; position: static; }
}
