:root {
  --maroon-950: #3b0b1e;
  --maroon-900: #4c1028;
  --maroon-800: #641633;
  --maroon-700: #7a1f3d;
  --maroon-100: #f4e8ed;
  --gold-600: #b7852e;
  --gold-500: #d1a34a;
  --gold-300: #ead196;
  --cream: #fffaf1;
  --paper: #fffdf9;
  --soft: #f7f1eb;
  --ink: #24191d;
  --muted: #6c5a61;
  --line: #e5d8dc;
  --success: #17613a;
  --danger: #9d2b2b;
  --shadow: 0 22px 55px rgba(67, 20, 40, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Noto Sans Tamil", Arial, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  background: white;
  color: var(--maroon-900);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(122, 31, 61, 0.1);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { filter: drop-shadow(0 6px 12px rgba(76,16,40,.18)); }
.brand span { display: grid; line-height: 1.25; }
.brand strong { color: var(--maroon-900); font-size: 1rem; }
.brand small { color: var(--muted); font-size: .69rem; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}
.main-nav a {
  text-decoration: none;
  color: #4e3d43;
  font-weight: 650;
  font-size: .9rem;
  transition: color .2s ease, transform .2s ease;
}
.main-nav a:hover { color: var(--maroon-700); transform: translateY(-1px); }
.main-nav .nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  color: white;
  background: var(--maroon-700);
}
.language-toggle, .menu-toggle {
  border: 1px solid var(--line);
  background: white;
  color: var(--maroon-800);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 750;
}
.menu-toggle { display: none; font-size: 1.25rem; line-height: 1; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 77% 20%, rgba(232, 194, 107, .22), transparent 25%),
    linear-gradient(135deg, var(--maroon-950), var(--maroon-700));
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(30deg, transparent 12%, rgba(255,255,255,.8) 12.5%, transparent 13%),
    linear-gradient(150deg, transparent 12%, rgba(255,255,255,.8) 12.5%, transparent 13%);
  background-size: 50px 88px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
  padding: 88px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-500); }
.eyebrow.light { color: var(--gold-300); }
.hero .eyebrow { color: var(--gold-300); }
.hero-copy h1 {
  margin: 18px 0 22px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.hero-copy > p { max-width: 720px; color: #f2e7eb; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-500); color: var(--maroon-950); box-shadow: 0 12px 25px rgba(0,0,0,.16); }
.btn-secondary { color: white; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.btn-gold { background: var(--gold-500); color: var(--maroon-950); margin-top: 18px; }
.full-width { width: 100%; border-radius: 12px; }
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.17);
  color: #e8d8df;
  font-size: .84rem;
}
.hero-note p { margin: 0; }
.hero-note span { color: var(--gold-300); }
.hero-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.09);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.cross-glow {
  position: absolute;
  right: -15px;
  top: -25px;
  color: rgba(234, 209, 150, .13);
  font-family: Georgia, serif;
  font-size: 11rem;
  line-height: 1;
}
.hero-card h2 { position: relative; margin: 0 0 22px; font-family: Georgia, serif; font-size: 1.85rem; }
.calling-list { position: relative; display: grid; gap: 7px; }
.calling-list a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  align-items: center;
  padding: 13px 10px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.calling-list span { color: var(--gold-300); font-size: .72rem; font-weight: 800; }
.calling-list strong { font-size: .93rem; }

.stats-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { display: grid; gap: 2px; padding: 24px; border-right: 1px solid var(--line); text-align: center; }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { color: var(--maroon-700); font-family: Georgia, serif; font-size: 1.65rem; }
.stats-grid span { color: var(--muted); font-size: .78rem; font-weight: 700; }

