:root {
    --cream: #F5F8FA;
    --warm-white: #FAFCFD;
    --sand: #E2EBF0;
    --clay: #2A7EA6;
    --terracotta: #1A5F80;
    --deep-brown: #0D2E3F;
    --forest: #1B6B8A;
    --forest-light: #3A8FAD;
    --gold: #E8A84C;
    --text-dark: #0D2533;
    --text-mid: #2D5165;
    --text-light: #5A8099;
    --border: rgba(42,126,166,0.18);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
  }

  /* ---- NAV ---- */
  nav {
    background: var(--deep-brown);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 64px;
  }

  .nav-brand {
    font-family: 'Playfair Display', serif;
    color: #D2E6F2;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(210,230,242,0.8);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--clay);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--terracotta) !important; color: white !important; }

  /* ---- HERO ---- */
  #hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }

  .hero-slide.active { opacity: 1; }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 30, 0.55);
    z-index: 1;
  }

  .hero {
    background: var(--deep-brown);
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.09;
    z-index: 2;
    background-image:
      radial-gradient(circle at 20% 50%, #4AAECC 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, #E8A84C 0%, transparent 40%);
  }

  /* Decorative cross */
  .hero-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
    width: 500px;
    height: 500px;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
  }

  .hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 700;
    margin-bottom: 1.2rem;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--warm-white);
    line-height: 1.18;
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--clay);
  }

  .hero-sub {
    font-size: 1.1rem;
    color: rgba(210,230,242,0.8);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--clay);
    color: white;
    padding: 14px 32px;
    border: none;
    outline: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--terracotta); transform: translateY(-1px); }

  .btn-outline {
    border: 1.5px solid rgba(210,230,242,0.45);
    color: rgba(210,230,242,0.85);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* Secondary button — for use on light backgrounds alongside btn-primary */
  .btn-secondary {
    background: transparent;
    border: 1.5px solid var(--clay);
    color: var(--clay);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { background: var(--clay); color: white; }

  .about-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }

  /* Founded badge */
  .founded-badge {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 8px 20px;
    border: 1px solid rgba(210,230,242,0.18);
    border-radius: 40px;
    font-size: 0.78rem;
    color: rgba(210,230,242,0.5);
    letter-spacing: 0.1em;
  }

  /* ---- SECTION SHARED ---- */
  section { padding: 5rem 5%; text-align: center; }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .section-body {
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
    margin: 0 auto;
  }

  /* ---- SERVICES STRIP ---- */
  .services-strip {
    background: var(--forest);
    padding: 3rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .service-item {
    color: white;
  }

  .service-item .s-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .service-item .s-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.2rem;
  }

  .service-item .s-time {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
  }

  .s-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    background: #FF0000;
    color: white;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.1s;
  }
  .s-yt-btn:hover { background: #cc0000; transform: translateY(-1px); }

  .s-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 4px;
    border: 1.5px solid rgba(232,168,76,0.5);
    transition: border-color 0.2s, background 0.2s, transform 0.1s;
  }
  .s-visit-btn:hover { border-color: var(--gold); background: rgba(232,168,76,0.1); transform: translateY(-1px); }

  .service-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
  }

  /* ---- ABOUT ---- */
  .about-section {
    background: var(--warm-white);
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--clay);
    line-height: 1.5;
    border-left: 3px solid var(--clay);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
  }

  .about-visual {
    background: var(--sand);
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .about-visual-inner {
    position: absolute;
    inset: 0;
    text-align: center;
    color: var(--clay);
  }

  .about-visual-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
  }

  .about-visual-placeholder svg {
    width: 120px;
    height: 120px;
    fill: var(--clay);
    opacity: 0.3;
  }

  .about-slideshow {
    position: absolute;
    inset: 0;
  }

  .about-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }

  .about-slide.active { opacity: 1; }

  .about-stat {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--deep-brown);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
  }

  .about-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clay);
    line-height: 1;
  }

  .about-stat .lbl {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
  }

  /* ---- EVENTS ---- */
  .events-section {
    background: var(--cream);
    text-align: center;
  }

  .events-header {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .event-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 500px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.15s;
  }

  .event-card:hover {
    box-shadow: 0 4px 20px rgba(60,30,10,0.08);
    transform: translateY(-2px);
  }

  .event-date-box {
    background: var(--clay);
    color: white;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    min-width: 54px;
    flex-shrink: 0;
  }

  .event-date-box .month {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    opacity: 0.85;
  }

  .event-date-box .day {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .event-date-box.recurring {
    min-width: 62px;
    max-width: 72px;
  }
  .event-date-box.recurring .month {
    font-size: 0.6rem;
    opacity: 0.75;
  }
  .event-date-box.recurring .day {
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    word-break: break-word;
  }

  .event-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
  }

  .event-info .time {
    font-size: 0.82rem;
    color: var(--clay);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
  }

  .event-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
  }

  .cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--clay);
    border: 1.5px solid rgba(162,82,49,0.4);
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.1s;
    white-space: nowrap;
  }
  .cal-btn:hover { border-color: var(--clay); background: rgba(162,82,49,0.07); transform: translateY(-2px); }

  /* ---- GALLERY MODAL ---- */
  #gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(5,18,28,0.88);
    backdrop-filter: blur(4px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .gallery-modal-box {
    background: #0F2B3D;
    border: 1px solid rgba(90,160,200,0.3);
    border-radius: 14px;
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    max-height: 780px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalIn 0.2s ease;
  }

  .gallery-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(90,160,200,0.15);
    flex-shrink: 0;
  }

  .gallery-modal-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
  }

  .gallery-thumb {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .gallery-thumb:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }

  .gallery-thumb-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    color: white;
    font-size: 0.78rem;
    padding: 1.5rem 0.6rem 0.5rem;
  }

  /* Lightbox */
  #lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
  }

  #lightbox-img {
    max-width: min(90vw, 900px);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    animation: modalIn 0.18s ease;
  }

  .lightbox-caption {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    text-align: center;
    min-height: 1.2em;
  }

  .lightbox-close {
    position: fixed;
    top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.12);
    border: none; color: white;
    font-size: 1.1rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.28); }

  .lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none; color: white;
    font-size: 2.5rem; line-height: 1;
    width: 48px; height: 72px;
    border-radius: 6px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

  /* Calendar modal */
  #calendar-modal {
    position: fixed;
    inset: 0;
    background: rgba(5,18,28,0.85);
    backdrop-filter: blur(4px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .cal-modal-box {
    background: #0F2B3D;
    border: 1px solid rgba(90,160,200,0.3);
    border-radius: 14px;
    width: 100%;
    max-width: 860px;
    height: 90vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalIn 0.2s ease;
  }

  .cal-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(90,160,200,0.15);
    flex-shrink: 0;
  }

  .cal-modal-body {
    flex: 1;
    padding: 1.25rem;
    overflow: hidden;
  }

  /* ---- STAFF ---- */
  .staff-section {
    background: var(--deep-brown);
    padding: 5rem 5%;
  }

  .staff-section .section-label { color: var(--gold); }
  .staff-section .section-title { color: #D2E6F2; }
  .staff-section .section-body { color: rgba(210,230,242,0.65); }

  .staff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .staff-card {
    background: #163A50;
    border: 1px solid rgba(90,160,200,0.25);
    border-radius: 10px;
    overflow: hidden;
    width: 220px;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
  }

  .staff-card:hover { background: #1C4A63; border-color: rgba(90,160,200,0.45); transform: translateY(-3px); }

  .staff-avatar {
    background: #1B4F6E;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(90,160,200,0.2);
    overflow: hidden;
  }

  .staff-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .staff-avatar-initials {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #7DC4E0;
    font-weight: 600;
  }

  /* About modal */
  #about-modal {
    position: fixed;
    inset: 0;
    background: rgba(5,18,28,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
  }

  .about-modal-box {
    background: #0F2B3D;
    border: 1px solid rgba(90,160,200,0.3);
    border-radius: 14px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.2s ease;
  }

  .about-modal-header {
    padding: 2rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(90,160,200,0.15);
  }

  .about-modal-title {
    font-family: 'Playfair Display', serif;
    color: #D8EEFA;
    font-size: 1.7rem;
    margin: 0;
  }

  .about-modal-body {
    padding: 1.5rem 2rem 2rem;
  }

  .about-modal-section {
    margin-bottom: 1.5rem;
  }

  .about-modal-section:last-child { margin-bottom: 0; }

  .about-modal-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .about-modal-section p {
    font-size: 0.95rem;
    color: rgba(180,220,240,0.8);
    line-height: 1.7;
    margin: 0;
  }

  /* History modal */
  #history-modal {
    position: fixed;
    inset: 0;
    background: rgba(5,18,28,0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
  }

  .history-modal-box {
    background: #0F2B3D;
    border: 1px solid rgba(90,160,200,0.3);
    border-radius: 14px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.2s ease;
  }

  .history-timeline {
    margin: 0 0 1.5rem;
    border-left: 2px solid rgba(185,145,75,0.3);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .history-timeline-item {
    position: relative;
  }

  .history-timeline-item::before {
    content: '';
    position: absolute;
    left: -1.85rem;
    top: 0.35rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #0F2B3D;
    box-shadow: 0 0 0 1px var(--gold);
  }

  .history-timeline-year {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
  }

  .history-timeline-text {
    font-size: 0.93rem;
    color: rgba(180,220,240,0.8);
    line-height: 1.65;
  }

  .history-figures-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .history-figure-item {
    padding-left: 1rem;
    border-left: 2px solid rgba(185,145,75,0.35);
  }

  .history-figure-name {
    font-weight: 700;
    color: #D8EEFA;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .history-figure-desc {
    font-size: 0.9rem;
    color: rgba(180,220,240,0.75);
    line-height: 1.6;
  }

  sup.history-cite {
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0.8;
    margin-left: 1px;
    vertical-align: super;
  }

  .history-citations {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(90,160,200,0.15);
  }

  .history-citations-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(180,220,240,0.4);
    margin: 0 0 0.75rem;
  }

  .history-citations-list {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .history-citations-list li {
    font-size: 0.78rem;
    color: rgba(180,220,240,0.45);
    line-height: 1.5;
  }

  .history-citations-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .history-citations-list a:hover { color: var(--gold); }

  .history-news-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .history-news-item {
    background: rgba(90,160,200,0.06);
    border: 1px solid rgba(90,160,200,0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }
  .history-news-item:hover {
    background: rgba(90,160,200,0.12);
    border-color: rgba(185,145,75,0.4);
  }

  .history-news-source {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .history-news-date {
    font-size: 0.72rem;
    color: rgba(180,220,240,0.45);
  }

  .history-news-headline {
    font-size: 0.9rem;
    color: rgba(180,220,240,0.8);
    line-height: 1.5;
  }

  /* Staff modal */
  #staff-modal {
    position: fixed;
    inset: 0;
    background: rgba(5,18,28,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
  }

  .staff-modal-box {
    background: #0F2B3D;
    border: 1px solid rgba(90,160,200,0.3);
    border-radius: 14px;
    max-width: 480px;
    width: 100%;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: modalIn 0.2s ease;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.94) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  .staff-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    background: rgba(0,0,0,0.35);
    border: none;
    color: rgba(210,230,242,0.7);
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.15s, color 0.15s;
  }

  .staff-modal-close:hover { background: rgba(0,0,0,0.6); color: #fff; }

  .staff-modal-photo-wrap {
    height: 260px;
    min-height: 160px;
    flex-shrink: 0;
    background: #1B4F6E;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  #staff-modal-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .staff-modal-initials {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #7DC4E0;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .staff-modal-body {
    padding: 1.5rem 1.75rem 2rem;
    overflow-y: auto;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
  }

  .staff-modal-role {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .staff-modal-name {
    font-family: 'Playfair Display', serif;
    color: #D8EEFA;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .staff-modal-bio {
    font-size: 0.92rem;
    color: rgba(180,220,240,0.75);
    line-height: 1.7;
  }

  .staff-modal-bio * {
    color: inherit !important;
    background-color: transparent !important;
    font-family: inherit !important;
    font-size: inherit !important;
  }

  @media (max-height: 600px) {
    .staff-modal-photo-wrap {
      height: 160px;
      min-height: 120px;
    }
  }

  .staff-info {
    padding: 1.1rem 1.25rem 1.25rem;
  }

  .staff-info h3 {
    font-family: 'Playfair Display', serif;
    color: #D8EEFA;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }

  .staff-info .role {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .staff-info p {
    font-size: 0.86rem;
    color: rgba(180,220,240,0.65);
    line-height: 1.6;
  }

  .staff-card .staff-info::after {
    content: 'View profile →';
    display: block;
    font-size: 0.72rem;
    color: rgba(90,160,200,0.6);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
  }

  .staff-card:hover .staff-info::after {
    color: var(--gold);
  }

  /* ---- SERMONS ---- */
  .sermons-section {
    background: #0D2535;
    padding: 5rem 5%;
    text-align: center;
  }

  .sermons-section .section-label { color: var(--gold); }
  .sermons-section .section-title { color: #D2E6F2; }
  .sermons-section .section-body  { color: rgba(210,230,242,0.6); margin: 0 auto 3rem; }

  .sermons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    text-align: left;
  }

  .sermon-card {
    background: #163A50;
    border: 1px solid rgba(90,160,200,0.2);
    border-radius: 10px;
    padding: 1.5rem;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
  }

  .sermon-card:hover { background: #1C4A63; border-color: rgba(90,160,200,0.4); transform: translateY(-3px); }

  .sermon-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .sermon-date {
    font-size: 0.72rem;
    color: rgba(180,220,240,0.5);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .sermon-speaker {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .sermon-title {
    font-family: 'Playfair Display', serif;
    color: #D8EEFA;
    font-size: 1.1rem;
    line-height: 1.4;
    flex: 1;
  }

  .sermon-listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.5rem;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: opacity 0.15s;
  }

  .sermon-listen-btn:hover { opacity: 0.75; }

  .sermon-no-link {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: rgba(180,220,240,0.35);
    font-style: italic;
  }

  .sermon-archive-link {
    background: transparent;
    border: 1px solid rgba(90,160,200,0.4);
    color: rgba(180,220,240,0.7);
    font-size: 0.82rem;
    padding: 0.55rem 1.4rem;
    border-radius: 20px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .sermon-archive-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(185,145,75,0.08);
  }

  /* ---- SERMON ARCHIVE MODAL ---- */
  #sermon-archive-modal {
    position: fixed;
    inset: 0;
    background: rgba(5,18,28,0.85);
    backdrop-filter: blur(4px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .sermon-archive-box {
    background: #0F2B3D;
    border: 1px solid rgba(90,160,200,0.3);
    border-radius: 14px;
    width: 100%;
    max-width: 900px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalIn 0.2s ease;
  }

  .sermon-archive-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(90,160,200,0.15);
    flex-shrink: 0;
  }

  .sermon-archive-title {
    font-family: 'Playfair Display', serif;
    color: #D2E6F2;
    font-size: 1.6rem;
    margin: 0;
  }

  .sermon-archive-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem 2rem;
  }

  .archive-year-group {
    margin-bottom: 2rem;
  }

  .archive-year-label {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(185,145,75,0.25);
    padding-bottom: 0.4rem;
    margin: 0 0 1.25rem;
  }

  .archive-month-group {
    margin-bottom: 1.5rem;
  }

  .archive-month-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(180,220,240,0.5);
    margin: 0 0 0.75rem;
  }

  .archive-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
  }

  /* ---- GIVE ---- */
  .give-section {
    background: linear-gradient(135deg, #1A5F80 0%, #0D2E3F 100%);
    text-align: center;
    padding: 5rem 5%;
  }

  .give-section .section-label { color: rgba(255,255,255,0.6); }
  .give-section .section-title { color: white; }
  .give-section .section-body { color: rgba(255,255,255,0.75); margin: 0 auto 2.5rem; }

  .give-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .give-amount {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.15s;
  }

  .give-amount:hover, .give-amount.active {
    background: rgba(255,255,255,0.25);
  }

  .give-btn {
    display: inline-block;
    background: white;
    color: var(--terracotta);
    padding: 16px 44px;
    border-radius: 4px;
    margin-top: 0;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.1s, opacity 0.2s;
    margin-top: 1rem;
  }
  .give-btn:hover { transform: translateY(-2px); opacity: 0.95; color: var(--terracotta); }

  /* ---- CONTACT ---- */
  .contact-section {
    background: var(--warm-white);
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    background: var(--sand);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
  }

  .contact-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
  }

  .contact-item p, .contact-item a {
    font-size: 0.9rem;
    color: var(--text-mid);
    text-decoration: none;
    line-height: 1.6;
  }

  .contact-item a:hover { color: var(--clay); }

  .map-placeholder {
    background: var(--sand);
    border-radius: 8px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .map-placeholder:hover { opacity: 0.85; }

  .map-placeholder p {
    font-size: 0.85rem;
    color: var(--text-light);
  }

  .map-placeholder .map-pin {
    font-size: 2.5rem;
    color: var(--terracotta);
  }

  /* ---- FOOTER ---- */
  footer {
    background: #071C28;
    padding: 3rem 5% 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-brand {
    font-family: 'Playfair Display', serif;
    color: #D2E6F2;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .footer-brand span {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: rgba(210,230,242,0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 4px;
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.82rem;
    color: rgba(210,230,242,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(210,230,242,0.22);
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }

  /* ---- ADMIN PANEL ---- */
  #admin-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--deep-brown);
    color: var(--sand);
    border: none;
    padding: 12px 20px;
    border-radius: 40px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
  }

  #admin-toggle:hover { background: var(--terracotta); }

  @media (max-width: 768px) {
    #admin-toggle {
      bottom: 20px;
      right: 16px;
      padding: 16px 24px;
      font-size: 0.95rem;
      box-shadow: 0 6px 24px rgba(0,0,0,0.45);
    }
  }

  #admin-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(30,14,6,0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  #admin-panel.open { display: flex; }

  .admin-modal {
    background: var(--warm-white);
    border-radius: 12px;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
  }

  .admin-header {
    background: var(--deep-brown);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
  }

  .admin-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--sand);
    font-size: 1.15rem;
    font-weight: 600;
  }

  .admin-header p {
    font-size: 0.78rem;
    color: rgba(232,223,208,0.5);
    margin-top: 2px;
  }

  .admin-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--sand);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
  }

  .admin-close:hover { background: rgba(255,255,255,0.2); }

  .admin-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 0 1.75rem;
    background: white;
    flex-shrink: 0;
  }

  .admin-tab {
    padding: 1rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
    transition: color 0.15s;
    white-space: nowrap;
  }

  .admin-tab.active {
    color: var(--clay);
    border-bottom-color: var(--clay);
  }

  .admin-body {
    padding: 1.75rem;
    flex: 1;
  }

  .tab-pane { display: none; }
  .tab-pane.active { display: block; }

  /* Form elements */
  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.45rem;
  }

  .form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.15s;
    outline: none;
  }

  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--clay);
  }

  .form-group textarea { min-height: 80px; resize: vertical; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .admin-save-btn {
    background: var(--clay);
    color: white;
    border: none;
    padding: 11px 28px;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 0.5rem;
  }

  .admin-save-btn:hover { background: var(--terracotta); }

  .event-entry {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
  }

  .entry-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.75rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.15s;
  }

  .entry-remove:hover { background: #fee; border-color: #fcc; color: #c33; }

  .add-entry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px dashed var(--border);
    color: var(--clay);
    padding: 9px 18px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    margin-top: 0.5rem;
  }

  .add-entry-btn:hover { border-color: var(--clay); background: rgba(196,149,106,0.06); }

  /* Quill rich editor */
  .rich-editor .ql-toolbar { border-radius: 6px 6px 0 0; border-color: var(--border); background: #fafafa; }
  .rich-editor .ql-container { border-radius: 0 0 6px 6px; border-color: var(--border); font-family: 'Lato', sans-serif; font-size: 0.92rem; min-height: 80px; }
  .rich-editor .ql-editor { min-height: 80px; }

  /* Photo upload */
  .photo-upload-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .photo-preview {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
  }

  .photo-upload-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .reorder-btn {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 3px;
    width: 26px; height: 22px;
    font-size: 0.65rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .reorder-btn:hover:not([disabled]) { background: var(--border); }
  .reorder-btn[disabled] { opacity: 0.3; cursor: default; }

  .upload-photo-btn {
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
  }

  .upload-photo-btn:hover { border-color: var(--clay); background: var(--cream); }

  .upload-status {
    font-size: 0.8rem;
    font-weight: 600;
  }

  .upload-status.uploading { color: var(--text-light); }
  .upload-status.success   { color: #2a7d4f; }
  .upload-status.error     { color: #c33; }

  .save-toast {
    position: fixed;
    bottom: 80px;
    right: 24px;
    background: var(--forest);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .save-toast.show { opacity: 1; }

  /* Hamburger button */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sand);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile dropdown menu */
  .nav-mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--deep-brown);
    z-index: 999;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .nav-mobile-menu.open { display: flex; }

  .nav-mobile-menu a {
    padding: 0.85rem 1.5rem;
    color: rgba(210,230,242,0.8);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.15s;
  }

  .nav-mobile-menu a:hover { color: var(--gold); }
  .nav-mobile-menu .nav-mobile-cta { color: var(--gold); }

  /* Responsive */
  @media (max-width: 768px) {
    nav { padding: 0 1.2rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .about-section, .contact-section { grid-template-columns: 1fr; }
    .service-divider { display: none; }
    .services-strip { gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }

    #gallery-modal { padding: 0; align-items: stretch; }
    .gallery-modal-box { border-radius: 0; border: none; height: 100dvh; max-height: none; }
    .gallery-modal-header { padding: 1rem 1.25rem; }
    .gallery-modal-header .section-label { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .lightbox-prev, .lightbox-next { width: 36px; height: 52px; font-size: 1.8rem; }

    #calendar-modal { padding: 0; align-items: stretch; }
    .cal-modal-box {
      border-radius: 0;
      border: none;
      height: 100dvh;
      max-height: none;
    }
    .cal-modal-header { padding: 1rem 1.25rem; }
    .cal-modal-header .about-modal-title { font-size: 1.2rem; }
    .cal-modal-header .section-label { display: none; }
    .cal-modal-body { padding: 0.75rem; }
    .cal-open-link { display: inline-flex !important; }

    #history-modal { padding: 0; align-items: stretch; }
    .history-modal-box { border-radius: 0; border: none; max-height: 100dvh; }

    #sermon-archive-modal { padding: 0; align-items: stretch; }
    .sermon-archive-box { border-radius: 0; border: none; max-height: 100dvh; height: 100dvh; }
    .sermon-archive-header { padding: 1rem 1.25rem; }
    .sermon-archive-title { font-size: 1.2rem; }
    .sermon-archive-header .section-label { display: none; }
    .sermon-archive-body { padding: 1rem 1.25rem 1.5rem; }
    .archive-cards { grid-template-columns: 1fr; }
  }
