  :root {
    --ivory: #fbf7ee;
    --ivory-2: #f5efe0;
    --ivory-3: #ede5d0;
    --vellum: #f8f2e3;
    --ink: #2d2a24;
    --ink-2: #4a443a;
    --ink-soft: #6b6356;
    --muted: #8c8475;
    --gold: #9a7d3e;
    --gold-deep: #7a5f24;
    --gold-bright: #b69457;
    --aubergine: #3a2840;
    --aubergine-2: #533a5b;
    --aubergine-light: #6b4a73;
    --line: #ddd1b5;
    --line-soft: #e8dcc0;
    --rule: rgba(154, 125, 62, 0.35);
    --shadow-sm: 0 1px 2px rgba(45, 42, 36, 0.08);
    --shadow-md: 0 6px 18px rgba(58, 40, 64, 0.10), 0 1px 3px rgba(45,42,36,0.06);
    --shadow-lg: 0 18px 50px rgba(58, 40, 64, 0.20);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; padding: 0;
    font-family: 'Source Sans 3', 'Helvetica Neue', system-ui, sans-serif;
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.72;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'kern' 1, 'liga' 1, 'onum' 1;
  }
  h1, h2, h3, h4, .display, .serif {
    font-family: 'Cormorant Infant', 'EB Garamond', Georgia, serif;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.01em;
  }
  h1 { font-size: clamp(2.5rem, 5.5vw, 3.9rem); line-height: 1.08; margin: 0 0 0.5rem; font-weight: 500; }
  h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); line-height: 1.18; margin: 0 0 0.8rem; font-weight: 500; color: var(--aubergine); }
  h3 { font-size: 1.5rem; margin: 0 0 0.6rem; font-weight: 600; color: var(--ink); }
  h4 { font-size: 1.15rem; margin: 0 0 0.4rem; font-weight: 600; }
  p { margin: 0 0 1.1rem; }
  a { color: var(--gold-deep); text-decoration: none; transition: color 0.15s; }
  a:hover { color: var(--aubergine); }
  img { max-width: 100%; height: auto; display: block; }
  ::selection { background: var(--ivory-3); color: var(--aubergine); }

  /* ─── DEMO BANNER ────────────────────────────────────────── */
  .demo-banner {
    background: linear-gradient(90deg, #f8f0d8, #f3e8c5);
    border-bottom: 1px solid #d9c489;
    color: #5d4a16;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }
  .demo-banner strong { color: #3d3008; font-weight: 700; font-family: 'Cormorant Infant', serif; font-style: italic; font-size: 0.95rem; }

  /* ─── HEADER ─────────────────────────────────────────────── */
  header.site {
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: 0 1px 0 rgba(154,125,62,0.08);
  }
  .header-row {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--ink);
  }
  .emblem {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold-deep);
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--ivory);
    position: relative;
    flex-shrink: 0;
  }
  .emblem::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
  }
  .emblem svg { width: 24px; height: 24px; }
  .brand-text { line-height: 1.15; }
  .brand-name {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--aubergine);
    letter-spacing: 0.02em;
    display: block;
  }
  .brand-sub {
    font-size: 0.72rem;
    color: var(--ink-soft);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 0.15rem;
  }
  nav.main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.1rem 0.1rem;
    max-width: 62%;
  }
  nav.main a {
    color: var(--ink-2);
    padding: 0.4rem 0.6rem;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    border-bottom: 1px solid transparent;
    position: relative;
    transition: all 0.15s;
  }
  nav.main a:hover { color: var(--aubergine); border-bottom-color: var(--gold); }
  nav.main a.cta {
    color: var(--gold-deep);
    border-bottom-color: var(--gold);
    font-weight: 600;
  }
  nav.main a.cta:hover { color: var(--aubergine); border-bottom-color: var(--aubergine); }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
  }
  @media (max-width: 980px) {
    nav.main { display: none; position: absolute; top: 100%; left: 0; right: 0; max-width: none; gap: 0; align-items: stretch; background: var(--ivory); border-bottom: 1px solid var(--line); padding: 0.5rem 1rem; box-shadow: var(--shadow-md); }
    nav.main.open { display: grid; grid-template-columns: 1fr 1fr; column-gap: 0.5rem; }
    nav.main a { padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--line-soft); white-space: normal; }
    .menu-toggle { display: inline-flex; }
  }

  /* ─── HERO CAROUSEL ─────────────────────────────────────── */
  .hero {
    position: relative;
    height: clamp(520px, 78vh, 720px);
    overflow: hidden;
    background: var(--ink);
  }
  .hero-slides {
    position: absolute; inset: 0;
  }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
  }
  .hero-slide.active { opacity: 1; }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(45,42,36,0.20) 0%, rgba(58,40,64,0.45) 60%, rgba(45,42,36,0.65) 100%);
    z-index: 2;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1080px;
    margin: 0 auto;
    height: 100%;
    padding: 3rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: #fbf7ee;
  }
  .hero-eyebrow {
    color: #e8dcc0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
  }
  .hero h1 {
    font-family: 'Cormorant Infant', serif;
    color: #fbf7ee;
    font-weight: 500;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin-bottom: 0.9rem;
  }
  .hero-sub {
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    color: #ede5d0;
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.45;
    font-weight: 400;
  }
  .hero-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    border: 1px solid #ede5d0;
    color: #fbf7ee;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s;
  }
  .hero-cta:hover { background: var(--ivory); color: var(--aubergine); border-color: var(--ivory); }
  .hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.5rem;
  }
  .hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(251,247,238,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }
  .hero-dot.active { background: var(--gold-bright); transform: scale(1.3); }

  /* ─── CONTAINER ─────────────────────────────────────────── */
  .container { max-width: 1160px; margin: 0 auto; padding: 5rem 1.5rem; }
  .container-narrow { max-width: 860px; margin: 0 auto; padding: 5rem 1.5rem; }
  section { position: relative; }
  section.vellum { background: var(--vellum); }
  section.deep { background: var(--aubergine); color: #ede5d0; }
  section.deep h2, section.deep h3, section.deep h4 { color: #f5efe0; }
  section.deep .eyebrow { color: var(--gold-bright); }
  section.deep .lead { color: #e8dcc0; }

  /* ─── SECTION HEAD ──────────────────────────────────────── */
  .section-head {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .eyebrow {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    color: var(--gold-deep);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.1rem;
  }
  .eyebrow::before, .eyebrow::after {
    content: '·';
    color: var(--gold);
    margin: 0 0.6rem;
    font-weight: 700;
  }
  .section-head h2 { margin-bottom: 0.5rem; }
  .lead {
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ink-soft);
    line-height: 1.5;
    max-width: 600px;
    margin: 0.8rem auto 0;
    font-weight: 400;
  }
  .ornament {
    text-align: center;
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 1.3rem;
    margin: 0 0 1.2rem;
    padding-left: 1.3rem;
    line-height: 1;
  }

  /* ─── BUN VENIT ─────────────────────────────────────────── */
  .welcome {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .welcome p {
    font-size: 1.08rem;
    color: var(--ink-2);
    line-height: 1.78;
  }
  .welcome p.opener::first-letter {
    font-family: 'Cormorant Infant', serif;
    font-size: 4.6rem;
    float: left;
    line-height: 0.82;
    margin: 0.18rem 0.5rem 0 0;
    color: var(--gold-deep);
    font-weight: 600;
    text-shadow: 0 2px 0 rgba(154,125,62,0.08);
  }
  .welcome .signature {
    margin-top: 2rem;
    color: var(--aubergine);
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: 1.05rem;
  }
  .welcome .signature strong { font-style: normal; color: var(--ink); font-weight: 600; }

  /* ─── ISTORIC ───────────────────────────────────────────── */
  .istoric-figure {
    margin: 0 auto 2.5rem;
    max-width: 720px;
    text-align: center;
  }
  .istoric-figure img {
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    width: 100%;
  }
  .istoric-figure figcaption {
    margin-top: 0.6rem;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-family: 'Cormorant Infant', serif;
  }
  .istoric-prose {
    column-count: 2;
    column-gap: 2.8rem;
    column-rule: 1px solid var(--rule);
    max-width: 1080px;
    margin: 0 auto;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  @media (max-width: 820px) { .istoric-prose { column-count: 1; } }
  .istoric-prose p {
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--ink-2);
    margin-bottom: 1.1rem;
    text-indent: 1.4em;
  }
  .istoric-prose p:first-child { text-indent: 0; }
  .istoric-prose p:first-child::first-letter {
    font-family: 'Cormorant Infant', serif;
    font-size: 5.2rem;
    float: left;
    line-height: 0.82;
    margin: 0.18rem 0.55rem 0 0;
    color: var(--gold-deep);
    font-weight: 600;
  }
  .istoric-prose p strong, .istoric-prose p em {
    color: var(--aubergine);
  }
  .istoric-prose p em {
    font-style: italic;
    font-family: 'Cormorant Infant', serif;
    font-size: 1.05em;
  }

  .timeline {
    max-width: 980px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
  @media (max-width: 880px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 540px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
  .tl-item .yr {
    font-family: 'Cormorant Infant', serif;
    font-size: 2.4rem;
    color: var(--gold-deep);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
  }
  .tl-item .lb {
    color: var(--aubergine);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }
  .tl-item .ds {
    color: var(--ink-soft);
    font-size: 0.8rem;
    line-height: 1.45;
    font-style: italic;
    font-family: 'Cormorant Infant', serif;
  }

  /* ─── PULL QUOTES ───────────────────────────────────────── */
  .pull-quote {
    background: var(--ivory);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
  }
  .pull-quote.deep { background: var(--aubergine); color: #ede5d0; }
  .pull-quote.vellum { background: var(--vellum); }
  .pull-quote::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
  }
  .pull-quote::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2.5rem auto 0;
  }
  .pull-quote blockquote {
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: clamp(1.45rem, 2.7vw, 2.1rem);
    color: var(--aubergine);
    font-weight: 400;
    line-height: 1.4;
    max-width: 820px;
    margin: 0 auto 1.4rem;
    quotes: "„" """ "‚" "'";
  }
  .pull-quote.deep blockquote { color: #f5efe0; }
  .pull-quote blockquote::before { content: open-quote; font-size: 1.2em; color: var(--gold-deep); }
  .pull-quote blockquote::after { content: close-quote; font-size: 1.2em; color: var(--gold-deep); }
  .pull-quote.deep blockquote::before, .pull-quote.deep blockquote::after { color: var(--gold-bright); }
  .pull-quote cite {
    font-family: 'Source Sans 3', sans-serif;
    font-style: normal;
    color: var(--gold-deep);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
  }
  .pull-quote.deep cite { color: var(--gold-bright); }

  /* ─── SAINT VENERATION CARDS ────────────────────────────── */
  .saints-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--ink-2);
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .saints-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (max-width: 900px) { .saints-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
  @media (max-width: 580px) { .saints-grid { grid-template-columns: 1fr; } }
  .saint-card {
    background: var(--ivory);
    border: 1px solid var(--line);
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .saint-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--gold);
    pointer-events: none;
    opacity: 0.45;
  }
  .saint-card::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid var(--gold);
    pointer-events: none;
    opacity: 0.18;
  }
  .saint-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .saint-card.hramul {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--vellum) 100%);
    border-color: var(--gold);
  }
  .saint-icon {
    width: 160px;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    background: var(--vellum);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-sm);
    margin: 0.25rem auto 1.25rem;
    position: relative;
  }
  .saint-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .saint-name {
    font-family: 'Cormorant Infant', serif;
    color: var(--aubergine);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    position: relative;
  }
  .saint-feast {
    color: var(--gold-deep);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
  }
  .saint-desc {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    position: relative;
  }
  .saint-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 0.7rem auto;
    position: relative;
  }

  .moaste-note {
    max-width: 760px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 1.6rem 1.5rem;
    background: var(--ivory);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
  }
  .moaste-note p {
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    color: var(--ink-2);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.55;
  }
  .moaste-note strong { color: var(--aubergine); font-style: normal; font-weight: 600; }
  .moaste-credit { max-width: 760px; margin: 1rem auto 0; text-align: center; font-size: 0.78rem; color: var(--muted); font-style: italic; }

  /* ─── LITURGICAL TABLE ──────────────────────────────────── */
  .liturg-wrap {
    max-width: 880px;
    margin: 0 auto;
  }
  .liturg-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ivory);
    border: 1px solid var(--line);
    font-family: 'Source Sans 3', sans-serif;
  }
  .liturg-table thead {
    background: var(--aubergine);
    color: var(--ivory);
  }
  .liturg-table th {
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .liturg-table th:last-child { border-right: none; }
  .liturg-table th:nth-child(1) { width: 22%; }
  .liturg-table th:nth-child(2) { width: 22%; }
  .liturg-table th:nth-child(3) { width: 56%; }
  .liturg-table td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line-soft);
    vertical-align: top;
    font-size: 0.97rem;
    color: var(--ink-2);
  }
  .liturg-table td:last-child { border-right: none; }
  .liturg-table tbody tr:nth-child(even) { background: var(--vellum); }
  .liturg-table tbody tr:last-child td { border-bottom: none; }
  .liturg-table tbody tr.feast { background: rgba(154,125,62,0.10); }
  .liturg-table tbody tr.feast td { border-bottom-color: var(--rule); }
  .liturg-day {
    font-family: 'Cormorant Infant', serif;
    color: var(--aubergine);
    font-size: 1.18rem;
    font-weight: 600;
  }
  .liturg-hours {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--gold-deep);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
  }
  .liturg-svc { font-size: 0.97rem; }
  .liturg-svc strong {
    color: var(--aubergine);
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
  }
  .liturg-svc .time-pip {
    display: inline-block;
    background: var(--vellum);
    border: 1px solid var(--gold);
    color: var(--gold-deep);
    padding: 0.06rem 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 2px;
    margin-right: 0.35rem;
    letter-spacing: 0.04em;
    font-family: 'Source Sans 3', sans-serif;
  }
  .liturg-note {
    margin-top: 1.5rem;
    padding: 1.4rem 1.6rem;
    background: var(--ivory);
    border-left: 3px solid var(--gold);
    color: var(--ink-2);
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .liturg-note strong { font-style: normal; color: var(--aubergine); font-weight: 600; }

  @media (max-width: 640px) {
    .liturg-table thead { display: none; }
    .liturg-table, .liturg-table tbody, .liturg-table tr, .liturg-table td { display: block; width: 100%; }
    .liturg-table tr { padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); }
    .liturg-table td { border: none; padding: 0.2rem 0; }
    .liturg-day { font-size: 1.3rem; }
    .liturg-hours { display: block; margin-bottom: 0.3rem; }
  }

  /* ─── TAINE ─────────────────────────────────────────────── */
  .taine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto;
  }
  @media (max-width: 760px) { .taine-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
  .taina {
    background: var(--ivory);
    padding: 2rem 1.85rem;
    border-left: 2px solid var(--gold);
    position: relative;
  }
  .taina-num {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.45;
    line-height: 1;
  }
  .taina h3 {
    font-family: 'Cormorant Infant', serif;
    color: var(--aubergine);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
  }
  .taina .greek {
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    color: var(--gold-deep);
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
  }
  .taina p {
    color: var(--ink-soft);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
  }
  .taina .when {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px dashed var(--rule);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.82rem;
    color: var(--ink);
    letter-spacing: 0.04em;
  }
  .taina .when strong { color: var(--aubergine); font-weight: 600; }

  /* ─── PARASTASE ─────────────────────────────────────────── */
  .parastas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (max-width: 860px) { .parastas-grid { grid-template-columns: 1fr; } }
  .parastas {
    background: var(--ivory);
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
  }
  .parastas-head {
    background: var(--vellum);
    border-bottom: 1px solid var(--line);
    padding: 1.6rem 1.6rem 1.25rem;
    text-align: center;
    position: relative;
  }
  .parastas-head::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 50%;
    width: 60px; height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
  }
  .parastas-head h3 {
    font-family: 'Cormorant Infant', serif;
    color: var(--aubergine);
    font-size: 1.55rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
  }
  .parastas-head .sub {
    color: var(--gold-deep);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .parastas-body { padding: 1.6rem 1.6rem 1.75rem; }
  .parastas-body > p {
    color: var(--ink-soft);
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
    text-align: center;
  }
  .parastas-body h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.74rem;
    color: var(--gold-deep);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 1.25rem 0 0.75rem;
    font-weight: 600;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .parastas-body h4:first-of-type { margin-top: 0; }
  .parastas-body ol {
    margin: 0; padding-left: 1.3rem;
    color: var(--ink-2);
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .parastas-body ol li {
    margin-bottom: 0.25rem;
    padding-left: 0.25rem;
  }
  .parastas-body ol li::marker { color: var(--gold-deep); font-weight: 600; }

  /* ─── SFEȘTANIE ─────────────────────────────────────────── */
  .sfest-block {
    background: var(--ivory);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 3rem 2.5rem;
    max-width: 920px;
    margin: 0 auto;
  }
  @media (max-width: 640px) { .sfest-block { padding: 2rem 1.4rem; } }
  .sfest-block h3 {
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    color: var(--aubergine);
    text-align: center;
    font-size: 1.65rem;
    margin-bottom: 1.75rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .sfest-block p {
    color: var(--ink-2);
    font-size: 1.02rem;
    line-height: 1.78;
    text-align: justify;
    hyphens: auto;
  }
  .sfest-block p:first-of-type::first-letter {
    font-family: 'Cormorant Infant', serif;
    font-size: 3.4rem;
    float: left;
    line-height: 0.85;
    margin: 0.18rem 0.45rem 0 0;
    color: var(--gold-deep);
    font-weight: 600;
  }
  .pregatire-head {
    font-family: 'Cormorant Infant', serif;
    text-align: center;
    color: var(--aubergine);
    font-size: 1.4rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
  }
  .pregatire-head::before, .pregatire-head::after {
    content: '·';
    color: var(--gold);
    margin: 0 0.5rem;
  }
  .pregatire {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2.5rem;
    max-width: 720px;
    margin: 0 auto;
  }
  @media (max-width: 540px) { .pregatire { grid-template-columns: 1fr; } }
  .pregatire li {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px dotted var(--line);
    color: var(--ink-2);
    font-size: 0.97rem;
  }
  .pregatire li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.78rem;
    flex-shrink: 0;
  }

  /* ─── GALERIE ───────────────────────────────────────────── */
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }
  .gal {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--ivory-3);
    border: 1px solid var(--line);
  }
  .gal img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: saturate(0.92);
  }
  .gal-video { background:#1a1410; }
  .gal-video video { width:100%; height:100%; object-fit:contain; display:block; background:#1a1410; }
  .gal::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(154,125,62,0.18);
    pointer-events: none;
  }
  .gal:hover img { transform: scale(1.04); filter: saturate(1); }

  /* ─── DONATION FORM ─────────────────────────────────────── */
  .donatii-wrap {
    max-width: 920px;
    margin: 0 auto;
    background: var(--ivory);
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
  }
  .donatii-wrap::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid var(--gold);
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
  }
  .donatii-head {
    background: var(--aubergine);
    color: var(--ivory);
    padding: 2.25rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .donatii-head h3 {
    color: var(--ivory);
    font-family: 'Cormorant Infant', serif;
    font-size: 1.95rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
  }
  .donatii-head p {
    color: #e8dcc0;
    margin: 0;
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    font-size: 1.05rem;
  }
  .donatii-head .ornament-line {
    display: inline-block;
    width: 50px; height: 1px;
    background: var(--gold-bright);
    margin: 0.8rem auto;
  }
  .donatii-body {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 600px) { .donatii-body { padding: 1.75rem 1.25rem; } }
  .form-step { margin-bottom: 2.5rem; }
  .form-step:last-child { margin-bottom: 0; }
  .step-label {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    font-family: 'Cormorant Infant', serif;
    color: var(--aubergine);
    font-size: 1.4rem;
    font-weight: 600;
  }
  .step-num {
    color: var(--gold-deep);
    font-style: italic;
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1;
  }
  .step-num::after { content: '.'; }
  .step-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    color: var(--ink-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.9rem;
    font-style: normal;
  }
  .types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.65rem;
  }
  .type {
    border: 1px solid var(--line); background: var(--vellum);
    padding: 1rem 1.1rem; cursor: pointer;
    text-align: left; font-family: inherit; color: inherit;
    transition: all 0.15s;
    position: relative;
  }
  .type:hover { border-color: var(--gold); background: var(--ivory); }
  .type.selected {
    border-color: var(--gold);
    background: var(--ivory);
    box-shadow: inset 0 0 0 1px var(--gold);
  }
  .type.selected::before {
    content: '✦';
    position: absolute;
    top: 0.5rem; right: 0.6rem;
    color: var(--gold-deep);
    font-size: 0.78rem;
  }
  .type .ttl {
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
    display: block;
    margin-bottom: 0.15rem;
    color: var(--aubergine);
    font-size: 1.08rem;
  }
  .type .sb {
    font-size: 0.82rem;
    color: var(--ink-soft);
    font-family: 'Source Sans 3', sans-serif;
  }
  .amounts { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .amount {
    border: 1px solid var(--line); background: var(--ivory);
    padding: 0.6rem 1.15rem;
    font-weight: 600; cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--ink);
    font-size: 0.9rem;
    transition: all 0.15s;
    letter-spacing: 0.02em;
  }
  .amount:hover { border-color: var(--gold); color: var(--gold-deep); }
  .amount.selected {
    background: var(--aubergine);
    border-color: var(--aubergine);
    color: var(--ivory);
  }
  .custom-amt {
    display: flex; align-items: center; gap: 0.5rem;
    max-width: 280px;
    margin-top: 0.85rem;
  }
  .custom-amt input {
    flex: 1; padding: 0.6rem 0.85rem;
    border: 1px solid var(--line);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    background: var(--ivory);
    color: var(--ink);
    letter-spacing: 0.02em;
  }
  .custom-amt input:focus { outline: none; border-color: var(--gold); }
  .custom-amt .curr { font-weight: 600; color: var(--ink-soft); }
  .freq-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .freq-pill {
    border: 1px solid var(--line);
    background: var(--vellum);
    padding: 0.55rem 1.05rem;
    font-weight: 500; cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--ink-2);
    font-size: 0.86rem;
    transition: all 0.15s;
  }
  .freq-pill:hover { border-color: var(--gold); color: var(--gold-deep); }
  .freq-pill.selected {
    background: var(--aubergine);
    color: var(--ivory);
    border-color: var(--aubergine);
  }
  .pomelnic-section { display: none; }
  .pomelnic-section.show { display: block; }
  .pomelnic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 0.85rem; }
  @media (max-width: 600px) { .pomelnic-grid { grid-template-columns: 1fr; } }
  .field { margin-bottom: 1rem; }
  .field label {
    display: block;
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--aubergine);
  }
  .field label .lbl-sub {
    color: var(--ink-soft);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    margin-left: 0.4rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    text-transform: uppercase;
  }
  .field textarea, .field input {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.96rem;
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.5;
  }
  .field textarea { min-height: 110px; resize: vertical; font-family: 'Cormorant Infant', serif; font-size: 1.05rem; }
  .field textarea:focus, .field input:focus { outline: none; border-color: var(--gold); }
  .field .hint {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 0.35rem;
    font-style: italic;
    font-family: 'Cormorant Infant', serif;
  }
  .donor-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
  @media (max-width: 720px) { .donor-grid { grid-template-columns: 1fr; } }
  .donor-grid .field label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
  }
  .summary {
    background: var(--vellum);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 1.4rem 1.5rem;
    margin-top: 1.75rem;
    position: relative;
  }
  .summary::before, .summary::after {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
  }
  .summary::before { top: -5px; left: 50%; transform: translateX(-30px); }
  .summary::after { top: -5px; left: 50%; transform: translateX(22px); }
  .summary .srow {
    display: flex;
    justify-content: space-between;
    padding: 0.32rem 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-family: 'Source Sans 3', sans-serif;
  }
  .summary .srow strong { color: var(--aubergine); font-weight: 600; }
  .summary .srow.total {
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
    font-size: 1.4rem;
    border-top: 1px dashed var(--gold);
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    color: var(--aubergine);
  }
  .summary .srow.total span:last-child { color: var(--aubergine); }
  .pay-btn {
    display: block; width: 100%;
    background: var(--aubergine);
    color: var(--ivory);
    border: none;
    padding: 1.15rem;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.75rem;
    transition: all 0.15s;
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
  }
  .pay-btn:hover { background: var(--aubergine-2); }
  .pay-btn::after {
    content: ' →';
    margin-left: 0.5rem;
  }
  .pay-icons {
    display: flex; justify-content: center;
    gap: 0.6rem; margin-top: 1rem;
    align-items: center; flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-family: 'Source Sans 3', sans-serif;
  }
  .pay-icons .badge {
    padding: 0.2rem 0.55rem;
    border: 1px solid var(--line);
    background: var(--vellum);
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: 0.72rem;
    color: var(--ink-2);
  }
  .pay-disclaimer {
    text-align: center;
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-style: italic;
    font-family: 'Cormorant Infant', serif;
  }

  /* ─── IBAN ──────────────────────────────────────────────── */
  .iban-block {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    padding: 2.5rem;
    max-width: 920px;
    margin: 3rem auto 0;
    position: relative;
  }
  @media (max-width: 600px) { .iban-block { padding: 1.5rem; } }
  .iban-block h3 {
    color: var(--aubergine);
    font-family: 'Cormorant Infant', serif;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .iban-block .lead-iban {
    text-align: center;
    color: var(--ink-soft);
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
  }
  .iban-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0.7rem 0;
    padding: 0.65rem 0;
    border-bottom: 1px dotted var(--rule);
    flex-wrap: wrap;
  }
  .iban-row:last-of-type { border-bottom: none; }
  .iban-label {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    min-width: 100px;
    color: var(--ink);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .iban-value {
    font-family: 'SF Mono', 'JetBrains Mono', Menlo, monospace;
    background: var(--vellum);
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--line);
    flex: 1;
    min-width: 220px;
    user-select: all;
    font-size: 0.9rem;
    color: var(--aubergine);
    letter-spacing: 0.02em;
  }
  .copy-btn {
    background: var(--aubergine);
    color: var(--ivory);
    border: none;
    padding: 0.5rem 0.95rem;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.15s;
  }
  .copy-btn:hover { background: var(--gold-deep); }

  /* ─── CONTACT ──────────────────────────────────────────── */
  .contact-official { max-width:1080px; margin:0 auto 2.5rem; display:flex; flex-wrap:wrap; align-items:center; gap:.8rem 1.4rem; background:#fff; border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:12px; padding:1.1rem 1.6rem; box-shadow:var(--shadow-sm); }
  .contact-official .co-label { font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; color:var(--gold-deep); font-weight:600; font-family:'Inter','Source Sans 3',sans-serif; }
  .contact-official .co-phone { font-family:'Cormorant Infant',Georgia,serif; font-size:1.6rem; font-weight:600; color:var(--ink); text-decoration:none; letter-spacing:.02em; }
  .contact-official .co-phone:hover { color:var(--gold-deep); }
  .contact-official .co-wa { margin-left:auto; display:inline-flex; align-items:center; gap:.5rem; background:#25D366; color:#fff; font-weight:600; font-size:.95rem; text-decoration:none; padding:.55rem 1.1rem; border-radius:99px; box-shadow:var(--shadow-sm); transition:background .2s ease, transform .2s ease; }
  .contact-official .co-wa:hover { background:#1ebe5b; transform:translateY(-1px); }
  @media(max-width:560px){ .contact-official .co-wa { margin-left:0; } }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1080px;
    margin: 0 auto;
  }
  @media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
  .clergy {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .clergy h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    color: var(--gold-deep);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--gold);
  }
  .priest {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-soft);
    gap: 1rem;
  }
  .priest:last-child { border-bottom: none; }
  .priest .name {
    font-family: 'Cormorant Infant', serif;
    color: var(--aubergine);
    font-weight: 600;
    font-size: 1.12rem;
    line-height: 1.25;
  }
  .priest .role {
    color: var(--ink-soft);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.15rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 500;
  }
  .priest .phone {
    font-family: 'SF Mono', 'JetBrains Mono', Menlo, monospace;
    font-size: 0.92rem;
    color: var(--gold-deep);
    white-space: nowrap;
  }
  .priest.paroh {
    background: var(--vellum);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-left: 3px solid var(--gold);
    margin-bottom: 0.3rem;
  }
  .priest.paroh .name { font-size: 1.2rem; }
  .address-block {
    background: var(--ivory);
    border: 1px solid var(--line);
    padding: 2rem 1.85rem;
    position: relative;
  }
  .address-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
  }
  .address-block h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.74rem;
    color: var(--gold-deep);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 0.6rem;
    font-weight: 600;
  }
  .address-block h4:not(:first-child) { margin-top: 1.5rem; }
  .address-block p {
    color: var(--ink-2);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .address-block p a { color: var(--gold-deep); font-weight: 500; }
  .address-block p a:hover { color: var(--aubergine); }

  /* ─── MODAL ─────────────────────────────────────────────── */
  .modal-bg {
    position: fixed; inset: 0;
    background: rgba(45,42,36,0.78);
    display: none;
    align-items: center; justify-content: center;
    z-index: 200; padding: 1rem;
    backdrop-filter: blur(4px);
  }
  .modal-bg.show { display: flex; }
  .modal {
    background: var(--ivory);
    max-width: 540px;
    width: 100%;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-top: 3px solid var(--gold);
    position: relative;
  }
  .modal::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    pointer-events: none;
  }
  .modal .modal-orn {
    color: var(--gold);
    letter-spacing: 1.2rem;
    padding-left: 1.2rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .modal h2 { color: var(--aubergine); margin-bottom: 0.6rem; font-size: 1.85rem; font-family: 'Cormorant Infant', serif; }
  .modal p {
    color: var(--ink-2);
    margin: 0.8rem 0;
    font-family: 'Cormorant Infant', serif;
    font-size: 1.05rem;
    line-height: 1.55;
  }
  .modal .modal-close {
    margin-top: 1.75rem;
    background: var(--aubergine);
    color: var(--ivory);
    border: none;
    padding: 0.85rem 2.2rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .modal .modal-close:hover { background: var(--gold-deep); }

  /* ─── TOAST ─────────────────────────────────────────────── */
  .toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: var(--aubergine);
    color: var(--ivory);
    padding: 0.9rem 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 150;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    max-width: 90vw;
    font-size: 0.92rem;
    font-family: 'Source Sans 3', sans-serif;
    border-left: 3px solid var(--gold);
    letter-spacing: 0.04em;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }

  /* ─── FOOTER ────────────────────────────────────────────── */
  footer.site {
    background: var(--aubergine);
    color: #d6c7d8;
    padding: 4.5rem 1.5rem 2rem;
    border-top: 1px solid var(--gold);
  }
  .footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
  footer .footer-brand h3 {
    color: var(--ivory);
    font-size: 1.8rem;
    font-family: 'Cormorant Infant', serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  footer .footer-brand .footer-emblem {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    color: var(--gold-bright);
  }
  footer .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #c2b1c5;
    margin-bottom: 0.8rem;
  }
  footer .footer-brand .quote {
    margin-top: 1rem;
    font-style: italic;
    font-family: 'Cormorant Infant', serif;
    font-size: 1.05rem;
    color: var(--gold-bright);
    line-height: 1.5;
  }
  footer h4 {
    color: var(--gold-bright);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0 0 1.1rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(182,148,87,0.3);
  }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li {
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
    color: #c2b1c5;
  }
  footer ul a { color: #d6c7d8; font-size: 0.92rem; }
  footer ul a:hover { color: var(--gold-bright); }
  .footer-bottom {
    max-width: 1180px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(182,148,87,0.25);
    text-align: center;
    color: #a695a8;
    font-size: 0.82rem;
    font-family: 'Source Sans 3', sans-serif;
  }
  .footer-bottom .ornament-foot {
    color: var(--gold-bright);
    letter-spacing: 1.2rem;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .elru-credit {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(182,148,87,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    font-family: 'Cormorant Infant', serif;
    font-style: italic;
    color: var(--gold-bright);
  }

  /* ─── UTILITIES ─────────────────────────────────────────── */
  .text-center { text-align: center; }
  .mt-2 { margin-top: 2rem; }
  .mt-3 { margin-top: 3rem; }

/* ─── Formular 230 callout (secțiunea donații) ─── */
.f230-callout { max-width: 880px; margin: 2.5rem auto 0; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; background: linear-gradient(135deg, #3a2840 0%, #5a3a52 100%); color: #f5efe5; border-radius: 12px; padding: 1.75rem 2rem; box-shadow: 0 8px 24px rgba(58,40,64,0.25); }
.f230-callout-badge { font-family: 'Cormorant Infant', Georgia, serif; font-size: 2.6rem; font-weight: 700; color: #d8b96a; line-height: 1; flex-shrink: 0; }
.f230-callout-text { flex: 1; min-width: 240px; }
.f230-callout-text h3 { color: #fff; font-size: 1.3rem; margin: 0 0 0.4rem; font-family: 'Cormorant Infant', Georgia, serif; }
.f230-callout-text p { color: #e6dcc8; font-size: 0.95rem; margin: 0; line-height: 1.55; }
.f230-callout-btn { background: #d8b96a; color: #2d2030; padding: 0.85rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: all 0.15s; flex-shrink: 0; }
.f230-callout-btn:hover { background: #e6c97a; transform: translateY(-1px); color: #2d2030; }
@media (max-width: 600px) { .f230-callout { flex-direction: column; text-align: center; } }

/* ─── Anunțuri ─── */
.anunturi-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem; }
.anunt { background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 2px 10px rgba(45,42,36,.06); }
.anunt-img img { width:100%; height:190px; object-fit:cover; display:block; }
.anunt-body { padding:1.25rem; display:flex; flex-direction:column; flex:1; }
.anunt-date { font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color:var(--gold-deep,#9a7d3e); margin-bottom:.4rem; }
.anunt-body h3 { font-family:'Cormorant Infant',Georgia,serif; font-size:1.3rem; margin:0 0 .5rem; }
.anunt-body h3 a { color:var(--ink,#2d2a24); }
.anunt-body p { color:#545049; font-size:.92rem; flex:1; }
.anunt-more { color:var(--gold-deep,#9a7d3e); font-weight:600; font-size:.9rem; }

/* ─── Calendar ortodox ─── */
.cal-pasti { text-align:center; background:linear-gradient(135deg,#3a2840,#5a3a52); color:#f5efe5; border-radius:12px; padding:1.75rem; margin-bottom:2rem; }
.cal-pasti-label { display:block; font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; color:#d8b96a; }
.cal-pasti-date { display:block; font-family:'Cormorant Infant',Georgia,serif; font-size:2.4rem; font-weight:700; color:#fff; margin:.25rem 0; }
.cal-pasti-sub { display:block; font-size:.9rem; color:#e6dcc8; }
.cal-grid { display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; }
@media(max-width:700px){ .cal-grid{grid-template-columns:1fr;} }
.cal-col h3 { font-family:'Cormorant Infant',Georgia,serif; color:var(--aubergine,#3a2840); font-size:1.35rem; margin:0 0 .75rem; }
.cal-list { list-style:none; padding:0; margin:0; }
.cal-list li { padding:.65rem 0; border-bottom:1px solid var(--line); }
.cal-list li strong { display:block; color:var(--ink,#2d2a24); }
.cal-list li span { font-size:.88rem; color:#6a6459; }
.cal-hram li strong { color:var(--gold-deep,#9a7d3e); }
.cal-note { text-align:center; font-size:.88rem; color:#6a6459; margin-top:1.5rem; font-style:italic; }
.cal-note a { color:var(--gold-deep,#9a7d3e); }

/* ═══ PALETĂ LUMINOASĂ („Zi") — override prin html[data-palette="light"] ═══ */
html[data-palette="light"] {
  --ivory:#ffffff; --ivory-2:#f6f8fb; --ivory-3:#eef2f7; --vellum:#f6f8fb;
  --ink:#1f2a37; --ink-2:#33404f; --ink-soft:#5b6675; --muted:#8a93a0;
  --gold:#b08d3e; --gold-deep:#8a6d28; --gold-bright:#c7a456;
  --aubergine:#33425f; --aubergine-2:#465877; --aubergine-light:#6076a0;
  --line:#e3e8ef; --line-soft:#eef2f7; --rule:rgba(176,141,62,0.30);
}
html[data-palette="light"] body { background:#ffffff; }
html[data-palette="light"] .vellum { background:#f6f8fb; }
html[data-palette="light"] .hero-overlay { background:linear-gradient(180deg,rgba(31,42,55,.45),rgba(51,66,95,.55)); }
html[data-palette="light"] .pull-quote.deep { background:#33425f; }

/* ═══ BARA DE CONTROL (temă + limbă) ═══ */
.site-controls { background:var(--aubergine); color:#f0ead9; font-size:.82rem; }
html[data-palette="light"] .site-controls { background:#33425f; }
.site-controls-inner { max-width:1180px; margin:0 auto; padding:.5rem 1.25rem; display:flex; align-items:center; justify-content:flex-end; gap:1.5rem; flex-wrap:wrap; }
.ctrl-group { display:flex; align-items:center; gap:.45rem; }
.ctrl-label { opacity:.65; font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; }
/* Toate butoanele din bară — pastile UNIFORME (aceeași înălțime, aceeași formă) */
.site-controls button { font-family:inherit; cursor:pointer; box-sizing:border-box; height:30px; display:inline-flex; align-items:center; justify-content:center; gap:.35rem; padding:0 .75rem; font-size:.78rem; line-height:1; border-radius:999px; border:1px solid rgba(255,255,255,.28); background:rgba(255,255,255,.06); color:#f0ead9; transition:background .15s,border-color .15s,color .15s; white-space:nowrap; }
.site-controls button:hover { background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.5); }
.site-controls button.active { background:var(--gold); color:#2d2030; border-color:var(--gold); font-weight:600; }
.ctrl-ico { font-size:.92rem; line-height:1; }
.lang-flag { min-width:54px; }
.lang-flag .flag { font-size:1.02rem; line-height:1; }
.lang-flag .code { font-weight:600; letter-spacing:.03em; }
.lang-more { position:relative; }
.lang-more-menu { display:none; position:absolute; right:0; top:calc(100% + 6px); background:#fff; border:1px solid var(--line); border-radius:10px; box-shadow:0 12px 34px rgba(0,0,0,.2); padding:.4rem; z-index:60; min-width:188px; }
.lang-more-menu.open { display:block; }
.site-controls .lang-more-menu button { height:auto; justify-content:flex-start; width:100%; background:none; border:none; padding:.55rem .65rem; font-size:.88rem; color:var(--ink); border-radius:7px; }
.site-controls .lang-more-menu button:hover { background:var(--ivory-2); border-color:transparent; }
.site-controls .lang-more-menu button.active { background:var(--ivory-3); color:var(--ink); }
@media(max-width:640px){ .site-controls-inner{justify-content:center; gap:1rem;} .ctrl-label{display:none;} .ctrl-group{gap:.35rem;} }

/* ─── Pagini de conținut (page.php) — o coloană, aliniat stânga (NU justify/columns) ─── */
.page-prose { column-count:1 !important; text-align:left !important; max-width:760px; margin:0 auto; }
.page-prose p { text-align:left !important; color:var(--ink-2); margin:0 0 1.1rem; line-height:1.75; }
.page-prose p:first-of-type::first-letter { font-size:inherit; float:none; margin:0; color:inherit; font-weight:inherit; } /* fără drop-cap pe pagini */
.page-prose h2 { font-family:'Cormorant Infant',Georgia,serif; color:var(--aubergine); margin:1.5rem 0 .75rem; }
.page-prose h3 { font-family:'Cormorant Infant',Georgia,serif; color:var(--gold-deep); margin:1.25rem 0 .5rem; }
.page-prose ul, .page-prose ol { color:var(--ink-2); line-height:1.7; padding-left:1.4rem; }
.page-prose li { margin-bottom:.4rem; }

/* ─── Buton „Înapoi la pagina principală" (vizibil pe fundal deschis) ─── */
.back-link { display:inline-block; padding:.7rem 1.7rem; border:1px solid var(--gold); color:var(--gold-deep); border-radius:6px; font-size:.84rem; letter-spacing:.05em; text-transform:uppercase; font-weight:600; transition:all .15s; }
.back-link:hover { background:var(--aubergine); color:#fbf7ee; border-color:var(--aubergine); }

/* ─── Sfinții zilei (doxologia.ro) ─── */
.cal-azi { max-width:760px; margin:0 auto 2rem; background:#fff; border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:10px; padding:1.5rem 1.75rem; box-shadow:var(--shadow-sm); }
.cal-azi-head { display:flex; align-items:baseline; justify-content:space-between; gap:1rem; flex-wrap:wrap; margin-bottom:.85rem; padding-bottom:.7rem; border-bottom:1px solid var(--line-soft); }
.cal-azi-eyebrow { font-family:'Inter','Source Sans 3',sans-serif; font-size:.74rem; text-transform:uppercase; letter-spacing:.14em; color:var(--gold-deep); font-weight:600; }
.cal-azi-date { font-family:'Cormorant Infant',Georgia,serif; font-size:1.15rem; color:var(--aubergine); font-style:italic; }
.cal-azi-list { list-style:none; margin:0; padding:0; }
.cal-azi-list li { padding:.3rem 0; color:var(--ink); font-size:1.02rem; line-height:1.5; display:flex; gap:.5rem; align-items:flex-start; }
.cal-azi-cross { color:var(--gold-deep); flex-shrink:0; }
.cal-azi-src { margin-top:.85rem; font-size:.78rem; color:var(--muted); text-align:right; }
.cal-azi-src a { color:var(--gold-deep); }
.cal-citiri { display:grid; grid-template-columns:1fr 1fr; gap:.7rem; margin-top:1rem; padding-top:1rem; border-top:1px dashed var(--line-soft); }
@media(max-width:560px){ .cal-citiri { grid-template-columns:1fr; } }
.cal-citire { display:flex; flex-direction:column; gap:.15rem; text-decoration:none; background:var(--ivory-2); border:1px solid var(--line); border-radius:8px; padding:.6rem .85rem; transition:background .2s ease, transform .2s ease; }
.cal-citire:hover { background:#fff; transform:translateY(-1px); }
.cal-citire-lbl { font-size:.7rem; text-transform:uppercase; letter-spacing:.1em; color:var(--gold-deep); font-weight:600; font-family:'Inter','Source Sans 3',sans-serif; }
.cal-citire-ref { font-family:'Cormorant Infant',Georgia,serif; font-size:1.08rem; color:var(--ink); font-weight:600; }
.cal-maxim { margin-top:1rem; padding:.85rem 1.1rem; background:var(--aubergine); color:#f3ead8; border-radius:8px; }
.cal-maxim-lbl { display:block; font-size:.68rem; text-transform:uppercase; letter-spacing:.12em; color:var(--gold); font-weight:600; font-family:'Inter','Source Sans 3',sans-serif; margin-bottom:.3rem; }
.cal-maxim p { margin:0; font-family:'Cormorant Garamond',Georgia,serif; font-style:italic; font-size:1.12rem; line-height:1.5; }

/* ─── Program săptămânal (editabil de paroh) ─── */
.sapt-grid { display:grid; grid-template-columns:1fr; gap:2rem; max-width:1080px; margin:0 auto; align-items:start; }
/* Coloana imaginii e mai lată — poza la aspectul natural ~aceeași înălțime cu cardul text */
.sapt-grid.has-poster { grid-template-columns:1fr 1.3fr; }
@media(max-width:760px){ .sapt-grid.has-poster { grid-template-columns:1fr; } }
.sapt-text { background:#fff; border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:10px; padding:1.1rem 1.4rem; box-shadow:var(--shadow-sm); }
.sapt-table { width:100%; border-collapse:collapse; }
.sapt-table tr { border-bottom:1px dashed var(--line-soft); }
.sapt-table tr:last-child { border-bottom:none; }
.sapt-table th { text-align:left; padding:.45rem .7rem .45rem 0; vertical-align:top; font-family:'Cormorant Infant',Georgia,serif; color:var(--aubergine); font-weight:600; font-size:1rem; min-width:88px; }
.sapt-table td { padding:.45rem 0; color:var(--ink-2); font-size:.92rem; line-height:1.5; white-space:pre-line; }
.sapt-preot { margin-top:1.15rem; padding-top:1rem; border-top:1px solid var(--line); font-size:.95rem; color:var(--ink); }
.sapt-preot-label { display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; color:var(--gold-deep); font-weight:600; margin-bottom:.25rem; font-family:'Inter','Source Sans 3',sans-serif; }
.sapt-preot a { color:var(--gold-deep); font-weight:600; }
.sapt-note { margin-top:.85rem; font-size:.88rem; font-style:italic; color:var(--ink-soft); padding:.55rem .75rem; background:var(--ivory-2); border-radius:6px; }
.sapt-poster { display:flex; flex-direction:column; align-items:center; }
.sapt-poster > a { display:block; width:100%; line-height:0; }
.sapt-poster img { width:100%; height:auto; max-width:100%; border:1px solid var(--line); border-radius:8px; box-shadow:var(--shadow-md); display:block; }
.sapt-poster-cap { margin-top:.5rem; font-size:.78rem; color:var(--muted); font-style:italic; text-align:center; }

/* ─── Program spovedanie (post-specific, editabil de paroh) ─── */
.spov-section { background:#fff; padding:3.5rem 0; }
.spov-grid { display:grid; grid-template-columns:1fr; gap:2rem; max-width:1080px; margin:0 auto; align-items:start; }
.spov-grid.has-poster { grid-template-columns:1fr 1.3fr; }
@media(max-width:760px){ .spov-grid.has-poster { grid-template-columns:1fr; } }
.spov-text { background:var(--ivory-2); border:1px solid var(--line); border-left:4px solid var(--aubergine); border-radius:10px; padding:1.1rem 1.4rem; box-shadow:var(--shadow-sm); }
.spov-table { width:100%; border-collapse:collapse; }
.spov-table tr { border-bottom:1px dashed var(--line-soft); }
.spov-table tr:last-child { border-bottom:none; }
.spov-table th { text-align:left; padding:.5rem .7rem .5rem 0; vertical-align:top; font-family:'Cormorant Infant',Georgia,serif; color:var(--aubergine); font-weight:600; font-size:1.02rem; min-width:88px; }
.spov-table td { padding:.5rem 0; color:var(--ink-2); font-size:.95rem; line-height:1.55; white-space:pre-line; font-feature-settings:'tnum'; }
.spov-preot { margin-top:1.15rem; padding-top:1rem; border-top:1px solid var(--line); font-size:.95rem; color:var(--ink); }
.spov-preot-label { display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; color:var(--aubergine); font-weight:600; margin-bottom:.25rem; font-family:'Inter','Source Sans 3',sans-serif; }
.spov-preot a { color:var(--gold-deep); font-weight:600; }
.spov-note { margin-top:.85rem; font-size:.88rem; font-style:italic; color:var(--ink-soft); padding:.55rem .75rem; background:#fff; border:1px solid var(--line-soft); border-radius:6px; }
.spov-poster { display:flex; flex-direction:column; align-items:center; }
.spov-poster > a { display:block; width:100%; line-height:0; }
.spov-poster img { width:100%; height:auto; max-width:100%; border:1px solid var(--line); border-radius:8px; box-shadow:var(--shadow-md); display:block; }
.spov-poster-cap { margin-top:.5rem; font-size:.78rem; color:var(--muted); font-style:italic; text-align:center; }
/* Carduri multi-preot duhovnic */
.spov-programs { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:1fr; gap:1.5rem; align-items:start; }
.spov-programs.spov-n2 { grid-template-columns:1fr 1fr; }
.spov-programs.spov-n3 { grid-template-columns:1fr 1fr 1fr; }
@media(max-width:900px){ .spov-programs.spov-n3 { grid-template-columns:1fr 1fr; } }
@media(max-width:640px){ .spov-programs.spov-n2, .spov-programs.spov-n3 { grid-template-columns:1fr; } }
.spov-card { background:var(--ivory-2); border:1px solid var(--line); border-left:4px solid var(--aubergine); border-radius:10px; padding:1.1rem 1.4rem; box-shadow:var(--shadow-sm); }
.spov-card-top { margin-bottom:.6rem; padding-bottom:.6rem; border-bottom:1px solid var(--line); }
.spov-card-name { display:block; font-family:'Cormorant Infant',Georgia,serif; font-size:1.25rem; font-weight:600; color:var(--aubergine); line-height:1.2; }
.spov-card-sub { display:block; font-size:.82rem; color:var(--muted); font-style:italic; margin-top:.15rem; }
.spov-card-phone { margin-top:1rem; padding-top:.85rem; border-top:1px solid var(--line); font-size:.95rem; color:var(--ink); }
.spov-card-phone a { color:var(--gold-deep); font-weight:600; }
.spov-note-foot { max-width:1080px; margin:1.5rem auto 0; text-align:center; }

/* ─── Ierarhie canonică (în contact) ─── */
.ierarhie { list-style:none; counter-reset:ier; margin:.25rem 0 0; padding:0; }
.ierarhie li { counter-increment:ier; position:relative; padding:.45rem 0 .45rem 2rem; font-size:.95rem; line-height:1.45; color:var(--ink); border-left:2px solid var(--line); margin-left:.4rem; }
.ierarhie li::before { content:counter(ier); position:absolute; left:-0.85rem; top:.5rem; width:1.5rem; height:1.5rem; background:var(--aubergine); color:#f3ead8; border-radius:50%; font-size:.72rem; font-weight:700; display:flex; align-items:center; justify-content:center; font-family:'Inter','Source Sans 3',sans-serif; }
.ierarhie li:last-child { border-left-color:transparent; }
.ierarhie li span { color:var(--ink-soft); font-size:.88rem; }

/* ─── Submeniu preoți (bară după hero) ─── */
.preoti-bar { background:var(--ivory-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:2.2rem 0; }
.preoti-head { text-align:center; margin-bottom:1.3rem; }
.preoti-eyebrow { display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.2em; color:var(--gold-deep); font-weight:600; font-family:'Inter','Source Sans 3',sans-serif; }
.preoti-title { font-family:'Cormorant Infant',Georgia,serif; font-size:1.7rem; color:var(--ink); margin:.2rem 0 0; font-weight:600; }
.preoti-buttons { display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; max-width:1080px; margin:0 auto; }
.preot-btn { display:flex; align-items:center; gap:.7rem; text-decoration:none; background:#fff; border:1px solid var(--line); border-radius:10px; padding:.6rem .9rem; min-width:210px; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; box-shadow:var(--shadow-sm); }
.preot-btn:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); border-color:var(--gold); }
.preot-btn .pb-photo { flex:0 0 auto; width:44px; height:44px; border-radius:50%; background-size:cover; background-position:center top; border:2px solid var(--gold); }
.preot-btn .pb-text { display:flex; flex-direction:column; gap:.1rem; }
.preot-btn .pb-role { font-size:.66rem; text-transform:uppercase; letter-spacing:.12em; color:var(--gold-deep); font-weight:600; font-family:'Inter','Source Sans 3',sans-serif; }
.preot-btn .pb-name { font-family:'Cormorant Infant',Georgia,serif; font-size:1.05rem; color:var(--ink); font-weight:600; line-height:1.15; }
.preot-btn-paroh { border-left:4px solid var(--aubergine); }
.preot-btn-paroh .pb-role { color:var(--aubergine); }

/* ─── Pagina de prezentare preot ─── */
.preot-single { padding:3rem 0 4rem; }
.preot-hero { display:flex; gap:2rem; align-items:center; margin:1rem 0 2rem; flex-wrap:wrap; }
.preot-hero-photo { flex:0 0 auto; }
.preot-hero-photo img { width:200px; height:240px; object-fit:cover; object-position:top center; border-radius:12px; border:1px solid var(--line); box-shadow:var(--shadow-md); }
.preot-hero-info { flex:1; min-width:240px; }
.preot-hero-info h1 { font-family:'Cormorant Infant',Georgia,serif; font-size:2.4rem; color:var(--ink); margin:.2rem 0 .4rem; line-height:1.1; }
.preot-zone { color:var(--aubergine); font-size:1.05rem; margin:.3rem 0 .6rem; }
.preot-contacts { display:flex; flex-wrap:wrap; gap:.6rem 1.2rem; }
.preot-contacts a { color:var(--gold-deep); font-weight:600; text-decoration:none; }
.preot-bio { color:var(--ink-2); font-size:1.02rem; line-height:1.75; margin:1.5rem 0; }
.preot-bio p { margin:0 0 1rem; }
.preot-cols { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin:2rem 0; }
@media(max-width:680px){ .preot-cols { grid-template-columns:1fr; } }
.preot-box { background:var(--ivory-2); border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:10px; padding:1.1rem 1.4rem; }
.preot-box h3 { font-family:'Cormorant Infant',Georgia,serif; font-size:1.25rem; color:var(--aubergine); margin:0 0 .6rem; }
.preot-addr, .preot-prog { color:var(--ink-2); font-size:.95rem; line-height:1.6; }
.preot-map { margin-top:2rem; }
.preot-map h3 { font-family:'Cormorant Infant',Georgia,serif; font-size:1.35rem; color:var(--ink); margin:0 0 .8rem; }
.preot-map-el { width:100%; height:380px; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-sm); display:block; z-index:0; }
.preot-map-link { display:inline-block; margin-top:.6rem; color:var(--gold-deep); font-weight:600; text-decoration:none; font-size:.92rem; }

/* ─── Capela mortuară · Trapeza ─── */
.capela-section { padding:3.5rem 0; }
.capela-grid { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:1.8rem; align-items:start; }
@media(max-width:760px){ .capela-grid { grid-template-columns:1fr; } }
.capela-card { background:#fff; border:1px solid var(--line); border-left:4px solid var(--gold); border-radius:12px; padding:1.5rem 1.7rem; box-shadow:var(--shadow-sm); }
.capela-card h3 { font-family:'Cormorant Infant',Georgia,serif; font-size:1.45rem; color:var(--aubergine); margin:0 0 .6rem; font-weight:600; }
.capela-card p { color:var(--ink-2); font-size:.97rem; line-height:1.6; margin:0 0 1rem; }
.capela-card em { color:var(--aubergine); font-style:italic; }
.capela-contact { padding-top:.9rem; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:.1rem; }
.capela-resp { font-size:.68rem; text-transform:uppercase; letter-spacing:.12em; color:var(--gold-deep); font-weight:600; font-family:'Inter','Source Sans 3',sans-serif; }
.capela-contact strong { font-family:'Cormorant Infant',Georgia,serif; font-size:1.1rem; color:var(--ink); }
.capela-contact a { color:var(--gold-deep); font-weight:600; font-size:1.05rem; text-decoration:none; }
.capela-gallery { margin-top:1.1rem; display:grid; grid-template-columns:repeat(auto-fill,minmax(90px,1fr)); gap:.55rem; }
.capela-photo { display:block; aspect-ratio:1/1; background-size:cover; background-position:center; border-radius:8px; border:1px solid var(--line); box-shadow:var(--shadow-sm); transition:transform .2s ease; }
.capela-photo:hover { transform:scale(1.04); }

/* ─── Proiecte filantropice ─── */
.proiecte-section { background:var(--ivory); padding:4rem 0; }
.proiecte-list { max-width:1080px; margin:0 auto; display:flex; flex-direction:column; gap:2.5rem; }
.proiect-card { background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-sm); overflow:hidden; display:grid; grid-template-columns:1fr; transition:transform .25s ease, box-shadow .25s ease; }
.proiect-card.has-img { grid-template-columns:minmax(280px, 400px) 1fr; }
@media(max-width:760px){ .proiect-card.has-img { grid-template-columns:1fr; } }
.proiect-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.proiect-img { background-size:cover; background-position:center; min-height:240px; border-right:1px solid var(--line); }
@media(max-width:760px){ .proiect-img { border-right:none; border-bottom:1px solid var(--line); min-height:200px; } }
.proiect-body { padding:1.75rem 2rem; }
.proiect-badge { display:inline-block; font-size:.7rem; text-transform:uppercase; letter-spacing:.12em; padding:.3rem .7rem; border-radius:99px; font-weight:600; margin-bottom:.85rem; font-family:'Inter','Source Sans 3',sans-serif; }
.proiect-badge-active { background:rgba(195,154,69,.15); color:var(--gold-deep); border:1px solid rgba(195,154,69,.35); }
.proiect-badge-done { background:rgba(92,42,58,.1); color:var(--aubergine); border:1px solid rgba(92,42,58,.25); }
.proiect-body h3 { font-family:'Cormorant Infant',Georgia,serif; font-size:1.65rem; line-height:1.25; color:var(--ink); margin:0 0 .8rem; font-weight:600; }
.proiect-content { color:var(--ink-2); font-size:1rem; line-height:1.65; }
.proiect-content p { margin:0 0 .8rem; }
.proiect-content p:last-child { margin-bottom:0; }
.proiect-content em { font-style:italic; color:var(--aubergine); }
.proiect-content strong { font-weight:600; color:var(--ink); }
.proiect-contact { margin-top:1.25rem; padding-top:1.1rem; border-top:1px solid var(--line); display:flex; flex-wrap:wrap; gap:.65rem 1.25rem; align-items:center; }
.proiect-tel, .proiect-email { color:var(--gold-deep); font-weight:600; font-size:.95rem; text-decoration:none; padding:.4rem .9rem; border:1px solid rgba(195,154,69,.4); border-radius:99px; background:rgba(195,154,69,.05); transition:background .2s ease; }
.proiect-tel:hover, .proiect-email:hover { background:rgba(195,154,69,.15); }
.proiect-gallery { margin-top:1.25rem; display:grid; grid-template-columns:repeat(auto-fill,minmax(110px,1fr)); gap:.6rem; }
.proiect-gallery-item { display:block; aspect-ratio:1/1; background-size:cover; background-position:center; border-radius:8px; border:1px solid var(--line); box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease; }
.proiect-gallery-item:hover { transform:translateY(-2px) scale(1.02); box-shadow:var(--shadow-md); }
@media(max-width:560px){ .proiect-gallery { grid-template-columns:repeat(3,1fr); } }

/* ─── Evenimente (arhivă afișe trecute & viitoare) ─── */
.evenimente-section { background:var(--ivory); padding:4rem 0; }
.evenimente-grid { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:2rem; }
.eveniment-card { background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; transition:transform .25s ease, box-shadow .25s ease; }
.eveniment-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.eveniment-poster { position:relative; display:block; width:100%; aspect-ratio:3/4; background-size:cover; background-position:top center; border-bottom:1px solid var(--line); }
.eveniment-poster.eveniment-poster-wide { aspect-ratio:4/3; background-size:contain; background-repeat:no-repeat; background-position:center; background-color:#3f1c28; }
.eveniment-badge { position:absolute; top:.7rem; left:.7rem; font-size:.66rem; text-transform:uppercase; letter-spacing:.1em; font-weight:700; padding:.3rem .65rem; border-radius:99px; font-family:'Inter','Source Sans 3',sans-serif; background:rgba(195,154,69,.95); color:#3a2a12; box-shadow:var(--shadow-sm); }
.eveniment-card.is-past .eveniment-badge { background:rgba(92,42,58,.92); color:#fff; }
.eveniment-body { padding:1.1rem 1.3rem 1.4rem; }
.eveniment-date { font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:var(--gold-deep); font-weight:600; font-family:'Inter','Source Sans 3',sans-serif; margin-bottom:.3rem; }
.eveniment-body h3 { font-family:'Cormorant Infant',Georgia,serif; font-size:1.35rem; line-height:1.25; color:var(--ink); margin:0 0 .35rem; font-weight:600; }
.eveniment-loc { font-size:.9rem; color:var(--aubergine); font-style:italic; margin-bottom:.5rem; }
.eveniment-desc { color:var(--ink-2); font-size:.92rem; line-height:1.55; }
.eveniment-desc p { margin:0 0 .6rem; }
.eveniment-gallery { margin-top:.9rem; display:grid; grid-template-columns:repeat(auto-fill,minmax(64px,1fr)); gap:.4rem; }
.eveniment-gphoto { display:block; aspect-ratio:3/4; background-size:cover; background-position:center; border-radius:6px; border:1px solid var(--line); transition:transform .2s ease; }
.eveniment-gphoto:hover { transform:scale(1.05); }
.eveniment-desc p { margin:0 0 .5rem; }
