/* Info page */
.info-page {
    padding: 48px 0 40px;
}

.info-intro {
    max-width: 720px;
    margin-bottom: 8px;
}

.info-intro h1 {
    font-size: 40px;
    color: var(--ink);
    margin: 12px 0 16px;
}

.info-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
}

/* Highlights row */
.info-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 20px;
}

.info-hl {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 24px;
    text-align: center;
}

.info-hl .info-hl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-light);
    margin-bottom: 14px;
}

.info-hl .info-hl-icon svg { width: 24px; height: 24px; stroke: var(--green-dark); }

.info-hl h3 { font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.info-hl p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }

/* Alternating sections */
.info-sections {
    padding-top: 40px;
    padding-bottom: 20px;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 44px 0;
}

.info-section:not(:last-child) {
    border-bottom: 1px solid rgba(46, 42, 35, 0.08);
}

.info-section:nth-child(even) .info-media {
    order: 2;
}

.info-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    background: var(--green-light);
}

.info-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-media.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
    background: repeating-linear-gradient(135deg, var(--green-light), var(--green-light) 14px, var(--cream-deep) 14px, var(--cream-deep) 28px);
}

.info-text .info-eyebrow {
    display: inline-block;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.info-text h2 {
    font-size: 30px;
    color: var(--ink);
    margin-bottom: 16px;
}

.info-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.info-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-text li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--ink);
}

.info-text li svg {
    width: 20px;
    height: 20px;
    stroke: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
}

.info-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--green-dark);
    transition: gap 0.2s ease;
}

.info-gallery-link:hover { gap: 10px; }

/* Text info blocks */
.info-textblocks {
    padding-top: 20px;
    padding-bottom: 8px;
}

.info-textblocks .info-tb-head {
    max-width: 680px;
    margin-bottom: 32px;
}

.info-textblocks h2 {
    font-size: 30px;
    color: var(--ink);
    margin: 10px 0 12px;
}

.info-textblocks .info-tb-head p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.info-tb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-tb-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 30px 28px;
}

.info-tb-card h3 {
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 12px;
}

.info-tb-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
}

/* CTA band */
.info-cta {
    background: var(--green);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    margin: 48px 0 80px;
}

.info-cta h2 { color: #fff; font-size: 30px; margin-bottom: 12px; }
.info-cta p { color: rgba(255, 255, 255, 0.9); font-size: 17px; margin-bottom: 26px; }
.info-cta .btn {
    background: #fff;
    color: var(--green-dark);
}
.info-cta .btn:hover { background: var(--cream); }

/* Responsive */
@media (max-width: 900px) {
    .info-intro h1 { font-size: 32px; }
    .info-highlights { grid-template-columns: repeat(2, 1fr); }
    .info-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 0;
    }
    .info-section:nth-child(even) .info-media { order: 0; }
    .info-text h2 { font-size: 26px; }
}

@media (max-width: 900px) {
    .info-tb-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .info-highlights { grid-template-columns: 1fr; }
    .info-cta { padding: 36px 24px; margin-bottom: 56px; }
}
