/* Content pages: FAQ, Contact, Booking Assistance, Blog */

.cp-page { background: var(--bg-light); }

.cp-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.cp-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0b3022 0%, #164a36 45%, #1a3a28 100%);
    z-index: 0;
}
.cp-hero-bg.has-image {
    background-size: cover;
    background-position: center;
}
.cp-hero-bg.has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11,48,34,.88) 0%, rgba(11,48,34,.55) 60%, rgba(11,48,34,.4) 100%);
}
.cp-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 32px;
}
.cp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 800;
    margin: 8px 0 10px;
    line-height: 1.15;
}
.cp-hero-sub {
    margin: 0;
    max-width: 620px;
    font-size: 0.95rem;
    color: rgba(255,255,255,.88);
    line-height: 1.55;
}

.cp-section { padding: 40px 0 56px; }
.cp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}
.cp-layout-reverse {
    grid-template-columns: 320px minmax(0, 1fr);
}

.cp-card {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(11,48,34,.05);
}
.cp-card h2, .cp-side h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    margin: 0 0 14px;
}
.cp-card h2 { font-size: 1.25rem; }

/* FAQ accordion */
.cp-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.cp-faq-tab {
    border: 1px solid #d6e0da;
    background: #fff;
    color: var(--primary);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}
.cp-faq-tab.active,
.cp-faq-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.cp-faq-panel { display: none; }
.cp-faq-panel.active { display: block; }
.cp-faq-item {
    border: 1px solid #e8ebe9;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.cp-faq-q {
    width: 100%;
    text-align: left;
    background: #f8faf8;
    border: 0;
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.cp-faq-q i { color: var(--accent); transition: transform .2s ease; }
.cp-faq-item.is-open .cp-faq-q i { transform: rotate(45deg); }
.cp-faq-a {
    display: none;
    padding: 0 16px 14px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
}
.cp-faq-item.is-open .cp-faq-a { display: block; }

/* Contact / assistance */
.cp-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: start;
}
.cp-info-list { list-style: none; padding: 0; margin: 0; }
.cp-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f0;
}
.cp-info-list li:last-child { border-bottom: 0; }
.cp-info-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(11,48,34,.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cp-info-list strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 2px;
}
.cp-info-list span, .cp-info-list a {
    font-size: 0.88rem;
    color: #475569;
    text-decoration: none;
    line-height: 1.45;
}
.cp-info-list a:hover { color: var(--accent-hover); }

.cp-form .cp-field { margin-bottom: 12px; }
.cp-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 5px;
}
.cp-form input,
.cp-form select,
.cp-form textarea {
    width: 100%;
    border: 1px solid #d6e0da;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 0.92rem;
    background: #fbfcfb;
    outline: none;
}
.cp-form input:focus,
.cp-form select:focus,
.cp-form textarea:focus {
    border-color: #2f8f5b;
    box-shadow: 0 0 0 3px rgba(47,143,91,.14);
}
.cp-form textarea { min-height: 120px; resize: vertical; }
.cp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.cp-submit {
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #c9a227, #e0b83a);
    color: #1a1a1a;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.cp-submit:disabled { opacity: .65; cursor: not-allowed; }
.cp-msg {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 600;
}
.cp-msg.ok { background: #e8f8ee; color: #137333; border: 1px solid #b7ebc6; }
.cp-msg.err { background: #fdecea; color: #b3261e; border: 1px solid #f5c2c0; }

.cp-assist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.cp-assist-item {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 20px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.cp-assist-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11,48,34,.08);
}
.cp-assist-item .ico {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(197,160,89,.16);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.cp-assist-item h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary);
    margin: 0 0 8px;
}
.cp-assist-item p {
    margin: 0;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
}
.cp-steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.cp-steps li {
    position: relative;
    padding: 0 0 18px 52px;
    border-left: 2px solid #dce8e1;
    margin-left: 16px;
}
.cp-steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.cp-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -17px;
    top: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cp-steps strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 4px;
}
.cp-steps span { font-size: 0.88rem; color: #475569; line-height: 1.5; }

/* Blog */
.cp-blog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.cp-search {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 240px;
    max-width: 420px;
}
.cp-search input {
    flex: 1;
    border: 1px solid #d6e0da;
    border-radius: 10px;
    padding: 11px 12px;
    background: #fff;
}
.cp-search button {
    border: 0;
    border-radius: 10px;
    padding: 0 16px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.cp-blog-meta-line {
    font-size: 0.85rem;
    color: #64748b;
}
.cp-blog-list { display: grid; gap: 16px; }
.cp-blog-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease, transform .2s ease;
}
.cp-blog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11,48,34,.08);
}
.cp-blog-thumb {
    min-height: 160px;
    background: #dfe8e3 center/cover no-repeat;
}
.cp-blog-body { padding: 16px 16px 16px 0; }
.cp-blog-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-hover);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
}
.cp-blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin: 0 0 8px;
    line-height: 1.3;
}
.cp-blog-body p {
    margin: 0 0 10px;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
}
.cp-blog-date {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}
.cp-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary);
}

