:root {
  --white: #ffffff;
  --ivory: #fffdf8;
  --cream: #f8f2e7;
  --cream-deep: #efe2c9;
  --ink: #181713;
  --muted: #68645d;
  --gold: #c7922b;
  --gold-light: #ebc66f;
  --gold-pale: #f7e9bd;
  --gold-dark: #8f6319;
  --border: rgba(143, 99, 25, .18);
  --shadow-sm: 0 12px 35px rgba(45, 34, 15, .08);
  --shadow-md: 0 24px 70px rgba(45, 34, 15, .13);
  --shadow-gold: 0 18px 45px rgba(199, 146, 43, .25);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--gold-pale); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 112px 0; position: relative; }
.section-shell { position: relative; overflow: hidden; }

.page-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 999;
  background: transparent;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 12px rgba(199, 146, 43, .45);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 15px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  padding: 9px 0;
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(143, 99, 25, .1);
  box-shadow: 0 10px 35px rgba(45, 34, 15, .06);
}
.header-inner { display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-copy { line-height: 1; display: grid; gap: 4px; }
.brand-copy small { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .25em; font-size: 9px; font-weight: 700; }
.brand-copy strong { font-family: var(--font-display); color: var(--gold-dark); font-size: 26px; line-height: .85; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: #3e3b35; font-size: 13px; font-weight: 700; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: -10px;
  height: 2px;
  background: var(--gold);
  transition: left .25s ease, right .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }
.main-nav a.active { color: var(--gold-dark); }
.header-cta { flex: 0 0 auto; }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--ink); transition: .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button svg, .text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-3px); }
.button-gold {
  color: #211a0e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,.6);
}
.button-gold:hover { background: linear-gradient(135deg, #f3d585, #bd8420); box-shadow: 0 22px 52px rgba(199, 146, 43, .33); }
.button-outline { background: rgba(255,255,255,.7); color: var(--ink); border-color: rgba(143,99,25,.3); box-shadow: 0 9px 28px rgba(45,34,15,.06); }
.button-outline:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--white); }

