*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #f4f7f2 0%, #eef3ea 100%);
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero .container,
.intro .container,
.verse-section .container,
.events-section .container,
.news-section .container,
.features .container {
    position: relative;
    z-index: 1;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(120, 130, 120, 0.16);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    min-height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 74px;
    width: auto;
    display: block;
}


/* Main */
.site-main {
    padding: 0;
}

/* Notice */
.site-notice {
    background: linear-gradient(90deg, #a3742b, #c89b3c);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-notice p {
    margin: 0;
}

/* Hero */
.hero {
    background:
        linear-gradient(rgba(20, 28, 18, 0.30), rgba(20, 28, 18, 0.46)),
        url('/assets/img/camp.jpg') center center / cover no-repeat;
    min-height: 620px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 88px;
    background: radial-gradient(120% 90px at 50% 0, transparent 58%, #fbf8f2 59%);
    pointer-events: none;
}

.hero-overlay {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 60px 0 96px;
}

.hero-shell {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.hero-panel {
    max-width: 620px;
    background: rgba(255, 248, 236, 0.14);
    border: 1px solid rgba(255, 240, 215, 0.22);
    border-radius: 22px;
    padding: 34px 34px 32px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(3px);
    color: #fff;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f0cf8a;
}

.hero-panel h1,
.hero-content h1 {
    font-size: 60px;
    line-height: 1.04;
    margin: 0 0 14px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.hero-tagline {
    font-size: 24px;
    line-height: 1.35;
    margin: 0 0 16px;
    color: #fff4dc;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 24px;
    color: rgba(255, 250, 242, 0.95);
    max-width: 54ch;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    display: inline-block;
    background: #2f5d3a;
    color: #ffffff !important;   /* THIS is the key fix */
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: none;
}

.btn-primary:hover {
    background: #244a2e;
    color: #ffffff !important;
}


.btn-small {
    padding: 10px 14px;
    font-size: 14px;
}
/* ===== CLEAN BUTTON SYSTEM ===== */

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.btn:hover {
    transform: translateY(-1px);
}

/* Primary */
.btn-primary {
    background: #2f5d3a;
    color: #ffffff !important;
    border: none;
}

.btn-primary:hover {
    background: #244a2e;
}

/* Secondary */
.btn-secondary {
    background: #fff8ef;
    color: #2f5d3a;
    border: 1px solid #d8cbb3;
}

.btn-secondary:hover {
    background: #f7efdf;
}

/* Light */
.btn-light {
    background-color: #6fbf73;
    color: #ffffff;
    border: 1px solid #5aa85e;
}

.btn-light:hover {
    background-color: #5aa85e;
}

/* Small */
.btn-small {
    padding: 10px 14px;
    font-size: 14px;
}

/* Shared section styles */
.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0 0 8px;
    font-size: 38px;
    color: #2f5d3a;
}

.section-heading p {
    margin: 0;
    font-size: 17px;
    color: #666;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #a06a18;
}

.section-divider {
    width: 120px;
    height: 18px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 0;
}

.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 42px;
    height: 2px;
    background: #caa85c;
    z-index: 0;
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

.section-divider span {
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, #d8b56c 0%, #b8862f 70%);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}

/* Intro */
.intro {
    padding: 36px 0 22px;
    background: #fbf8f2;
}

.intro .container {
    max-width: 840px;
    text-align: center;
}

.intro h2 {
    font-size: 38px;
    margin-top: 0;
    margin-bottom: 14px;
    color: #2f5d3a;
}

.intro p {
    font-size: 18px;
    line-height: 1.68;
    margin-bottom: 14px;
}

.scripture {
    font-style: italic;
    color: #666;
    margin-top: 18px;
}

/* Verse */
.verse-section {
    background: linear-gradient(180deg, #f9f4e8 0%, #f3ead8 100%);
}

.verse-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 36px 30px;
    border-radius: 18px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(212, 160, 60, 0.45) 0%,
            rgba(255, 236, 200, 0.95) 35%,
            #f1e6cf 75%
        ),
        linear-gradient(180deg, #f8f1de 0%, #eadfbe 100%);
    border: 1px solid #d4c39a;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.verse-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.35),
        transparent 65%
    );
    pointer-events: none;
}

.verse-card h2 {
    font-size: 40px;
    color: #2b2a27;
}

.verse-reference {
    color: #8b5a12;
    font-weight: 700;
}

.verse-note {
    max-width: 680px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.65;
    color: #555;
}

/* Events */
.events-section {
    padding: 48px 0 56px;
    background: linear-gradient(180deg, #edf3ec 0%, #e4ece2 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card,
.feature--photo {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card {
    background: #fffdf9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e1d3;
}

.event-card:hover,
.feature--photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.event-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.event-body {
    padding: 22px;
}

.event-date {
    font-size: 13px;
    font-weight: 700;
    color: #a06a18;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.event-body h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #2f5d3a;
}

.event-body p {
    margin: 0;
    line-height: 1.62;
}

.event-link-wrap {
    margin-top: 14px;
}

/* News */
.news-section {
    padding: 48px 0 56px;
    background: #f8f4eb;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.news-card {
    background: #fff;
    border: 1px solid #e5e0d6;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.news-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #2c5e3f;
}

.news-card p,
.news-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.news-body p {
    margin: 0 0 14px;
}

.news-body a {
    color: #1d5fa7;
    font-weight: 600;
    text-decoration: underline;
}

.news-body a:hover {
    text-decoration: none;
}

/* Features */
.features {
    background: linear-gradient(180deg, #e7efe6 0%, #dde8dc 100%);
    padding: 48px 0 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 30px;

  justify-content: center;   /* ⭐ THIS centers the grid */
  margin-top: 30px;
}

.feature-grid--photos {
    align-items: stretch;
}

.feature--photo {
    background: #fffdfa;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: left;
    padding: 0;
    border: 1px solid #e5dccd;
}

.feature-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.feature-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 22px 20px 24px;
}

.feature-content h3 {
    margin: 0 0 10px;
    color: #2f5d3a;
    font-size: 22px;
}

.feature-content p {
    margin: 0;
    line-height: 1.65;
    color: #444;
}
.feature {
  text-align: left;
  max-width: 320px;
}


/* Curves */
.curve-cream,
.curve-green,
.curve-green-dark {
    position: relative;
}

.curve-cream::before,
.curve-green::before,
.curve-green-dark::before {
    z-index: 0;
}

.curve-green::before {
    content: "";
    position: absolute;
    top: -42px;
    left: 0;
    width: 100%;
    height: 42px;
    background: radial-gradient(120% 42px at 50% 42px, transparent 58%, #edf3ec 59%);
    pointer-events: none;
}

.curve-green-dark::before {
    content: "";
    position: absolute;
    top: -42px;
    left: 0;
    width: 100%;
    height: 42px;
    background: radial-gradient(120% 42px at 50% 42px, transparent 58%, #e7efe6 59%);
    pointer-events: none;
}

/* Small Page Hero */
.page-hero--small {
    background: linear-gradient(180deg, #f7f3ea 0%, #f1eadc 100%);
    padding: 44px 0 34px;
    text-align: center;
}

.page-hero--small h1 {
    margin: 0 0 10px;
    font-size: 46px;
    color: #2f5d3a;
}

.page-hero--small p {
    margin: 0;
    font-size: 18px;
    color: #666;
}

/* Availability */
.availability-section {
    background: linear-gradient(180deg, #edf3ec 0%, #e4ece2 100%);
    padding: 46px 0 64px;
}

.availability-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.availability-topbar h2 {
    margin: 0;
    font-size: 34px;
    color: #2f5d3a;
}

.month-nav {
    display: inline-block;
    text-decoration: none;
    background: #fffdfa;
    color: #2f5d3a;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #dccfb5;
    font-weight: 700;
}

.month-nav:hover {
    background: #f7efdf;
}

.availability-legend {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-weight: 600;
    color: #444;
}

.legend-box {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.legend-box.legend-event {
    background: #d9c2f0;
    border: 1px solid #b892de;
}

.legend-available {
    background: #fdfbf6;
}

.legend-pending {
    background: #f4d27d;
}

.legend-booked {
    background: #c96d5b;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.availability-grid--head {
    margin-bottom: 10px;
}

.calendar-head {
    text-align: center;
    font-weight: 700;
    color: #2f5d3a;
    padding: 10px 6px;
}

.calendar-cell {
    min-height: 92px;
    border-radius: 12px;
    padding: 10px;
    background: #fffdfa;
    border: 1px solid #e1d8c9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.calendar-cell--empty {
    background: transparent;
    border: none;
    box-shadow: none;
}

.calendar-cell--available {
    background: #fffdfa;
}

.calendar-cell--pending {
    background: linear-gradient(180deg, #f6ddb1 0%, #f1cf82 100%);
    border-color: #deb65e;
}

.calendar-cell--approved {
    background: linear-gradient(180deg, #d88b7b 0%, #c96d5b 100%);
    border-color: #b85c4d;
    color: #fff;
}

.calendar-cell.calendar-cell--event {
    background: #c5a3f5;
    border: 1px solid #c9afe6;
}

.calendar-cell.calendar-cell--event .calendar-day {
    color: #3a1f6b;
    font-weight: 700;
}

.calendar-cell.calendar-cell--event .calendar-event-label {
    color: #3a1f6b;
    font-weight: 600;
}

.calendar-day {
    font-size: 18px;
    font-weight: 700;
}

.calendar-event-label {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    word-break: break-word;
}

.calendar-cell--approved .calendar-event-label {
    color: rgba(255, 255, 255, 0.95);
}

.calendar-cell--pending .calendar-event-label {
    color: #5f4309;
}

.calendar-cell--available .calendar-event-label {
    color: #666;
}

.availability-note {
    margin-top: 24px;
    background: #fffdfa;
    border: 1px solid #e1d8c9;
    border-radius: 14px;
    padding: 18px 20px;
    color: #555;
    line-height: 1.65;
}

/* Rules */
.rules-section {
    background: linear-gradient(180deg, #f8f4eb 0%, #f3ecdf 100%);
    padding: 48px 0 64px;
}

.rules-card {
    max-width: 980px;
    margin: 0 auto;
    background: #fffdfa;
    border: 1px solid #e4d8c3;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    padding: 34px 30px;
}

.rules-intro {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
    margin: 0 0 18px;
}

.rules-group + .rules-group,
.rules-group + .rules-agreement {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eadfca;
}

.rules-group h2,
.rules-agreement h2 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #2f5d3a;
}

.rules-group ul {
    margin: 0;
    padding-left: 22px;
}

.rules-group li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}

.rules-agreement p {
    margin: 0;
    line-height: 1.7;
    color: #444;
    font-size: 17px;
}

/* Reserve */
.reserve-section {
    background: linear-gradient(180deg, #f8f4eb 0%, #f2eadb 100%);
    padding: 48px 0 64px;
}

.reserve-card {
    max-width: 980px;
    margin: 0 auto;
    background: #fffdfa;
    border: 1px solid #e4d8c3;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    padding: 34px 30px;
}

.reserve-form {
    display: block;
}


.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 700;
    color: #2f5d3a;
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea,




.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #b8862f;
    box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.12);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
    margin-bottom: 22px;
}

.form-input--small {
    max-width: 220px;
}

.rules-acknowledgement {
    margin-bottom: 24px;
    padding: 18px 20px;
    background: #fbf7ef;
    border: 1px solid #e7dcc7;
    border-radius: 14px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.65;
    color: #444;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.15);
}

.checkbox-label a {
    color: #8b5a12;
    font-weight: 700;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.reserve-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.form-message {
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 22px;
    line-height: 1.65;
}

.form-message ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.form-message--success {
    background: #edf6ed;
    border: 1px solid #bfd7bf;
    color: #244a2e;
}

.form-message--error {
    background: #fff1ef;
    border: 1px solid #e0b7b0;
    color: #8a2d1f;
}

/* Admin */
.admin-section {
    background: linear-gradient(180deg, #edf3ec 0%, #e7efe6 100%);
    padding: 48px 0 64px;
}

.admin-card {
    max-width: 1180px;
    margin: 0 auto;
    background: #fffdfa;
    border: 1px solid #e4d8c3;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    padding: 34px 30px;
}

.admin-card--narrow {
    max-width: 560px;
}

.admin-card h2 {
    margin-top: 0;
    color: #2f5d3a;
}

.admin-login-form .form-field + .form-field {
    margin-top: 18px;
}

.admin-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.admin-links--top {
    margin-top: 0;
    margin-bottom: 22px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 950px;
}

.admin-table th,
.admin-table td {
    text-align: left;
    vertical-align: top;
    padding: 16px 14px;
    border-bottom: 1px solid #eadfca;
}

.admin-table th {
    color: #2f5d3a;
    background: #faf6ed;
    font-size: 15px;
}

.admin-action-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.status-badge--pending {
    background: #f6ddb1;
    color: #7a5510;
}

.status-badge--approved {
    background: #d6e8d5;
    color: #244a2e;
}

.status-badge--denied,
.status-badge--cancelled {
    background: #f3d2cd;
    color: #8a2d1f;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 44px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    color: #666;
}

.toggle-password:hover {
    color: #2f5d3a;
}

.admin-page {
    padding: 40px 0 60px;
}

.admin-page h1 {
    margin-bottom: 8px;
    color: #2c5e3f;
}

.admin-page > p {
    margin-bottom: 24px;
    color: #555;
}

.admin-form-card,
.content-card.admin-form-card {
    margin-bottom: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.admin-message {
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 14px 16px;
    border-radius: 10px;
}

.admin-message--error {
    background: #fff1f1;
    border: 1px solid #e2b3b3;
    color: #8a1f1f;
}

.admin-gallery-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.admin-gallery-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    background: #fff;
    border: 1px solid #e3ddd2;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    align-items: start;
}

.admin-gallery-thumb img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.admin-gallery-meta h3 {
    margin: 0 0 10px;
    color: #2c5e3f;
    font-size: 1.15rem;
}

.admin-gallery-meta p {
    margin: 0 0 10px;
    line-height: 1.55;
    color: #333;
}

.admin-gallery-meta form {
    margin-top: 10px;
}

/* Directions / Map */
.map-container {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.map-button {
    margin: 15px 0 25px;
}

.directions-section {
    margin-top: 25px;
}

.directions-section h3 {
    margin-top: 20px;
    color: #2c5e3f;
}

.lead {
    font-size: 1.1rem;
    color: #444;
}

/* About */
.hero--small {
    padding: 60px 0;
}

.about-section {
    padding: 40px 20px;
}

.about-image {
    margin-bottom: 25px;
}

.about-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.about-content {
    max-width: 800px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

.about-page {
    padding: 40px 0 60px;
}

.page-intro {
    text-align: center;
    margin-bottom: 28px;
}

.page-intro h1 {
    margin: 0 0 8px;
    color: #2c5e3f;
    font-size: 2.3rem;
    line-height: 1.15;
}

.page-subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: #666;
}

.about-photo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    margin: 0 auto 28px;
    max-width: 900px;
}

.about-photo-card img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.about-text-card {
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e2d8;
}

.about-text-card p {
    margin: 0 0 18px;
    font-size: 1.06rem;
    line-height: 1.8;
    color: #333;
}

.about-text-card p:last-child {
    margin-bottom: 0;
}

/* Gallery */
.gallery-page {
    padding: 40px 0 60px;
}

.content-card {
    background: #fff;
    max-width: 900px;
    margin: 0 auto 24px;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e2d8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.gallery-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e2d8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.gallery-image {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.gallery-card-body {
    padding: 18px;
}

.gallery-card-body h3 {
    margin: 0 0 10px;
    color: #2c5e3f;
    font-size: 1.1rem;
}

.gallery-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.gallery-card-body h3 a:hover {
    text-decoration: underline;
}

.gallery-card-body p {
    margin: 0;
    line-height: 1.65;
    color: #333;
}

.gallery-count {
    margin-top: 12px;
    font-weight: 600;
    color: #2c5e3f;
}

/* Lightbox */
.lightbox {
    display: none;
}

.lightbox.is-open {
    display: block;
}

.lightbox-open {
    overflow: hidden;
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 9998;
}

.lightbox-dialog {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox-content {
    position: relative;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-content img {
    display: block;
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    background: #111;
}

.lightbox-meta {
    padding: 18px 20px 22px;
    background: #fff;
}

.lightbox-count {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c5e3f;
    margin-bottom: 8px;
}

.lightbox-meta h3 {
    margin: 0 0 8px;
    color: #2c5e3f;
}

.lightbox-meta p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.lightbox-close,
.lightbox-nav {
    position: fixed;
    z-index: 10000;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    width: 46px;
    height: 46px;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    color: #111;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Footer */
.site-footer {
    background: #2f5d3a;
    color: #fff;
    text-align: center;
    padding: 22px 0;
    margin-top: 0;
}

.site-footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

       .events-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1,
    .hero-panel h1 {
        font-size: 46px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .verse-card h2 {
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    .availability-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 6px;
    }

    .calendar-cell {
        min-height: 72px;
        padding: 8px;
    }

    .calendar-day {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 28px 0 40px;
    }

    .page-intro h1 {
        font-size: 1.9rem;
    }

    .about-text-card {
        padding: 22px 18px;
    }

    .admin-gallery-item {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 220px;
    }

    .content-card {
        padding: 20px;
    }

    .admin-gallery-thumb img {
        height: 200px;
    }

    .form-input,
    .form-input--small {
        max-width: 100%;
    }

    .lightbox-dialog {
        padding: 16px;
    }

    .lightbox-content img {
        max-height: 58vh;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 700px) {
    .reserve-card,
    .admin-card {
        padding: 26px 20px;
        border-radius: 14px;
    }

  

    .reserve-actions,
    .admin-links {
        flex-direction: column;
        align-items: stretch;
    }

    .reserve-actions .btn,
    .admin-links .btn {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 60px;
    }

    .hero,
    .hero-overlay {
        min-height: 430px;
    }

    .hero-content h1,
    .hero-panel h1 {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .intro h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .intro p,
    .verse-note {
        font-size: 17px;
    }

    .events-grid,
    .news-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .verse-card {
        padding: 28px 20px;
    }

    .verse-card h2 {
        font-size: 25px;
    }

      .feature-photo,
    .event-thumb img {
        height: 220px;
    }

    .availability-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .availability-topbar h2 {
        font-size: 28px;
    }

    .calendar-head {
        font-size: 12px;
        padding: 8px 2px;
    }

    .calendar-cell {
        min-height: 58px;
        border-radius: 8px;
        padding: 6px;
    }

    .calendar-day {
        font-size: 15px;
    }

    .rules-card {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .rules-group h2,
    .rules-agreement h2 {
        font-size: 24px;
    }

    .rules-intro,
    .rules-agreement p,
    .rules-group li {
        font-size: 16px;
    }
}
.map-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 18px 0 30px;
}

.btn-secondary {
    background: #fff8ef;
    color: #2f5d3a;
    border: 1px solid #d8cbb3;
}

.btn-secondary:hover {
    background: #f7efdf;
    color: #244a2e;
}

@media (max-width: 700px) {
    .map-button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .map-button-group .btn {
        text-align: center;
    }
}
.contact-section {
    background: linear-gradient(180deg, #f8f4eb 0%, #f2eadb 100%);
    padding: 48px 0 64px;
}

.contact-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fffdfa;
    border: 1px solid #e4d8c3;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    padding: 32px 28px;
}

.contact-card h2 {
    margin-top: 0;
    color: #2f5d3a;
}

.contact-card p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #333;
}

.contact-card a {
    color: #2f5d3a;
    font-weight: 600;
}

.contact-note {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eadfca;
}

.contact-note p {
    margin-bottom: 14px;
}
.hero-small {
  height: 300px;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 10px;
  color: #2e7d32; /* adjust to your green */
}

.notice {
  border-left: 5px solid #c62828;
  background: #fff5f5;
}

.notice h3 {
  color: #c62828;
}

.cta-box {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #f4f4f4;
  border-radius: 8px;
}


.page-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2e7d32;
}
/* =========================
   INDEX FEATURE GRID ONLY
========================= */
.feature-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;

  max-width: 1100px;
  margin: 0 auto; /* centers the whole block */
}
.page-hero-simple {
  padding: 50px 0 20px;
  text-align: center;
}

.feature-row {
  padding: 60px 0;
}

.feature-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.feature-row.alt .feature-flex {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text.center {
  text-align: center;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .feature-flex {
    flex-direction: column;
  }

  .feature-row.alt .feature-flex {
    flex-direction: column;
  }
}
/* =========================
   FACILITIES PAGE
========================= */

.page-hero-simple {
  padding: 40px 0 20px;
  text-align: center;
}

.facility-showcase {
  padding: 20px 0 60px;
}

.facility-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 0 60px 0;
}

.facility-row.reverse {
  flex-direction: row-reverse;
}
.facility-row {
    margin-bottom: 48px;
}
.facility-row {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.facility-image,
.facility-text {
  flex: 1;
}

.facility-image img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.facility-text h2 {
    margin-bottom: 8px;
}

.facility-text p {
  margin-bottom: 14px;
}

.facility-closing {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .facility-row,
  .facility-row.reverse {
    flex-direction: column;
  }
}
.facility-image img {
  display: block;
  width: 100%;
  height: auto;

  border-radius: 24px; /* soft rounded corners */

  /* soft natural shadow (not harsh) */
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.08);

  /* subtle lift effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.facility-image img:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.btn-light {
    background-color: #6fbf73; /* light green */
    color: #ffffff;
    border: 1px solid #5aa85e;
}

.btn-light:hover {
    background-color: #5aa85e; /* slightly darker on hover */
    border-color: #4c944f;
    color: #ffffff;
}
.event-thumb-image {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.lightbox.is-open {
    display: block;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
    margin: 4vh auto;
    text-align: center;
    padding: 16px;
    background: transparent;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    background: #fff;
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 8px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.lightbox-caption {
    margin-top: 10px;
    color: #fff;
    font-size: 0.95rem;
}
.event-thumb {
    overflow: hidden;
}

.event-thumb-image {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
}
#lightboxImage {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    margin: 0 auto;
}
#lightboxImage {
    display: block !important;
    max-width: 100% !important;
    max-height: 78vh !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    background: transparent !important;
    box-shadow: none !important;
}
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.lightbox.is-open {
    display: block;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90vw;
    max-height: 90vh;
    margin: 4vh auto;
    text-align: center;
    padding: 16px;
    background: transparent;
}

#lightboxImage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    max-width: 100% !important;
    max-height: 78vh !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
    background: transparent !important;
    box-shadow: none !important;
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 8px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 10002;
}

.lightbox-caption {
    margin-top: 10px;
    color: #fff;
}
/* ===== Event lightbox fix ===== */
#eventLightbox.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

#eventLightbox.lightbox.is-open {
    display: block;
}

#eventLightbox .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

#eventLightbox .lightbox-content {
    position: relative;
    z-index: 100000;
    max-width: 92vw;
    max-height: 92vh;
    margin: 4vh auto;
    padding: 16px;
    text-align: center;
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
}

#eventLightbox #lightboxImage {
    display: block !important;
    position: relative;
    z-index: 100001;
    max-width: 100% !important;
    max-height: 78vh !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    background: transparent !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35) !important;
    border-radius: 10px !important;
}

#eventLightbox .lightbox-close {
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 100002;
    background: transparent !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 42px !important;
    line-height: 1 !important;
    cursor: pointer;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

#eventLightbox .lightbox-caption {
    margin-top: 10px;
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
}

body.lightbox-open {
    overflow: hidden !important;
}



/* ===== PASS 3: CLEAN ADMIN SYSTEM ===== */

.admin-section {
    background: linear-gradient(180deg, #edf3ec 0%, #e7efe6 100%);
    padding: 48px 0 64px;
}

.admin-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-card--narrow {
    max-width: 560px;
}

.admin-grid-two {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
}

.admin-alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
}

.admin-alert-error {
    background: #fff0f0;
    color: #8a1f1f;
    border: 1px solid #efc2c2;
}

.admin-alert-success {
    background: #eef8ef;
    color: #1d5a2a;
    border: 1px solid #c7e5cc;
}

.admin-form .form-row {
    margin-bottom: 18px;
}

.admin-form .form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.admin-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-form input[type="text"],
.admin-form input[type="datetime-local"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd8d3;
    border-radius: 12px;
    font: inherit;
    background: #fff;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.admin-image-preview img {
    max-width: 240px;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 10px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    flex-wrap: wrap;
}

.table-wrap,
.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    vertical-align: top;
    padding: 14px 12px;
    border-bottom: 1px solid #eadfca;
}

.admin-table th {
    color: #2f5d3a;
    background: #faf6ed;
    font-size: 15px;
}

.activity-box {
    border: 1px solid #d9e2d9;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 18px;
    background: #fcfdfb;
}

.delete-form,
.form-actions {
    margin-top: 16px;
}

@media (max-width: 900px) {
    .admin-grid-two {
        grid-template-columns: 1fr;
    }

    .admin-form .form-row.two-col {
        grid-template-columns: 1fr;
    }
}
.auction-donation-note {
    background: #f8f3e8;
    padding: 1.5rem 0 2rem;
}

.auction-note-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fffdf8;
    border: 3px solid #8b6b2e;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auction-note-card h2 {
    margin: 0 0 0.75rem;
    color: #234b34;
    font-size: 1.8rem;
}

.auction-note-card p {
    margin: 0.5rem 0;
    color: #2f2f2f;
    line-height: 1.6;
    font-size: 1.05rem;
}

.auction-note-contact {
    margin-top: 1rem;
    font-size: 1.15rem;
}

.auction-note-contact a {
    color: #8b6b2e;
    font-weight: 700;
    text-decoration: none;
}

.auction-note-contact a:hover {
    text-decoration: underline;
}
/* Reduce Verse of the Day size */
.verse-section .verse-card {
    max-width: 700px;   /* was larger */
    padding: 1.25rem 1.5rem;
}

.verse-section h2 {
    font-size: 1.4rem;  /* reduce verse text size */
    line-height: 1.5;
}

.verse-section .section-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.verse-section .verse-reference {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.verse-section .verse-note {
    font-size: 0.85rem;
    margin-top: 0.4rem;
    opacity: 0.8;
}
/* ===== PASS 2: CLEAN NAVIGATION SYSTEM ===== */

.site-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 20px;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.site-logo {
    height: 54px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 1 1 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1000;
}

.main-nav > a,
.main-nav .nav-group > span {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2f2a;
    cursor: pointer;
    padding: 8px 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.main-nav > a:hover,
.main-nav .nav-group > span:hover {
    color: #2f6b45;
}

.main-nav > a[href="/reserve.php"] {
    background: #2e7d32;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
}

.main-nav > a[href="/reserve.php"]:hover {
    background: #25662a;
    color: #fff;
}

.main-nav .nav-group {
    position: relative;
}

.main-nav .nav-group > span,
.main-nav .nav-group > a {
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
}

.main-nav .nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin-top: -2px;
    background: #fff;
    border: 1px solid #d8dee4;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    padding: 8px 0;
    z-index: 3000;
}
.main-nav .nav-group:hover .nav-dropdown,
.main-nav .nav-group:focus-within .nav-dropdown,
.main-nav .nav-dropdown:hover {
    display: block;
}

.main-nav .nav-group:hover .nav-dropdown,
.main-nav .nav-group:focus-within .nav-dropdown {
    display: block;
}

.main-nav .nav-dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #24332d;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav .nav-dropdown a:hover {
    background: #f3f6f4;
    color: #2f6b45;
}

@media (max-width: 1100px) {
    .site-nav-wrap {
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .main-nav {
        gap: 12px;
        justify-content: center;
    }

    .main-nav > a,
    .main-nav .nav-group > span {
        font-size: 0.9rem;
    }
}
.church-content-block div {
    line-height: 1.7;
    color: #344054;
}
.newsletter-hero,
.newsletter-issue-hero {
    background:
        linear-gradient(135deg, rgba(20, 58, 42, 0.90), rgba(71, 110, 84, 0.84)),
        url('/assets/img/camp.jpg') center/cover no-repeat;
    color: #fff;
    padding: 76px 0 64px;
}

.newsletter-hero__content,
.newsletter-issue-hero__inner {
    max-width: 820px;
}

.newsletter-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-hero h1,
.newsletter-issue-hero h1 {
    margin: 0 0 14px;
    font-size: 2.5rem;
    line-height: 1.1;
}

.newsletter-hero p,
.issue-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

.newsletter-hero__actions {
    margin-top: 24px;
}

.newsletter-landing,
.newsletter-issue-page {
    background: #f7f3ea;
    padding: 46px 0 72px;
}

.current-issue-card,
.editor-note-card,
.featured-article-card,
.issue-card,
.newsletter-article-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.current-issue-card,
.editor-note-card,
.featured-article {
    margin-bottom: 40px;
}

.current-issue-grid,
.featured-article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

.current-issue-media,
.featured-article-media {
    min-height: 340px;
    background: #e7ece7;
}

.current-issue-media img,
.featured-article-media img,
.issue-card-media img,
.newsletter-article-media img,
.issue-cover-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.current-issue-content,
.featured-article-content {
    padding: 30px;
}

.issue-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #dcebdc;
    color: #24503a;
    font-weight: 700;
    font-size: 0.82rem;
}

.issue-subtitle,
.issue-editor-note-preview,
.editor-note-body,
.article-body {
    color: #425047;
    line-height: 1.75;
}

.issue-date {
    color: #d9e7dd;
    font-weight: 600;
}

.current-issue-content .issue-date,
.issue-card-body .issue-date,
.article-meta {
    color: #607067;
}

.issue-cover-image {
    margin-bottom: 40px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.section-heading {
    margin-bottom: 20px;
}

.issues-grid,
.newsletter-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.issue-card {
    overflow: hidden;
}

.issue-card-media,
.newsletter-article-media {
    height: 220px;
    background: #e7ece7;
}

.issue-card-body,
.newsletter-article-body {
    padding: 22px 20px;
}

.issue-card h3,
.newsletter-article-card h3,
.featured-article-content h3 {
    margin: 0 0 12px;
    color: #1d2b22;
    line-height: 1.22;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.92rem;
}

.article-meta a {
    color: #2f6d4f;
    text-decoration: none;
    font-weight: 600;
}

.article-meta a:hover {
    text-decoration: underline;
}

.article-excerpt {
    color: #3f4d45;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 12px;
}

.newsletter-section-block {
    margin-top: 40px;
}

.newsletter-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    background: linear-gradient(135deg, #eef3ee, #dce5dd);
    color: #55645c;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 20px;
}

.newsletter-cover-placeholder.small {
    height: 100%;
    min-height: 220px;
}

.empty-state {
    padding: 28px;
    text-align: center;
}

.layout-brief .newsletter-article-media {
    height: 160px;
}

.layout-photo .newsletter-article-media {
    height: 280px;
}

@media (max-width: 980px) {
    .current-issue-grid,
    .featured-article-grid {
        grid-template-columns: 1fr;
    }

    .issues-grid,
    .newsletter-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .newsletter-hero,
    .newsletter-issue-hero {
        padding: 56px 0 46px;
    }

    .newsletter-hero h1,
    .newsletter-issue-hero h1 {
        font-size: 2rem;
    }

    .current-issue-content,
    .featured-article-content {
        padding: 22px 18px;
    }

    .issues-grid,
    .newsletter-articles-grid {
        grid-template-columns: 1fr;
    }
}
.newsletter-masthead {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
    max-width: 980px;
}

.newsletter-masthead__logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.newsletter-masthead__logo img {
    max-height: 140px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
}

.newsletter-masthead__text {
    min-width: 0;
}

.newsletter-masthead__org {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    margin-bottom: 6px;
}

.newsletter-masthead__pub {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.newsletter-masthead h1 {
    margin: 0 0 12px;
    font-size: 3rem;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 3px 14px rgba(0,0,0,0.24);
}

.newsletter-masthead__subtitle {
    margin: 0 0 14px;
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.94);
}

.newsletter-masthead__issue-line {
    display: inline-block;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.28);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.9);
}

.newsletter-hero,
.newsletter-issue-hero {
    padding: 88px 0 72px;
}

.newsletter-hero__content,
.newsletter-issue-hero__inner {
    max-width: 1080px;
}
@media (max-width: 900px) {
    .newsletter-masthead {
        gap: 18px;
    }

    .newsletter-masthead__logo img {
        max-height: 110px;
    }

    .newsletter-masthead h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    .newsletter-masthead {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .newsletter-masthead__logo {
        padding: 12px 14px;
    }

    .newsletter-masthead__logo img {
        max-height: 95px;
    }

    .newsletter-masthead h1 {
        font-size: 1.95rem;
    }

    .newsletter-masthead__subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .newsletter-hero,
    .newsletter-issue-hero {
        padding: 58px 0 48px;
    }
}
.admin-grid-two {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
}

.admin-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 24px;
}

.admin-alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
}

.admin-alert-error {
    background: #fff0f0;
    color: #8a1f1f;
    border: 1px solid #efc2c2;
}

.admin-alert-success {
    background: #eef8ef;
    color: #1d5a2a;
    border: 1px solid #c7e5cc;
}

.admin-form .form-row {
    margin-bottom: 18px;
}

.admin-form .form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.admin-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-form input[type="text"],
.admin-form input[type="datetime-local"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd8d3;
    border-radius: 12px;
    font: inherit;
    background: #fff;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.admin-image-preview img {
    max-width: 240px;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 10px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid #e7ece8;
    vertical-align: top;
}

.table-subtext {
    margin-top: 4px;
    color: #5f6c64;
    font-size: 0.92rem;
}

.status-pill {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-draft {
    background: #eceff1;
    color: #45525b;
}

.status-published {
    background: #dff0df;
    color: #24503a;
}

.actions-cell {
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 0.9rem;
}

.btn-danger {
    background: #a12626;
    color: #fff;
    border: none;
}

.btn-danger:hover {
    background: #861f1f;
}

@media (max-width: 900px) {
    .admin-grid-two,
    .admin-form .form-row.two-col {
        grid-template-columns: 1fr;
    }
}
.newsletter-hero,
.newsletter-issue-hero {
    background:
        linear-gradient(135deg, rgba(20, 58, 42, 0.90), rgba(71, 110, 84, 0.84)),
        url('/assets/img/camp.jpg') center/cover no-repeat;
    color: #fff;
    padding: 88px 0 72px;
}

.newsletter-hero__content,
.newsletter-issue-hero__inner {
    max-width: 1080px;
}

.newsletter-masthead {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
    max-width: 980px;
}

.newsletter-masthead__logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.newsletter-masthead__logo img {
    max-height: 140px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
}

.newsletter-masthead__text {
    min-width: 0;
}

.newsletter-masthead__org {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    margin-bottom: 6px;
}

.newsletter-masthead__pub {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.newsletter-masthead h1 {
    margin: 0 0 12px;
    font-size: 3rem;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 3px 14px rgba(0,0,0,0.24);
}

.newsletter-masthead__subtitle {
    margin: 0 0 14px;
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.94);
}

.newsletter-masthead__issue-line {
    display: inline-block;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.28);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 900px) {
    .newsletter-masthead {
        gap: 18px;
    }

    .newsletter-masthead__logo img {
        max-height: 110px;
    }

    .newsletter-masthead h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    .newsletter-masthead {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .newsletter-masthead__logo {
        padding: 12px 14px;
    }

    .newsletter-masthead__logo img {
        max-height: 95px;
    }

    .newsletter-masthead h1 {
        font-size: 1.95rem;
    }

    .newsletter-masthead__subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .newsletter-hero,
    .newsletter-issue-hero {
        padding: 58px 0 48px;
    }
}
.issue-cover-section {
    margin: 0 0 40px;
}

.issue-cover-image {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    background: #e7ece7;
}

.issue-cover-image img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}
.newsletter-article-image {
    width: 100%;
    height: 220px;          /* controls uniform height */
    overflow: hidden;
    border-radius: 14px;
    background: #e7ece7;
}

.newsletter-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* THIS is the key */
    display: block;
}
.newsletter-feature-section {
    padding: 70px 0;
    background: #f7f3da;
}

.newsletter-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.newsletter-feature-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    max-height: 380px;
}

.newsletter-feature-meta {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6a7c6f;
    margin-bottom: 10px;
}

.newsletter-feature-content h3 {
    margin: 0 0 10px;
    font-size: 1.9rem;
    color: #1f2e25;
}

.newsletter-feature-subtitle {
    font-style: italic;
    color: #5a685f;
    margin-bottom: 12px;
}

.newsletter-feature-actions {
    margin-top: 16px;
}

@media (max-width: 900px) {
    .newsletter-feature-card {
        grid-template-columns: 1fr;
    }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 5000;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #e2e8e3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 5000;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #e2e8e3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.site-header::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(to right, #3e6b52, #6f9b7c);
}
.admin-page-tools {
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #d9e1e7;
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.homepage-announcements {
    padding: 22px 0 10px;
    position: relative;
    z-index: 1;
}

.homepage-announcements-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: stretch;
}

.announcement-card-home {
    background: #fff8e8;
    border: 2px solid #d9b56d;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    text-align: center;
}

.announcement-card-home h2 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    line-height: 1.2;
    color: #2f4f3e;
}

.announcement-card-home p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.6;
    font-weight: 600;
    color: #3f3a2f;
}

.announcement-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #b08a3c;
    padding: 0 4px;
}

@media (max-width: 900px) {
    .homepage-announcements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

    .announcement-divider {
        display: none;
    }

    .announcement-card-home h2 {
        font-size: 1.3rem;
    }

    .announcement-card-home p {
        font-size: 1rem;
    }
}
.homepage-announcements {
    padding: 22px 0 10px;
    position: relative;
    z-index: 1;
}
/* ===== PASS 4: CLEAN LIGHTBOX ===== */

.lightbox {
    display: none;
}

.lightbox.is-open {
    display: block;
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 9998;
}

.lightbox-dialog {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox-content {
    position: relative;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

#lightboxImage,
.lightbox-content img {
    display: block;
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    background: #111;
    margin: 0 auto;
}

.lightbox-meta {
    padding: 18px 20px 22px;
    background: #fff;
}

.lightbox-count {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c5e3f;
    margin-bottom: 8px;
}

.lightbox-meta h3 {
    margin: 0 0 8px;
    color: #2c5e3f;
}

.lightbox-meta p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.lightbox-close,
.lightbox-nav {
    position: fixed;
    z-index: 10000;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    width: 46px;
    height: 46px;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .lightbox-dialog {
        padding: 16px;
    }

    #lightboxImage,
    .lightbox-content img {
        max-height: 58vh;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}
.homepage-announcements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
/* ===== PASS 6: TYPOGRAPHY CONSISTENCY ===== */

/* Page titles */
.page-title,
.page-intro h1,
.page-hero--small h1,
.page-hero-simple h1 {
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Section headings */
.section-heading h2,
.intro h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Card / content headings */
.content-card h2,
.event-body h3,
.feature-content h3,
.feature h3,
.news-card h3,
.about-text-card h2,
.rules-group h2,
.rules-agreement h2,
.contact-card h2,
.admin-card h2 {
    line-height: 1.22;
    letter-spacing: -0.01em;
}

/* Body copy consistency */
.intro p,
.content-card p,
.event-body p,
.feature-content p,
.feature p,
.news-card p,
.news-body,
.about-content p,
.about-text-card p,
.rules-intro,
.rules-group li,
.rules-agreement p,
.contact-card p,
.admin-card p,
.verse-note {
    line-height: 1.7;
    color: #333;
}

/* Smaller metadata text */
.event-date,
.section-eyebrow,
.lightbox-count,
.page-subtitle,
.issue-label,
.article-meta {
    line-height: 1.4;
    letter-spacing: 0.04em;
}

/* Buttons */
.btn,
.btn-primary,
.btn-secondary,
.btn-light {
    font-size: 15px;
    line-height: 1.2;
}

/* Lists inside cards/forms */
.content-card ul,
.rules-card ul,
.admin-card ul {
    line-height: 1.7;
}

/* Mobile typography */
@media (max-width: 640px) {
    .page-title,
    .page-intro h1,
    .page-hero--small h1,
    .page-hero-simple h1 {
        line-height: 1.12;
    }

    .section-heading h2,
    .intro h2 {
        line-height: 1.12;
    }

    .content-card p,
    .event-body p,
    .feature-content p,
    .feature p,
    .news-card p,
    .about-text-card p,
    .contact-card p {
        line-height: 1.65;
    }
}
/* ===== PASS 7: FORM + INPUT CONSISTENCY ===== */

/* Shared input look */
.form-field input,
.form-field textarea,
.form-field select,
.form-input,
.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form input[type="number"],
.admin-form input[type="date"],
.admin-form input[type="datetime-local"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d6ccbb;
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    background: #fffefb;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Focus state */
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.form-input:focus,
.admin-form input[type="text"]:focus,
.admin-form input[type="email"]:focus,
.admin-form input[type="password"]:focus,
.admin-form input[type="number"]:focus,
.admin-form input[type="date"]:focus,
.admin-form input[type="datetime-local"]:focus,
.admin-form input[type="file"]:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: #b8862f;
    box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.12);
    background: #fff;
}

/* Labels */
.form-field label,
.admin-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2f5d3a;
    line-height: 1.3;
}

/* Textareas */
.form-field textarea,
.admin-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Help text / small notes */
.form-help,
.form-note,
.admin-form small,
.form-field small {
    display: block;
    margin-top: 6px;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #666;
}

/* Placeholder consistency */
.form-field input::placeholder,
.form-field textarea::placeholder,
.form-input::placeholder,
.admin-form input::placeholder,
.admin-form textarea::placeholder {
    color: #8a8a8a;
    opacity: 1;
}

/* Checkbox + radio rows */
.checkbox-label,
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
    color: #444;
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"],
.checkbox-row input[type="checkbox"],
.checkbox-row input[type="radio"] {
    margin-top: 3px;
    flex: 0 0 auto;
}


.full-width {
    grid-column: 1 / -1;
}

/* Admin two-column rows */
.admin-form .form-row.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* Message styling consistency */
.form-message,
.admin-alert,
.alert {
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Buttons inside forms */
.reserve-actions,
.admin-actions,
.form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

/* File inputs */
.admin-form input[type="file"] {
    padding: 10px 12px;
    background: #fffdfa;
}

/* Mobile */
@media (max-width: 768px) {
    .form-grid,
    .admin-form .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .reserve-actions,
    .admin-actions,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .reserve-actions .btn,
    .admin-actions .btn,
    .form-actions .btn {
        text-align: center;
    }
}
/* ===== DIGITAL NEWSPAPER / NEWSLETTER ISSUE ===== */

.newsletter-issue-page,
.newsletter-landing,
.newsletter-page,
.issue-page {
    background: #f5f1e8;
    color: #222;
}

.newsletter-issue-page .container,
.newsletter-landing .container {
    max-width: 1180px;
}

.issue-cover-section {
    margin: 0 0 32px;
}

.issue-cover-image--compact {
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid #d7d0c2;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: #fffdf8;
}

.issue-cover-image--compact img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.editor-note-card {
    background: #fffdf8;
    border: 1px solid #d7d0c2;
    border-radius: 0;
    box-shadow: none;
    padding: 24px 28px;
    margin: 0 0 32px;
}

.editor-note-body {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #2b2926;
}

.section-heading {
    margin: 0 0 18px;
    padding: 0 0 10px;
    border-bottom: 2px solid #1f4b39;
}

.section-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1f4b39;
}

.section-heading p {
    margin: 8px 0 0;
    color: #655f56;
}

.featured-article {
    margin: 0 0 38px;
}

.featured-article-card--compact {
    overflow: hidden;
    background: #fffdf8;
    border: 1px solid #d7d0c2;
    border-radius: 0;
    box-shadow: none;
}

.featured-article-grid--compact {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    align-items: stretch;
}

.featured-article-media--compact {
    min-height: 360px;
    background: #ece7dc;
    border-right: 1px solid #d7d0c2;
}

.featured-article-media--compact img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
}

.featured-article-content {
    padding: 28px 30px;
    background: #fffdf8;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c665d;
}

.article-meta a {
    color: #1f4b39;
    text-decoration: none;
}

.article-meta a:hover {
    text-decoration: underline;
}

.featured-article-content h3,
.newsletter-article-body h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.15;
    color: #1c1b19;
}

.featured-article-content h3 {
    font-size: 2rem;
}

.newsletter-article-body h3 {
    font-size: 1.35rem;
}

.article-excerpt {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3732;
}

.article-body,
.article-body--featured,
.article-body--section {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #2b2926;
}

.article-body--featured {
    max-height: 420px;
    overflow: hidden;
}

.article-body--section {
    max-height: 240px;
    overflow: hidden;
}

.newsletter-section-block {
    margin: 0 0 42px;
}

.newsletter-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.newsletter-articles-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-articles-grid--one {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

.newsletter-article-card {
    height: 100%;
    background: #fffdf8;
    border: 1px solid #d7d0c2;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.newsletter-article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.05);
}

.newsletter-article-card a.article-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.newsletter-article-media {
    height: 230px;
    background: #ece7dc;
    border-bottom: 1px solid #d7d0c2;
}

.newsletter-article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.newsletter-article-body {
    padding: 18px 18px 20px;
}

.newsletter-article-card.layout-photo .newsletter-article-media,
.newsletter-article-card.layout-video .newsletter-article-media,
.newsletter-article-card.layout-cartoon .newsletter-article-media {
    height: auto;
}

.newsletter-article-card.layout-cartoon .newsletter-article-media img {
    object-fit: contain;
    background: #f4efe4;
    max-height: 380px;
}

.newsletter-article-card.layout-cartoon .newsletter-article-body {
    border-top: 0;
}

.newsletter-article-card.layout-cartoon .newsletter-article-body h3 {
    font-size: 1.45rem;
}

.article-caption {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #d7d0c2;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #655f56;
    font-style: italic;
}

.read-more-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f4b39;
    text-decoration: none;
}

.read-more-link:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .featured-article-grid--compact {
        grid-template-columns: 1fr;
    }

    .featured-article-media--compact {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid #d7d0c2;
    }

    .newsletter-articles-grid,
    .newsletter-articles-grid--two,
    .newsletter-articles-grid--one {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }
}

@media (max-width: 640px) {
    .issue-cover-image--compact img {
        max-height: 220px;
    }

    .featured-article-content {
        padding: 20px;
    }

    .featured-article-content h3 {
        font-size: 1.65rem;
    }

    .newsletter-articles-grid,
    .newsletter-articles-grid--two,
    .newsletter-articles-grid--one {
        grid-template-columns: 1fr;
    }

    .newsletter-article-media {
        height: 220px;
    }
}
/* ===== ARTICLE DETAIL PAGE ===== */

.newsletter-article-page {
    background: #f5f1e8;
    padding: 10px 0 50px;
}

.article-detail-shell {
    max-width: 860px;
    margin: 0 auto 40px;
    background: #fffdf8;
    border: 1px solid #d7d0c2;
    padding: 34px 34px 40px;
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c665d;
}

.article-detail-meta a {
    color: #1f4b39;
    text-decoration: none;
}

.article-detail-meta a:hover {
    text-decoration: underline;
}

.article-detail-title {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    line-height: 1.08;
    color: #1c1b19;
}

.article-detail-date {
    margin-bottom: 22px;
    color: #6a645b;
    font-size: 0.95rem;
}

.article-detail-figure {
    margin: 0 0 24px;
    border-top: 1px solid #d7d0c2;
    border-bottom: 1px solid #d7d0c2;
    padding: 18px 0;
}

.article-detail-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.article-detail-figure figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #655f56;
    font-style: italic;
}