.cp-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
}
.cp-pagination a,
.cp-pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #d6e0da;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--primary);
    background: #fff;
}
.cp-pagination a:hover { background: #eef6f1; }
.cp-pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.cp-pagination .disabled { opacity: .45; pointer-events: none; }

.cp-side .cp-side-card {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}
.cp-side-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(197,160,89,.35);
}
.cp-cat-link, .cp-recent-link {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f0;
    text-decoration: none;
    color: #334155;
    font-size: 0.86rem;
    font-weight: 600;
}
.cp-cat-link:last-child, .cp-recent-link:last-child { border-bottom: 0; }
.cp-cat-link:hover, .cp-recent-link:hover { color: var(--primary); }
.cp-recent-link { align-items: center; gap: 10px; }
.cp-recent-link img {
    width: 54px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #eef2f0;
}
.cp-recent-link span { color: #64748b; font-size: 0.75rem; font-weight: 500; display: block; margin-top: 2px; }

.cp-article-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}
.cp-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 16px;
}
.cp-article-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
}
.cp-article-content p { margin: 0 0 14px; }
.cp-article-content img { max-width: 100%; height: auto; border-radius: 8px; }
.cp-article-content h2, .cp-article-content h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 22px 0 10px;
}

.cp-empty {
    background: #fff;
    border: 1px solid #f5c2c0;
    color: #b3261e;
    border-radius: 12px;
    padding: 18px;
    font-weight: 600;
}

.cp-btn-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid transparent;
}
.cp-btn-gold {
    background: linear-gradient(135deg, #c9a227, #e0b83a);
    color: #1a1a1a;
}
.cp-btn-green {
    background: var(--primary);
    color: #fff;
}
.cp-btn-outline {
    background: #fff;
    border-color: #d6e0da;
    color: var(--primary);
}
.cp-btn:hover { filter: brightness(1.03); }

.cp-btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,.55);
    color: #fff;
}
.cp-btn-outline-light:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.cp-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-hover, #b08d3e);
    margin: 0 0 10px;
}

/* ---- ABOUT US ---- */
.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    z-index: 0;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(11,48,34,.92) 0%, rgba(11,48,34,.62) 48%, rgba(11,48,34,.4) 100%);
    z-index: 1;
}
.about-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 48px;
}
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 10px 0 12px;
}
.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 14px;
    max-width: 700px;
    text-shadow: 0 2px 16px rgba(0,0,0,.28);
}
.about-hero-sub {
    margin: 0 0 22px;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,.9);
}
.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-stats-wrap {
    margin-top: -28px;
    position: relative;
    z-index: 5;
    padding-bottom: 8px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 14px 36px rgba(11,48,34,.12);
}
.about-stat {
    text-align: center;
    padding: 8px;
}
.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}
.about-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
}
.about-story-visual {
    position: relative;
    min-height: 360px;
}
.about-story-img {
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 32px rgba(11,48,34,.16);
}
.about-story-img-main {
    width: 78%;
    height: 340px;
}
.about-story-img-float {
    position: absolute;
    right: 0;
    bottom: 18px;
    width: 48%;
    height: 190px;
    border: 5px solid #fff;
}
.about-story-badge {
    position: absolute;
    left: 18px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(11,48,34,.94);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.about-story-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}