.hero {
  min-height: 930px;
  display: grid;
  align-items: center;
  padding: 126px 0 70px;
  background:
    radial-gradient(circle at 70% 30%, rgba(235,198,111,.22), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fffdf8 54%, #f8f0df 100%);
  border-bottom: 1px solid rgba(143,99,25,.09);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(143,99,25,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,99,25,.05) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 38px; }
.hero-copy { padding-top: 15px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 800;
}
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.hero h1, .section-heading h2, .about-copy h2, .mentorship-copy h2, .events-copy h2, .contact-copy h2 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .93;
}
.hero h1 { max-width: 720px; font-size: clamp(60px, 7.2vw, 100px); }
h1 em, h2 em { color: var(--gold); font-weight: 600; }
.hero h1 em { display: block; }
.hero-intro { max-width: 630px; margin: 28px 0 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 27px; margin-top: 34px; color: #4e4942; font-size: 13px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust i { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 50%; color: var(--gold-dark); font-style: normal; background: rgba(255,255,255,.6); }
.hero-visual { position: relative; min-height: 720px; display: flex; align-items: flex-end; justify-content: center; }
.portrait-frame { position: relative; width: min(100%, 540px); height: 720px; overflow: hidden; border-radius: 310px 310px 40px 40px; box-shadow: var(--shadow-md); background: #eef0f5; }
.portrait-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(143,99,25,.15); border-radius: inherit; pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-ring { position: absolute; width: 610px; height: 610px; border-radius: 50%; border: 1px solid rgba(199,146,43,.45); top: 46px; right: -30px; }
.portrait-ring::before, .portrait-ring::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(199,146,43,.18); }
.portrait-ring::before { inset: 28px; }
.portrait-ring::after { inset: 60px; }
.floating-note { position: absolute; z-index: 4; padding: 15px 18px; min-width: 145px; border-radius: 16px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); }
.floating-note strong { display: block; color: var(--gold-dark); font-family: var(--font-display); font-size: 23px; line-height: 1; }
.floating-note span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.note-one { left: -20px; bottom: 155px; }
.note-two { right: -15px; top: 145px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; top: -180px; right: 8%; background: radial-gradient(circle, rgba(235,198,111,.23), transparent 68%); }
.hero-orb-two { width: 300px; height: 300px; left: -120px; bottom: -100px; background: radial-gradient(circle, rgba(199,146,43,.15), transparent 68%); }
.gold-leaves::before, .gold-leaves::after { content: ""; position: absolute; width: 170px; height: 1px; background: linear-gradient(90deg, transparent, rgba(199,146,43,.5), transparent); transform-origin: center; }
.leaves-one { position: absolute; right: 1%; top: 160px; opacity: .7; }
.leaves-one::before { transform: rotate(55deg); }
.leaves-one::after { top: 54px; transform: rotate(-28deg); }
.scroll-cue { position: absolute; z-index: 3; bottom: 22px; left: 50%; transform: translateX(-50%); display: grid; justify-items: center; gap: 5px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.scroll-cue span { width: 1px; height: 30px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 1.7s infinite; }
@keyframes scrollPulse { 0%,100% { opacity:.35; transform:scaleY(.7); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }

.section-heading { max-width: 760px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .about-copy h2, .mentorship-copy h2, .events-copy h2, .contact-copy h2 { font-size: clamp(48px, 5.5vw, 74px); }
.section-heading p { margin: 20px auto 0; color: var(--muted); max-width: 660px; }
.section-heading h2 { margin-top: 12px; }

.pillars { background: var(--white); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.pillar-card { position: relative; min-height: 325px; padding: 38px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(145deg, #fff, #fffaf0); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.pillar-card::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -42px; bottom: -48px; background: radial-gradient(circle, rgba(235,198,111,.25), transparent 70%); }
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(199,146,43,.4); }
.icon-medallion { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; color: var(--gold-dark); background: rgba(247,233,189,.45); border: 1px solid rgba(199,146,43,.35); }
.icon-medallion svg, .line-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 38px; right: 32px; color: rgba(143,99,25,.22); font-family: var(--font-display); font-size: 25px; font-weight: 700; }
.pillar-card h3 { margin: 25px 0 10px; font-family: var(--font-display); font-size: 35px; line-height: 1; }
.pillar-card p { margin: 0; color: var(--muted); font-size: 14px; }

.about { background: linear-gradient(180deg, var(--ivory), #f9f2e5); }
.about-grid { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 78px; }
.about-media { position: relative; min-height: 670px; }
.photo-card { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.photo-card-main { width: 80%; height: 650px; background: #151d27; }
.photo-card-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.photo-accent { position: absolute; right: 0; bottom: 46px; width: 46%; height: 250px; overflow: hidden; border-radius: 22px; border: 8px solid var(--ivory); box-shadow: var(--shadow-md); }
.photo-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-seal { position: absolute; right: 6%; top: 4%; width: 115px; height: 115px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.85); border: 1px solid var(--border); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.about-seal img { width: 85px; height: 85px; object-fit: contain; }
.about-copy h2 { margin-top: 12px; }
.about-copy p { color: var(--muted); }
.about-copy .lead, .events-copy .lead { color: #3f3b35; font-size: 19px; line-height: 1.65; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0; }
.about-values div { padding: 17px 12px; border-top: 1px solid var(--border); }
.about-values strong { display: block; color: var(--gold-dark); font-family: var(--font-display); font-size: 24px; line-height: 1; }
.about-values span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-dark); font-size: 13px; font-weight: 800; border-bottom: 1px solid rgba(143,99,25,.35); padding-bottom: 5px; }
.text-link:hover svg { transform: translateX(4px); }
.text-link svg { transition: transform .25s ease; }

.mentorship { background: var(--white); }
.mentorship-card { position: relative; min-height: 650px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; overflow: hidden; border: 1px solid var(--border); border-radius: 42px; background: linear-gradient(115deg, #fffdf8 0%, #f9edd1 100%); box-shadow: var(--shadow-md); }
.mentorship-card::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -170px; top: -130px; border: 1px solid rgba(199,146,43,.22); box-shadow: 0 0 0 40px rgba(199,146,43,.04), 0 0 0 90px rgba(199,146,43,.025); }
.mentorship-copy { position: relative; z-index: 2; padding: 70px 20px 70px 72px; }
.mentorship-copy p { max-width: 570px; color: var(--muted); }
.mentorship-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 34px 0; }
.mentorship-features div { padding: 18px 12px; border-left: 1px solid rgba(143,99,25,.2); }
.mini-icon { color: var(--gold); font-size: 24px; }
.mentorship-features strong { display: block; margin-top: 5px; font-size: 13px; }
.mentorship-features small { color: var(--muted); font-size: 10px; }
.mentorship-visual { position: relative; height: 650px; align-self: end; display: flex; justify-content: center; align-items: end; }
.mentorship-visual img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: center top; mask-image: linear-gradient(to right, transparent 0, #000 20%, #000 100%); }
.gold-circle { position: absolute; z-index: 1; width: 480px; height: 480px; border-radius: 50%; top: 70px; right: -20px; background: radial-gradient(circle, rgba(235,198,111,.45), rgba(199,146,43,.1) 48%, transparent 70%); }

.ministry { background: #fffaf1; }
.ministry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 52px; }
.ministry-card { min-height: 270px; padding: 30px 20px; text-align: center; border-radius: var(--radius); border: 1px solid var(--border); background: rgba(255,255,255,.88); box-shadow: 0 14px 40px rgba(45,34,15,.06); transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.ministry-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: var(--shadow-md); }
.line-icon { width: 72px; height: 72px; margin: 0 auto 20px; display: grid; place-items: center; color: var(--gold); border-radius: 50%; border: 1px solid rgba(199,146,43,.3); background: rgba(247,233,189,.3); }
.ministry-card h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 25px; line-height: 1.05; }
.ministry-card p { margin: 0; color: var(--muted); font-size: 12px; }

.quote-section { background: linear-gradient(120deg, #161412 0%, #2b241a 55%, #17130e 100%); color: var(--white); }
.quote-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 40%, rgba(235,198,111,.18), transparent 30%); }
.quote-grid { position: relative; z-index: 2; min-height: 570px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.quote-portrait { height: 570px; align-self: end; overflow: hidden; opacity: .86; }
.quote-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.75); mask-image: linear-gradient(to right, #000 72%, transparent), linear-gradient(to top, transparent, #000 25%); mask-composite: intersect; }
.quote-grid blockquote { margin: 0; position: relative; }
.quote-mark { position: absolute; left: -55px; top: -45px; color: var(--gold-light); font-family: var(--font-display); font-size: 120px; line-height: 1; opacity: .65; }
.quote-grid blockquote p { margin: 0; max-width: 650px; font-family: var(--font-display); font-size: clamp(48px, 6vw, 78px); line-height: .95; letter-spacing: -.04em; }
.quote-grid blockquote footer { margin-top: 24px; display: flex; align-items: center; gap: 14px; color: var(--gold-light); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.quote-grid blockquote footer::before { content: ""; width: 58px; height: 1px; background: var(--gold); }
.quote-lines { position: absolute; inset: 0; opacity: .08; background-image: repeating-linear-gradient(120deg, transparent 0 45px, rgba(235,198,111,.8) 46px 47px); }

.events { background: var(--white); }
.events-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
.events-gallery { position: relative; min-height: 570px; }
.events-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.events-gallery img { width: 100%; height: 100%; object-fit: cover; }
.event-large { width: 82%; height: 520px; }
.event-small { position: absolute; right: 0; bottom: 0; width: 46%; height: 260px; border: 8px solid var(--white); }
.events-copy h2 { margin-top: 12px; }
.events-copy p { color: var(--muted); }
.check-list { margin: 25px 0 32px; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.check-list li { position: relative; padding-left: 25px; color: #4f4a43; font-size: 13px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-pale); font-size: 10px; }

.journey { background: linear-gradient(180deg, #fffaf1, #fff); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.journey-card { position: relative; min-height: 260px; padding: 37px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }
.journey-card::after { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; right: -85px; bottom: -85px; background: rgba(247,233,189,.45); }
.journey-card > span { color: var(--gold); font-family: var(--font-display); font-size: 26px; }
.journey-card h3 { margin: 23px 0 10px; font-family: var(--font-display); font-size: 31px; line-height: 1; }
.journey-card p { margin: 0; color: var(--muted); font-size: 13px; }

.gallery { background: var(--white); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 40px; }
.split-heading p { margin: 0; max-width: 500px; }
.photo-grid { margin-top: 48px; display: grid; grid-template-columns: 1.05fr .9fr .9fr; grid-template-rows: 330px 330px; gap: 18px; }
.photo-grid figure { margin: 0; overflow: hidden; border-radius: 24px; position: relative; background: var(--cream); }
.photo-grid figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(143,99,25,.12); border-radius: inherit; pointer-events: none; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.photo-grid figure:hover img { transform: scale(1.035); }
.photo-tall:first-child { grid-row: 1 / 3; }
.photo-grid .photo-square:nth-child(2) img { object-position: center 17%; }
.photo-grid .photo-square:nth-child(3) img { object-position: center 18%; }
.photo-wide { grid-column: 2 / 4; }
.photo-wide img { object-position: center 26%; }
.photo-grid .photo-tall:last-child { display: none; }

.contact { background: #f8f0df; }
.contact-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; overflow: hidden; border: 1px solid var(--border); border-radius: 42px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-md); }
.contact-card::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; left: -180px; top: -170px; background: radial-gradient(circle, rgba(235,198,111,.3), transparent 70%); }
.contact-copy { position: relative; min-height: 680px; padding: 70px 20px 0 64px; overflow: hidden; }
.contact-copy p { max-width: 470px; color: var(--muted); }
.contact-points { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 24px; }
.contact-points span { display: inline-flex; gap: 7px; align-items: center; color: #4f4a43; font-size: 11px; font-weight: 700; }
.contact-points i { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-dark); font-style: normal; font-size: 10px; }
.contact-photo { position: absolute; left: 95px; right: 40px; bottom: -250px; height: 610px; border-radius: 240px 240px 0 0; overflow: hidden; opacity: .95; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-form { align-self: center; margin: 35px; padding: 37px; border-radius: 28px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-header { display: grid; gap: 5px; margin-bottom: 25px; }
.form-header span { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 800; }
.form-header strong { font-family: var(--font-display); font-size: 29px; line-height: 1.1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: #4b4740; font-size: 11px; font-weight: 800; }
.full-field { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid rgba(143,99,25,.18); background: #fffcf7; color: var(--ink); border-radius: 12px; padding: 14px 15px; outline: none; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
input, select { min-height: 51px; }
textarea { resize: vertical; min-height: 125px; }
input:focus, select:focus, textarea:focus { background: var(--white); border-color: rgba(199,146,43,.65); box-shadow: 0 0 0 4px rgba(235,198,111,.2); }
.invalid { border-color: #b84a42 !important; box-shadow: 0 0 0 4px rgba(184,74,66,.1) !important; }
.privacy-check { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: var(--muted); font-size: 10px; }
.privacy-check input { width: 17px; height: 17px; min-height: 0; margin-top: 2px; accent-color: var(--gold); }
.button-submit { width: 100%; border: 0; }
.form-note { margin: 12px 0 0; text-align: center; color: #8a857c; font-size: 9px; }

.site-footer { padding: 65px 0 24px; background: #17140f; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr .75fr; gap: 45px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 75px; height: 75px; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(235,198,111,.15)); }
.footer-brand small { display: block; color: var(--gold-light); text-transform: uppercase; letter-spacing: .2em; font-size: 9px; }
.footer-brand strong { display: block; font-family: var(--font-display); font-size: 31px; line-height: 1; }
.footer-brand p { margin: 6px 0 0; color: rgba(255,255,255,.55); font-size: 10px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { text-align: right; }
.footer-social > span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.6); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.footer-social > div { display: flex; justify-content: flex-end; gap: 8px; }
.footer-social a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(235,198,111,.3); color: var(--gold-light); font-size: 11px; transition: .25s ease; }
.footer-social a:hover { transform: translateY(-3px); background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-bottom { margin-top: 45px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.4); font-size: 9px; }
.footer-bottom a { color: var(--gold-light); }

.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border: 0; border-radius: 999px; color: #211a0e; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: var(--shadow-gold); cursor: pointer; font-size: 11px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease; }
.floating-contact:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(199,146,43,.35); }
.floating-contact svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.toast { position: fixed; z-index: 1000; left: 50%; bottom: 28px; max-width: min(420px, calc(100% - 30px)); padding: 13px 18px; border-radius: 12px; color: var(--white); background: #252019; box-shadow: var(--shadow-md); transform: translate(-50%, 150%); opacity: 0; transition: .3s ease; font-size: 12px; text-align: center; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .main-nav { gap: 20px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr .85fr; }
  .portrait-frame { height: 620px; }
  .hero-visual { min-height: 620px; }
  .portrait-ring { width: 520px; height: 520px; }
  .about-grid { gap: 45px; }
  .ministry-grid { grid-template-columns: repeat(3, 1fr); }
  .ministry-card:nth-child(4), .ministry-card:nth-child(5) { transform: translateX(50%); }
  .mentorship-copy { padding-left: 48px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 74px; }
  .site-header { padding: 9px 0; background: rgba(255,253,248,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(143,99,25,.1); }
  .brand img { width: 50px; height: 50px; }
  .brand-copy strong { font-size: 23px; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 69px 14px auto; display: grid; gap: 0; padding: 16px; border-radius: 20px; background: rgba(255,253,248,.98); border: 1px solid var(--border); box-shadow: var(--shadow-md); transform: translateY(-20px); opacity: 0; visibility: hidden; transition: .25s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 14px; border-bottom: 1px solid rgba(143,99,25,.09); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .hero { padding-top: 115px; }
  .hero-grid, .about-grid, .events-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-intro { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 35px; }
  .portrait-frame { width: min(100%, 530px); }
  .about-media { max-width: 650px; margin-inline: auto; width: 100%; }
  .about-copy { text-align: center; }
  .about-values { max-width: 590px; margin-inline: auto; margin-block: 30px; }
  .mentorship-card { grid-template-columns: 1fr; }
  .mentorship-copy { padding: 60px 45px 0; text-align: center; }
  .mentorship-features { max-width: 650px; margin-inline: auto; margin-block: 34px; }
  .mentorship-visual { height: 600px; }
  .mentorship-visual img { mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 100%); object-position: center 12%; }
  .quote-grid { grid-template-columns: .75fr 1.25fr; gap: 30px; }
  .events-gallery { max-width: 700px; width: 100%; margin-inline: auto; }
  .events-copy { text-align: center; }
  .check-list { max-width: 540px; margin-inline: auto; margin-block: 25px 32px; text-align: left; }
  .split-heading { grid-template-columns: 1fr; text-align: center; }
  .split-heading p { margin-inline: auto; }
  .contact-copy { min-height: 560px; text-align: center; padding: 60px 35px 0; }
  .contact-copy p { margin-inline: auto; }
  .contact-points { justify-content: center; }
  .contact-photo { left: 25%; right: 25%; bottom: -280px; }
  .contact-form { margin: 28px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-social { text-align: center; }
  .footer-social > div { justify-content: center; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .brand-copy small { font-size: 7px; }
  .brand-copy strong { font-size: 20px; }
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: clamp(52px, 15vw, 70px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 10px; }
  .hero-trust span { font-size: 10px; }
  .hero-trust i { width: 28px; height: 28px; }
  .hero-visual { min-height: 500px; }
  .portrait-frame { height: 500px; border-radius: 260px 260px 30px 30px; }
  .portrait-ring { width: 430px; height: 430px; top: 20px; right: 50%; transform: translateX(50%); }
  .floating-note { display: none; }
  .scroll-cue { display: none; }
  .pillar-grid, .journey-grid { grid-template-columns: 1fr; }
  .pillar-card, .journey-card { min-height: auto; }
  .photo-card-main { width: 100%; height: 520px; }
  .photo-accent { width: 55%; height: 200px; bottom: -25px; }
  .about-media { min-height: 575px; }
  .about-seal { right: 2%; width: 90px; height: 90px; }
  .about-seal img { width: 65px; height: 65px; }
  .about-values { grid-template-columns: 1fr; gap: 0; }
  .mentorship-card { border-radius: 28px; }
  .mentorship-copy { padding: 50px 22px 0; }
  .mentorship-features { grid-template-columns: 1fr; text-align: left; }
  .mentorship-visual { height: 510px; }
  .ministry-grid { grid-template-columns: 1fr; }
  .ministry-card:nth-child(4), .ministry-card:nth-child(5) { transform: none; }
  .ministry-card { min-height: auto; }
  .quote-grid { min-height: 700px; grid-template-columns: 1fr; gap: 0; }
  .quote-portrait { height: 370px; order: 2; }
  .quote-grid blockquote { padding: 75px 20px 25px; text-align: center; }
  .quote-grid blockquote p { font-size: clamp(46px, 13vw, 62px); }
  .quote-mark { left: 0; right: 0; top: 22px; }
  .quote-grid blockquote footer { justify-content: center; }
  .event-large { width: 100%; height: 430px; }
  .event-small { width: 58%; height: 200px; bottom: -25px; }
  .events-gallery { min-height: 485px; }
  .check-list { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 240px 340px; }
  .photo-tall:first-child { grid-row: 1 / 3; }
  .photo-wide { grid-column: 1 / 3; }
  .photo-grid .photo-tall:last-child { display: none; }
  .contact-card { border-radius: 28px; }
  .contact-copy { min-height: 520px; padding-inline: 22px; }
  .contact-photo { left: 12%; right: 12%; }
  .contact-form { margin: 14px; padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-contact span { display: none; }
  .floating-contact { width: 52px; height: 52px; justify-content: center; padding: 0; border-radius: 50%; }
}

@media (max-width: 450px) {
  .brand-copy { display: none; }
  .hero-visual { min-height: 445px; }
  .portrait-frame { height: 445px; }
  .portrait-ring { width: 360px; height: 360px; }
  .photo-accent { right: -5px; }
  .mentorship-visual { height: 440px; }
  .photo-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 350px); }
  .photo-grid figure, .photo-tall:first-child, .photo-wide { grid-column: auto; grid-row: auto; }
  .photo-grid .photo-tall:last-child { display: none; }
}

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


/* ===== Versión 2: Academia, calendario, traducción y donaciones ===== */
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 24px rgba(45,34,15,.06);
}
.language-switcher button {
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5f5a52;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.language-switcher button.active,
.language-switcher button:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #211a0e;
}
#google_translate_element {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-logo-link,
.goog-te-menu-value span:last-child { display: none !important; }
body { top: 0 !important; }
body > .skiptranslate { display: none !important; }

.main-nav { gap: 19px; }
.main-nav a { font-size: 12px; }

.hero-v2 .portrait-frame {
  height: 700px;
  border-radius: 42px 220px 42px 42px;
}
.hero-v2 .portrait-frame img {
  object-position: center 12%;
}
.hero-tagline {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(247,233,189,.55);
  border: 1px solid rgba(199,146,43,.24);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
}
.hero-visual-caption {
  position: absolute;
  z-index: 5;
  left: 18px;
  bottom: 25px;
  max-width: 255px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.hero-visual-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  color: var(--gold-dark);
  line-height: 1;
}
.hero-visual-caption span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.mentorship-v2 {
  background:
    radial-gradient(circle at 12% 10%, rgba(235,198,111,.18), transparent 25%),
    var(--white);
}
.mentorship-v2 .mentorship-card {
  min-height: 720px;
}
.mentorship-v2 .mentorship-copy {
  padding-top: 62px;
  padding-bottom: 62px;
}
.mentorship-focus {
  display: grid;
  gap: 12px;
  margin: 30px 0 32px;
}
.focus-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.65);
}
.focus-card i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-style: normal;
  font-family: var(--font-display);
  font-size: 23px;
}
.focus-card strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
}
.focus-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.mentorship-v2 .mentorship-visual img {
  mask-image: linear-gradient(to left, #000 78%, transparent 100%);
  object-position: center top;
}

.academy {
  background:
    linear-gradient(180deg, #fffaf1, #fff),
    var(--ivory);
}
.academy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.academy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .32s ease, box-shadow .32s ease;
}
.academy-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-md);
}
.academy-media {
  height: 245px;
  overflow: hidden;
  background: var(--cream);
}
.academy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.academy-card:hover .academy-media img { transform: scale(1.045); }
.academy-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}
.academy-label {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.academy-card h3 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: .98;
}
.academy-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}
.academy-card .text-link { margin-top: auto; align-self: flex-start; }
.academy-note {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
}

.activities {
  background: var(--white);
}
.activities-layout {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 34px;
  margin-top: 52px;
  align-items: start;
}
.calendar-card,
.upcoming-card {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fffefa;
  box-shadow: var(--shadow-sm);
}
.calendar-card { padding: 28px; }
.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.calendar-toolbar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}
.calendar-nav {
  display: flex;
  gap: 8px;
}
.calendar-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-dark);
  cursor: pointer;
  transition: .2s ease;
}
.calendar-nav button:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.calendar-weekdays span {
  padding: 7px 2px;
  text-align: center;
  color: #8b857c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.calendar-day {
  position: relative;
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(143,99,25,.1);
  border-radius: 14px;
  background: var(--white);
  color: #514c45;
  cursor: default;
}
.calendar-day.muted { opacity: .28; }
.calendar-day.today {
  border-color: rgba(199,146,43,.65);
  box-shadow: inset 0 0 0 1px rgba(199,146,43,.25);
}
.calendar-day.has-event {
  cursor: pointer;
  background: linear-gradient(145deg, #fff, #fff5dc);
}
.calendar-day.has-event:hover { transform: translateY(-2px); }
.calendar-day-number {
  font-size: 11px;
  font-weight: 800;
}
.calendar-event-dot {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}
.upcoming-card { overflow: hidden; }
.upcoming-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.upcoming-header span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.upcoming-header h3 {
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}
.event-list {
  display: grid;
  gap: 0;
}
.event-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 15px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(143,99,25,.12);
}
.event-item:last-child { border-bottom: 0; }
.event-date-badge {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 16px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  text-align: center;
}
.event-date-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: .8;
}
.event-date-badge span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-item h4 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 10px;
}
.empty-events {
  padding: 36px 28px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}
.admin-hint {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 14px;
  background: #fff8e6;
  color: #75613d;
  font-size: 10px;
  line-height: 1.5;
}

.impact {
  background:
    radial-gradient(circle at 85% 8%, rgba(235,198,111,.2), transparent 24%),
    #17140f;
  color: var(--white);
}
.impact .section-kicker { color: var(--gold-light); }
.impact-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 45px;
  align-items: end;
}
.impact-heading h2 {
  margin: 10px 0 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 82px);
  line-height: .92;
  letter-spacing: -.045em;
}
.impact-heading h2 em { color: var(--gold-light); }
.impact-heading p {
  margin: 0;
  color: rgba(255,255,255,.66);
  max-width: 540px;
}
.impact-stat {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}
.impact-stat strong {
  font-family: var(--font-display);
  font-size: 66px;
  line-height: .8;
  color: var(--gold-light);
}
.impact-stat span {
  max-width: 250px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
}
.impact-slider {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(235,198,111,.2);
  background: #211d16;
}
.impact-track {
  display: flex;
  transition: transform .65s cubic-bezier(.2,.75,.2,1);
}
.impact-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 560px;
}
.impact-slide-media { overflow: hidden; }
.impact-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impact-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
  background:
    radial-gradient(circle at 90% 5%, rgba(235,198,111,.12), transparent 28%),
    #211d16;
}
.impact-slide-copy span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.impact-slide-copy h3 {
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: .95;
}
.impact-slide-copy p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.slider-controls {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 26px;
  display: flex;
  gap: 9px;
}
.slider-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(235,198,111,.35);
  border-radius: 50%;
  background: rgba(23,20,15,.75);
  color: var(--gold-light);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.slider-dots {
  position: absolute;
  z-index: 5;
  left: 28px;
  bottom: 30px;
  display: flex;
  gap: 7px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  cursor: pointer;
}
.slider-dot.active {
  width: 26px;
  border-radius: 999px;
  background: var(--gold-light);
}
.donation-panel {
  margin-top: 32px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(235,198,111,.2);
  background: rgba(255,255,255,.05);
}
.donation-intro { padding: 42px; }
.donation-intro h3 {
  margin: 10px 0 15px;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}
.donation-intro p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 12px;
}
.donation-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(235,198,111,.16);
}
.donation-card {
  padding: 34px;
  background: #fffdf8;
  color: var(--ink);
}
.donation-card h4 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1;
}
.donation-card p {
  min-height: 55px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
}
.payment-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.payment-buttons .button {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 10px;
}
.button-dark {
  color: var(--white);
  background: #1b1813;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}
.button-dark:hover { background: #2a241b; }

.contact-v2 .contact-card {
  grid-template-columns: .78fr 1.22fr;
}
.contact-v2 .contact-copy { min-height: 760px; }
.contact-v2 .contact-photo { bottom: -150px; height: 550px; }
.whatsapp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,.72);
  transition: .22s ease;
}
.whatsapp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199,146,43,.5);
  box-shadow: var(--shadow-sm);
}
.whatsapp-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dff6e8;
  color: #14844b;
  font-style: normal;
  font-weight: 900;
}
.whatsapp-card strong {
  display: block;
  font-size: 11px;
}
.whatsapp-card span {
  display: block;
  color: var(--muted);
  font-size: 9px;
}
.form-status {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11px;
}
.form-status.success { color: #237a46; }
.form-status.error { color: #a23d36; }

.elementor-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: #fff8e7;
  color: #6e624b;
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .header-tools .header-cta { display: none; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 11px; }
}
@media (max-width: 1080px) {
  .language-switcher { margin-left: auto; }
  .academy-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-card:last-child { grid-column: 1 / -1; min-height: 500px; }
  .activities-layout { grid-template-columns: 1fr; }
  .impact-slide { grid-template-columns: 1fr 1fr; }
  .donation-panel { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .header-tools { margin-left: auto; }
  .main-nav { inset: 76px 14px auto; }
  .hero-v2 .portrait-frame { height: 620px; }
  .impact-heading { grid-template-columns: 1fr; text-align: center; }
  .impact-heading p { margin-inline: auto; }
  .impact-stat { justify-content: center; }
  .contact-v2 .contact-card { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .language-switcher button { min-width: 34px; padding-inline: 8px; }
  .header-tools { gap: 5px; }
  .academy-grid { grid-template-columns: 1fr; }
  .academy-card:last-child { grid-column: auto; }
  .calendar-card { padding: 18px; }
  .calendar-day { min-height: 56px; padding: 7px; border-radius: 11px; }
  .calendar-event-dot { left: 7px; right: 7px; bottom: 7px; }
  .impact-slide { grid-template-columns: 1fr; min-height: 720px; }
  .impact-slide-media { height: 360px; }
  .impact-slide-copy { padding: 36px 28px 90px; }
  .donation-options { grid-template-columns: 1fr; }
  .donation-intro { padding: 32px 24px; text-align: center; }
  .whatsapp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 450px) {
  .language-switcher { padding: 3px; }
  .language-switcher button { min-width: 30px; height: 30px; font-size: 9px; }
  .hero-v2 .portrait-frame { height: 470px; }
  .calendar-weekdays span { font-size: 7px; }
  .calendar-days, .calendar-weekdays { gap: 4px; }
  .calendar-day { min-height: 48px; }
  .impact-slide-media { height: 290px; }
}

body.admin-bar .site-header{top:32px;} @media(max-width:782px){body.admin-bar .site-header{top:46px;}}

.main-nav li{list-style:none;margin:0;padding:0}.main-nav li a{display:block}

.house-section { background: linear-gradient(180deg, #fff, #fff8ea); }
.house-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 42px; }
.house-copy p { color: var(--muted); max-width: 560px; }
.house-points { display: grid; gap: 14px; margin: 30px 0; }
.house-points div { display: grid; gap: 4px; padding: 18px 20px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.82); }
.house-points strong { color: var(--gold-dark); font-size: 14px; }
.house-points span { color: var(--muted); font-size: 12px; }
.house-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.house-film-link { position: relative; display: grid; gap: 8px; margin-top: 16px; padding: 20px 22px; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, rgba(20,15,9,.96), rgba(63,44,16,.94)); border: 1px solid rgba(199,146,43,.28); color: var(--white); box-shadow: var(--shadow-md); }
.house-film-link::before { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 10%, rgba(255,255,255,.16) 32%, transparent 56%); transform: translateX(-120%); animation: mbeShine 6s linear infinite; }
.house-film-link > * { position: relative; z-index: 1; }
.film-kicker { color: rgba(255,226,165,.88); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 800; }
.house-film-link strong { font-family: var(--font-display); font-size: 28px; line-height: .95; }
.house-film-link small { color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.65; }
.house-film-link em { display: inline-flex; align-items: center; gap: 10px; margin-top: 4px; color: #ffd56c; font-style: normal; font-weight: 800; }
.house-film-link em i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #d9a834; color: #251704; font-style: normal; }
@keyframes mbeShine { 0% { transform: translateX(-120%); } 100% { transform: translateX(140%); } }
.house-media { position: relative; }
.house-logo-badge { position: absolute; top: -22px; left: -18px; width: 128px; height: 128px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.94); border: 1px solid var(--border); box-shadow: var(--shadow-sm); z-index: 3; }
.house-logo-badge img { width: 98px; height: 98px; object-fit: contain; }
.video-card { position: relative; display: block; min-height: 520px; overflow: hidden; border-radius: 36px; box-shadow: var(--shadow-md); }
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,9,5,.1), rgba(13,9,5,.68)); }
.video-play { position: absolute; left: 40px; right: 40px; bottom: 38px; display: grid; gap: 6px; padding: 22px 24px 22px 88px; color: var(--white); border-radius: 22px; background: rgba(22,17,11,.58); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); }
.video-play i { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #2a1d07; font-style: normal; font-size: 16px; }
.video-play strong { font-size: 18px; }
.video-play small { color: rgba(255,255,255,.78); font-size: 11px; }

.books-section { background: #fffefb; }
.books-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.book-card { display: grid; grid-template-columns: 230px 1fr; gap: 24px; align-items: center; padding: 24px; border-radius: 30px; background: linear-gradient(145deg, #fffdf8, #fff5df); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.book-cover { overflow: hidden; border-radius: 22px; box-shadow: 0 22px 50px rgba(45,34,15,.16); }
.book-cover img { width: 100%; height: 100%; display: block; }
.book-copy span { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 800; }
.book-copy h3 { margin: 10px 0 12px; font-family: var(--font-display); font-size: 34px; line-height: .96; }
.book-copy p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }

.payment-details-grid { margin-top: 26px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 24px; align-items: stretch; }
.payment-summary-card, .payment-data-card { border-radius: 28px; border: 1px solid var(--border); background: #fffdf8; box-shadow: var(--shadow-sm); }
.payment-summary-card { padding: 28px; background: linear-gradient(180deg, #fffefb, #fff6e2); }
.payment-summary-card h3 { margin: 8px 0 12px; font-family: var(--font-display); font-size: 38px; line-height: .95; }
.payment-summary-card p { margin: 0; color: var(--muted); font-size: 14px; max-width: 42ch; }
.payment-summary-meta { display: grid; gap: 12px; margin-top: 22px; }
.payment-summary-meta div, .payment-data-list div, .bank-mini-list div { display: flex; justify-content: space-between; gap: 14px; padding: 14px 16px; border-radius: 18px; background: rgba(247,233,189,.28); border: 1px solid rgba(199,146,43,.16); }
.payment-summary-meta strong, .payment-data-list strong, .bank-mini-list strong { color: var(--gold-dark); }
.payment-summary-meta span, .payment-data-list span, .bank-mini-list span { color: #524b42; font-size: 12px; text-align: right; }
.payment-data-card { padding: 28px; background: linear-gradient(180deg, #fffefb, #fffdf6); }
.payment-data-card--beauty { position: relative; overflow: hidden; }
.payment-data-card--beauty::before { content: ''; position: absolute; inset: auto -80px -120px auto; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(217,168,52,.16), transparent 70%); }
.payment-data-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; position: relative; z-index: 1; }
.payment-seal { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); border: 1px solid rgba(199,146,43,.22); box-shadow: var(--shadow-sm); }
.payment-seal img { width: 52px; height: 52px; object-fit: contain; }
.payment-data-card h3 { margin: 8px 0 0; font-family: var(--font-display); font-size: 34px; line-height: .98; }
.payment-data-list { display: grid; gap: 14px; position: relative; z-index: 1; }
.bank-mini-list { display: grid; gap: 10px; margin-top: 18px; }
.contact-social-inline { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.contact-social-inline a { display: inline-flex; align-items: center; justify-content: center; min-width: 120px; padding: 11px 14px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,.85); color: var(--gold-dark); font-size: 11px; font-weight: 800; }
.contact-social-inline a:hover { background: var(--gold-pale); }

@media (max-width: 1180px) {
  .house-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .payment-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .payment-summary-meta div, .payment-data-list div { flex-direction: column; align-items: flex-start; }
  .payment-summary-meta span, .payment-data-list span { text-align: left; }
}
@media (max-width: 900px) {
  .book-card { grid-template-columns: 1fr; }
  .book-cover { max-width: 280px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .house-logo-badge { width: 95px; height: 95px; left: 14px; top: 14px; }
  .house-logo-badge img { width: 72px; height: 72px; }
  .video-card { min-height: 380px; }
  .video-play { left: 18px; right: 18px; bottom: 18px; padding: 18px 18px 18px 72px; }
  .house-film-link { padding: 18px; }
  .house-film-link strong { font-size: 23px; }
}
