:root {
  --navy: #0b1f36;
  --navy-2: #102b4f;
  --blue: #173d6d;
  --blue-soft: #eaf0f7;
  --gold: #c8a96b;
  --cream: #f8f5ef;
  --white: #ffffff;
  --ink: #18202a;
  --muted: #68717d;
  --line: rgba(11, 31, 54, 0.12);
  --shadow: 0 24px 60px rgba(7, 23, 40, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 82px;
  display: flex;
  align-items: center;
  transition: .3s ease;
  color: white;
}
.site-header.scrolled {
  background: rgba(8, 25, 44, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 35px rgba(0,0,0,.12);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  color: var(--gold);
  font-size: 31px;
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong,
.footer-brand strong { font-family: "Cormorant Garamond", serif; font-size: 18px; letter-spacing: .08em; }
.brand-text small,
.footer-brand small { font-size: 9px; letter-spacing: .25em; opacity: .72; margin-top: 5px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
}
.main-nav a { position: relative; opacity: .88; transition: .2s; }
.main-nav a:hover { opacity: 1; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: .25s;
}
.main-nav a:hover::after { right: 0; }
.language-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent; color: white; cursor: pointer;
  font-size: 12px; font-weight: 700;
}
.menu-toggle { display: none; background: none; border: 0; padding: 6px; }
.menu-toggle span { display:block; width:26px; height:2px; background:#fff; margin:5px 0; transition:.25s; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(5,18,32,.94), rgba(10,38,70,.78)),
    radial-gradient(circle at 75% 30%, rgba(200,169,107,.18), transparent 35%),
    linear-gradient(135deg, #0a1d32, #173d6d 58%, #102a4b);
}
.hero::before {
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-overlay { position:absolute; inset:0; background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.24)); }
.hero-glow { position:absolute; border-radius:50%; filter: blur(12px); opacity:.22; }
.glow-one { width:420px; height:420px; background:var(--gold); right:-140px; top:18%; }
.glow-two { width:330px; height:330px; background:#6fa8dc; left:-180px; bottom:0; }
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 700;
  color: #d7c291;
  margin: 0 0 20px;
}
.eyebrow.dark { color: #8c7042; }
.hero h1, .section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: .98;
  margin: 0;
}
.hero h1 { font-size: clamp(54px, 8vw, 108px); max-width: 940px; letter-spacing: -.035em; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: #ddc799; font-style: italic; font-weight: 500; }
.hero-copy { max-width: 700px; font-size: 17px; color: rgba(255,255,255,.78); margin: 28px 0 30px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 50px; padding: 0 24px;
  border-radius: 4px;
  font-weight: 700; font-size: 13px; letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #101820; box-shadow: 0 10px 30px rgba(200,169,107,.18); }
.btn-outline { border-color: rgba(255,255,255,.4); color:white; background:rgba(255,255,255,.04); }
.btn-light { background:white; color:var(--navy); }
.hero-meta { display:flex; gap:30px; margin-top:50px; font-size:12px; color:rgba(255,255,255,.67); }
.hero-meta > div { display:flex; gap:8px; align-items:center; }
.meta-icon { color:var(--gold); }
.scroll-cue {
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,.7); font-size:24px; animation:bob 1.8s infinite;
}
@keyframes bob { 50% { transform:translate(-50%, 7px); } }

.section { padding: 112px 0; }
.section-light { background: var(--cream); }
.section-blue {
  background:
    radial-gradient(circle at 15% 15%, rgba(200,169,107,.12), transparent 25%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
}
.section h2 { font-size: clamp(42px, 5vw, 70px); letter-spacing:-.02em; }
.two-column { display:grid; grid-template-columns: 1fr 1fr; gap:90px; align-items:start; }
.copy-block { padding-top: 24px; color:var(--muted); font-size:16px; }
.copy-block p:first-child { margin-top:0; }
.text-link { display:inline-block; color:var(--blue); font-weight:700; margin-top:12px; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:72px; }
.value-card {
  background:#fff;
  border:1px solid rgba(11,31,54,.08);
  padding:34px;
  min-height:250px;
  box-shadow:0 15px 45px rgba(20,37,56,.06);
}
.value-card > span { color:var(--gold); font-size:12px; font-weight:700; }
.value-card h3 { font-family:"Cormorant Garamond",serif; font-size:34px; margin:28px 0 8px; }
.value-card p { color:var(--muted); margin:0; font-size:14px; }

.section-heading { margin-bottom:48px; }
.section-heading.centered { text-align:center; max-width:760px; }
.section-heading.centered p:last-child { color:rgba(255,255,255,.66); }
.section-light .section-heading.centered p:last-child { color:var(--muted); }
.split-heading { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:end; }
.split-heading > p { margin:0; color:var(--muted); padding-bottom:8px; }

.schedule-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.schedule-card {
  padding:34px;
  min-height:290px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.04);
}
.schedule-card.featured {
  background:linear-gradient(145deg, rgba(200,169,107,.22), rgba(255,255,255,.07));
  border-color:rgba(200,169,107,.42);
}
.schedule-card .day { color:#dac695; text-transform:uppercase; letter-spacing:.17em; font-size:10px; font-weight:700; }
.schedule-card h3 { font-family:"Cormorant Garamond",serif; font-size:32px; line-height:1.05; margin:34px 0 18px; }
.schedule-card .time { font-size:28px; font-weight:700; color:#fff; margin:0 0 6px; }
.schedule-card p:last-child { margin:0; color:rgba(255,255,255,.6); font-size:13px; }
.schedule-note { color:rgba(255,255,255,.48); font-size:12px; margin-top:18px; }

.events-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.event-card { background:white; border:1px solid var(--line); box-shadow:0 14px 44px rgba(13,30,47,.06); }
.event-date { display:flex; align-items:baseline; gap:8px; padding:26px 28px 0; color:var(--blue); }
.event-date strong { font-family:"Cormorant Garamond",serif; font-size:54px; line-height:1; }
.event-date span { font-size:11px; font-weight:700; letter-spacing:.2em; }
.event-body { padding:20px 28px 30px; }
.tag { font-size:10px; letter-spacing:.13em; text-transform:uppercase; color:#8d7344; font-weight:700; }
.event-body h3 { font-family:"Cormorant Garamond",serif; font-size:29px; margin:8px 0 10px; line-height:1.1; }
.event-body p { color:var(--muted); font-size:13px; margin:0; }

.gallery-section {
  background:
    linear-gradient(rgba(8,27,48,.92), rgba(8,27,48,.92)),
    linear-gradient(135deg, #102a47, #1a456f);
  color:white;
}
.gallery-grid {
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-auto-rows: 240px;
  gap:14px;
}
.gallery-item { margin:0; position:relative; overflow:hidden; }
.gallery-large { grid-row:span 2; }
.photo-placeholder {
  height:100%;
  display:grid; place-items:center;
  background:
    linear-gradient(135deg, rgba(200,169,107,.16), rgba(111,168,220,.08)),
    linear-gradient(135deg, #183a59, #0d2439);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .4s;
}
.alt-one { background:linear-gradient(135deg,#31485f,#1d2a36); }
.alt-two { background:linear-gradient(135deg,#143d56,#2e5269); }
.alt-three { background:linear-gradient(135deg,#403b31,#1e2933); }
.alt-four { background:linear-gradient(135deg,#1f3853,#101f31); }
.gallery-item:hover .photo-placeholder { transform:scale(1.03); }
.photo-placeholder span { font-size:11px; letter-spacing:.22em; opacity:.32; }
.gallery-item figcaption {
  position:absolute; left:18px; bottom:14px; z-index:2;
  background:rgba(6,20,34,.72); backdrop-filter:blur(6px);
  padding:7px 10px; font-size:11px;
}

.live-section { background:#d9c6a1; }
.live-card {
  background:var(--navy);
  color:white;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:55px;
  padding:48px;
  box-shadow:var(--shadow);
}
.live-card h2 { font-size:60px; }
.live-card > div:first-child p:nth-of-type(2) { color:rgba(255,255,255,.66); }
.live-preview {
  min-height:360px; position:relative;
  display:grid; place-items:center; text-align:center;
  background:
    radial-gradient(circle at center, rgba(200,169,107,.15), transparent 35%),
    linear-gradient(135deg,#18395c,#0a1f34);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.live-preview::before {
  content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:42px 42px;
}
.live-badge {
  position:absolute; left:16px; top:16px; z-index:2;
  background:#cc3333; padding:6px 9px; font-size:10px; font-weight:800; border-radius:3px;
}
.play-button {
  position:relative; z-index:2;
  width:76px; height:76px; border-radius:50%;
  border:1px solid rgba(255,255,255,.5);
  background:rgba(255,255,255,.1); color:white; font-size:25px; cursor:pointer;
}
.live-preview > span { position:absolute; bottom:22px; font-size:11px; color:rgba(255,255,255,.55); }

.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; }
.contact-copy > p { color:var(--muted); }
.contact-list { margin-top:36px; display:grid; gap:20px; }
.contact-list > div { display:flex; gap:14px; align-items:flex-start; }
.contact-list > div > span { color:var(--gold); font-size:20px; width:28px; }
.contact-list strong { font-size:12px; text-transform:uppercase; letter-spacing:.12em; }
.contact-list p { margin:2px 0 0; color:var(--muted); font-size:13px; }
.contact-form { background:white; padding:34px; border:1px solid var(--line); box-shadow:0 18px 54px rgba(17,36,57,.07); }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-form label { display:block; margin-bottom:16px; }
.contact-form label > span { display:block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.11em; margin-bottom:8px; }
.contact-form input, .contact-form textarea {
  width:100%; border:1px solid rgba(11,31,54,.16); background:#fbfbfa;
  padding:13px 14px; outline:none; transition:border .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color:#9c7e48; box-shadow:0 0 0 3px rgba(200,169,107,.12);
}
.form-status { font-size:12px; color:var(--blue); margin:12px 0 0; }

.site-footer { background:#07192b; color:white; padding:42px 0 20px; }
.footer-grid { display:grid; grid-template-columns:1fr auto 1fr; gap:25px; align-items:center; }
.footer-brand { display:flex; align-items:center; gap:10px; }
.footer-brand > div { display:flex; flex-direction:column; line-height:1.05; }
.footer-grid > p { color:rgba(255,255,255,.55); font-size:11px; letter-spacing:.08em; }
.socials { justify-self:end; display:flex; gap:8px; }
.socials a {
  width:34px; height:34px; display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.18); border-radius:50%; font-size:12px;
}
.footer-bottom {
  display:flex; justify-content:space-between; gap:20px; margin-top:28px; padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08); color:rgba(255,255,255,.42); font-size:10px;
}

@media (max-width: 980px) {
  .menu-toggle { display:block; position:relative; z-index:1002; }
  .main-nav {
    position:fixed; inset:0; padding:110px 36px 40px;
    flex-direction:column; align-items:flex-start; gap:23px;
    background:#07192b; transform:translateX(100%); transition:.3s ease; font-size:18px;
  }
  .main-nav.open { transform:translateX(0); }
  .language-toggle { margin-top:8px; }
  .two-column, .split-heading, .contact-grid, .live-card { grid-template-columns:1fr; gap:38px; }
  .values-grid, .schedule-grid, .events-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .gallery-large { grid-column:span 2; grid-row:span 1; }
  .live-card { padding:34px; }
}

@media (max-width: 680px) {
  .container { width:min(100% - 28px, 1160px); }
  .site-header { height:72px; }
  .brand-text strong { font-size:15px; }
  .brand-text small { font-size:7px; }
  .hero { min-height: 92vh; }
  .hero-content { padding-top:95px; }
  .hero h1 { font-size:54px; }
  .hero-copy { font-size:15px; }
  .hero-meta { flex-direction:column; gap:9px; margin-top:34px; }
  .section { padding:82px 0; }
  .section h2 { font-size:44px; }
  .values-grid, .schedule-grid, .events-grid, .gallery-grid, .field-row { grid-template-columns:1fr; }
  .gallery-large { grid-column:auto; }
  .gallery-grid { grid-auto-rows:230px; }
  .live-card { padding:24px; }
  .live-card h2 { font-size:46px; }
  .live-preview { min-height:260px; }
  .contact-form { padding:24px; }
  .footer-grid { grid-template-columns:1fr; text-align:center; }
  .footer-brand { justify-content:center; }
  .socials { justify-self:center; }
  .footer-bottom { flex-direction:column; align-items:center; text-align:center; }
}


/* ===== LLDM UNIONDALE — CURRENT CUSTOMIZATION ===== */
.site-header {
  background: rgba(255,255,255,.97);
  color: var(--navy);
  box-shadow: 0 4px 28px rgba(7,25,43,.08);
  height: 88px;
}
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  color: var(--navy);
}
.brand-image-link {
  display:flex;
  align-items:center;
  min-width:250px;
}
.brand-logo {
  display:block;
  width:300px;
  max-width:min(40vw,300px);
  height:62px;
  object-fit:contain;
  object-position:left center;
}
.main-nav,
.main-nav a {
  color:var(--navy);
}
.main-nav a::after { background:#9d874e; }
.language-toggle {
  color:var(--navy);
  border-color:rgba(11,31,54,.25);
}
.menu-toggle span { background:var(--navy); }

.hero {
  min-height:100vh;
  background-image:
    linear-gradient(90deg, rgba(5,18,32,.91) 0%, rgba(5,18,32,.72) 43%, rgba(5,18,32,.28) 72%, rgba(5,18,32,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.18)),
    url("images/church-aerial.jpg");
  background-size:cover;
  background-position:center center;
}
.hero-content { padding-top:160px; }
.hero h1 {
  max-width:820px;
  text-shadow:0 5px 28px rgba(0,0,0,.30);
}
.hero-copy {
  max-width:660px;
  text-shadow:0 3px 16px rgba(0,0,0,.28);
}
.btn-map {
  margin-top:18px;
  background:var(--navy);
  color:white;
}
.footer-logo {
  display:block;
  width:290px;
  max-width:100%;
  background:white;
  padding:8px 12px;
  border-radius:4px;
}

/* Official weekly schedule */
.official-schedule {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr;
  gap: 20px;
}
.schedule-group {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  padding: 0;
  overflow: hidden;
}
.schedule-group-featured {
  border-color: rgba(200,169,107,.34);
  background: rgba(200,169,107,.07);
}
.schedule-group-sunday {
  background: linear-gradient(145deg, rgba(200,169,107,.20), rgba(255,255,255,.055));
  border-color: rgba(200,169,107,.45);
}
.schedule-group-heading {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.08);
}
.schedule-days {
  display: block;
  color: #dec996;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.schedule-times { display: grid; }
.schedule-time-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.schedule-time-row:last-child { border-bottom: 0; }
.schedule-icon {
  color: var(--gold);
  font-size: 17px;
  flex: 0 0 auto;
}
.schedule-time-row strong {
  display: block;
  color: white;
  font-size: 17px;
  margin-bottom: 2px;
}
.schedule-time-row small {
  display: block;
  color: rgba(255,255,255,.52);
  font-size: 11px;
}
.schedule-location {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 9px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
.schedule-location span:first-child { color: var(--gold); }

/* Contact social links */
.contact-social { margin-top: 32px; }
.contact-social > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(11,31,54,.14);
  background: white;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  transition: .2s ease;
}
.contact-social-links a:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-1px);
}

/* Real Uniondale gallery */
.gallery-grid-real {
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 260px;
}
.gallery-grid-real .gallery-item {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.gallery-grid-real .gallery-large {
  grid-row: span 2;
}
.gallery-grid-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gallery-grid-real .gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-grid-real .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,16,28,.72), rgba(5,16,28,.08) 45%, rgba(5,16,28,0) 72%);
  pointer-events: none;
}
.gallery-grid-real figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  background: rgba(6,20,34,.72);
  backdrop-filter: blur(6px);
  padding: 9px 12px;
  font-size: 11px;
  line-height: 1.35;
  border-radius: 2px;
}

/* About Us refinements */
.about-official p {
  margin-bottom: 18px;
}
.about-official p:last-of-type {
  margin-bottom: 0;
}

@media (max-width:980px) {
  .main-nav,
  .main-nav a { color:white; }
  .language-toggle {
    color:white;
    border-color:rgba(255,255,255,.30);
  }
  .official-schedule {
    grid-template-columns: 1fr 1fr;
  }
  .schedule-group:first-child {
    grid-column: span 2;
  }
  .gallery-grid-real {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid-real .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width:680px) {
  .site-header { height:76px; }
  .brand-image-link { min-width:0; }
  .brand-logo {
    width:230px;
    max-width:70vw;
    height:50px;
  }
  .hero {
    min-height:92vh;
    background-position:52% center;
  }
  .hero-content { padding-top:130px; }
  .hero h1 { font-size:52px; }
  .footer-logo { width:255px; }

  .official-schedule {
    grid-template-columns: 1fr;
  }
  .schedule-group:first-child {
    grid-column: auto;
  }
  .schedule-days {
    font-size: 10px;
  }
  .schedule-time-row {
    min-height: 78px;
    padding: 16px 18px;
  }
  .gallery-grid-real {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-grid-real .gallery-large {
    grid-column: auto;
  }
}


/* ===== Version 10: Who We Are title ===== */
.about-scripture-title span,
.about-scripture-title strong {
  display: block;
}
.about-scripture-title strong {
  color: #9d874e;
  font-weight: 600;
  font-style: italic;
}


/* ===== Version 15: Visit Us + Map ===== */
.visit-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(200,169,107,.10), transparent 24%),
    var(--cream);
}
.visit-header {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}
.visit-header > p {
  margin: 0 0 8px;
  color: var(--muted);
  max-width: 520px;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 24px;
  align-items: stretch;
}
.visit-map-card {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(11,31,54,.10);
  background: white;
  box-shadow: 0 20px 55px rgba(13,30,47,.08);
}
.visit-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}
.visit-details-card {
  background: var(--navy);
  color: white;
  padding: 40px 34px;
  box-shadow: 0 20px 55px rgba(13,30,47,.12);
}
.visit-detail {
  display: flex;
  gap: 15px;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.visit-detail-icon {
  color: var(--gold);
  font-size: 21px;
  width: 28px;
}
.visit-detail small {
  display: block;
  color: #d8c38f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 6px;
}
.visit-detail strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.1;
}
.visit-detail p {
  color: rgba(255,255,255,.60);
  margin: 4px 0 0;
  font-size: 13px;
}
.visit-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-contact-email {
  color: white;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
}
.visit-social-wrap {
  margin-top: 30px;
}
.visit-social-wrap > span {
  display: block;
  color: rgba(255,255,255,.50);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 11px;
}
.visit-social-wrap .contact-social-links a {
  color: white;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}
.visit-social-wrap .contact-social-links a:hover {
  background: white;
  color: var(--navy);
}
.contact-form-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid rgba(11,31,54,.10);
}
.contact-form-intro h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--navy);
}
.contact-form-intro > p:last-child {
  color: var(--muted);
}

@media (max-width: 900px) {
  .visit-header,
  .visit-grid,
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }
  .visit-header {
    gap: 20px;
  }
}
@media (max-width: 620px) {
  .visit-map-card,
  .visit-map {
    min-height: 390px;
  }
  .visit-details-card {
    padding: 30px 24px;
  }
  .visit-detail strong {
    font-size: 23px;
  }
  .contact-form-wrap {
    gap: 30px;
    margin-top: 50px;
    padding-top: 45px;
  }
}


/* ===== Version 16: Homepage Hero Update ===== */
.hero-main-title span {
  display: block;
}
.hero-main-title em {
  display: block;
  margin-top: 6px;
}


/* ===== Version 18: Religious / Moral / Civic values ===== */
.value-card {
  min-height: 330px;
}
.value-card p {
  line-height: 1.75;
}
@media (max-width: 680px) {
  .value-card {
    min-height: auto;
  }
}


/* ===== Version 20: Publishing Readiness ===== */

/* Clear keyboard focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200,169,107,.85);
  outline-offset: 3px;
}

/* Improve form button semantics visually */
.contact-form button[type="submit"] {
  min-width: 160px;
}

/* Respect visitors who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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