.about-story-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
}
.about-story-badge span {
    font-size: 0.72rem;
    opacity: .85;
}
.about-story-copy h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 14px;
    line-height: 1.25;
}
.about-story-copy p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 12px;
}

.about-mv-section {
    padding: 8px 0 40px;
}
.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.about-mv-card {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 4px 18px rgba(11,48,34,.05);
}
.about-mv-card.accent {
    background: linear-gradient(145deg, #0b3022, #0d4a35);
    border-color: transparent;
    color: #fff;
}
.about-mv-card.accent h3,
.about-mv-card.accent p { color: #fff; }
.about-mv-card.accent p { opacity: .9; }
.about-mv-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef5f1, #f7f1e4);
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 1.15rem;
}
.about-mv-card.accent .about-mv-icon {
    background: rgba(255,255,255,.12);
    color: var(--accent);
}
.about-mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px;
}
.about-mv-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-section-head {
    text-align: center;
    margin-bottom: 28px;
}
.about-section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}
.about-section-head.light h2 { color: #fff; }
.about-section-head.light .cp-kicker { color: var(--accent); }

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.about-value {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.about-value:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11,48,34,.1);
}
.about-value i {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #eef5f1, #f7f1e4);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.about-value h4 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    color: var(--primary);
    margin: 0 0 8px;
}
.about-value p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-parks-section {
    padding: 48px 0;
    background: linear-gradient(120deg, #0b3022 0%, #164a36 55%, #1a3a28 100%);
}
.about-parks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.about-park-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.about-park-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .4s ease;
}
.about-park-card:hover img { transform: scale(1.07); }
.about-park-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px;
    background: linear-gradient(180deg, transparent, rgba(11,48,34,.92));
    color: #fff;
}
.about-park-body h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin: 0 0 4px;
}
.about-park-body span {
    font-size: 0.78rem;
    opacity: .88;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
}
.about-why-grid h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 16px;
    line-height: 1.25;
}
.about-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}
.about-why-list i {
    color: #16a34a;
    margin-top: 3px;
}
.about-why-panel {
    background: linear-gradient(145deg, #0b3022, #0d4a35);
    color: #fff;
    border-radius: 18px;
    padding: 28px;
}
.about-why-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0 0 10px;
}
.about-why-panel p {
    margin: 0 0 18px;
    font-size: 0.9rem;
    opacity: .9;
    line-height: 1.55;
}
.about-why-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.about-cta-strip {
    background: #0b3022;
    color: #fff;
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.about-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0 0 6px;
}
.about-cta-inner p {
    margin: 0;
    opacity: .85;
    font-size: 0.9rem;
}
.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 980px) {
    .cp-layout, .cp-layout-reverse, .cp-contact-grid {
        grid-template-columns: 1fr;
    }
    .cp-assist-grid { grid-template-columns: 1fr; }
    .cp-blog-item { grid-template-columns: 1fr; }
    .cp-blog-thumb { min-height: 180px; }
    .cp-blog-body { padding: 0 16px 16px; }
    .cp-form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-story-grid,
    .about-mv-grid,
    .about-why-grid { grid-template-columns: 1fr; }
    .about-values-grid,
    .about-parks-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story-visual { min-height: 300px; }
    .about-story-img-main { width: 100%; height: 260px; }
    .about-story-img-float { width: 42%; height: 140px; bottom: 12px; }
}

@media (max-width: 600px) {
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-values-grid,
    .about-parks-grid { grid-template-columns: 1fr; }
    .about-hero { min-height: 360px; }
}

