    /* ── VARIABLES ───────────────────────────────────────────── */
    :root {
      /* — Core palette — */
      --gold:        #C9993A;
      --gold-light:  #E8C87A;
      --gold-dim:    #8A6820;
      --gold-subtle: rgba(201,153,58,0.12);

      --ink:         #0F0D0B;
      --ink-soft:    #2E2520;
      --charcoal:    #1A1714;     /* replaces --walnut for dark sections */
      --stone:       #7A6E62;
      --parch:       #FAF7F2;     /* light section bg */
      --parch-dark:  #F0EAE0;     /* alternate light bg */
      --red-orth:    #8B1A1A;
      --white:       #FFFFFF;

      /* — Typography — */
      --serif-display: 'Cormorant Garamond', Georgia, serif;
      --sans:          'Inter', system-ui, sans-serif;
      --serif-body:    'Crimson Pro', Georgia, serif;

      /* — Spacing & layout — */
      --max-w:  1280px;
      --nav-h:  72px;
      --section-pad: clamp(5rem, 10vw, 9rem);

      /* — Transitions — */
      --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ── RESET ───────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 18px; }
    body {
      background: var(--parch);
      color: var(--ink);
      font-family: var(--serif-body);
      font-weight: 300;
      line-height: 1.75;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── LANGUAGE TOGGLE LOGIC ───────────────────────────────── */
    body.lang-en .ro { display: none !important; }
    body.lang-ro .en { display: none !important; }


    /* ── NAVIGATION ──────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.4s var(--ease-out), border-color 0.4s;
    }
    nav.scrolled {
      background: rgba(26, 23, 20, 0.96);
      backdrop-filter: blur(16px);
      border-color: rgba(201,153,58,0.2);
    }
    .nav-brand {
      display: flex; flex-direction: row; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo {
      width: 36px;
      height: auto;
      flex-shrink: 0;
      opacity: 0.9;
      filter: drop-shadow(0 1px 6px rgba(201,153,58,0.3));
    }
    .brand-text {
      display: flex; flex-direction: column; gap: 2px;
    }
    .nav-brand .brand-main {
      font-family: var(--serif-display);
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.03em;
      line-height: 1;
    }
    .nav-brand .brand-sub {
      font-family: var(--sans);
      font-size: 0.6rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex; align-items: center; gap: 2.2rem;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .lang-btn {
      background: none;
      border: 1px solid rgba(201,153,58,0.5);
      color: var(--gold-light);
      font-family: var(--sans);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      padding: 6px 16px;
      border-radius: 3px;
      transition: all 0.2s;
    }
    .lang-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--charcoal);
    }
    .nav-toggle {
      display: none;
      background: none; border: none;
      cursor: pointer;
      color: #fff;
      font-size: 1.6rem;
      line-height: 1;
    }

    /* ── HERO ────────────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100svh; min-height: 640px;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .hero-slideshow {
      position: absolute; inset: 0;
      overflow: hidden;
    }
    @keyframes kenBurns {
      from { transform: scale(1.0); }
      to   { transform: scale(1.13); }
    }
    .hero-slide {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.0);
      transition: opacity 1.8s var(--ease-out);
      will-change: opacity, transform;
    }
    .hero-slide.active {
      opacity: 1;
      animation: kenBurns 9s ease-out forwards;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        160deg,
        rgba(10, 8, 6, 0.82) 0%,
        rgba(10, 8, 6, 0.58) 45%,
        rgba(10, 8, 6, 0.76) 100%
      );
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 clamp(1.5rem, 6vw, 6rem);
      max-width: var(--max-w);
      width: 100%;
      margin: 0 auto;
      animation: fadeUp 1.4s var(--ease-out) both;
    }
    .hero-eyebrow {
      font-family: var(--sans);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
      display: block;
    }
    .hero-title {
      font-family: var(--serif-display);
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: 300;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 1.2rem;
      text-shadow: 0 2px 24px rgba(0,0,0,0.55);
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-subtitle {
      font-family: var(--serif-display);
      font-size: clamp(1rem, 2vw, 1.35rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.82);
      margin-bottom: 3rem;
      text-shadow: 0 1px 12px rgba(0,0,0,0.5);
    }
    .hero-actions {
      display: flex; align-items: center; gap: 1.2rem;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--gold);
      color: var(--charcoal);
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 3px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }
    .btn-ghost {
      display: inline-flex; align-items: center;
      border: 1px solid rgba(255,255,255,0.35);
      color: rgba(255,255,255,0.85);
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 3px;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold-light);
    }
    .hero-scroll {
      position: absolute; bottom: 2.5rem; right: clamp(1.5rem, 4vw, 4rem);
      z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .hero-scroll span {
      font-family: var(--sans);
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      writing-mode: vertical-rl;
    }
    .hero-scroll-line {
      width: 1px; height: 55px;
      background: linear-gradient(to bottom, rgba(201,153,58,0.8), transparent);
      animation: scrollLine 2.2s ease-in-out infinite;
    }

    /* ── STATS BAR ───────────────────────────────────────────── */
    .stats-bar {
      background: var(--charcoal);
      border-bottom: 1px solid rgba(201,153,58,0.15);
    }
    .stats-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .stat-item {
      padding: 2.5rem 2rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.06);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    }
    .stat-item:last-child { border-right: none; }
    .stat-icon {
      font-size: 1.6rem;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .stat-value {
      font-family: var(--serif-display);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--gold-light);
      line-height: 1;
    }
    .stat-label {
      font-family: var(--sans);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    /* ── SECTION COMMONS ─────────────────────────────────────── */
    section { padding: var(--section-pad) 2rem; }
    .section-inner { max-width: var(--max-w); margin: 0 auto; }
    .section-tag {
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
      display: flex; align-items: center; gap: 0.6rem;
      margin-bottom: 1.4rem;
    }
    .section-tag i { font-size: 1rem; color: var(--gold); }
    .section-title {
      font-family: var(--serif-display);
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 2rem;
    }
    .section-title em { font-style: italic; color: var(--red-orth); }

    /* ── HISTORY ─────────────────────────────────────────────── */
    #history { background: var(--parch); }
    .history-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center;
    }
    .history-text p {
      font-size: 1.05rem;
      color: var(--ink-soft);
      margin-bottom: 1.2rem;
      line-height: 1.8;
    }
    .pull-quote {
      font-family: var(--serif-display);
      font-size: clamp(1.15rem, 2vw, 1.4rem);
      font-style: italic;
      color: var(--red-orth);
      font-weight: 300;
      border-left: 3px solid var(--gold);
      padding-left: 1.4rem;
      margin: 2.5rem 0;
      line-height: 1.5;
    }
    .history-img {
      position: relative;
    }
    .history-img img {
      width: 100%; height: 540px;
      object-fit: cover;
      border-radius: 4px;
      display: block;
    }
    .history-img::before {
      content: '';
      position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
      border: 1px solid rgba(201,153,58,0.35);
      border-radius: 4px;
      pointer-events: none;
      z-index: 0;
    }
    .history-img img { position: relative; z-index: 1; }
    .img-caption {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
      background: linear-gradient(transparent, rgba(15,13,11,0.82));
      padding: 2.5rem 1.2rem 1rem;
      font-family: var(--sans);
      font-size: 0.68rem;
      font-style: normal;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.75);
      border-radius: 0 0 4px 4px;
    }

    /* ── CHURCH ──────────────────────────────────────────────── */
    #biserica {
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }
    #biserica .section-title { color: var(--parch); }
    #biserica .section-tag { color: rgba(201,153,58,0.7); }
    #biserica .section-tag i { color: var(--gold-light); }
    #biserica .church-text p { color: rgba(250,247,242,0.72); font-size: 1rem; line-height: 1.8; }

    .church-feature {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 4px;
      margin: 3rem 0;
      height: 560px;
      border-radius: 6px;
      overflow: hidden;
    }
    .church-feature-img,
    .church-aside-img {
      overflow: hidden;
    }
    .church-feature-img img,
    .church-aside-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s var(--ease-out);
    }
    .church-feature-img:hover img,
    .church-aside-img:hover img { transform: scale(1.04); }
    .church-feature-aside {
      display: grid;
      grid-template-rows: 1fr auto;
      gap: 4px;
    }
    .church-aside-info {
      background: rgba(201,153,58,0.12);
      padding: 1.2rem;
      display: flex; align-items: center;
    }
    .aside-label {
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .church-text {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
    }
    .patron-name {
      font-family: var(--serif-display);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--gold-light);
      display: block;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    /* ── BISHOP ──────────────────────────────────────────────── */
    #bishop { background: var(--parch-dark); }

    .bishop-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: start;
    }
    .bishop-portrait {
      position: sticky;
      top: calc(var(--nav-h) + 2rem);
    }
    .bishop-img-wrap {
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }
    .bishop-img-wrap::before {
      content: '';
      position: absolute; top: -12px; left: -12px;
      right: 12px; bottom: 12px;
      border: 1px solid rgba(201,153,58,0.4);
      border-radius: 4px;
      z-index: 0;
    }
    .bishop-img-wrap img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top center;
      display: block;
      position: relative; z-index: 1;
    }
    .bishop-img-label {
      margin-top: 1.5rem;
      text-align: center;
    }
    .label-name {
      font-family: var(--serif-display);
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.3rem;
    }
    .label-title {
      font-family: var(--sans);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
    }
    .bishop-content p {
      font-size: 1.05rem;
      color: var(--ink-soft);
      margin-bottom: 1.2rem;
      line-height: 1.8;
    }
    .bishop-milestones {
      margin-top: 2.5rem;
      display: flex; flex-direction: column; gap: 1rem;
      border-top: 1px solid rgba(201,153,58,0.25);
      padding-top: 2rem;
    }
    .milestone {
      display: flex; align-items: flex-start; gap: 0.9rem;
      font-family: var(--serif-body);
      font-size: 0.95rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }
    .milestone i {
      font-size: 1.2rem;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ── GALLERY ─────────────────────────────────────────────── */
    #grounds { background: var(--parch); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 280px;
      gap: 8px;
      margin-top: 3rem;
      border-radius: 6px;
      overflow: hidden;
    }
    .gallery-item {
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--stone);
    }
    .gallery-item.gi-wide { grid-column: span 2; }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s var(--ease-out), filter 0.4s;
      filter: saturate(0.88);
    }
    .gallery-item:hover img {
      transform: scale(1.06);
      filter: saturate(1.1);
    }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(15,13,11,0);
      transition: background 0.4s;
      display: flex; align-items: flex-end;
      padding: 1.2rem;
    }
    .gallery-item:hover .gallery-overlay { background: rgba(15,13,11,0.38); }
    .gallery-overlay span {
      font-family: var(--sans);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0);
      transition: color 0.4s;
    }
    .gallery-item:hover .gallery-overlay span { color: rgba(255,255,255,0.92); }

    /* ── ACCESS ──────────────────────────────────────────────── */
    #acces { background: var(--charcoal); }
    #acces .section-title { color: var(--parch); }
    #acces .section-tag { color: rgba(201,153,58,0.7); }
    #acces .section-tag i { color: var(--gold-light); }
    #acces .section-title em { color: var(--gold); }

    .access-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .access-logo {
      width: 110px;
      height: auto;
      flex-shrink: 0;
      display: block;
      opacity: 0.85;
      filter: drop-shadow(0 2px 12px rgba(201,153,58,0.25));
      transition: opacity 0.3s ease;
    }
    .access-logo:hover {
      opacity: 1;
    }

    .access-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }
    .route-card {
      display: flex;
      gap: 1.8rem;
      padding: 2.5rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,153,58,0.15);
      border-radius: 4px;
      transition: border-color 0.3s;
    }
    .route-card:hover { border-color: rgba(201,153,58,0.35); }
    .route-number {
      font-family: var(--serif-display);
      font-size: 4.5rem;
      font-weight: 700;
      color: rgba(201,153,58,0.12);
      line-height: 1;
      flex-shrink: 0;
      margin-top: -0.5rem;
    }
    .route-badge {
      display: inline-block;
      background: rgba(201,153,58,0.15);
      color: var(--gold);
      font-family: var(--sans);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
      margin-bottom: 0.8rem;
    }
    .route-body h3 {
      font-family: var(--serif-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--gold-light);
      margin-bottom: 0.8rem;
    }
    .route-body p {
      font-size: 0.95rem;
      color: rgba(250,247,242,0.65);
      line-height: 1.75;
    }
    .map-cta {
      display: flex; align-items: center; justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .btn-waze {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.35);
      color: rgba(255,255,255,0.85);
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 3px;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, transform 0.2s;
    }
    .btn-waze:hover {
      border-color: var(--gold);
      color: var(--gold-light);
      transform: translateY(-1px);
    }

    /* ── CONTACT ─────────────────────────────────────────────── */
    #contact { background: var(--parch); }

    .contact-header { margin-bottom: 4rem; }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 5rem;
    }
    .contact-block {
      padding: 2.5rem;
      background: var(--white);
      border-radius: 4px;
      border: 1px solid rgba(201,153,58,0.15);
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .contact-block:hover {
      border-color: rgba(201,153,58,0.4);
      box-shadow: 0 4px 24px rgba(201,153,58,0.08);
    }
    .contact-icon {
      font-size: 1.8rem;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .contact-block h3 {
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0.8rem;
    }
    .contact-block address,
    .contact-block p {
      font-style: normal;
      font-size: 1rem;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    .contact-fb {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
      font-family: var(--sans);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #C9993A;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .contact-fb:hover { opacity: 0.75; }
    .contact-fb i { font-size: 1.1rem; }

    /* ── FOOTER ──────────────────────────────────────────────── */
    .site-footer {
      border-top: 1px solid rgba(201,153,58,0.2);
      padding-top: 2.5rem;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 2rem;
      text-align: center;
    }
    .footer-brand {
      font-family: var(--serif-display);
      font-size: 1.2rem;
      font-weight: 300;
      font-style: italic;
      color: var(--ink-soft);
      text-align: left;
    }
    .footer-meta {
      font-family: var(--sans);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-dim);
    }
    .footer-copy {
      font-family: var(--sans);
      font-size: 0.62rem;
      color: var(--stone);
      text-align: right;
      letter-spacing: 0.05em;
    }
    .footer-credit {
      width: fit-content;
      margin: 1.5rem auto 0;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(201,153,58,0.15);
      text-align: center;
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--stone);
      letter-spacing: 0.06em;
    }
    .footer-heart {
      color: #e05555;
      font-size: 1rem;
      vertical-align: middle;
      position: relative; top: -1px;
    }
    .footer-credit a {
      color: var(--gold);
      font-weight: 600;
      transition: color 0.2s;
    }
    .footer-credit a:hover { color: var(--gold-light); }

    /* ── LIGHTBOX ────────────────────────────────────────────── */
    .lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(10,5,2,0.96);
      align-items: center; justify-content: center;
    }
    .lightbox.active { display: flex; }
    .lightbox img {
      max-height: 90vh; max-width: 90vw;
      object-fit: contain;
      border-radius: 2px;
      animation: fadeUp 0.3s var(--ease-out) both;
    }
    .lightbox-close {
      position: absolute; top: 1.5rem; right: 2rem;
      background: none; border: none; cursor: pointer;
      color: rgba(250,247,242,0.5);
      font-size: 1.6rem;
      transition: color 0.2s;
      display: flex; align-items: center;
    }
    .lightbox-close:hover { color: var(--gold-light); }

    /* ── ANIMATIONS ──────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollLine {
      0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
      50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
    }
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── PARTICLES ───────────────────────────────────────────── */
    #biserica, #acces { position: relative; }
    .particles-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }
    #biserica .section-inner,
    #acces .section-inner { position: relative; z-index: 1; }

    /* ── ORNAMENTAL DIVIDERS ─────────────────────────────────── */
    .ornament-divider {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0.2rem 2rem;
      overflow: hidden;
      background: transparent;
    }
    .ornament-svg {
      width: 100%;
      max-width: 440px;
      height: auto;
      opacity: 0.7;
    }

    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .bishop-grid { grid-template-columns: 300px 1fr; }
    }

    @media (max-width: 900px) {
      .history-grid { grid-template-columns: 1fr; gap: 3rem; }
      .history-img { order: -1; }
      .history-img img { height: 360px; }
      .bishop-grid { grid-template-columns: 1fr; }
      .bishop-portrait { position: static; }
      .bishop-img-wrap img { aspect-ratio: 4/3; }
      .church-feature { grid-template-columns: 1fr; height: auto; }
      .church-feature-img { height: 360px; }
      .church-feature-aside { grid-template-rows: 260px auto; }
      .church-text { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item.gi-wide { grid-column: span 2; }
      .access-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .site-footer { grid-template-columns: 1fr; text-align: center; }
      .footer-brand, .footer-copy { text-align: center; }
    }

    @media (max-width: 640px) {
      :root { --nav-h: 60px; }
      .nav-links {
        display: none; flex-direction: column; gap: 0;
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: var(--charcoal);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(201,153,58,0.15);
      }
      .nav-links.open { display: flex; }
      .nav-links li { padding: 0.9rem 2rem; }
      .nav-toggle { display: flex; }
      .hero-scroll { display: none; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .stats-inner { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item.gi-wide { grid-column: span 1; }
      .gallery-item { height: 230px; }
      .route-card { flex-direction: column; gap: 0.5rem; }
      .route-number { font-size: 2.5rem; }
    }