.section { padding: 92px 0; }
.section-light { background: var(--paper); }
.section-soft { background: var(--soft); }
.section-deep { color: white; background: linear-gradient(135deg, var(--maroon-950), #251018); }
.section-heading { margin-bottom: 42px; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .resource-grid h2, .enquiry-copy h2 {
  margin: 12px 0 15px;
  color: var(--maroon-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
}
.section-heading p { margin: 0; color: var(--muted); }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.search-box input {
  width: min(360px, 80vw);
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  outline: none;
}
.search-box input:focus { border-color: var(--maroon-700); box-shadow: 0 0 0 4px rgba(122,31,61,.08); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 14px 35px rgba(78, 27, 47, .06);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--maroon-700);
  background: var(--maroon-100);
  font-size: 1.4rem;
}
.feature-card h3 { margin: 20px 0 10px; color: var(--maroon-900); }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.directory-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 13px 32px rgba(54, 18, 33, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.directory-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.card-monogram {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-950));
  font-weight: 900;
  letter-spacing: .05em;
}
.sample-badge {
  display: inline-flex;
  padding: 5px 9px;
  color: #74551d;
  background: #fff3cf;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
}
.directory-card h3 { margin: 20px 0 6px; color: var(--maroon-900); line-height: 1.3; }
.directory-card .card-subtitle { color: var(--gold-600); font-size: .8rem; font-weight: 800; }
.directory-card p { color: var(--muted); font-size: .91rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 12px; }
.tag { padding: 5px 9px; border-radius: 999px; color: #5d4650; background: var(--soft); font-size: .72rem; font-weight: 700; }
.empty-state { grid-column: 1 / -1; padding: 40px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius-md); }

.event-list { display: grid; gap: 14px; }
.event-card {
  display: grid;
  grid-template-columns: 90px 1.4fr 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}
.event-date { display: grid; place-items: center; min-height: 74px; border-radius: 14px; color: white; background: var(--maroon-800); }
.event-date strong { font-family: Georgia, serif; font-size: 1.9rem; line-height: 1; }
.event-date span { font-size: .7rem; letter-spacing: .1em; }
.event-card h3 { margin: 0 0 6px; color: var(--maroon-900); }
.event-card p, .event-meta { margin: 0; color: var(--muted); font-size: .86rem; }
.mode-badge { padding: 7px 11px; color: var(--maroon-800); background: var(--maroon-100); border-radius: 999px; font-size: .72rem; font-weight: 800; }

.resource-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: center; }
.resource-grid h2 { color: white; }
.resource-grid > div > p { color: #d9cbd1; }
.resource-cards { display: grid; gap: 12px; }
.resource-cards article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 5px 16px;
  padding: 19px 21px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}
.resource-cards span { grid-row: 1 / span 2; color: var(--gold-300); font-weight: 900; }
.resource-cards h3 { margin: 0; }
.resource-cards p { margin: 2px 0 0; color: #cfbfc5; font-size: .87rem; }

.enquiry-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 65px; align-items: start; }
.enquiry-copy { position: sticky; top: 110px; }
.enquiry-copy p { color: var(--muted); }
.privacy-note { display: grid; gap: 5px; margin-top: 25px; padding: 18px; border-left: 4px solid var(--gold-500); background: var(--cream); }
.privacy-note strong { color: var(--maroon-800); }
.privacy-note span { color: var(--muted); font-size: .86rem; }
.enquiry-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form label { display: grid; gap: 7px; color: #4d3941; font-size: .84rem; font-weight: 750; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  outline: none;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  border-color: var(--maroon-700);
  box-shadow: 0 0 0 4px rgba(122,31,61,.08);
}
.consent-row { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: 10px !important; font-weight: 500 !important; }
.consent-row input { width: 18px; height: 18px; margin-top: 3px; }
.form-status { min-height: 24px; font-size: .86rem; font-weight: 750; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.site-footer { color: #d9cbd1; background: #210913; }
.footer-grid { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; gap: 35px; align-items: center; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand div { display: grid; }
.footer-brand span { color: #a9909a; font-size: .75rem; }
.footer-grid p { margin: 0; text-align: center; font-size: .83rem; }
.footer-grid > a { color: var(--gold-300); text-decoration: none; font-weight: 750; font-size: .85rem; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .main-nav .nav-cta { text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; padding: 70px 0; }
  .hero-card { max-width: 650px; }
  .feature-grid, .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid, .enquiry-layout { grid-template-columns: 1fr; }
  .enquiry-copy { position: static; }
  .event-card { grid-template-columns: 82px 1fr auto; }
  .event-meta { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  .brand small { display: none; }
  .language-toggle { padding: 8px 11px; }
  .hero-grid { min-height: auto; }
  .hero-copy h1 { font-size: 2.75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid div:nth-child(2) { border-right: 0; }
  .stats-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 70px 0; }
  .split-heading { align-items: stretch; flex-direction: column; }
  .search-box input { width: 100%; }
  .feature-grid, .directory-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 70px 1fr; gap: 15px; }
  .event-meta, .mode-badge { grid-column: 2; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .enquiry-form { padding: 21px; }
  .footer-grid { grid-template-columns: 1fr; padding: 35px 0; text-align: center; }
  .footer-brand { justify-content: center; }
}

/* Version 3 official identity */
.brand img,
.footer-brand img,
.contact-brand img {
  border-radius: 50%;
  object-fit: cover;
}
.hero-brand-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.1);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
}
.official-logo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 17px 40px rgba(0,0,0,.22);
}
.identity-summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 7px 8px;
  color: #eadfe3;
  font-size: .78rem;
}
.identity-summary a { color: var(--gold-300); font-weight: 850; text-decoration: none; }
.calling-list.compact { margin-top: 7px; }
.calling-list.compact a { padding: 10px 8px; }
.contact-band {
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(209,163,74,.2), transparent 30%),
    linear-gradient(135deg, #4c1028, #741d39);
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-grid {
  min-height: 285px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 55px;
  align-items: center;
  padding-block: 54px;
}
.contact-brand { display: flex; gap: 20px; align-items: center; }
.contact-brand img { width: 100px; height: 100px; flex: 0 0 100px; box-shadow: 0 18px 36px rgba(0,0,0,.28); }
.contact-brand h2 { margin: 8px 0 4px; font-family: Georgia, serif; font-size: 2.1rem; }
.contact-brand p { margin: 0; color: #dfcfd5; }
.contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-links > a,
.contact-links > div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 16px 18px;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.contact-links small { color: var(--gold-300); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-links strong { overflow-wrap: anywhere; font-size: .88rem; }
@media (max-width: 980px) {
  .hero-brand-card { max-width: 620px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .hero-brand-card { padding: 14px; }
  .identity-summary { align-items: flex-start; flex-direction: column; }
  .contact-brand { align-items: flex-start; }
  .contact-brand img { width: 78px; height: 78px; flex-basis: 78px; }
  .contact-brand h2 { font-size: 1.65rem; }
  .contact-links { grid-template-columns: 1fr; }
}

/* Version 5 congregation profiles */
.congregation-card .card-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
.card-logo{width:58px;height:58px;border-radius:50%;object-fit:cover;border:2px solid #ead5a0;box-shadow:0 8px 18px rgba(70,24,35,.14)}
.profile-count{font-size:11px;font-weight:800;color:#7b2336;background:#f7e9ec;padding:6px 9px;border-radius:999px}
.profile-button{margin-top:16px;border:0;background:transparent;color:#7b1f35;font-weight:800;padding:0;cursor:pointer}
.profile-button:hover{text-decoration:underline}
.profile-dialog{width:min(980px,calc(100% - 28px));max-height:92vh;border:0;border-radius:22px;padding:0;background:#fff;box-shadow:0 24px 70px rgba(30,18,22,.32)}
.profile-dialog::backdrop{background:rgba(28,18,22,.62);backdrop-filter:blur(4px)}
.profile-dialog>article{position:relative;padding:28px;overflow:auto;max-height:92vh}
.profile-close{position:absolute;right:20px;top:18px;width:38px;height:38px;border-radius:50%;border:0;background:#f1e7e9;color:#741f34;font-size:25px;cursor:pointer}
.profile-header{display:flex;align-items:center;gap:18px;padding-right:45px;border-bottom:1px solid #eee4e6;padding-bottom:20px}
.profile-header img{width:92px;height:92px;border-radius:50%;object-fit:cover;border:4px solid #fff;box-shadow:0 12px 28px rgba(75,22,34,.18)}
.profile-header h2{font-family:Georgia,serif;color:#5d1528;font-size:32px;margin:5px 0}
.profile-header p{color:#777;margin:0}
.profile-body{padding-top:20px;display:grid;gap:18px}
.profile-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.profile-facts span{display:grid;gap:4px;background:#faf7f2;border:1px solid #eee4d5;border-radius:12px;padding:13px;color:#5f6670}
.profile-facts b{color:#6d1d31;font-size:12px;text-transform:uppercase;letter-spacing:.05em}
.profile-section{border-bottom:1px solid #eee;padding-bottom:16px}
.profile-section h3{color:#6d1d31;margin:0 0 8px}
.profile-section p{line-height:1.7;margin:0;color:#4d555c}
.profile-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.profile-list article{background:#f8f4f5;border-left:4px solid #c79831;border-radius:10px;padding:12px;display:grid;gap:5px}
.profile-list span,.profile-muted{color:#737b82;font-size:13px}
.profile-actions{display:flex;justify-content:flex-end;margin-top:20px}
@media(max-width:680px){.profile-header{align-items:flex-start}.profile-header img{width:70px;height:70px}.profile-header h2{font-size:25px}.profile-facts,.profile-list{grid-template-columns:1fr}.profile-dialog>article{padding:22px 17px}}
.profile-links{display:flex;gap:10px;flex-wrap:wrap}
.profile-links a{display:inline-flex;padding:10px 14px;border-radius:9px;background:#741f34;color:#fff;text-decoration:none;font-weight:800}

/* Version 5.0.3 public stories */
.story-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.35rem;margin-top:2rem}.story-card{background:#fff;border:1px solid rgba(110,24,45,.12);border-radius:24px;overflow:hidden;box-shadow:0 16px 38px rgba(73,20,34,.08)}.story-card>img,.story-placeholder{width:100%;height:210px;object-fit:cover}.story-placeholder{display:grid;place-items:center;font-size:3rem;color:#c8962f;background:linear-gradient(135deg,#711b32,#9b3d55)}.story-copy{padding:1.25rem}.story-category{display:inline-block;font-size:.76rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:#a36f13;margin-bottom:.55rem}.story-copy h3{margin:.1rem 0 .6rem;color:#4e0f23;font-family:Georgia,serif;font-size:1.35rem}.story-copy p{margin:0;color:#5f6875;line-height:1.65}.story-copy small{display:block;margin-top:.85rem;font-weight:700;color:#7b233a}@media(max-width:900px){.story-grid{grid-template-columns:1fr 1fr}}@media(max-width:620px){.story-grid{grid-template-columns:1fr}.story-card>img,.story-placeholder{height:190px}}

/* =========================================================
   Version 5.1.0 — Visual identity and public experience
   ========================================================= */
:root{
  --maroon-975:#260713;
  --gold-glow:#f4dfaa;
  --soft-gold:#fbf3df;
}
body{
  background:
    radial-gradient(circle at 100% 0,rgba(209,163,74,.07),transparent 26rem),
    var(--paper);
}
.utility-bar{
  color:#f7edf0;
  background:linear-gradient(90deg,var(--maroon-975),var(--maroon-900));
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:.75rem;
}
.utility-wrap{min-height:34px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.utility-wrap>span{color:var(--gold-300);font-weight:800;letter-spacing:.035em}
.utility-links{display:flex;align-items:center;gap:18px;color:#e7d8de}
.utility-links a{color:inherit;text-decoration:none}
.utility-links a:hover{color:white}
.site-header{box-shadow:0 8px 25px rgba(56,13,31,.045)}
.nav-wrap{min-height:84px}
.brand img{width:58px;height:58px;border:3px solid white;background:white;box-shadow:0 8px 22px rgba(76,16,40,.2)}
.brand strong{font-family:Georgia,"Times New Roman",serif;font-size:1.12rem;letter-spacing:.01em}
.brand small{color:#8b6e77;font-size:.7rem;font-weight:700}
.main-nav{gap:18px}
.main-nav a{position:relative;padding:8px 0}
.main-nav a:not(.nav-cta)::after{content:"";position:absolute;left:0;right:100%;bottom:1px;height:2px;background:linear-gradient(90deg,var(--gold-500),var(--maroon-700));transition:right .22s ease}
.main-nav a:not(.nav-cta):hover::after{right:0}
.main-nav .nav-cta{padding:11px 17px;box-shadow:0 8px 18px rgba(122,31,61,.18)}
.language-toggle{background:var(--cream);border-color:#decdbd}
.hero{
  background:
    radial-gradient(circle at 83% 18%,rgba(234,209,150,.24),transparent 24rem),
    radial-gradient(circle at 8% 85%,rgba(209,163,74,.12),transparent 23rem),
    linear-gradient(132deg,var(--maroon-975),var(--maroon-900) 48%,#7f2442);
}
.hero::after{content:"";position:absolute;inset:auto -12% -44% 38%;height:72%;border-radius:50%;border:1px solid rgba(255,255,255,.08);transform:rotate(-8deg)}
.hero-grid{min-height:690px;grid-template-columns:1.08fr .92fr;gap:58px;padding:76px 0 86px}
.hero-copy h1{max-width:800px;text-wrap:balance;text-shadow:0 10px 36px rgba(0,0,0,.18)}
.hero-copy>p{max-width:690px;font-size:1.1rem;line-height:1.8}
.hero-actions .btn{min-width:172px}
.hero-note{background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.1);border-radius:15px;padding:15px 17px;margin-top:30px}
.hero-brand-card{padding:18px;border-radius:32px;background:linear-gradient(145deg,rgba(255,255,255,.17),rgba(255,255,255,.055));border:1px solid rgba(255,255,255,.24)}
.logo-stage{position:relative;padding:12px;border-radius:24px;background:linear-gradient(145deg,#fffdf8,#f7ecd5);overflow:hidden}
.logo-stage::before,.logo-stage::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(183,133,46,.25)}
.logo-stage::before{width:330px;height:330px;right:-170px;top:-170px}
.logo-stage::after{width:240px;height:240px;left:-120px;bottom:-130px}
.logo-halo{position:absolute;inset:10% 16%;border-radius:50%;background:radial-gradient(circle,rgba(209,163,74,.26),transparent 68%);filter:blur(10px)}
.official-logo{position:relative;z-index:1;border-radius:18px;box-shadow:0 18px 42px rgba(56,13,31,.18)}
.identity-summary{padding:15px 5px 9px}
.identity-summary>div{display:grid;gap:2px}
.identity-summary small{color:#d7bec7;font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;font-weight:800}
.identity-summary strong{color:white;font-family:Georgia,serif;font-size:1.05rem}
.calling-pills{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding-top:6px}
.calling-pills a{display:flex;align-items:center;justify-content:center;gap:7px;min-height:42px;padding:8px;border-radius:12px;color:#fff;text-decoration:none;background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.12);font-size:.76rem;font-weight:800;transition:.2s ease}
.calling-pills a:hover{background:rgba(255,255,255,.15);transform:translateY(-2px)}
.stats-strip{position:relative;z-index:3;margin-top:-1px;background:linear-gradient(90deg,#fff9ed,#fffdf8,#fff9ed)}
.stats-grid div{position:relative;padding:27px 20px}
.stats-grid div::before{content:"";position:absolute;top:0;left:22%;right:22%;height:3px;border-radius:99px;background:linear-gradient(90deg,transparent,var(--gold-500),transparent)}
.stats-grid strong{font-size:2rem}
.scripture-ribbon{background:#fff;border-bottom:1px solid var(--line)}
.scripture-wrap{min-height:92px;display:flex;align-items:center;justify-content:center;gap:15px;text-align:center}
.scripture-mark{font-family:Georgia,serif;color:var(--gold-500);font-size:3.1rem;line-height:1;transform:translateY(7px)}
.scripture-wrap p{margin:0;color:var(--maroon-900);font-family:Georgia,"Times New Roman",serif;font-size:1.25rem;font-style:italic}
.scripture-wrap strong{color:var(--gold-600);font-size:.78rem;white-space:nowrap}
.section{position:relative}
.section-heading h2{letter-spacing:-.025em;text-wrap:balance}
.section-heading.centered::after{content:"";display:block;width:72px;height:3px;margin:24px auto 0;border-radius:99px;background:linear-gradient(90deg,var(--maroon-700),var(--gold-500))}
.section-soft{background:
  radial-gradient(circle at 0 0,rgba(209,163,74,.08),transparent 25rem),
  linear-gradient(180deg,#f8f3ee,#f5eee8)}
.feature-card,.directory-card,.story-card,.event-card{position:relative;overflow:hidden}
.feature-card::before,.directory-card::before,.story-card::before{content:"";position:absolute;left:0;right:0;top:0;height:4px;background:linear-gradient(90deg,var(--maroon-800),var(--gold-500))}
.feature-card{transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.feature-card:hover{transform:translateY(-5px);border-color:#ddcda8;box-shadow:0 22px 48px rgba(75,22,44,.1)}
.feature-icon{box-shadow:inset 0 0 0 1px rgba(122,31,61,.08)}
.directory-grid{gap:25px}
.directory-card{padding:28px;border-radius:22px;box-shadow:0 14px 36px rgba(54,18,33,.07)}
.directory-card:hover{border-color:#d9bd7d;transform:translateY(-7px)}
.directory-card h3{font-family:Georgia,"Times New Roman",serif;font-size:1.35rem;margin-top:21px}
.directory-card p{line-height:1.7;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4;overflow:hidden}
.card-logo,.card-monogram{width:64px;height:64px;flex-basis:64px;border-radius:18px}
.card-logo{padding:3px;background:#fff;border:1px solid #e8d4a6;object-fit:contain}
.profile-count{background:var(--soft-gold);color:#775416;border:1px solid #ecd8a9}
.profile-button{display:inline-flex;align-items:center;justify-content:center;align-self:flex-start;min-height:40px;margin-top:20px;padding:9px 14px;border-radius:999px;color:white;background:linear-gradient(135deg,var(--maroon-800),var(--maroon-950));text-decoration:none;box-shadow:0 8px 18px rgba(86,20,43,.16)}
.profile-button:hover{text-decoration:none;transform:translateY(-1px)}
.tag{background:#faf4e8;border:1px solid #eadcc2;color:#6a4c52}
.event-card{border-left:5px solid var(--gold-500);transition:transform .2s ease,box-shadow .2s ease}
.event-card:hover{transform:translateX(4px);box-shadow:0 14px 34px rgba(64,18,35,.08)}
.event-date{background:linear-gradient(150deg,var(--maroon-700),var(--maroon-950));box-shadow:0 10px 24px rgba(78,18,42,.18)}
.story-card{transition:transform .22s ease,box-shadow .22s ease}
.story-card:hover{transform:translateY(-6px);box-shadow:0 24px 50px rgba(73,20,34,.13)}
.story-copy p{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4;overflow:hidden}
.resource-cards article{transition:transform .2s ease,border-color .2s ease,background .2s ease}
.resource-cards article:hover{transform:translateX(5px);border-color:rgba(234,209,150,.45);background:rgba(255,255,255,.1)}
.enquiry-form{border-top:5px solid var(--gold-500)}
.contact-band{position:relative;overflow:hidden}
.contact-band::before{content:"";position:absolute;width:420px;height:420px;right:-180px;top:-230px;border-radius:50%;border:1px solid rgba(255,255,255,.1)}
.contact-links>a,.contact-links>div{transition:transform .2s ease,background .2s ease,border-color .2s ease}
.contact-links>a:hover{transform:translateY(-3px);background:rgba(255,255,255,.12);border-color:rgba(234,209,150,.45)}
.site-footer{background:linear-gradient(135deg,#19060e,#2c0b18)}
.footer-brand img{width:58px;height:58px;border:2px solid rgba(255,255,255,.7);box-shadow:0 8px 20px rgba(0,0,0,.25)}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .55s ease,transform .55s ease}
.reveal.is-visible{opacity:1;transform:none}
.profile-dialog>article{background:linear-gradient(180deg,#fff,#fffdf9)}
.profile-header{background:linear-gradient(120deg,#fff8ed,#fff);margin:-28px -28px 0;padding:27px 73px 22px 28px}
.profile-actions{position:sticky;bottom:-28px;margin:20px -28px -28px;padding:16px 28px;background:rgba(255,255,255,.94);border-top:1px solid var(--line);backdrop-filter:blur(10px)}
@media(max-width:980px){
  .utility-wrap>span{display:none}.utility-wrap{justify-content:center}.hero-grid{grid-template-columns:1fr}.hero-brand-card{max-width:620px;margin-inline:auto}.main-nav{top:82px}.calling-pills{grid-template-columns:1fr 1fr 1fr}
}
@media(max-width:700px){
  .utility-links{gap:10px;font-size:.68rem}.utility-links span{display:none}.utility-links a:first-child{display:none}.nav-wrap{min-height:74px}.brand img{width:50px;height:50px}.brand strong{font-size:1rem}.hero-grid{padding:58px 0 65px}.hero-copy h1{font-size:2.55rem}.hero-copy>p{font-size:1rem}.calling-pills{grid-template-columns:1fr}.stats-grid div{padding:22px 12px}.scripture-wrap{padding:22px 0;align-items:flex-start;gap:8px;flex-wrap:wrap}.scripture-mark{display:none}.scripture-wrap p{width:100%;font-size:1.05rem}.profile-header{margin:-22px -17px 0;padding:24px 52px 18px 17px}.profile-actions{margin:18px -17px -22px;padding:14px 17px}
}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important}.reveal{opacity:1;transform:none;transition:none!important}}
.mini-facts{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px;color:#775d65;font-size:.73rem;font-weight:800}
.mini-facts span{padding:6px 9px;border-radius:999px;background:#fbf7f0;border:1px solid #eee1cb}

/* =========================================================
   Version 5.2 — Public Vocation Experience
   One Call • Many Charisms • One Mission
   ========================================================= */
.hero-copy h1 em {
  display: block;
  margin-top: .12em;
  color: var(--gold-300);
  font-style: normal;
  font-size: .63em;
  line-height: 1.16;
  letter-spacing: -.02em;
}
.hero-copy .eyebrow {
  padding: 7px 13px;
  border: 1px solid rgba(234,209,150,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  letter-spacing: .11em;
}
.hero-copy .eyebrow::before { width: 18px; }
.hero-note {
  max-width: fit-content;
  align-items: center;
  padding: 12px 17px;
  border-top: 0;
}
.hero-note p {
  color: white;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.identity-summary small { max-width: 265px; }

.vocation-about {
  background:
    radial-gradient(circle at 0 100%, rgba(209,163,74,.11), transparent 25rem),
    linear-gradient(180deg, #fffdf9, #fffaf1);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}
.about-copy h2,
.purpose-copy h2,
.commitment-card h2,
.journey-cta h2 {
  margin: 13px 0 22px;
  color: var(--maroon-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.about-copy p,
.purpose-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.about-highlight {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  color: white;
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 20%, rgba(234,209,150,.25), transparent 11rem),
    linear-gradient(145deg, var(--maroon-700), var(--maroon-950));
  box-shadow: 0 32px 70px rgba(67,20,40,.18);
}
.about-highlight::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
}
.highlight-cross {
  position: absolute;
  right: 25px;
  top: -30px;
  color: rgba(234,209,150,.17);
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: 1;
}
.about-highlight p,
.about-highlight a { position: relative; z-index: 1; }
.about-highlight p {
  margin: 0 0 26px;
  color: #fff7ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.55;
}
.about-highlight a {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: 850;
}

.vision-mission-section {
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    radial-gradient(circle at 50% 10%, rgba(122,31,61,.08), transparent 30rem);
}
.vision-mission-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
}
.vision-card,
.mission-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 28px;
}
.vision-card {
  color: white;
  background:
    radial-gradient(circle at 82% 15%, rgba(234,209,150,.28), transparent 12rem),
    linear-gradient(145deg, var(--maroon-800), var(--maroon-950));
  box-shadow: 0 28px 60px rgba(64,16,36,.16);
}
.mission-card {
  border: 1px solid #eadcc5;
  background: linear-gradient(145deg, #fffdf9, #fbf4e8);
  box-shadow: 0 22px 52px rgba(69,26,41,.08);
}
.vm-number {
  position: absolute;
  right: 24px;
  top: 13px;
  color: rgba(183,133,46,.2);
  font-family: Georgia, serif;
  font-size: 5.2rem;
  line-height: 1;
}
.vm-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: var(--gold-300);
  border: 1px solid rgba(234,209,150,.3);
  background: rgba(255,255,255,.08);
  font-size: 1.3rem;
}
.mission-card .vm-icon {
  color: var(--maroon-700);
  border-color: #eadcc5;
  background: white;
}
.vision-card h3,
.mission-card h3 {
  margin: 26px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}
.vision-card p { color: #eddee4; }
.vision-card blockquote {
  margin: 30px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid rgba(255,255,255,.17);
}
.vision-card blockquote span {
  display: block;
  color: white;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
}
.vision-card cite { color: var(--gold-300); font-size: .78rem; font-style: normal; font-weight: 800; }
.mission-card h3 { color: var(--maroon-900); }
.mission-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mission-list li {
  position: relative;
  padding: 13px 13px 13px 37px;
  color: #5c4850;
  border: 1px solid #eee1cd;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.55;
}
.mission-list li::before {
  content: "✓";
  position: absolute;
  left: 13px;
  top: 13px;
  color: var(--gold-600);
  font-weight: 900;
}

.vocation-pathways-section {
  background:
    radial-gradient(circle at 100% 0, rgba(209,163,74,.13), transparent 25rem),
    linear-gradient(180deg, #f8f1ea, #fffdf9);
}
.vocation-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vocation-path-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid #e8dace;
  border-radius: 23px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 15px 38px rgba(67,20,40,.065);
  transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease;
}
.vocation-path-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,163,74,.17), transparent 68%);
}
.vocation-path-card:hover {
  transform: translateY(-7px);
  border-color: #d6b873;
  box-shadow: 0 25px 55px rgba(69,19,39,.12);
}
.path-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  color: white;
  background: linear-gradient(145deg, var(--maroon-700), var(--maroon-950));
  box-shadow: 0 10px 22px rgba(85,20,42,.18);
  font-size: 1.35rem;
}
.vocation-path-card h3 {
  margin: 21px 0 9px;
  color: var(--maroon-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}
.vocation-path-card p { margin: 0 0 18px; color: var(--muted); font-size: .9rem; }
.vocation-path-card a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--maroon-700);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 850;
}

.scripture-feature {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(234,209,150,.25), transparent 18rem),
    linear-gradient(120deg, #300916, var(--maroon-800));
}
.scripture-feature::before,
.scripture-feature::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.scripture-feature::before { width: 430px; height: 430px; left: -260px; top: -260px; }
.scripture-feature::after { width: 300px; height: 300px; right: -150px; bottom: -180px; }
.scripture-feature-inner {
  position: relative;
  z-index: 1;
  min-height: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-block: 62px;
  text-align: center;
}
.scripture-emblem {
  display: grid;
  place-items: center;
  width: 75px;
  height: 75px;
  flex: 0 0 75px;
  border: 1px solid rgba(234,209,150,.35);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: 1.7rem;
  background: rgba(255,255,255,.06);
}
.scripture-feature blockquote { max-width: 820px; margin: 0; }
.scripture-feature p {
  margin: 0 0 13px;
  color: #fff9f3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-style: italic;
  line-height: 1.45;
}
.scripture-feature cite { color: var(--gold-300); font-style: normal; font-size: .86rem; font-weight: 850; letter-spacing: .08em; }

.platform-purpose-section {
  background:
    radial-gradient(circle at 12% 50%, rgba(122,31,61,.075), transparent 25rem),
    #fffdf9;
}
.purpose-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 62px;
  align-items: center;
}
.purpose-copy .btn { margin-top: 18px; }
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.purpose-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 15px;
  border: 1px solid #eadfd2;
  border-radius: 17px;
  background: white;
  box-shadow: 0 10px 28px rgba(67,20,40,.045);
}
.purpose-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--maroon-800);
  background: var(--maroon-100);
  font-family: Georgia, serif;
  font-weight: 850;
}
.purpose-item p { margin: 0; color: #564249; font-size: .87rem; font-weight: 750; line-height: 1.45; }

.commitment-section {
  padding-top: 0;
  background: #fffdf9;
}
.commitment-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 35px;
  align-items: center;
  padding: 52px 58px;
  color: white;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 20%, rgba(234,209,150,.22), transparent 18rem),
    linear-gradient(125deg, var(--maroon-950), var(--maroon-700));
  box-shadow: 0 30px 70px rgba(66,17,38,.18);
}
.commitment-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.commitment-symbol {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border-radius: 28px;
  color: var(--gold-300);
  border: 1px solid rgba(234,209,150,.3);
  background: rgba(255,255,255,.08);
  font-size: 2.4rem;
}
.commitment-card h2 { color: white; font-size: clamp(2rem, 3.5vw, 3.15rem); }
.commitment-card p { position: relative; z-index: 1; margin: 0; max-width: 920px; color: #eadce2; line-height: 1.8; }

.journey-cta-section {
  padding: 85px 0;
  background:
    linear-gradient(rgba(255,250,241,.92), rgba(255,250,241,.92)),
    radial-gradient(circle at 50% 50%, rgba(209,163,74,.24), transparent 28rem);
}
.journey-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;
  padding: 48px 54px;
  color: white;
  border-radius: 31px;
  background:
    radial-gradient(circle at 82% 12%, rgba(234,209,150,.24), transparent 16rem),
    linear-gradient(130deg, var(--maroon-900), var(--maroon-700));
  box-shadow: 0 28px 65px rgba(69,18,39,.17);
}
.journey-cta h2 { color: white; font-size: clamp(2rem, 3.6vw, 3.2rem); }
.journey-cta p { max-width: 800px; margin: 0; color: #eadce2; }
.journey-actions { display: flex; flex-direction: column; gap: 12px; min-width: 205px; }
.journey-actions .btn { width: 100%; margin-top: 0; }
.footer-motto { color: var(--gold-300); font-size: .82rem; letter-spacing: .07em; }

@media (max-width: 1060px) {
  .main-nav { gap: 13px; }
  .main-nav a { font-size: .83rem; }
  .about-grid,
  .purpose-layout { grid-template-columns: 1fr; }
  .about-highlight { min-height: 330px; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .vocation-path-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .hero-copy h1 em { font-size: .68em; }
  .about-grid { gap: 34px; }
  .about-highlight { min-height: 300px; padding: 31px; }
  .about-highlight p { font-size: 1.2rem; }
  .vision-card,
  .mission-card { padding: 29px 24px; }
  .mission-list { grid-template-columns: 1fr; }
  .vocation-path-grid { grid-template-columns: 1fr; }
  .vocation-path-card { min-height: 235px; }
  .scripture-feature-inner { flex-direction: column; gap: 20px; }
  .scripture-emblem { width: 62px; height: 62px; flex-basis: 62px; }
  .purpose-grid { grid-template-columns: 1fr; }
  .commitment-card { grid-template-columns: 1fr; gap: 22px; padding: 37px 28px; }
  .commitment-symbol { width: 76px; height: 76px; border-radius: 21px; }
  .journey-cta { grid-template-columns: 1fr; padding: 38px 27px; }
  .journey-actions { min-width: 0; width: 100%; }
}

@media (max-width: 1120px) {
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .main-nav .nav-cta { text-align: center; }
}

@media (max-width: 430px) {
  .nav-wrap { gap: 7px; }
  .brand { gap: 7px; }
  .brand strong { font-size: .91rem; }
  .menu-toggle { padding: 7px 10px; }
  .language-toggle { padding: 7px 8px; font-size: .7rem; }
}

/* =====================================================================
   VERSION 5.3 - SPIRITUAL PUBLIC HOMEPAGE
   Inspired by the approved maroon, gold and cream vocation design.
   ===================================================================== */
body {
  background:
    radial-gradient(circle at 15% 8%, rgba(209,163,74,.055), transparent 28rem),
    #fffaf2;
}
.utility-bar {
  background: linear-gradient(90deg, #3b0b1e, #721c39 55%, #3b0b1e);
  border-bottom: 1px solid rgba(234,209,150,.24);
}
.site-header {
  background: rgba(255,250,241,.965);
  border-bottom: 1px solid rgba(183,133,46,.22);
  box-shadow: 0 8px 28px rgba(74,20,39,.065);
}
.nav-wrap { min-height: 88px; }
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: .01em;
}
.brand img { width: 64px; height: 64px; }
.main-nav .nav-cta {
  padding-inline: 18px;
  color: #fff8ef;
  border: 1px solid rgba(234,209,150,.34);
  background: linear-gradient(145deg, #7c203e, #4b0e25);
  box-shadow: 0 9px 20px rgba(76,16,40,.16);
}

.spiritual-hero {
  min-height: 760px;
  background-image:
    linear-gradient(90deg, rgba(31,5,15,.94) 0%, rgba(49,9,23,.82) 35%, rgba(66,14,31,.28) 65%, rgba(32,5,15,.12) 100%),
    linear-gradient(0deg, rgba(39,7,18,.5), transparent 45%),
    url('/assets/spiritual/jesus-calls-disciples.webp');
  background-size: cover;
  background-position: center 43%;
  isolation: isolate;
}
.spiritual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 68% 29%, rgba(255,221,146,.25), transparent 19rem),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(45,5,19,.19));
  pointer-events: none;
}
.spiritual-hero .hero-pattern { opacity: .025; }
.hero-image-glow {
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  right: 21%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,224,157,.22), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.spiritual-hero .hero-grid {
  min-height: 760px;
  grid-template-columns: minmax(0, 700px);
  justify-content: start;
  align-items: center;
  padding: 82px 0 120px;
}
.spiritual-hero .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 38px 42px 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(47,7,20,.72), rgba(67,14,32,.35));
  box-shadow: 0 28px 75px rgba(17,2,8,.22);
  backdrop-filter: blur(4px);
}
.hero-mini-brand {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-mini-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 8px 25px rgba(0,0,0,.22);
}
.hero-mini-brand span { display: grid; line-height: 1.25; }
.hero-mini-brand strong { color: white; font-family: Georgia, serif; font-size: 1.05rem; }
.hero-mini-brand small { color: #ead8df; font-size: .72rem; }
.spiritual-hero .hero-copy h1 {
  margin: 15px 0 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  text-shadow: 0 5px 22px rgba(0,0,0,.28);
}
.spiritual-hero .hero-copy h1 span { display: block; color: #fffaf3; }
.spiritual-hero .hero-copy h1 em {
  display: block;
  margin-top: 9px;
  color: #f0ca70;
  font-size: .48em;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.25;
}
.spiritual-hero .hero-copy > p {
  max-width: 630px;
  margin: 0;
  color: #fff4ef;
  font-size: 1rem;
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.spiritual-hero .hero-actions { gap: 11px; margin-top: 27px; }
.spiritual-hero .btn { min-height: 46px; padding: 10px 18px; font-size: .88rem; }
.btn-light {
  color: var(--maroon-900);
  background: #fffaf1;
  border: 1px solid #f4dfae;
  box-shadow: 0 10px 24px rgba(0,0,0,.13);
}
.btn-outline-gold {
  color: #fffaf1;
  border: 1px solid rgba(238,201,116,.72);
  background: rgba(66,13,31,.31);
}
.btn-outline-gold:hover { background: rgba(183,133,46,.22); }
.spiritual-hero .hero-note {
  max-width: 560px;
  margin-top: 25px;
  padding-top: 16px;
  color: #f0dca9;
  border-top-color: rgba(240,207,132,.25);
  font-weight: 700;
  letter-spacing: .04em;
}
.hero-bottom-fade {
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  z-index: 1;
  background: linear-gradient(transparent, rgba(42,7,19,.52));
  pointer-events: none;
}

.stats-strip {
  position: relative;
  z-index: 8;
  margin-top: -54px;
  background: transparent;
  border: 0;
}
.stats-grid {
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid #d9b45c;
  border-radius: 25px;
  background: rgba(255,253,248,.98);
  box-shadow: 0 20px 50px rgba(65,16,34,.2);
}
.stats-grid div {
  min-height: 142px;
  align-content: center;
  gap: 1px;
  padding: 18px 14px;
  border-right-color: #ecd8a8;
}
.stat-icon {
  display: block;
  color: var(--maroon-700) !important;
  font-size: 1.65rem !important;
  line-height: 1.1;
}
.stats-grid strong { font-size: 2rem; line-height: 1.15; }
.stats-grid span:last-child { font-size: .76rem; letter-spacing: .02em; }

.scripture-ribbon {
  margin-top: 35px;
  background: transparent;
  border: 0;
}
.scripture-wrap {
  min-height: 76px;
  padding: 12px 30px;
  border: 1px solid #e4ca8e;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff9ed, #fffdf8, #fff9ed);
  box-shadow: 0 12px 32px rgba(74,20,39,.07);
}

.vocation-about { padding-top: 82px; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}
.about-spiritual-image {
  position: relative;
  overflow: hidden;
  min-height: 515px;
  margin: 0;
  border: 1px solid #d9bb72;
  border-radius: 28px;
  box-shadow: 0 25px 55px rgba(71,20,39,.15);
  background: #ead8bc;
}
.about-spiritual-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(47,7,20,.82));
  pointer-events: none;
}
.about-spiritual-image img {
  width: 100%;
  height: 515px;
  object-fit: cover;
  object-position: 47% center;
  transition: transform .8s ease;
}
.about-spiritual-image:hover img { transform: scale(1.035); }
.about-spiritual-image figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 23px;
  color: white;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}
.about-copy h2 {
  margin: 13px 0 18px;
  color: var(--maroon-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.08;
}
.about-copy > p { color: #655158; line-height: 1.78; }
.about-copy .about-highlight {
  min-height: 0;
  margin-top: 25px;
  padding: 25px 27px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(72,17,37,.12);
}
.about-copy .about-highlight .highlight-cross {
  right: 18px;
  top: -22px;
  font-size: 7rem;
}
.about-copy .about-highlight p { margin-bottom: 13px; font-size: 1.02rem; line-height: 1.55; }

.vision-mission-section { padding-top: 76px; }
.vision-card, .mission-card { border-radius: 25px; }
.vocation-path-card { border-color: #e3c88d; }
.path-icon { border-radius: 50%; background: linear-gradient(145deg,#7d203f,#4a0d24); }

.scripture-feature {
  margin: 0 auto;
  background:
    radial-gradient(circle at 88% 50%, rgba(255,218,126,.28), transparent 15rem),
    linear-gradient(100deg, #3b0a1d, #761c3b 58%, #430b21);
  border-top: 1px solid #be8e35;
  border-bottom: 1px solid #be8e35;
}
.scripture-feature-inner { min-height: 220px; padding-block: 45px; }

.directory-card {
  border: 1px solid #e4c987;
  background: linear-gradient(145deg,#fffefa,#fff8eb);
}
.directory-card .card-icon,
.directory-card .logo-wrap { border-color: #e3ca91; }

.platform-purpose-section { padding-block: 74px; }
.purpose-item { border-color: #e3ca91; }

.journey-cta-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  background-image:
    linear-gradient(90deg, rgba(41,6,18,.94), rgba(64,12,30,.72) 54%, rgba(57,10,26,.25)),
    url('/assets/spiritual/jesus-walks-with-disciples.webp');
  background-size: cover;
  background-position: center 48%;
}
.journey-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(37,5,16,.38), transparent 55%);
  pointer-events: none;
}
.journey-cta {
  position: relative;
  z-index: 1;
  padding: 50px 54px;
  border: 1px solid rgba(234,209,150,.35);
  background: linear-gradient(120deg, rgba(54,8,23,.79), rgba(81,16,38,.35));
  box-shadow: 0 28px 65px rgba(20,2,9,.27);
  backdrop-filter: blur(3px);
}
.journey-cta h2 { max-width: 770px; text-shadow: 0 3px 13px rgba(0,0,0,.24); }
.journey-cta p { color: #fff3ed; text-shadow: 0 2px 8px rgba(0,0,0,.25); }

.contact-band { border-top: 1px solid #bd8c34; }
.site-footer { border-top: 1px solid rgba(234,209,150,.2); }

@media (max-width: 1120px) {
  .spiritual-hero { background-position: 58% center; }
  .spiritual-hero .hero-grid { grid-template-columns: minmax(0, 650px); }
  .stats-grid { grid-template-columns: repeat(5, 1fr); }
  .stats-grid div { padding-inline: 8px; }
}
@media (max-width: 920px) {
  .spiritual-hero {
    background-image:
      linear-gradient(90deg, rgba(35,5,16,.94), rgba(55,10,27,.7)),
      url('/assets/spiritual/jesus-calls-disciples.webp');
    background-position: 62% center;
  }
  .spiritual-hero .hero-grid { grid-template-columns: 1fr; min-height: 720px; padding-top: 62px; }
  .spiritual-hero .hero-copy { max-width: 650px; }
  .stats-strip { margin-top: -38px; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid div:nth-child(3) { border-right: 0; }
  .stats-grid div:nth-child(-n+3) { border-bottom: 1px solid #ecd8a8; }
  .about-grid { grid-template-columns: 1fr; }
  .about-spiritual-image, .about-spiritual-image img { min-height: 440px; height: 440px; }
}
@media (max-width: 680px) {
  .utility-bar { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 52px; height: 52px; }
  .brand small { display: none; }
  .spiritual-hero {
    min-height: 760px;
    background-position: 66% center;
  }
  .spiritual-hero::before { background: linear-gradient(90deg, rgba(35,5,16,.94), rgba(55,10,27,.62)); }
  .spiritual-hero .hero-grid { min-height: 760px; padding: 42px 0 95px; align-items: end; }
  .spiritual-hero .hero-copy { padding: 28px 24px; border-radius: 23px; }
  .hero-mini-brand { display: flex; }
  .spiritual-hero .hero-copy h1 { font-size: clamp(2.5rem, 12vw, 3.65rem); }
  .spiritual-hero .hero-copy h1 em { font-size: .52em; }
  .spiritual-hero .hero-copy > p { font-size: .91rem; line-height: 1.62; }
  .spiritual-hero .hero-actions { display: grid; }
  .spiritual-hero .hero-actions .btn { width: 100%; }
  .stats-strip { margin-top: -28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; border-radius: 21px; }
  .stats-grid div { min-height: 120px; border-bottom: 1px solid #ecd8a8; }
  .stats-grid div:nth-child(2n) { border-right: 0; }
  .stats-grid div:nth-child(3) { border-right: 1px solid #ecd8a8; }
  .stats-grid div:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .scripture-wrap { align-items: flex-start; flex-wrap: wrap; padding: 18px 20px; }
  .scripture-wrap p { width: calc(100% - 46px); text-align: left; font-size: 1.05rem; }
  .scripture-wrap strong { margin-left: 46px; }
  .about-spiritual-image, .about-spiritual-image img { min-height: 315px; height: 315px; }
  .about-spiritual-image figcaption { left: 20px; right: 20px; bottom: 17px; font-size: .94rem; }
  .journey-cta-section { background-position: 62% center; padding: 72px 0; }
  .journey-cta { padding: 35px 25px; }
}


/* VERSION 6 RC1 - INAUGURATION READINESS */
.launch-announcement{background:linear-gradient(90deg,#6f1027,#8f1935 55%,#5f0c21);color:#fff;border-bottom:1px solid rgba(212,171,72,.65)}
.launch-announcement-inner{min-height:42px;display:flex;align-items:center;justify-content:center;gap:14px;text-align:center;font-size:.92rem;letter-spacing:.01em}
.launch-badge{display:inline-flex;padding:5px 10px;border:1px solid rgba(255,226,151,.8);border-radius:999px;color:#ffe6a1;font-weight:800;font-size:.72rem;letter-spacing:.12em}
.launch-countdown{color:#ffe7a7;font-weight:800;white-space:nowrap}
.vocation-detail-button{border:0;background:transparent;color:var(--maroon,#7a1730);font:inherit;font-weight:800;padding:0;cursor:pointer;text-align:left}
.vocation-detail-button:hover,.vocation-detail-button:focus{text-decoration:underline;color:#a97716}
.vocation-profile-header{align-items:center}.vocation-modal-icon{width:72px;height:72px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(145deg,#7a1730,#a52b49);color:#f3d78d;font-size:2.1rem;box-shadow:0 12px 28px rgba(85,12,31,.22)}
.vocation-detail-columns{display:grid;grid-template-columns:1fr 1fr;gap:18px}.vocation-detail-columns ul,.vocation-detail-columns ol{margin:10px 0 0;padding-left:22px;display:grid;gap:9px;line-height:1.55}
.website-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.footer-actions{display:flex;gap:14px;align-items:center;justify-content:flex-end;flex-wrap:wrap}.footer-actions a{white-space:nowrap}
.policy-page{min-height:100vh;background:#fbf7ee;color:#35282c}.policy-header{background:linear-gradient(135deg,#641127,#8e1e3b);color:#fff;padding:32px 0}.policy-header .container{display:flex;align-items:center;gap:18px}.policy-header img{width:68px;height:68px}.policy-main{padding:52px 0 72px}.policy-card{max-width:900px;margin:auto;background:#fff;border:1px solid #eadab8;border-radius:22px;padding:clamp(24px,5vw,52px);box-shadow:0 20px 55px rgba(73,35,32,.10)}.policy-card h1{color:#71142c}.policy-card h2{color:#7d1730;margin-top:32px}.policy-card p,.policy-card li{line-height:1.75}.policy-back{display:inline-flex;margin-top:26px;color:#7d1730;font-weight:800}
@media(max-width:760px){.launch-announcement-inner{padding:8px 0;flex-wrap:wrap;gap:6px 10px}.launch-announcement-inner strong{width:100%}.vocation-detail-columns{grid-template-columns:1fr}.footer-actions{justify-content:center}}


/* Version 6 RC1.3: verified official institution links */
.official-links{display:flex;flex-wrap:wrap;gap:.65rem;margin-top:1rem}
.official-links a{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:.62rem .9rem;border:1px solid rgba(143,91,24,.32);border-radius:999px;background:#fffaf0;color:#6f1528;font-weight:800;font-size:.86rem;text-decoration:none;box-shadow:0 6px 16px rgba(77,20,33,.08);transition:transform .2s ease,background .2s ease,border-color .2s ease}
.official-links a:hover,.official-links a:focus-visible{transform:translateY(-2px);background:#7a1730;color:#fff;border-color:#7a1730}
.official-links.compact{gap:.45rem;margin-top:.8rem}
.official-links.compact a{min-height:34px;padding:.45rem .68rem;font-size:.76rem;box-shadow:none}
.profile-list article .official-links{margin-top:.55rem}
@media (max-width:640px){.official-links a{width:100%}.official-links.compact a{width:auto;flex:1 1 44%}}

.institution-mini-list{margin-top:1rem;padding:1rem;border-radius:16px;background:rgba(122,23,48,.045);border:1px solid rgba(122,23,48,.12)}
.institution-mini-list>strong{display:block;margin-bottom:.6rem;color:#5e1023;font-family:Georgia,serif;font-size:1rem}
.institution-mini-list>div{padding:.55rem 0;border-top:1px solid rgba(122,23,48,.1)}
.institution-mini-list>div:first-of-type{border-top:0}
.institution-mini-list>div>span{display:block;font-weight:750;color:#2e2430}
.institution-mini-list small{display:block;margin-top:.5rem;color:#7c6670;font-weight:700}

/* =====================================================================
   VERSION 6 RC1.4 - RESPONSIVE TAMIL TYPOGRAPHY
   Keeps Tamil text proportionate, readable and contained in every area.
   ===================================================================== */
html[lang="ta"] body,
html[lang="ta"] button,
html[lang="ta"] input,
html[lang="ta"] select,
html[lang="ta"] textarea {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
}

html[lang="ta"] [data-en][data-ta],
html[lang="ta"] .directory-card,
html[lang="ta"] .event-card,
html[lang="ta"] .feature-card,
html[lang="ta"] .vocation-path-card,
html[lang="ta"] .purpose-item,
html[lang="ta"] .vision-card,
html[lang="ta"] .mission-card,
html[lang="ta"] .profile-card,
html[lang="ta"] .policy-card {
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: none;
}

html[lang="ta"] .eyebrow,
html[lang="ta"] .launch-badge {
  text-transform: none;
  letter-spacing: .025em;
  line-height: 1.55;
}

html[lang="ta"] .utility-wrap,
html[lang="ta"] .launch-announcement-inner {
  font-size: .82rem;
  line-height: 1.45;
}
html[lang="ta"] .launch-announcement-inner strong {
  max-width: 760px;
  overflow-wrap: anywhere;
}
html[lang="ta"] .launch-badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  font-size: .66rem;
}
html[lang="ta"] .launch-countdown {
  font-size: .78rem;
}

html[lang="ta"] .brand span {
  min-width: 0;
}
html[lang="ta"] .brand strong,
html[lang="ta"] .hero-mini-brand strong,
html[lang="ta"] .contact-brand h2,
html[lang="ta"] .profile-header h2,
html[lang="ta"] .institution-mini-list > strong {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  letter-spacing: 0;
}
html[lang="ta"] .brand strong {
  max-width: 190px;
  font-size: .94rem;
  line-height: 1.38;
}
html[lang="ta"] .brand small {
  max-width: 210px;
  font-size: .61rem;
  line-height: 1.45;
}
html[lang="ta"] .main-nav {
  gap: 10px;
}
html[lang="ta"] .main-nav a {
  max-width: 132px;
  padding-block: 8px;
  font-size: .75rem;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}
html[lang="ta"] .main-nav .nav-cta {
  padding: 9px 12px;
}
html[lang="ta"] .language-toggle {
  flex: 0 0 auto;
  font-size: .76rem;
}

html[lang="ta"] .spiritual-hero .hero-copy {
  max-width: 735px;
}
html[lang="ta"] .eyebrow {
  max-width: 100%;
  font-size: .69rem;
  white-space: normal;
}
html[lang="ta"] .spiritual-hero .hero-copy h1,
html[lang="ta"] .hero-copy h1 {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.85rem);
  line-height: 1.24;
  letter-spacing: 0;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}
html[lang="ta"] .spiritual-hero .hero-copy h1 em,
html[lang="ta"] .hero-copy h1 em {
  margin-top: 11px;
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  font-size: .43em;
  font-weight: 650;
  line-height: 1.55;
}
html[lang="ta"] .spiritual-hero .hero-copy > p,
html[lang="ta"] .hero-copy > p {
  max-width: 670px;
  font-size: .93rem;
  line-height: 1.85;
  text-wrap: pretty;
}
html[lang="ta"] .hero-note {
  font-size: .77rem;
  line-height: 1.6;
}

html[lang="ta"] .btn,
html[lang="ta"] .official-links a,
html[lang="ta"] .vocation-detail-button,
html[lang="ta"] .profile-action,
html[lang="ta"] .policy-back {
  min-width: 0;
  max-width: 100%;
  height: auto;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
  line-height: 1.45;
}
html[lang="ta"] .btn {
  min-height: 48px;
  padding: 10px 16px;
  font-size: .78rem;
}
html[lang="ta"] .official-links a {
  min-height: 42px;
  padding: .55rem .78rem;
  font-size: .75rem;
}
html[lang="ta"] .official-links.compact a {
  min-height: 37px;
  font-size: .69rem;
}

html[lang="ta"] .stats-grid span:last-child {
  padding-inline: 3px;
  font-size: .68rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
html[lang="ta"] .scripture-wrap p {
  font-size: .98rem;
  line-height: 1.7;
}
html[lang="ta"] .scripture-wrap strong {
  font-size: .76rem;
}

html[lang="ta"] .section-heading h2,
html[lang="ta"] .resource-grid h2,
html[lang="ta"] .enquiry-copy h2,
html[lang="ta"] .about-copy h2,
html[lang="ta"] .purpose-copy h2,
html[lang="ta"] .commitment-card h2,
html[lang="ta"] .journey-cta h2,
html[lang="ta"] .policy-card h1,
html[lang="ta"] .policy-card h2 {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.38;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}
html[lang="ta"] .section-heading h2,
html[lang="ta"] .resource-grid h2,
html[lang="ta"] .enquiry-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}
html[lang="ta"] .about-copy h2,
html[lang="ta"] .purpose-copy h2,
html[lang="ta"] .commitment-card h2,
html[lang="ta"] .journey-cta h2 {
  font-size: clamp(1.75rem, 3.15vw, 2.65rem);
}
html[lang="ta"] .section-heading p,
html[lang="ta"] .about-copy > p,
html[lang="ta"] .commitment-card p,
html[lang="ta"] .journey-cta p,
html[lang="ta"] .enquiry-copy p {
  font-size: .9rem;
  line-height: 1.82;
}
html[lang="ta"] .about-spiritual-image figcaption {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  font-size: .92rem;
  line-height: 1.6;
}
html[lang="ta"] .about-copy .about-highlight p {
  font-size: .92rem;
  line-height: 1.72;
}

html[lang="ta"] .vision-card h3,
html[lang="ta"] .mission-card h3,
html[lang="ta"] .feature-card h3,
html[lang="ta"] .directory-card h3,
html[lang="ta"] .event-card h3,
html[lang="ta"] .resource-cards h3,
html[lang="ta"] .vocation-path-card h3,
html[lang="ta"] .profile-section h3 {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
html[lang="ta"] .vision-card h3,
html[lang="ta"] .mission-card h3 {
  font-size: 1.42rem;
  line-height: 1.48;
}
html[lang="ta"] .mission-list li {
  padding-left: 34px;
  font-size: .84rem;
  line-height: 1.68;
}
html[lang="ta"] .feature-card h3,
html[lang="ta"] .directory-card h3,
html[lang="ta"] .event-card h3,
html[lang="ta"] .resource-cards h3 {
  font-size: 1.02rem;
  line-height: 1.55;
}
html[lang="ta"] .feature-card p,
html[lang="ta"] .directory-card p,
html[lang="ta"] .event-card p,
html[lang="ta"] .resource-cards p {
  font-size: .84rem;
  line-height: 1.72;
}
html[lang="ta"] .directory-card .card-subtitle {
  font-size: .7rem;
  line-height: 1.5;
}
html[lang="ta"] .tag {
  font-size: .66rem;
  line-height: 1.4;
}

html[lang="ta"] .vocation-path-card {
  min-height: 290px;
  padding: 24px;
}
html[lang="ta"] .vocation-path-card h3 {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
}
html[lang="ta"] .vocation-path-card p {
  font-size: .82rem;
  line-height: 1.72;
}
html[lang="ta"] .vocation-path-card a,
html[lang="ta"] .vocation-detail-button {
  font-size: .72rem;
  line-height: 1.5;
}

html[lang="ta"] .scripture-feature p {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 1.95rem);
  font-style: normal;
  line-height: 1.75;
  overflow-wrap: anywhere;
}
html[lang="ta"] .scripture-feature cite {
  font-size: .76rem;
  line-height: 1.5;
}
html[lang="ta"] .purpose-item {
  min-height: 98px;
}
html[lang="ta"] .purpose-item p {
  font-size: .79rem;
  line-height: 1.6;
}

html[lang="ta"] .enquiry-form label,
html[lang="ta"] .enquiry-form legend,
html[lang="ta"] .enquiry-form select,
html[lang="ta"] .enquiry-form input,
html[lang="ta"] .enquiry-form textarea {
  font-size: .84rem;
  line-height: 1.55;
}
html[lang="ta"] .privacy-note,
html[lang="ta"] .form-status {
  font-size: .8rem;
  line-height: 1.65;
}

html[lang="ta"] .contact-brand h2 {
  font-size: 1.7rem;
  line-height: 1.45;
}
html[lang="ta"] .contact-brand p,
html[lang="ta"] .contact-links,
html[lang="ta"] .site-footer,
html[lang="ta"] .footer-motto {
  font-size: .76rem;
  line-height: 1.65;
}
html[lang="ta"] .contact-links strong {
  overflow-wrap: anywhere;
}

html[lang="ta"] .profile-header h2 {
  font-size: 1.6rem;
  line-height: 1.5;
}
html[lang="ta"] .profile-section h3 {
  font-size: 1rem;
  line-height: 1.55;
}
html[lang="ta"] .profile-section p,
html[lang="ta"] .profile-list,
html[lang="ta"] .vocation-detail-columns {
  font-size: .84rem;
  line-height: 1.72;
}

@media (max-width: 1320px) {
  html[lang="ta"] .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  html[lang="ta"] .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 91px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }
  html[lang="ta"] .main-nav.open { display: flex; }
  html[lang="ta"] .main-nav a {
    max-width: none;
    padding: 10px 12px;
    font-size: .82rem;
    text-align: left;
  }
  html[lang="ta"] .main-nav .nav-cta { text-align: center; }
}

@media (max-width: 760px) {
  html[lang="ta"] .launch-announcement-inner {
    padding-block: 9px;
    font-size: .75rem;
  }
  html[lang="ta"] .launch-announcement-inner strong { width: 100%; }
  html[lang="ta"] .spiritual-hero .hero-copy h1,
  html[lang="ta"] .hero-copy h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.75rem);
    line-height: 1.32;
  }
  html[lang="ta"] .spiritual-hero .hero-copy h1 em,
  html[lang="ta"] .hero-copy h1 em {
    font-size: .5em;
    line-height: 1.65;
  }
  html[lang="ta"] .spiritual-hero .hero-copy > p,
  html[lang="ta"] .hero-copy > p {
    font-size: .85rem;
    line-height: 1.78;
  }
  html[lang="ta"] .section-heading h2,
  html[lang="ta"] .resource-grid h2,
  html[lang="ta"] .enquiry-copy h2,
  html[lang="ta"] .about-copy h2,
  html[lang="ta"] .purpose-copy h2,
  html[lang="ta"] .commitment-card h2,
  html[lang="ta"] .journey-cta h2 {
    font-size: 1.55rem;
    line-height: 1.5;
  }
  html[lang="ta"] .vocation-path-card {
    min-height: 0;
  }
  html[lang="ta"] .scripture-feature p { font-size: 1.15rem; }
  html[lang="ta"] .journey-actions .btn { width: 100%; }
}

@media (max-width: 430px) {
  html[lang="ta"] .brand strong {
    max-width: 128px;
    font-size: .77rem;
    line-height: 1.45;
  }
  html[lang="ta"] .language-toggle {
    padding: 7px 8px;
    font-size: .64rem;
  }
  html[lang="ta"] .hero-mini-brand strong { font-size: .88rem; }
  html[lang="ta"] .hero-mini-brand small { font-size: .57rem; line-height: 1.45; }
  html[lang="ta"] .spiritual-hero .hero-copy { padding: 25px 20px; }
  html[lang="ta"] .btn { font-size: .72rem; }
  html[lang="ta"] .stats-grid span:last-child { font-size: .62rem; }
  html[lang="ta"] .about-spiritual-image figcaption { font-size: .8rem; }
  html[lang="ta"] .contact-brand h2 { font-size: 1.45rem; }
}


/* Version 6 RC1.5 - platform visual showcase */
.platform-showcase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(190, 142, 39, .12), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(103, 15, 37, .09), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f8f0e3 100%);
}
.platform-showcase-section::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(190, 142, 39, .18);
  border-radius: 34px;
  pointer-events: none;
}
.platform-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1.18fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.platform-showcase-copy h2 {
  max-width: 690px;
  margin: 12px 0 20px;
  color: var(--maroon-900);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
}
.platform-showcase-copy > p {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}
.showcase-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.showcase-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(118, 30, 48, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--maroon-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(79, 20, 34, .06);
}
.showcase-points span::before {
  content: "✦";
  margin-right: 7px;
  color: var(--gold-600);
}
.platform-showcase-frame {
  position: relative;
  margin: 0;
  padding: 42px 18px 18px;
  border: 1px solid rgba(190, 142, 39, .42);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 30px 80px rgba(71, 18, 32, .18);
}
.platform-showcase-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(190, 142, 39, .16);
  border-radius: 20px;
  pointer-events: none;
}
.showcase-browser-bar {
  position: absolute;
  top: 15px;
  left: 20px;
  display: flex;
  gap: 7px;
}
.showcase-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7a1c35;
  box-shadow: 18px 0 0 #c8962f, 36px 0 0 #d8c5a2;
}
.showcase-browser-bar span:not(:first-child) { display: none; }
.platform-showcase-frame a {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: 17px;
  background: #f7efdf;
}
.platform-showcase-frame img {
  display: block;
  width: 100%;
  max-height: 790px;
  object-fit: contain;
  object-position: top center;
  transition: transform .45s ease, filter .45s ease;
}
.platform-showcase-frame a:hover img {
  transform: scale(1.012);
  filter: saturate(1.04) contrast(1.02);
}
.platform-showcase-frame figcaption {
  position: relative;
  z-index: 1;
  margin: 14px 8px 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
  text-align: center;
}
html[lang="ta"] .platform-showcase-copy h2 {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  font-size: clamp(1.75rem, 3.25vw, 2.85rem);
  line-height: 1.42;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
html[lang="ta"] .platform-showcase-copy > p {
  font-size: .9rem;
  line-height: 1.85;
}
html[lang="ta"] .showcase-points span,
html[lang="ta"] .platform-showcase-frame figcaption {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  font-size: .72rem;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .platform-showcase-grid {
    grid-template-columns: 1fr;
  }
  .platform-showcase-copy {
    max-width: 760px;
  }
  .platform-showcase-frame {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 620px) {
  .platform-showcase-section::before { inset: 10px; border-radius: 24px; }
  .platform-showcase-grid { gap: 28px; }
  .platform-showcase-frame { padding: 36px 10px 12px; border-radius: 20px; }
  .platform-showcase-frame img { max-height: none; }
  .platform-showcase-copy h2 { font-size: 2rem; }
  .showcase-points { gap: 8px; }
  .showcase-points span { width: 100%; justify-content: flex-start; }
  html[lang="ta"] .platform-showcase-copy h2 { font-size: 1.55rem; }
}


/* Version 6 RC1.6 — Bishops of Tamil Nadu gallery */
.bishops-section{position:relative;overflow:hidden;background:linear-gradient(180deg,#fffdf8 0%,#f8efe6 100%)}
.bishops-section::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 10% 15%,rgba(199,152,49,.13),transparent 28%),radial-gradient(circle at 88% 80%,rgba(122,23,48,.08),transparent 30%);pointer-events:none}
.bishops-heading{position:relative;max-width:850px;margin-inline:auto}
.bishop-grid{position:relative;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;margin-top:34px}
.bishop-card{min-width:0;border:1px solid rgba(192,145,54,.38);border-radius:22px;overflow:hidden;background:rgba(255,255,255,.96);box-shadow:0 18px 44px rgba(74,24,37,.12);transition:transform .25s ease,box-shadow .25s ease}
.bishop-card:hover{transform:translateY(-6px);box-shadow:0 24px 54px rgba(74,24,37,.18)}
.bishop-photo{position:relative;aspect-ratio:4/5;overflow:hidden;background:linear-gradient(145deg,#6e142b,#2e0915)}
.bishop-photo>img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.bishop-placeholder{position:absolute;inset:0;display:none;place-content:center;text-align:center;color:#f0d485;background:radial-gradient(circle at 50% 35%,rgba(255,236,177,.22),transparent 32%),linear-gradient(145deg,#7a1730,#3b0b1b)}
.bishop-placeholder span{display:block;font-size:4rem;line-height:1}.bishop-placeholder small{display:block;margin-top:12px;font-family:Georgia,serif;font-size:1.8rem;letter-spacing:.12em}
.bishop-photo.photo-missing .bishop-placeholder{display:grid}
.bishop-role{position:absolute;left:14px;bottom:14px;max-width:calc(100% - 28px);padding:7px 11px;border-radius:999px;background:rgba(70,10,28,.9);color:#fff3d2;font-size:.72rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;backdrop-filter:blur(8px)}
.bishop-card-body{display:flex;flex-direction:column;min-height:285px;padding:22px 20px 20px}
.bishop-diocese{color:#a16f19;font-size:.76rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.bishop-card h3{margin:7px 0 4px;color:#5b1327;font-family:Georgia,'Times New Roman',serif;font-size:1.36rem;line-height:1.2}
.bishop-title{margin:0;color:#6f6870;font-weight:700;font-size:.9rem}
.bishop-card blockquote{margin:17px 0 0;padding:13px 14px;border-left:3px solid #c99a3b;border-radius:0 12px 12px 0;background:#fff8e9;color:#5c2432;font-family:Georgia,serif;font-size:.9rem;line-height:1.5}
.bishop-card blockquote span{display:block;margin-bottom:4px;color:#997019;font-family:inherit;font-size:.66rem;font-weight:900;letter-spacing:.07em;text-transform:uppercase}
.bishop-message{display:-webkit-box;overflow:hidden;margin:14px 0 0;color:#575159;font-size:.86rem;line-height:1.55;-webkit-line-clamp:4;-webkit-box-orient:vertical}
.bishop-link{align-self:flex-start;margin-top:auto;padding-top:16px;color:#751b32;font-weight:900;text-decoration:none}.bishop-link:hover{text-decoration:underline}
.bishops-empty{grid-column:1/-1;display:flex;align-items:center;justify-content:center;gap:18px;min-height:180px;padding:30px;border:1px dashed rgba(122,23,48,.28);border-radius:22px;background:rgba(255,255,255,.7);color:#6b5960;text-align:left}
.bishops-empty span{display:grid;place-items:center;flex:0 0 62px;width:62px;height:62px;border-radius:50%;background:#741a31;color:#f2d48a;font-size:2rem}.bishops-empty p{max-width:620px;margin:0;line-height:1.7}
html[lang="ta"] .bishop-card h3{font-size:1.16rem;line-height:1.42}html[lang="ta"] .bishop-role{font-size:.64rem;line-height:1.35;text-transform:none}html[lang="ta"] .bishop-diocese{font-size:.68rem;line-height:1.45;text-transform:none}html[lang="ta"] .bishop-message{font-size:.82rem;line-height:1.72}
@media(max-width:1100px){.bishop-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:820px){.bishop-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.bishop-card-body{min-height:265px}}
@media(max-width:540px){.bishop-grid{grid-template-columns:1fr;gap:18px}.bishop-card{max-width:390px;width:100%;margin-inline:auto}.bishop-photo{aspect-ratio:5/5.7}.bishops-empty{flex-direction:column;text-align:center}}

/* =====================================================================
   TNLBC COMMISSION FOR VOCATION — PUBLIC PAGE FEATURE
   Added for the final July 2026 public-page update.
   ===================================================================== */
.commission-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(76px, 8vw, 118px);
  background:
    linear-gradient(180deg, rgba(255,253,248,.97), rgba(250,240,231,.98)),
    radial-gradient(circle at 12% 18%, rgba(207,158,55,.18), transparent 30rem);
}
.commission-section::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: -2;
  border: 1px solid rgba(181,132,39,.23);
  border-radius: 42px;
  pointer-events: none;
}
.commission-section::after {
  content: "✦";
  position: absolute;
  right: 3.5vw;
  top: 5rem;
  z-index: -1;
  color: rgba(117,27,50,.055);
  font-family: Georgia, serif;
  font-size: clamp(11rem, 26vw, 25rem);
  line-height: 1;
  pointer-events: none;
}
.commission-container { position: relative; }
.commission-light {
  position: absolute;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(7px);
  pointer-events: none;
}
.commission-light-one {
  top: -13rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(211,164,69,.17), transparent 68%);
}
.commission-light-two {
  right: -15rem;
  bottom: 17%;
  background: radial-gradient(circle, rgba(122,31,61,.11), transparent 68%);
}
.commission-identity-grid {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}
.commission-logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(187,137,44,.33);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.98), rgba(255,250,240,.91) 59%, rgba(236,210,154,.36)),
    #fffaf0;
  box-shadow: 0 32px 76px rgba(70,18,36,.15), inset 0 1px 0 rgba(255,255,255,.95);
}
.commission-logo-stage::before,
.commission-logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 32px;
  pointer-events: none;
}
.commission-logo-stage::before { inset: 12px; border: 1px solid rgba(199,151,54,.22); }
.commission-logo-stage::after {
  inset: auto 13% 25px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(59,11,30,.2), transparent 68%);
  filter: blur(8px);
}
.commission-logo-halo {
  position: absolute;
  width: 79%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0 48%, rgba(218,175,89,.24) 59%, transparent 72%);
  filter: blur(.2px);
}
.commission-logo-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 455px);
  filter: drop-shadow(0 24px 23px rgba(70,18,36,.18));
  transition: transform .35s ease, filter .35s ease;
}
.commission-logo-stage:hover img {
  transform: translateY(-5px) scale(1.012);
  filter: drop-shadow(0 29px 28px rgba(70,18,36,.24));
}
.commission-seal-note {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 16px;
  border: 1px solid rgba(180,133,43,.22);
  border-radius: 999px;
  background: rgba(255,253,248,.88);
  color: var(--maroon-800);
  font-size: .75rem;
  backdrop-filter: blur(8px);
}
.commission-seal-note span { font-weight: 750; }
.commission-seal-note strong { color: #9a6c17; font-family: Georgia, serif; }
.commission-intro h2 {
  max-width: 720px;
  margin: 13px 0 4px;
  color: var(--maroon-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.commission-intro h3 {
  margin: 0 0 24px;
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.3vw, 1.82rem);
  font-weight: 600;
  line-height: 1.35;
}
.commission-intro > p {
  max-width: 730px;
  margin: 0;
  color: #55484e;
  font-size: 1.03rem;
  line-height: 1.88;
}
.commission-focus-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 5px;
}
.commission-focus-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid rgba(122,31,61,.14);
  border-radius: 999px;
  color: var(--maroon-800);
  background: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(72,20,36,.045);
}
.commission-focus-pills span::before { content: "✦"; color: var(--gold-600); font-size: .66rem; }
.commission-guide-button { margin-top: 22px; }
.commission-vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  gap: 24px;
  margin-top: clamp(52px, 7vw, 86px);
}
.commission-vision-card,
.commission-call-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 31px;
  box-shadow: 0 22px 52px rgba(67,18,36,.12);
}
.commission-vision-card {
  padding: clamp(32px, 5vw, 57px);
  border: 1px solid rgba(123,31,61,.13);
  background:
    radial-gradient(circle at 90% 0, rgba(213,169,78,.2), transparent 15rem),
    linear-gradient(145deg, #fffdf8, #f7ece4);
}
.commission-vision-card::after {
  content: "VISION";
  position: absolute;
  right: -12px;
  bottom: -16px;
  color: rgba(121,31,60,.045);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.commission-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 18px;
  color: #f5dd9d;
  background: linear-gradient(145deg, var(--maroon-800), var(--maroon-950));
  box-shadow: 0 13px 24px rgba(70,16,38,.19);
  font-size: 1.65rem;
}
.commission-card-label {
  color: #9a6c17;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.commission-vision-card h3 {
  max-width: 700px;
  margin: 9px 0 15px;
  color: var(--maroon-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.3vw, 2.65rem);
  line-height: 1.15;
}
.commission-vision-card p {
  position: relative;
  z-index: 1;
  max-width: 770px;
  margin: 0;
  color: #5d5055;
  line-height: 1.82;
}
.commission-call-card {
  display: grid;
  align-content: end;
  padding: clamp(31px, 4vw, 46px);
  color: white;
  background:
    radial-gradient(circle at 80% 18%, rgba(235,207,136,.2), transparent 12rem),
    linear-gradient(145deg, var(--maroon-800), #350817);
}
.commission-call-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(235,207,136,.28);
  border-radius: 23px;
}
.commission-call-cross {
  position: absolute;
  top: 29px;
  right: 36px;
  color: rgba(241,211,137,.19);
  font-size: 7rem;
  line-height: 1;
}
.commission-call-card blockquote { position: relative; z-index: 1; margin: 0; }
.commission-call-card p {
  margin: 0 0 22px;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.52;
}
.commission-call-card strong { color: var(--gold-300); font-size: .9rem; letter-spacing: .035em; }
.commission-mission-heading { margin-top: clamp(76px, 9vw, 118px); }
.commission-mission-heading p { max-width: 785px; margin-inline: auto; }
.commission-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}
.commission-mission-point {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 132px;
  padding: 24px 25px;
  border: 1px solid rgba(118,29,57,.11);
  border-radius: 22px;
  background: rgba(255,255,255,.83);
  box-shadow: 0 14px 34px rgba(74,20,37,.07);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.commission-mission-point:hover {
  transform: translateY(-4px);
  border-color: rgba(188,139,47,.38);
  box-shadow: 0 20px 44px rgba(74,20,37,.11);
}
.commission-mission-point > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  color: #f8dfa2;
  background: linear-gradient(145deg, #7a1f3d, #4a0e25);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 10px 19px rgba(75,16,39,.17);
}
.commission-mission-point p { margin: 2px 0 0; color: #564b50; line-height: 1.7; }
.commission-gallery-block {
  margin-top: clamp(80px, 9vw, 122px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(188,139,47,.25);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 10%, rgba(218,175,89,.16), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(250,241,232,.93));
  box-shadow: 0 27px 65px rgba(72,18,37,.1);
}
.commission-gallery-heading { max-width: 790px; margin-bottom: 34px; }
.commission-gallery-heading h2 {
  margin: 10px 0 12px;
  color: var(--maroon-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
}
.commission-gallery-heading p { margin: 0; color: var(--muted); }
.commission-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
.commission-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(116,27,52,.12);
  border-radius: 27px;
  background: white;
  box-shadow: 0 18px 42px rgba(70,18,36,.1);
}
.commission-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.65;
  background: linear-gradient(145deg, #6e1731, #e1b863);
}
.commission-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 9px solid rgba(255,255,255,.14);
  pointer-events: none;
}
.commission-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease, filter .5s ease;
}
.commission-photo-card:hover img { transform: scale(1.025); filter: saturate(1.03) contrast(1.015); }
.commission-photo-card figcaption { display: grid; gap: 7px; padding: 23px 24px 25px; }
.commission-photo-card figcaption strong {
  color: var(--maroon-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}
.commission-photo-card figcaption span { color: #6b5c62; font-size: .87rem; line-height: 1.62; }
.commission-address-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 26px 29px;
  border: 1px solid rgba(231,201,132,.3);
  border-radius: 25px;
  color: white;
  background:
    radial-gradient(circle at 84% 10%, rgba(234,209,150,.21), transparent 16rem),
    linear-gradient(125deg, var(--maroon-900), #3b0a1d);
  box-shadow: 0 22px 52px rgba(59,11,30,.19);
}
.commission-address-card > div { display: flex; align-items: center; gap: 17px; }
.commission-address-mark {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(234,209,150,.36);
  border-radius: 18px;
  color: var(--gold-300);
  background: rgba(255,255,255,.065);
  font-size: 1.65rem;
}
.commission-address-card p { display: grid; margin: 0; line-height: 1.45; }
.commission-address-card small { color: var(--gold-300); font-size: .69rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.commission-address-card strong { margin-top: 4px; font-family: Georgia, serif; font-size: 1.17rem; }
.commission-address-card p > span { color: #e9dce1; font-size: .87rem; }
.commission-address-card .btn-outline-gold { flex: 0 0 auto; margin: 0; }
html[lang="ta"] .commission-intro h2,
html[lang="ta"] .commission-intro h3,
html[lang="ta"] .commission-vision-card h3,
html[lang="ta"] .commission-call-card p,
html[lang="ta"] .commission-gallery-heading h2,
html[lang="ta"] .commission-photo-card figcaption strong {
  font-family: "Nirmala UI", "Noto Sans Tamil", Latha, Arial, sans-serif;
  letter-spacing: 0;
}
html[lang="ta"] .commission-intro h2 { font-size: clamp(2rem, 4.2vw, 3.7rem); line-height: 1.35; }
html[lang="ta"] .commission-intro h3 { font-size: clamp(1.05rem, 2vw, 1.5rem); line-height: 1.55; }
html[lang="ta"] .commission-intro > p,
html[lang="ta"] .commission-vision-card p,
html[lang="ta"] .commission-mission-point p { line-height: 1.9; }
html[lang="ta"] .commission-card-label,
html[lang="ta"] .commission-address-card small { text-transform: none; letter-spacing: 0; }
@media (max-width: 980px) {
  .commission-section::before { inset: 12px; border-radius: 30px; }
  .commission-identity-grid { grid-template-columns: 1fr; }
  .commission-logo-stage { min-height: 500px; max-width: 650px; width: 100%; margin-inline: auto; }
  .commission-intro { max-width: 780px; }
  .commission-vision-grid { grid-template-columns: 1fr; }
  .commission-call-card { min-height: 280px; }
}
@media (max-width: 720px) {
  .commission-section { padding-block: 64px; }
  .commission-section::before { display: none; }
  .commission-logo-stage { min-height: 390px; padding: 25px 19px 70px; border-radius: 28px; }
  .commission-logo-stage::before { inset: 8px; border-radius: 21px; }
  .commission-logo-stage img { width: min(100%, 340px); }
  .commission-seal-note { left: 16px; right: 16px; bottom: 15px; padding: 9px 12px; font-size: .65rem; }
  .commission-intro h2 { font-size: 2.45rem; }
  .commission-intro > p { font-size: .94rem; line-height: 1.78; }
  .commission-vision-card,
  .commission-call-card { min-height: 0; border-radius: 24px; }
  .commission-vision-card { padding: 32px 25px; }
  .commission-call-card { padding: 70px 25px 31px; }
  .commission-mission-grid { grid-template-columns: 1fr; }
  .commission-mission-point { grid-template-columns: 49px minmax(0, 1fr); min-height: 0; padding: 19px 18px; }
  .commission-mission-point > span { width: 49px; height: 49px; border-radius: 14px; font-size: .94rem; }
  .commission-gallery-block { padding: 27px 17px; border-radius: 27px; }
  .commission-gallery-grid { grid-template-columns: 1fr; }
  .commission-address-card { flex-direction: column; align-items: stretch; padding: 25px 21px; }
  .commission-address-card .btn-outline-gold { width: 100%; text-align: center; }
  html[lang="ta"] .commission-intro h2 { font-size: 1.85rem; }
}
@media (max-width: 430px) {
  .commission-logo-stage { min-height: 340px; }
  .commission-seal-note { justify-content: center; }
  .commission-seal-note span { display: none; }
  .commission-focus-pills span { flex: 1 1 44%; justify-content: center; }
  .commission-mission-point { gap: 13px; }
  .commission-photo-frame { aspect-ratio: 4 / 4.9; }
  .commission-address-card > div { align-items: flex-start; }
  .commission-address-mark { flex-basis: 49px; width: 49px; height: 49px; }
}


/* TNLBC front-page redesign - RC1.8.2 */
.commission-spotlight {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0 clamp(78px, 9vw, 130px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 14%, rgba(224,183,95,.26), transparent 25rem),
    radial-gradient(circle at 88% 88%, rgba(255,255,255,.09), transparent 24rem),
    linear-gradient(138deg, #350817 0%, #651934 52%, #26040f 100%);
}
.commission-spotlight::before,
.commission-spotlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(236,205,132,.14);
  border-radius: 50%;
}
.commission-spotlight::before { width: 560px; height: 560px; left: -280px; top: -300px; }
.commission-spotlight::after { width: 680px; height: 680px; right: -390px; bottom: -390px; }
.commission-spotlight-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .16;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.06) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.06) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.06) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.06) 87.5%);
  background-size: 76px 132px;
}
.commission-spotlight-shell { position: relative; }
.commission-spotlight-heading {
  max-width: 900px;
  margin: 0 auto clamp(42px, 5vw, 68px);
  text-align: center;
}
.commission-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f2d58d;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.commission-kicker::before,
.commission-kicker::after { content: ""; width: 42px; height: 1px; background: rgba(242,213,141,.64); }
.commission-spotlight-heading h2 {
  margin: 18px 0 20px;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.commission-spotlight-heading p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255,247,235,.82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.82;
}
.commission-front-grid {
  display: grid;
  grid-template-columns: minmax(230px, .78fr) minmax(390px, 1.25fr) minmax(230px, .78fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
}
.commission-front-photo,
.commission-front-identity {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 590px;
  border: 1px solid rgba(241,211,139,.34);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(10,0,4,.33);
}
.commission-front-photo { background: #19030b; }
.commission-front-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,3,11,.94), rgba(25,3,11,.05) 52%, rgba(25,3,11,.02));
}
.commission-front-photo img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.commission-front-photo-left img { object-position: 52% center; }
.commission-front-photo-right img { object-position: 52% 16%; }
.commission-front-photo:hover img { transform: scale(1.035); filter: saturate(1.05) contrast(1.03); }
.commission-front-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 25px;
  display: grid;
  gap: 6px;
}
.commission-front-photo figcaption strong { color: #fff6e6; font-family: Georgia, serif; font-size: 1.2rem; }
.commission-front-photo figcaption span { color: rgba(255,243,220,.72); font-size: .82rem; line-height: 1.45; }
.commission-front-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
  text-align: center;
  color: #471025;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,.98), rgba(255,251,241,.92) 47%, rgba(235,204,135,.72) 100%);
}
.commission-front-identity::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(144,97,24,.24);
  border-radius: 25px;
  pointer-events: none;
}
.commission-front-logo-wrap { position: relative; display: grid; place-items: center; width: min(78%, 300px); margin-bottom: 16px; }
.commission-front-halo { position: absolute; width: 112%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.96), rgba(223,181,92,.26) 60%, transparent 72%); }
.commission-front-logo-wrap img { position: relative; z-index: 1; width: 100%; filter: drop-shadow(0 20px 18px rgba(67,16,34,.19)); }
.commission-front-overline { color: #926417; font-size: .69rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.commission-front-name {
  margin-top: 7px;
  color: #671833;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.07em;
  text-shadow: 0 2px 0 #fff, 0 8px 18px rgba(83,17,40,.13);
}
.commission-front-identity h3 { margin: 15px 0 5px; color: #4d1028; font-family: Georgia, serif; font-size: clamp(1.45rem, 2.5vw, 2.2rem); }
.commission-front-subtitle { margin: 0; color: #926417; font-size: .8rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.commission-front-identity blockquote { margin: 23px 0 20px; padding: 12px 26px; border-block: 1px solid rgba(114,38,59,.15); }
.commission-front-identity blockquote span { display: block; color: #741c3b; font-family: Georgia, serif; font-size: 1.5rem; font-style: italic; }
.commission-front-identity blockquote cite { display: block; margin-top: 4px; color: #8c6b31; font-size: .72rem; font-style: normal; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.commission-front-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.commission-front-actions .btn { min-width: 176px; }

/* Dedicated TNLBC page */
.tnlbc-page { background: #fffaf3; }
.tnlbc-page .site-header { position: sticky; top: 0; }
.tnlbc-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0;
  color: white;
  background:
    radial-gradient(circle at 17% 18%, rgba(231,190,101,.26), transparent 23rem),
    linear-gradient(135deg, #300611, #711d3b 54%, #26040d);
}
.tnlbc-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); gap: clamp(38px, 7vw, 100px); align-items: center; }
.tnlbc-hero-copy .commission-kicker { justify-content: flex-start; }
.tnlbc-hero-copy .commission-kicker::before { display: none; }
.tnlbc-hero-copy h1 { margin: 20px 0 18px; color: #fff9ec; font-family: Georgia, serif; font-size: clamp(3rem, 6.4vw, 6.3rem); line-height: .96; letter-spacing: -.055em; text-wrap: balance; }
.tnlbc-hero-copy h1 em { display: block; margin-top: 12px; color: #f1d189; font-size: .55em; font-weight: 500; }
.tnlbc-hero-copy > p { max-width: 730px; color: rgba(255,246,232,.84); font-size: 1.08rem; line-height: 1.85; }
.tnlbc-hero-copy .hero-actions { margin-top: 28px; }
.tnlbc-hero-seal { position: relative; display: grid; place-items: center; min-height: 560px; padding: 45px; border: 1px solid rgba(241,211,139,.32); border-radius: 44px; background: radial-gradient(circle, #fff 0 45%, #fff7e8 65%, rgba(224,184,101,.82)); box-shadow: 0 34px 84px rgba(12,0,5,.36); }
.tnlbc-hero-seal::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(126,81,17,.2); border-radius: 33px; }
.tnlbc-hero-seal img { position: relative; z-index: 1; width: min(100%, 430px); filter: drop-shadow(0 24px 24px rgba(65,14,33,.2)); }
.tnlbc-ribbon { padding: 22px 0; color: #4a1027; background: linear-gradient(90deg, #ead19b, #fff5db 48%, #e4c17c); }
.tnlbc-ribbon-inner { display: flex; align-items: center; justify-content: center; gap: 25px; text-align: center; }
.tnlbc-ribbon strong { font-family: Georgia, serif; font-size: clamp(1.25rem, 2.5vw, 2rem); }
.tnlbc-ribbon span { width: 42px; height: 1px; background: rgba(83,20,42,.35); }
.tnlbc-intro-section { padding: clamp(80px, 9vw, 128px) 0; }
.tnlbc-intro-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(42px, 7vw, 96px); align-items: center; }
.tnlbc-portrait-stack { position: relative; min-height: 610px; }
.tnlbc-portrait-stack figure { position: absolute; overflow: hidden; margin: 0; border: 8px solid #fff; border-radius: 28px; box-shadow: 0 24px 55px rgba(77,16,39,.18); }
.tnlbc-portrait-stack figure:first-child { left: 0; top: 0; width: 68%; height: 480px; }
.tnlbc-portrait-stack figure:last-child { right: 0; bottom: 0; width: 58%; height: 425px; }
.tnlbc-portrait-stack img { width: 100%; height: 100%; object-fit: cover; }
.tnlbc-portrait-stack figure:first-child img { object-position: 52% center; }
.tnlbc-portrait-stack figure:last-child img { object-position: 52% 16%; }
.tnlbc-intro-copy h2,
.tnlbc-section-heading h2 { margin: 12px 0 18px; color: #59142d; font-family: Georgia, serif; font-size: clamp(2.3rem, 4.5vw, 4.3rem); line-height: 1.04; letter-spacing: -.04em; }
.tnlbc-intro-copy p { color: #5a4c52; font-size: 1.04rem; line-height: 1.9; }
.tnlbc-signature-line { margin-top: 28px; padding: 22px 0 0 27px; border-left: 3px solid #bc8732; color: #6f1a38; font-family: Georgia, serif; font-size: 1.45rem; font-style: italic; line-height: 1.5; }
.tnlbc-vision-section { padding: clamp(78px, 9vw, 126px) 0; background: linear-gradient(145deg, #f7e9dc, #fffdf8 48%, #f4e5d7); }
.tnlbc-vision-card { position: relative; overflow: hidden; max-width: 1080px; margin: 0 auto; padding: clamp(40px, 6vw, 75px); border: 1px solid rgba(114,28,57,.14); border-radius: 38px; background: white; box-shadow: 0 30px 75px rgba(78,17,40,.12); }
.tnlbc-vision-card::after { content: "VISION"; position: absolute; right: -20px; bottom: -28px; color: rgba(111,24,54,.045); font-family: Georgia, serif; font-size: clamp(6rem, 15vw, 12rem); font-weight: 800; }
.tnlbc-vision-card blockquote { position: relative; z-index: 1; margin: 0; color: #55132c; font-family: Georgia, serif; font-size: clamp(1.65rem, 3.2vw, 2.8rem); line-height: 1.45; }
.tnlbc-mission-section { padding: clamp(84px, 10vw, 140px) 0; }
.tnlbc-section-heading { max-width: 840px; margin: 0 auto 54px; text-align: center; }
.tnlbc-section-heading p { color: #66585e; line-height: 1.8; }
.tnlbc-mission-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.tnlbc-mission-item { display: grid; grid-template-columns: 68px 1fr; gap: 20px; min-height: 150px; padding: 27px; border: 1px solid rgba(109,24,53,.11); border-radius: 25px; background: #fff; box-shadow: 0 15px 39px rgba(78,18,39,.075); }
.tnlbc-mission-item b { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 20px; color: #f3d992; background: linear-gradient(145deg, #751d3d, #3b0919); font-family: Georgia, serif; font-size: 1.2rem; }
.tnlbc-mission-item p { margin: 4px 0 0; color: #594c51; line-height: 1.72; }
.tnlbc-leadership-section { padding: clamp(80px, 9vw, 128px) 0; color: white; background: linear-gradient(138deg, #300610, #671934); }
.tnlbc-leadership-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 27px; margin-top: 45px; }
.tnlbc-leadership-grid figure { overflow: hidden; margin: 0; border: 1px solid rgba(238,205,130,.28); border-radius: 30px; background: rgba(255,255,255,.08); box-shadow: 0 25px 62px rgba(13,0,5,.31); }
.tnlbc-leadership-grid img { width: 100%; height: 560px; object-fit: cover; }
.tnlbc-leadership-grid figure:first-child img { object-position: 52% center; }
.tnlbc-leadership-grid figure:last-child img { object-position: 52% 16%; }
.tnlbc-leadership-grid figcaption { padding: 24px 27px 28px; }
.tnlbc-leadership-grid figcaption strong { display: block; color: #f5d68f; font-family: Georgia, serif; font-size: 1.35rem; }
.tnlbc-leadership-grid figcaption span { display: block; margin-top: 7px; color: rgba(255,245,229,.72); line-height: 1.55; }
.tnlbc-office-section { padding: clamp(76px, 8vw, 110px) 0; background: #fff8ed; }
.tnlbc-office-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(32px, 5vw, 58px); border: 1px solid rgba(116,28,57,.13); border-radius: 32px; background: white; box-shadow: 0 25px 64px rgba(75,17,38,.1); }
.tnlbc-office-card h2 { margin: 8px 0 9px; color: #59142d; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); }
.tnlbc-office-card p { margin: 0; color: #6a5a60; }

@media (max-width: 1050px) {
  .commission-front-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .commission-front-identity { grid-column: 1 / -1; grid-row: 1; min-height: auto; }
  .commission-front-photo { min-height: 520px; }
  .commission-front-photo img { min-height: 520px; }
  .tnlbc-hero-grid, .tnlbc-intro-grid { grid-template-columns: 1fr; }
  .tnlbc-hero-seal { min-height: 470px; }
  .tnlbc-portrait-stack { width: min(100%, 760px); margin-inline: auto; }
}
@media (max-width: 720px) {
  .commission-spotlight { padding-top: 62px; }
  .commission-kicker { letter-spacing: .12em; }
  .commission-kicker::before, .commission-kicker::after { width: 22px; }
  .commission-front-grid { grid-template-columns: 1fr; }
  .commission-front-identity { grid-column: auto; grid-row: auto; order: -1; padding: 32px 22px 38px; border-radius: 27px; }
  .commission-front-photo, .commission-front-photo img { min-height: 450px; }
  .commission-front-photo { border-radius: 27px; }
  .commission-front-logo-wrap { width: min(74%, 270px); }
  .commission-front-actions { width: 100%; }
  .commission-front-actions .btn { width: 100%; }
  .tnlbc-hero-grid { text-align: center; }
  .tnlbc-hero-copy .commission-kicker { justify-content: center; }
  .tnlbc-hero-copy .hero-actions { justify-content: center; }
  .tnlbc-hero-seal { min-height: 380px; padding: 28px; border-radius: 30px; }
  .tnlbc-ribbon-inner span { width: 20px; }
  .tnlbc-portrait-stack { min-height: 505px; }
  .tnlbc-portrait-stack figure:first-child { width: 76%; height: 390px; }
  .tnlbc-portrait-stack figure:last-child { width: 64%; height: 330px; }
  .tnlbc-mission-list, .tnlbc-leadership-grid { grid-template-columns: 1fr; }
  .tnlbc-mission-item { grid-template-columns: 54px 1fr; padding: 22px; }
  .tnlbc-mission-item b { width: 54px; height: 54px; border-radius: 16px; }
  .tnlbc-leadership-grid img { height: 455px; }
  .tnlbc-office-card { align-items: flex-start; flex-direction: column; }
}

/* TNLBC homepage correction - RC1.8.4
   Uses the enhanced Commission emblem with only the original supplied photographs. */
.commission-spotlight {
  padding: clamp(58px, 7vw, 92px) 0 clamp(70px, 8vw, 108px);
}
.commission-spotlight-shell {
  width: min(1320px, calc(100% - 44px));
}
.commission-front-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 36px);
  align-items: stretch;
}
.commission-front-identity {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(210px, 285px) minmax(0, 1fr);
  grid-template-rows: auto auto auto auto auto auto;
  align-items: center;
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: 4px;
  min-height: 0;
  padding: clamp(32px, 4.5vw, 58px) clamp(30px, 5vw, 68px);
  text-align: left;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 30%, rgba(255,255,255,.98), rgba(255,250,239,.93) 42%, transparent 43%),
    linear-gradient(135deg, #fffdf8 0%, #fff7e9 58%, #ead09a 100%);
}
.commission-front-identity::before {
  inset: 12px;
  border-radius: 25px;
}
.commission-front-logo-wrap {
  grid-column: 1;
  grid-row: 1 / 7;
  width: 100%;
  max-width: 280px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(132,88,20,.18);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 22px 48px rgba(76,16,40,.14);
}
.commission-front-logo-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: none;
}
.commission-front-halo {
  width: 118%;
  background: radial-gradient(circle, rgba(255,255,255,.96), rgba(221,178,86,.22) 62%, transparent 72%);
}
.commission-front-overline,
.commission-front-name,
.commission-front-identity h2,
.commission-front-subtitle,
.commission-front-summary,
.commission-front-identity blockquote,
.commission-front-actions {
  grid-column: 2;
}
.commission-front-overline {
  font-size: .73rem;
  letter-spacing: .16em;
}
.commission-front-name {
  margin-top: 5px;
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: .9;
}
.commission-front-identity h2 {
  margin: 10px 0 2px;
  color: #4d1028;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  line-height: 1.08;
}
.commission-front-subtitle {
  margin: 4px 0 0;
  font-size: .82rem;
  letter-spacing: .12em;
}
.commission-front-summary {
  max-width: 760px;
  margin: 14px 0 0;
  color: #5f4b53;
  font-size: clamp(.96rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}
.commission-front-identity blockquote {
  margin: 17px 0 18px;
  padding: 10px 0 10px 19px;
  text-align: left;
  border-block: 0;
  border-left: 3px solid #c6953f;
}
.commission-front-identity blockquote span {
  font-size: 1.45rem;
}
.commission-front-actions {
  justify-content: flex-start;
  gap: 12px;
}
.commission-front-actions .btn {
  min-width: 195px;
}
.commission-front-photo {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-radius: 32px;
  background: #fff9ef;
}
.commission-front-photo::after {
  display: none;
}
.commission-photo-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.35;
  background: #e9ddcf;
}
.commission-photo-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -24px 34px rgba(38,5,17,.08);
}
.commission-front-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.commission-front-photo-left img {
  object-position: 50% 36%;
}
.commission-front-photo-right img {
  object-position: 50% 10%;
}
.commission-front-photo figcaption {
  position: static;
  display: grid;
  gap: 5px;
  min-height: 108px;
  padding: 22px 26px 24px;
  background: linear-gradient(135deg, #681833, #3d0a1d);
}
.commission-front-photo figcaption strong {
  color: #fff7e8;
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
}
.commission-front-photo figcaption span {
  color: rgba(255,243,220,.78);
  font-size: .88rem;
}

/* The dedicated Commission page uses the enhanced Commission emblem. */
.tnlbc-hero-seal img {
  border-radius: 50%;
  filter: drop-shadow(0 20px 24px rgba(65,14,33,.18));
}

@media (max-width: 900px) {
  .commission-spotlight-shell {
    width: min(100% - 30px, 780px);
  }
  .commission-front-identity {
    grid-template-columns: 180px minmax(0, 1fr);
    column-gap: 30px;
    padding: 32px;
  }
  .commission-front-name {
    font-size: clamp(3.7rem, 10vw, 5.3rem);
  }
  .commission-front-identity h2 {
    font-size: clamp(1.65rem, 4.8vw, 2.5rem);
  }
}

@media (max-width: 720px) {
  .commission-front-grid {
    grid-template-columns: 1fr;
  }
  .commission-front-identity {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 22px 38px;
    text-align: center;
  }
  .commission-front-logo-wrap {
    width: min(72%, 245px);
    margin-bottom: 16px;
  }
  .commission-front-summary {
    text-align: center;
  }
  .commission-front-identity blockquote {
    padding: 10px 0;
    text-align: center;
    border-left: 0;
    border-block: 1px solid rgba(114,38,59,.15);
  }
  .commission-front-actions {
    justify-content: center;
  }
  .commission-front-photo {
    border-radius: 27px;
  }
  .commission-photo-image-wrap {
    aspect-ratio: 4 / 4.65;
  }
  .commission-front-photo figcaption {
    min-height: 0;
    padding: 20px 22px 22px;
  }
}


/* RC1.8.4: preserve the enhanced TNLBC seal; photographs remain untouched originals. */
.commission-front-logo-wrap {
  padding: 7px;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
}
.commission-front-logo-wrap img {
  border-radius: 22px;
}
.tnlbc-hero-seal img {
  width: min(100%, 520px);
  border-radius: 30px;
}


/* RC1.8.5 - Refined TNLBC typography and editorial presentation.
   Keeps the enhanced emblem and the original supplied photographs unchanged. */
.commission-front-identity {
  background:
    linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.42)),
    radial-gradient(circle at 10% 18%, rgba(255,255,255,1), rgba(255,250,239,.95) 42%, transparent 43%),
    linear-gradient(135deg, #fffdf8 0%, #fff7e9 58%, #e8ca8d 100%);
}
.commission-front-identity::after {
  content: "";
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  top: 30px;
  width: 82px;
  height: 28px;
  opacity: .48;
  background:
    linear-gradient(#b7832c,#b7832c) center/100% 1px no-repeat,
    radial-gradient(circle, #b7832c 0 2px, transparent 3px) left center/16px 16px no-repeat,
    radial-gradient(circle, #b7832c 0 2px, transparent 3px) right center/16px 16px no-repeat;
  pointer-events: none;
}
.commission-front-overline {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(164,113,30,.24);
  border-radius: 999px;
  color: #815814;
  background: rgba(255,255,255,.64);
  box-shadow: 0 8px 20px rgba(88,43,14,.06);
  font-size: .7rem;
  letter-spacing: .15em;
}
.commission-front-overline::before {
  content: "✦";
  color: #b57c20;
  font-size: .76rem;
}
.commission-front-name {
  position: relative;
  width: fit-content;
  margin-top: 15px;
  color: transparent;
  background: linear-gradient(180deg, #8a2749 0%, #571229 60%, #3f0a1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 2px 0 rgba(255,255,255,.8), 0 10px 24px rgba(83,17,40,.14);
}
.commission-front-name::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -12px;
  width: min(170px, 70%);
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #b68128, #e1bd70, transparent);
}
.commission-front-identity h2 {
  margin-top: 26px;
  max-width: 760px;
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  letter-spacing: -.035em;
  text-wrap: balance;
}
.commission-front-subtitle {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #784b07;
  background: linear-gradient(90deg, rgba(231,200,135,.3), rgba(255,255,255,.28));
  font-size: .74rem;
  letter-spacing: .18em;
}
.commission-front-lead {
  grid-column: 2;
  max-width: 800px;
  margin: 22px 0 0;
  color: #6b1a38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.012em;
  text-wrap: balance;
}
.commission-front-summary {
  max-width: 830px;
  margin-top: 13px;
  color: #54444b;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.82;
}
.commission-front-pillars {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 1px;
}
.commission-front-pillars span {
  position: relative;
  padding: 8px 14px 8px 27px;
  border: 1px solid rgba(118,42,66,.13);
  border-radius: 999px;
  color: #64203a;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 18px rgba(75,17,38,.055);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.commission-front-pillars span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c28a2d;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(194,138,45,.12);
}
.commission-front-identity blockquote {
  position: relative;
  max-width: 760px;
  margin: 19px 0 20px;
  padding: 14px 22px 14px 48px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(113,24,57,.075), rgba(255,255,255,.24));
}
.commission-front-identity blockquote::before {
  content: "“";
  position: absolute;
  left: 16px;
  top: -5px;
  color: rgba(130,45,73,.36);
  font-family: Georgia, serif;
  font-size: 3.9rem;
  line-height: 1;
}
.commission-front-identity blockquote span {
  font-size: clamp(1.32rem, 2vw, 1.65rem);
}
.commission-front-identity blockquote cite {
  margin-top: 6px;
  letter-spacing: .14em;
}
.commission-front-actions .btn {
  min-width: 210px;
  padding-block: 13px;
  box-shadow: 0 12px 24px rgba(75,17,38,.1);
}
.commission-front-actions .btn-primary {
  background: linear-gradient(135deg, #7c1f40, #4b0d24);
  border-color: #7c1f40;
}
.commission-front-actions .btn-light {
  border-color: rgba(123,82,20,.28);
  color: #5f1632;
  background: rgba(255,255,255,.84);
}
.commission-front-photo figcaption {
  position: relative;
  padding-top: 26px;
}
.commission-front-photo figcaption::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 15px;
  width: 58px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #d6ad5d, transparent);
}
.commission-front-photo figcaption strong {
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  letter-spacing: -.015em;
}
.commission-front-photo figcaption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .94rem;
  font-style: italic;
}

.tnlbc-hero-copy .commission-kicker {
  padding: 8px 14px;
  border: 1px solid rgba(242,213,141,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}
.tnlbc-hero-copy h1 {
  max-width: 850px;
}
.tnlbc-hero-copy h1 em {
  margin-top: 18px;
  color: #f4d995;
  font-style: italic;
  letter-spacing: -.03em;
}
.tnlbc-hero-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: #fff7e7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.55;
  text-wrap: balance;
}
.tnlbc-hero-summary {
  max-width: 750px;
  margin: 14px 0 0;
  color: rgba(255,246,232,.76);
  font-size: 1.03rem;
  line-height: 1.82;
}
.tnlbc-hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 23px;
}
.tnlbc-hero-pillars span {
  padding: 8px 13px;
  border: 1px solid rgba(245,216,149,.25);
  border-radius: 999px;
  color: #f7dfa4;
  background: rgba(255,255,255,.06);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tnlbc-intro-copy .eyebrow,
.tnlbc-section-heading .eyebrow,
.tnlbc-vision-card .eyebrow,
.tnlbc-office-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(154,104,26,.18);
  border-radius: 999px;
  color: #8a5c14;
  background: rgba(255,255,255,.65);
}
.tnlbc-intro-copy .eyebrow::before,
.tnlbc-section-heading .eyebrow::before,
.tnlbc-vision-card .eyebrow::before,
.tnlbc-office-card .eyebrow::before {
  content: "✦";
  color: #b98025;
}
.tnlbc-intro-copy h2,
.tnlbc-section-heading h2 {
  text-wrap: balance;
}
.tnlbc-mission-item {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tnlbc-mission-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6f1838, #d1a44e, transparent 78%);
  opacity: .72;
}
.tnlbc-mission-item:hover {
  transform: translateY(-4px);
  border-color: rgba(109,24,53,.2);
  box-shadow: 0 22px 48px rgba(78,18,39,.11);
}

@media (max-width: 900px) {
  .commission-front-lead,
  .commission-front-pillars { grid-column: 2; }
  .commission-front-identity::after { display: none; }
}
@media (max-width: 720px) {
  .commission-front-overline,
  .commission-front-subtitle { width: auto; }
  .commission-front-name::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #d0a250, transparent);
  }
  .commission-front-lead,
  .commission-front-pillars { grid-column: auto; }
  .commission-front-lead { text-align: center; }
  .commission-front-pillars { justify-content: center; }
  .commission-front-identity blockquote {
    padding: 17px 18px;
  }
  .commission-front-identity blockquote::before { display: none; }
  .tnlbc-hero-pillars { justify-content: center; }
}