.article-detail-excerpt {
    margin: 0 0 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #37332e;
    font-style: italic;
}

.article-detail-body {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.06rem;
    line-height: 1.95;
    color: #222;
}

.related-articles-block {
    max-width: 1040px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .article-detail-shell {
        padding: 22px 18px 28px;
    }

    .article-detail-title {
        font-size: 2rem;
    }
}
.featured-article-card--compact {
    overflow: hidden;
    background: #fffdf8;
    border: 1px solid #d7d0c2;
    border-radius: 0;
    box-shadow: none;
}

.featured-article-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.featured-article-link:hover .read-more-link {
    text-decoration: underline;
}

.featured-article-grid--compact {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    align-items: stretch;
}

.featured-article-media--compact {
    min-height: 360px;
    background: #ece7dc;
    border-right: 1px solid #d7d0c2;
}

.featured-article-media--compact img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
}

.featured-article-content {
    padding: 28px 30px;
    background: #fffdf8;
}

.featured-article-content h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.15;
    color: #1c1b19;
    font-size: 2rem;
}

.article-body--featured {
    max-height: none;
    overflow: visible;
    line-height: 1.8;
}

@media (max-width: 980px) {
    .featured-article-grid--compact {
        grid-template-columns: 1fr;
    }

    .featured-article-media--compact {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid #d7d0c2;
    }

    .featured-article-content {
        padding: 20px;
    }

    .featured-article-content h3 {
        font-size: 1.65rem;
    }
}
/* ===== VIDEO EMBED ===== */

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Optional polish */
.video-embed {
    border: 1px solid #d7d0c2;
}
.newsletter-container {
    background: #f7f3eb;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #ddd3c5;
}
.newsletter-container {
    background:
        linear-gradient(#f7f3eb, #f7f3eb),
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,0.015),
            rgba(0,0,0,0.015) 1px,
            transparent 1px,
            transparent 3px
        );
}
.masthead {
    text-align: center;
    border-bottom: 2px solid #cbbba6;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.masthead h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
}