/* ============================================================
   SECTION BASE
============================================================ */

.section {
    padding: 40px 40px 60px;
}

.section.alt-bg {
    background: #fff3e0;
}
 
.container {
      
    margin: 0 auto;
}

.textcenter {
    text-align: center;
}

/* ============================================================
   HEADINGS
============================================================ */

.section h2 {
    font-family: var(--font-accent);
    font-size: clamp(2.0em, 2.5vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 0px;
    letter-spacing: -0.01em;
    color: var(--color-olive);
}
.section h3 {
    font-family: var(--font-accent);
    font-size: clamp(1.6em, 2.0vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    color: #502511;
}

.section h4 {
    font-family: var(--font-accent);
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* ============================================================
   TEXT
============================================================ */

.section p {
    font-family: var(--font-main);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin: 0 auto 20px;
}

/* ============================================================
   ICON LIST (TOP SECTION)
============================================================ */

.icon-list {
    margin-top: 20px;
    margin: 0 auto;
}

.icon-list p {
    font-weight: 500;
    margin: 6px 0;
}

/* ============================================================
   TWO COLUMN
============================================================ */

.two-col {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.two-col > div {
    flex: 1;
}
/* ============================================================
   GRID SYSTEM (REUSABLE)
============================================================ */

.grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

/* Column variations */

.grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .grid.cols-4,
    .grid.cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr !important;
    }
}

small, small.section-intro {
    display: inline-block;
    font-size: 10px !important;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #4d5f33;
    color: #fff !important;
    font-weight: 500;
    margin-bottom: 18px !important;
     padding: 3px 8px;
}
/* LISTS */

.section ul {
    padding-left: 0;
    list-style: none;
}

.section ul li {
    margin-bottom: 8px;
    font-family: var(--font-main);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-family: var(--font-main);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    
}

/* Custom checkmark */
.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--ember-orange);
    font-weight: bold;
}
/* ============================================================
   PRICING BOXES
============================================================ */

.pricing-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 500px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-box h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.pricing-box strong {
    font-size: 1.2rem;
    color: var(--ember-orange);
}

/* ============================================================
   TESTIMONIALS
============================================================ */

blockquote {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;

    max-width: 1200px;
    margin: 20px auto !important;
    color: #333;
}

blockquote strong {
    display: block;
    margin-top: 10px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-style: normal;
    color: #777;
}

/* ============================================================
   LINKS
============================================================ */

.section a:not(.btn) {
    font-weight: 600;
    text-decoration: underline;
    color: var(--ember-orange);
}

.section a:not(.btn):hover {
    opacity: 0.8;
}

/* ============================================================
   CTA SECTION (FINAL BLOCK)
============================================================ */

.section:last-of-type {
    background: linear-gradient(
    135deg,
    #2f1a0f,
    #3b2416,
    #2e2a1c
);
    color: #fff;
}

.section:last-of-type h2,
.section:last-of-type p {
    color: #fff;
}
.cta-section {
    position: relative;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0)
    );

    pointer-events: none;
}
/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    .section {
        padding: 60px 20px;
    }

    .two-col {
        flex-direction: column;
        gap: 20px;
    }

    .section p {
        font-size: 1rem;
    }

    blockquote {
        font-size: 1.05rem;
    }
}



.highlight{
    font-weight: bold;
}

/* ============================================================
   EMOTIONAL BLOCK
============================================================ */

.emotional-block {
    position: relative;

    padding: 140px 20px; /* keep spacing */

    background-image: url('/_system/assets/img/gallery/all/new-body-and-mind-koh-samui-309.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: #fff;
    overflow: hidden;
}
.emotional-block::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: inherit;
    background-size: cover;
    background-position: center;

    z-index: 0;
}
/* Dark overlay */

.emotional-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.7)
    );
    z-index: 1;
}
 
/* Content above overlay */

.emotional-block .container {
    position: relative;
    z-index: 2;
}

/* Headline */

.emotional-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF !important;
}

.emotional-block h2 span {
    display: block;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    margin-top: 5px;
}

/* Text */

.emotional-text {
    max-width: 650px;
    margin: 20px auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FFF !important;
}

/* Button spacing */

.emotional-block .btn {
    margin-top: 20px;
}

/* Optional subtle zoom effect */

.emotional-block {
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

/* ============================================================
   BENEFIT CARDS (FINAL POLISHED)
============================================================ */

.benefit-card {
    text-align: center;
}

/* Title */

.benefit-card h4 {
    font-family: var(--font-main);
    font-size: 1.4em;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: #502511;
}

/* List */

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Item */

.benefit-card ul li {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 14px;

    font-family: var(--font-main);
    font-size: 1em;
    line-height: 1.5;

    color: #333;
}

/* Icon */

.benefit-card ul li::before {
    content: "✔";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    font-size: 0.75rem;
    font-weight: bold;

    color: #fff;
    background: var(--ember-orange);

    flex-shrink: 0;

    transform: translateY(1px); /* subtle optical alignment */
}

/* Hover subtle lift */

.benefit-card:hover ul li::before {
    transform: translateY(1px) scale(1.05);
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* center everything horizontally */
}

/* Limit width of list so it doesn't stretch */

.benefit-card ul {
    max-width: 260px;
    width: 100%;
    border: 1px solid #000;
}

.benefit-card ul li {
    justify-content: flex-start; /* keeps icon + text aligned properly */
}

.benefit-card h4 {
    text-align: center;
    margin-bottom: 25px;
}

/* ============================================================
   BENEFIT LIST (P-BASED SYSTEM)
============================================================ */

.benefit-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Each line */

.benefit-list p {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-family: var(--font-main);
    font-size: 1rem;

    color: #333;

    margin: 0;
}

/* Icon */

.benefit-list p::before {
    content: "✔";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    font-size: 0.75rem;
    font-weight: bold;

    color: #fff;
    background: var(--ember-orange);

    flex-shrink: 0;
}

.benefit-card {
    max-width: 320px;
    margin: 0 auto;
}

/* ============================================================
   PROGRAM GRID
============================================================ */

.program-grid {
    margin-top: 50px;
}

/* Card */

.program-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

/* Hover */

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Featured card */

.program-card.featured {
    border: 2px solid var(--ember-orange);
    transform: scale(1.03);
}

/* Badge */

.badge {
    background: var(--ember-orange);
    color: #fff;

    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;

    font-size: 0.75rem;
    margin-bottom: 15px;
}

/* Title */

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

/* Subtitle */

.subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

/* Main price */

.price-main {
    font-size: 1.1rem;
    margin: 15px 0;
}

/* Highlight price */

.price-main strong {
    color: var(--ember-orange);
    font-size: 1.4rem;
}

/* Options */

.price-options p {
    margin: 5px 0;
    
}

/* Text */

.program-text {
    font-size: 0.95rem;
    color: #555;
    margin: 15px 0;
}

/* Note */

.note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

/* Button spacing */

.program-card .btn {
    margin-top: 15px;
}

.program-card.featured {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    align-items: stretch; /* KEY */
}

.program-card.featured {
    transform: scale(1.08);
 }

.program-card {
    display: flex;
    flex-direction: column;
    height: 100%;
 
    padding: 30px;
    justify-content: space-between;
}
.program-card .btn {
    margin-top: auto;
}

.program-card .price-options {
    margin-bottom: 20px;
}

.testimonial-card {
    background: #FFF;
    box-shadow:0px 10px 10px #aaa;
    border-radius: 25px;
    color: #fff;
     background-size: 300% 300%;
    animation: footerFlow 28s ease infinite; /* slower than header */
    padding: 5px;
} 

.img-box{
    border-radius: 25px;
    padding: 5px;
    background-color: #FFF;
    box-shadow: 0px 10px 10px #aaa;
}
.testimonial-card p {
    color: #FFF;
}

.testimonial-author strong {
    color: #fff;
}

.testimonial-author span {
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   VIDEO FADE-IN
============================================================ */

.video-fade {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.8s ease;
}

/* When AOS triggers */
.video-fade.aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.video-wrap iframe {
    transition: transform 0.4s ease;
}

.video-wrap:hover iframe {
    transform: scale(1.02);
}

/* ============================================================
   DAY GRID
============================================================ */

.day-grid {
    margin-top: 40px;
}

/* Individual item */

.day-item {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    padding: 25px 20px;

    text-align: center;

    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Hover lift */

.day-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Icon */

.day-item .icon {
    width: 50px;
    height: 50px;

    margin: 0 auto 15px;

    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--ember-orange),
        #ff9a4d
    );

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.4rem;
    color: #fff;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Title */

.day-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #502511;
}

/* Text */

.day-item p {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0,0,0,0.65);
    margin: 0;
}
@media (max-width: 768px) {
    .day-grid {
        margin-top: 25px;
    }

    .day-item {
        padding: 20px 15px;
    }
}

/* ============================================================
   404 PAGE
============================================================ */

.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 10px;

    color: var(--ember-orange);
    opacity: 0.9;
}

/* ============================================================
   TESTIMONIAL CARD
============================================================ */

.testimonial-card {
    background: #fff;
    border-radius: 20px;

    padding: 30px 30px 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    position: relative;

    transition: all 0.3s ease;
}

/* subtle hover lift */
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* quote text */
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.8);

    margin-bottom: 20px;

    font-style: italic;
}

/* author */
.testimonial-card strong {
    display: block;

    font-size: 0.9rem;
    font-weight: 600;

    color: var(--olive-green, #6b7d2d);
}

/* subtle quote mark decoration */
.testimonial-card::before {
    content: "“";
    position: absolute;

    top: 10px;
    left: 18px;

    font-size: 3rem;
    line-height: 1;

    color: rgba(0,0,0,0.05);

    font-family: serif;
}



.daily-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.daily-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.daily-card-header {
    margin-bottom: 25px;
}

.daily-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.6;
    display: none;
    visibility: hidden;
}

.daily-card h3 {
    margin-bottom: 15px;
}

.accordion details {
    border-top: 1px solid #e5e5e5;
    padding: 15px 0;
}

.accordion summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 20px;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
}

.accordion details[open] summary::after {
    content: "−";
}

.accordion p {
    padding-top: 12px;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 980px) {
    .daily-grid {
        grid-template-columns: 1fr;
    }

    .daily-card {
        padding: 25px;
    }
}

.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.inclusion-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.inclusion-card h3 {
    margin-bottom: 20px;
}

.inclusion-card details {
    border-top: 1px solid #e5e5e5;
    padding: 15px 0;
}

.inclusion-card summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 20px;
}

.inclusion-card summary::-webkit-details-marker {
    display: none;
}

.inclusion-card summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
}

.inclusion-card details[open] summary::after {
    content: "−";
}

.inclusion-card p {
    padding-top: 12px;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .inclusion-grid {
        grid-template-columns: 1fr;
    }
}

.complimentary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.complimentary-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.complimentary-card h3 {
    margin-bottom: 20px;
}

.complimentary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complimentary-card li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    line-height: 1.6;
}

.complimentary-card li:last-child {
    border-bottom: none;
}

@media (max-width: 980px) {
    .complimentary-grid {
        grid-template-columns: 1fr;
    }
}

.section-intro {
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.accordion summary {
    font-size: 15px;
    font-weight: 600;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(122, 92, 48, 0.12);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: rgba(122, 92, 48, 0.25);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.section.lifestyle-programs-intro {
    padding-top: 50px;
}

.content-card p {
    line-height: 1.8;
}

.program-card {
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
}

/* BASE */
.icon-wrap {
    width: 120px;
    height: 120px;
    margin: 15px auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.icon-wrap i,
.icon-wrap svg {
    width: 52px;
    height: 52px;
    color: #fff;
    stroke: #fff;
    stroke-width: 1.4;
}

/* MORNING */
.day-item:nth-child(1) .icon-wrap {
    background: linear-gradient(145deg, #D98A29, #F2B544);
    border: 2px solid rgba(217,138,41,0.2);
}

/* AFTERNOON */
.day-item:nth-child(2) .icon-wrap {
    background: linear-gradient(145deg, #518B3A, #6BA14E);
    border: 2px solid rgba(81,139,58,0.2);
}

/* EVENING */
.day-item:nth-child(3) .icon-wrap {
    background: linear-gradient(145deg, #6C5B8C, #8A76B8);
    border: 2px solid rgba(108,91,140,0.2);
}

/* HOVER */
.icon-wrap:hover {
    transform: translateY(-4px) scale(1.03);
}
/* BENEFIT BOX ICON COLORS (1–5) */

/* 1. Experience / Time */
.benefit-box:nth-child(1) .icon-wrap {
    background: linear-gradient(145deg, #D98A29, #F2B544);
    border: 2px solid rgba(217,138,41,0.2);
}

/* 2. Detox / Wellness */
.benefit-box:nth-child(2) .icon-wrap {
    background: linear-gradient(145deg, #518B3A, #6BA14E);
    border: 2px solid rgba(81,139,58,0.2);
}

/* 3. Recovery / Healing */
.benefit-box:nth-child(3) .icon-wrap {
    background: linear-gradient(145deg, #4A90A4, #63B5C8);
    border: 2px solid rgba(74,144,164,0.2);
}

/* 4. Support / Guidance */
.benefit-box:nth-child(4) .icon-wrap {
    background: linear-gradient(145deg, #8B5E3C, #B07A52);
    border: 2px solid rgba(139,94,60,0.2);
}

/* 5. Lifestyle / Balance */
.benefit-box:nth-child(5) .icon-wrap {
    background: linear-gradient(145deg, #6C5B8C, #8A76B8);
    border: 2px solid rgba(108,91,140,0.2);
}

/* HOW OUR PROGRAMS WORK ICON COLORS */

.program-work-cards .content-card:nth-child(1) .icon-wrap {
    background: linear-gradient(145deg, #D98A29, #F2B544);
    border: 2px solid rgba(217, 138, 41, 0.22);
}

.program-work-cards .content-card:nth-child(2) .icon-wrap {
    background: linear-gradient(145deg, #518B3A, #6BA14E);
    border: 2px solid rgba(81, 139, 58, 0.22);
}

.program-work-cards .content-card:nth-child(3) .icon-wrap {
    background: linear-gradient(145deg, #4A90A4, #63B5C8);
    border: 2px solid rgba(74, 144, 164, 0.22);
}

.program-work-cards .icon-wrap {
    box-shadow: 0 12px 26px rgba(18, 60, 47, 0.18);
}

.program-work-cards .icon-wrap svg,
.program-work-cards .icon-wrap i {
    color: #fff;
    stroke: #fff;
}
@media (max-width: 768px) {
    .icon-wrap {
        width: 70px;
        height: 70px;
    }

    .icon-wrap i,
    .icon-wrap svg {
        width: 30px;
        height: 30px;
    }
}


.image-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
}

.image-grid-2x2 .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.image-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.image-grid-3x3 .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    border: none;
    display: block;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.image-grid-3x3 .img-box:hover {
    transform: scale(1.02);
}
.image-grid-3x3 > * {
    margin: 0;
    padding: 0;
}
.image-grid-3x3 .img-box {
    transition: transform 0.3s ease;
}

.image-grid-3x3 .img-box:hover {
    transform: scale(1.03);
}

.image-grid-3x3 a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

/* ============================================================
   IMAGE GRID 4x4
============================================================ */

.image-grid-4x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.image-grid-4x4 > * {
    margin: 0;
    padding: 0;
}

.image-grid-4x4 a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.image-grid-4x4 .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;

    border: none;
    border-radius: 16px;
    box-shadow: none;

    margin: 0;
    padding: 0;

    transition: transform 0.3s ease;
}

.image-grid-4x4 .img-box:hover {
    transform: scale(1.03);
}

/* tablet */
@media (max-width: 1024px) {
    .image-grid-4x4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .image-grid-4x4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .image-grid-2x2, .image-grid-3x3 {
        grid-template-columns: 1fr;
        gap: 15px;
        display: none;
        visibility: hidden;
    }
}

/* PRICES */

.pricing-table-section{
    background-color: #502511;
  
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    margin-bottom: 30px;
    color: #4b2d1e !important;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.duration {
    font-weight: 600;
    color: #2f2f2f;
    font-size: 17px;
}

.price-wrap {
    text-align: right;
}

.old-price {
    display: block;
    text-decoration: line-through;
    opacity: 0.45;
    font-size: 14px;
    color: #666;
}

.price {
    font-weight: 700;
    font-size: 20px;
    color: #2f2f2f;
}

.promo-price {
    display: block;
    color: #ff6b00;
    font-weight: 700;
    font-size: 20px;
}

.promo-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

.promo-badge {
    font-size: 11px;
    text-transform: uppercase;
    background: rgba(255,107,0,0.1);
    color: #ff6b00;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* INTENSIVE CARE */
.intensive-card {
    border: 1px solid rgba(255,107,0,0.12);
}

.intensive-note {
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.85;
}

.intensive-row {
    margin-bottom: 25px;
}

.intensive-content {
    margin-top: 10px;
}

.intensive-content p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.intensive-cta {
    margin: 20px auto;
    padding-top: 20px;
}

.intensive-cta .btn-primary {
    width: 100%;
}

/* NOTES */
.pricing-note {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.75;
}
.intensive-note {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #5a5a5a !important; 
    font-size: 15px; 
}

.intensive-content {
    margin-top: 20px;
    color: #2f2f2f;
}

.intensive-content p {
    color: #2f2f2f !important;
    line-height: 1.8;
    margin-bottom: 16px;
}
/* MOBILE */
@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        text-align: center;
    }

    .pricing-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .price-wrap {
        text-align: center;
    }

    .promo-line {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .pricing-note {
        text-align: center;
    }
}

/* ============================================================
   FAQ ACCORDION
============================================================ */

/* GRID LAYOUT */
.faq-accordion {
    width: 100%;
    max-width: 100%;
    margin: 25px 0 0;
}
.faq-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* FAQ CARD */

.narrow{
    max-width:700px;
}
.faq-section-card {
    width: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    height: 100%;
}

/* ACCORDION WRAPPER */

.faq-accordion {
    width: 100%;
    max-width: 100%;
    margin-top: 25px;
}

/* ITEM */

.faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* HIDE CHECKBOX */

.faq-item input {
    display: none;
}

/* QUESTION BUTTON */

.faq-question {
    width: 100%;
    display: block;
    padding: 18px 30px 18px 0;

    background: none;
    border: none;
    outline: none;

    text-align: left;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;

    cursor: pointer;
    position: relative;

    transition: color 0.2s ease;
}

/* HOVER */

.faq-question:hover {
    color: var(--ember-orange);
}

/* PLUS ICON */

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    font-size: 1.2rem;
    font-weight: 400;

    transition: transform 0.3s ease;
}

/* ANSWER PANEL */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
}

/* ANSWER TEXT */

.faq-answer p {
    margin: 0;
    padding: 0 0 15px;

    color: rgba(0,0,0,0.75);
    line-height: 1.7;
    font-size: 15px;
}

/* ACTIVE STATE */

.faq-item input:checked ~ .faq-answer {
    max-height: 1000px;
}

.faq-item input:checked ~ .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

/* PAYMENT BLOCK */

.faq-payments-wrap {
     margin: 60px auto 0;
}
.faq-section-grid {
    align-items: stretch;
}

.faq-section-card {
    display: flex;
    flex-direction: column;
}

/* 2 COLUMN FAQ */
.faq-accordion-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
    align-items: start;
}

/* keep items clean in grid */
.faq-accordion-2col .faq-item {
    width: 100%;
}

/* answers span full item width */
.faq-accordion-2col .faq-answer {
    grid-column: span 1;
}

/* mobile fallback */
@media (max-width: 768px) {
    .faq-accordion-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* MOBILE */

@media (max-width: 980px) {
    .faq-section-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-section-card {
        padding: 25px;
    }

    .faq-payments-wrap {
        max-width: 100%;
        margin-top: 30px;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/* ============================================================
   GALLERY GRID 5
============================================================ */

.gallery-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.gallery-grid-5 a {
    display: block;
    overflow: hidden;
    border-radius: 14px;
}

.gallery-grid-5 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-5 a:hover img {
    transform: scale(1.04);
}

/* tablet */
@media (max-width: 1024px) {
    .gallery-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .gallery-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ============================================================
   GALLERY GRID 6
============================================================ */

.gallery-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.gallery-grid-6 a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-grid-6 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-6 a:hover img {
    transform: scale(1.04);
}

/* large tablet */
@media (max-width: 1200px) {
    .gallery-grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* tablet */
@media (max-width: 1024px) {
    .gallery-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .gallery-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
/* ============================================================
   GALLERY GRID 8
============================================================ */

.gallery-grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.gallery-grid-8 a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-grid-8 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-8 a:hover img {
    transform: scale(1.04);
}

/* large tablet / small desktop */
@media (max-width: 1200px) {
    .gallery-grid-8 {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* tablet */
@media (max-width: 1024px) {
    .gallery-grid-8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .gallery-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* STACK RIGHT SIDE */
.benefit-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARDS */
.benefit-box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
.benefit-box h4 {
    margin-bottom: 15px;
    color: var(--olive-green);
}

/* LIST */
.benefit-box ul {
    list-style: none;
    padding: 0;
}

.benefit-box li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.benefit-box li::before {
    /*
    content: "✔";
    position: relative;
    color: var(--ember-orange);
    margin-right: 10px;
    */
}

.gallery-highlights {
    max-width: 800px;
    margin: 25px auto;
    line-height: 1.9;
    font-size: 1rem;
    color: rgba(0,0,0,0.75);
}

/* ============================================================
   CLEAN FEATURE LIST
============================================================ */

.feature-list-clean {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.feature-list-clean li {
    padding: 14px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);

    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.8);
}

/* optional subtle hover */
.feature-list-clean li:hover {
    padding-left: 8px;
    transition: all 0.25s ease;
}

/* mobile */
@media (max-width: 768px) {
    .feature-list-clean li {
        padding: 12px 0;
        font-size: 0.95rem;
    }
}

.diagonal-divider {
    width: 100%;
    aspect-ratio: 19 / 12;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 220px;
}
/* overlay */
.diagonal-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

/* left diagonal */
.diagonal-left {
    clip-path: polygon(
        0 15%,     /* top left inset */
        100% 0,    /* top right peak */
        100% 85%,  /* bottom right inset */
        0 100%     /* bottom left drop */
    );
}

/* right diagonal */
.diagonal-right {
    clip-path: polygon(
        0 0,       /* top left peak */
        100% 15%,  /* top right inset */
        100% 100%, /* bottom right */
        0 85%      /* bottom left inset */
    );
}

.footer-socials {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.footer-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}
.footer-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-socials li a:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Facebook */
.footer-socials li a.facebook:hover {
    background-color: #1877F2;
}

/* Google */
.footer-socials li a.google:hover {
    background-color: #EA4335;
}

/* TripAdvisor */
.footer-socials li a.tripadvisor:hover,
.social-tripadvisor:hover {
    background-color: #34E0A1;
}

/* YouTube */
.footer-socials li a.youtube:hover {
    background-color: #FF0000;
}

/* Keep icons white */
.footer-socials li a i,
.footer-socials li a svg {
    color: #fff;
    fill: currentColor;
}

.footer-socials a,
.footer-socials a:link,
.footer-socials a:visited,
.footer-socials a:hover,
.footer-socials a:active,
.footer-socials a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.footer-socials a::before,
.footer-socials a::after {
    display: none !important;
    content: none !important;
}

.footer-socials a i,
.footer-socials a svg {
    text-decoration: none !important;
    display: block;
}

.social-tripadvisor svg {
    display: block;
    width: 30px;
    height: 30px;
    transform: translateY(2px);
}

/* ============================================================
   BOOKING FORM
============================================================ */

.booking-form {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    color: #333;
}

/* GRID */

.booking-form .form-grid {
    gap: 20px;
    margin-bottom: 20px;
}

/* FORM GROUP */

.booking-form .form-group {
    margin-bottom: 20px;
}

/* INPUTS */

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 18px 20px;

    background: #fafafa;
    border: 2px solid rgba(125, 135, 55, 0.45);
    border-radius: 10px;

    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);

    transition: all 0.25s ease;
}

/* FOCUS */

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--ember-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,120,0,0.08);
    outline: none;
}
.booking-form input {
    color: #333 !important;
}

.booking-form input::placeholder {
    color: #999 !important;
    opacity: 1;
}
/* SELECT */
.booking-form select {
    appearance: none;
    cursor: pointer;
    color: #333 !important;
}

.booking-form select:invalid {
    color: #999 !important;
}

.booking-form select option {
    color: #333;
}

.booking-form select option[value=""] {
    color: #999 !important;
}

/* TEXTAREA */

.booking-form textarea {
    min-height: 180px;
    resize: vertical;
}

/* SECTION BLOCKS */

.booking-form .form-section {
    margin: 35px 0;
    padding: 25px;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
}

/* HEADINGS */

.booking-form .form-section h4 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);

    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* CHECKBOX */

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 16px;
    cursor: pointer;

    line-height: 1.6;
}

/* CHECKBOX INPUT */

.checkbox-wrap input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CAPTCHA + BUTTON BAR */

.form-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* CAPTCHA */

.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;

    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
}

.captcha-wrap span {
    font-weight: 600;
}

.captcha-wrap input {
    width: 70px;
    text-align: center;
    padding: 14px;
}

/* BUTTON */

.form-footer .btn {
    min-width: 180px;
}

/* PLACEHOLDERS */

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(0,0,0,0.45);
}

/* MOBILE */

@media (max-width: 768px) {

    .booking-form {
        padding: 25px;
    }

    .booking-form .form-grid {
        grid-template-columns: 1fr !important;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-wrap {
        justify-content: center;
    }

    .form-footer .btn {
        width: 100%;
    }

}

/* BRAND COLOR RADIO / CHECKBOX */

.checkbox-wrap input[type="radio"],
.checkbox-wrap input[type="checkbox"] {
    accent-color: var(--olive-green);
}

/* PAYMENT EXTRA BLOCK */

.payment-extra {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* BANK BOX */

.bank-box {
    padding: 20px;
    background: #fafafa;
    border: 1px solid rgba(125,135,55,0.25);
    border-radius: 12px;
}

.bank-box p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ============================================================
   CHECKBOX / RADIO FIX
============================================================ */

.checkbox-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;

    width: 100%;
    margin-bottom: 16px;

    cursor: pointer;
    text-align: left;
    line-height: 1.6;
}

/* RADIO + CHECKBOX */

.checkbox-wrap input[type="radio"],
.checkbox-wrap input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;

    accent-color: var(--olive-green) !important;
}

/* LABEL TEXT */

.checkbox-wrap span,
.checkbox-wrap {
    color: var(--text-color);
}

.success-message{
    color: #447039 !important;
}


.booking-form input,
.booking-form select,
.booking-form textarea {
    color: #333 !important;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.booking-form input::-webkit-input-placeholder,
.booking-form textarea::-webkit-input-placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.booking-form input::-moz-placeholder,
.booking-form textarea::-moz-placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.booking-form select:invalid {
    color: #999 !important;
}

.booking-form select option {
    color: #333;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.blog-news-grid {
    margin-top: 40px;
}

.blog-news-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.blog-news-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9efe9;
}

.blog-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-news-card:hover .blog-news-img img {
    transform: scale(1.05);
}

.blog-news-content {
    padding: 26px;
    background-color: #fff;
}

.blog-news-date {
    display: inline-block;
    margin-bottom: 12px;
    color: #7BAE8D;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-news-content h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.2;
}

.blog-news-content h3 a {
    color: #123c2f;
    text-decoration: none;
}

.blog-news-content p {
    margin-bottom: 22px;
    color: #445c52;
    line-height: 1.65;
}

.blog-news-content .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.newsletter-card .blog-news-date::before {
    content: "Newsletter • ";
}

@media (max-width: 900px) {
    
    .blog-news-content {
        padding: 22px;
    }

    .blog-news-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
     

    .blog-news-grid {
        margin-top: 28px;
    }
}

/* ============================================================
   BLOG / NEWSLETTER TYPOGRAPHY + ARTICLE DETAIL
============================================================ */

.article-page,
.blog-news-section,
.related-blog-section,
.newsletter-page {
    color: #123c2f;
}

.article-page .container.narrow {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

/* HERO */

.article-hero {
    padding: 70px 0 50px;
    background: linear-gradient(180deg, #fff 0%, #f7faf5 100%);
}

.article-hero small,
.article-hero .kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: #fff !important;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    
}

.article-hero h1,
.article-hero h2 {
    max-width: 1100px;
    margin: 0 auto;
     color: #123c2f;
    font-size: clamp(34px, 3.4vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.article-date {
    margin: 14px 0 0;
    color: #668075;
    font-size: 14px;
    font-weight: 700;
}

/* FEATURED IMAGE */

.article-featured-image {
    width: 100%;
    max-width: 1400px;
    max-height: 650px;
    object-fit: cover;
    display: block;
    margin: 34px auto 0;
    border-radius: 32px;
    box-shadow: 0 22px 55px rgba(18, 60, 47, 0.18);
}

/* CONTENT AREA */

.article-page .blog-content-white {
    background: linear-gradient(180deg, #f7faf5 0%, #ffffff 100%) !important;
    padding: 70px 0 90px;
}

.article-content {
    max-width: 1180px;
    width: 86%;
    margin: 0 auto;
    padding: 70px 80px;
    background: #ffffff;
    color: #203b32;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.78;
    border-radius: 34px;
    box-shadow: 0 18px 50px rgba(18, 60, 47, 0.10);
    border: 1px solid rgba(123, 174, 141, 0.18);
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content > *:last-child {
    margin-bottom: 0;
}

.article-content p:empty,
.article-content h2:empty,
.article-content h3:empty,
.article-content h4:empty {
    display: none;
}

/* ARTICLE TEXT */

.article-content p {
    margin: 0 0 24px;
    color: #203b32 !important;
    line-height: 1.78;
}

.article-content h2 {
    margin: 44px 0 18px;
    font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
    color: #123c2f !important;
    font-size: clamp(30px, 2.5vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.article-content h3 {
    margin: 36px 0 16px;
    font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
    color: #2A5A2E !important;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.article-content h4 {
    margin: 30px 0 12px;
    color: #7BAE8D !important;
    font-size: 22px;
}

.article-content strong {
    color: #123c2f;
}

/* LISTS WITH ICONS */

.article-content ul {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.article-content ul li {
    position: relative;
    margin-bottom: 14px;
    padding: 15px 18px 15px 52px;
    background: #f7faf5;
    border-radius: 16px;
    color: #203b32 !important;
    border: 1px solid rgba(123, 174, 141, 0.22);
}

.article-content ul li::before {
    content: "🌿";
    position: absolute;
    left: 18px;
    top: 14px;
    font-size: 18px;
}

.article-content ol {
    counter-reset: article-counter;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.article-content ol li {
    counter-increment: article-counter;
    position: relative;
    margin-bottom: 14px;
    padding: 15px 18px 15px 58px;
    background: #f7faf5;
    border-radius: 16px;
    border: 1px solid rgba(123, 174, 141, 0.22);
    color: #203b32 !important;
}

.article-content ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 18px;
    top: 13px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #7BAE8D;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MEDIA / QUOTES */

.article-content a {
    color: #2A5A2E;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 38px auto;
    border-radius: 26px;
    box-shadow: 0 14px 35px rgba(18, 60, 47, 0.12);
}

.article-content blockquote {
    margin: 42px 0;
    padding: 30px 34px;
    border-left: 6px solid #7BAE8D;
    background: #f7faf5;
    border-radius: 22px;
    color: #123c2f;
    font-size: 22px;
    line-height: 1.55;
}

/* CALLOUTS */

.article-content .callout,
.article-content .highlight-box {
    margin: 38px 0;
    padding: 32px;
    background: #2A5A2E;
    color: #fff;
    border-radius: 28px;
}

.article-content .callout h2,
.article-content .callout h3,
.article-content .highlight-box h2,
.article-content .highlight-box h3,
.article-content .callout p,
.article-content .highlight-box p {
    color: #fff !important;
}

/* RELATED BLOGS */

.related-blog-section {
    background: #f7faf5 !important;
    padding: 90px 0;
}

.related-blog-section .section-header {
    margin-bottom: 35px;
}

.related-blog-section .section-header h2,
.blog-news-section .section-header h2 {
    color: #123c2f !important;
    font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.related-blog-section .section-header p,
.blog-news-section .section-header p,
.section-intro {
    color: #445c52 !important;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.7;
}

/* BLOG GRID CARDS */

.blog-news-grid {
    margin-top: 40px;
}

.blog-news-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(18, 60, 47, 0.09);
    border: 1px solid rgba(123, 174, 141, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(18, 60, 47, 0.14);
}

.blog-news-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9efe9;
}

.blog-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-news-card:hover .blog-news-img img {
    transform: scale(1.05);
}

.blog-news-content {
    padding: 26px;
}

.blog-news-date {
    display: inline-block;
    margin-bottom: 12px;
    color: #7BAE8D !important;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-news-content h3 {
    margin: 0 0 14px;
    font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.blog-news-content h3 a {
    color: #123c2f !important;
    text-decoration: none;
}

.blog-news-content h3 a:hover {
    color: #2A5A2E !important;
}

.blog-news-content p {
    color: #445c52 !important;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .article-hero {
        padding: 58px 0 38px;
    }

    .article-content {
        width: 92%;
        padding: 46px 34px;
        font-size: 17px;
    }

    .article-page .blog-content-white {
        padding: 48px 0 64px;
    }

    .article-featured-image {
        border-radius: 24px;
    }
}

@media (max-width: 640px) {
    .article-page .container.narrow {
        width: 92%;
    }

    .article-hero h1,
    .article-hero h2 {
        font-size: 32px;
    }

    .article-content {
        width: 94%;
        padding: 34px 22px;
        border-radius: 24px;
    }

    .article-content ul li,
    .article-content ol li {
        padding-right: 14px;
    }
}

/* NEWSLETTER DETAIL */

.newsletter-page {
    background: #fff;
    color: #203b32;
}

.newsletter-page .container.narrow {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

.newsletter-page .section {
    background: linear-gradient(180deg, #f7faf5 0%, #ffffff 100%);
    padding: 70px 0 90px;
}

.newsletter-content {
    max-width: 1180px;
    width: 86%;
    margin: 0 auto;
    padding: 70px 80px;
    background: #fff;
    border-radius: 34px;
    box-shadow: 0 18px 50px rgba(18, 60, 47, 0.10);
    border: 1px solid rgba(123, 174, 141, 0.18);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.78;
    color: #203b32;
}

.newsletter-content h1,
.newsletter-content h2,
.newsletter-content h3,
.newsletter-content h4,
.newsletter-content h5{
    text-align:center;
}
.newsletter-content h2 {
    margin: 44px 0 18px;
    color: #123c2f;
    font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
    font-size: clamp(26px, 2.5vw, 40px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.newsletter-content h3 {
    margin: 32px 0 14px;
    color: #2A5A2E;
    font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.25;
}

.newsletter-content p {
    margin: 0 0 24px;
    color: #203b32;
}

.newsletter-text {
    margin-bottom: 36px;
}

.newsletter-text > *:first-child {
    margin-top: 0;
}

.newsletter-text > *:last-child {
    margin-bottom: 0;
}

.newsletter-image {
    margin: 42px 0;
}

.newsletter-image img,
.newsletter-image-text img {
    width: 100%;
    display: block;
    border-radius: 28px;
    box-shadow: 0 16px 38px rgba(18, 60, 47, 0.12);
}

.newsletter-image figcaption {
    margin-top: 10px;
    color: #668075;
    font-size: 14px;
    text-align: center;
}

.newsletter-image-text {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 34px;
    align-items: center;
    margin: 46px 0;
    padding: 34px;
    background: #f7faf5;
    border-radius: 30px;
    border: 1px solid rgba(123, 174, 141, 0.2);
}

.newsletter-button-wrap {
    margin: 34px 0;
    text-align: center;
}

.newsletter-testimonial {
    margin: 44px 0;
    padding: 32px 36px;
    background: #f7faf5;
    border-left: 6px solid #7BAE8D;
    border-radius: 24px;
}

.newsletter-testimonial p {
    color: #123c2f;
    font-size: 22px;
    line-height: 1.55;
    font-style: italic;
}

.newsletter-testimonial cite {
    color: #2A5A2E;
    font-weight: 800;
    font-style: normal;
}

.newsletter-promotion {
    margin: 46px 0;
    padding: 38px;
    background: #2A5A2E;
    color: #fff;
    border-radius: 30px;
}

.newsletter-promotion h3,
.newsletter-promotion p {
    color: #fff;
}

.newsletter-promotion .btn-primary {
    background: #fff;
    color: #123c2f;
}

.newsletter-divider {
    margin: 48px auto;
    border: 0;
    height: 1px;
    max-width: 760px;
    background: linear-gradient(90deg, transparent, rgba(42, 90, 46, 0.35), transparent);
}

.related-newsletter-section {
    background: #f7faf5 !important;
    padding: 90px 0;
}

.newsletter-card .blog-news-date::before {
    content: "Newsletter • ";
}

@media (max-width: 900px) {
    .newsletter-content {
        width: 92%;
        padding: 46px 34px;
        font-size: 17px;
    }

    .newsletter-image-text {
        grid-template-columns: 1fr;
        padding: 26px;
    }
}

@media (max-width: 640px) {
    .newsletter-content {
        width: 94%;
        padding: 34px 22px;
        border-radius: 24px;
    }
}

html {
    scroll-behavior: smooth;
}

#main-content {
    scroll-margin-top: 110px;
}

.white{color: #fff !important;}
.newsletter-index {
    margin: 30px 0 40px;
    padding: 24px;
    background: #f6faf7;
    border-radius: 16px;
}

.newsletter-index h2 {
    margin: 0 0 16px;
}

.newsletter-index ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.newsletter-index li {
    margin: 0;
}

.newsletter-index li.subitem {
    margin: 0;
    opacity: 0.85;
}

.newsletter-index a {
    display: inline-flex;
    align-items: center;
    padding: 9px 15px;
    border-radius: 999px;
    background: #ffffff;
    color: #284238;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid rgba(123, 174, 141, 0.35);
    transition: all 0.2s ease;
}

.newsletter-index li.subitem a {
    font-size: 0.86rem;
    font-weight: 600;
    opacity: 0.9;
}

.newsletter-index a:hover {
    background: #7BAE8D;
    color: #ffffff;
    border-color: #7BAE8D;
    text-decoration: none;
    transform: translateY(-1px);
}

.newsletter-article {
    padding: 40px;
    background: #fafcfb;
    border: 1px solid #e7efe9;
    border-radius: 20px;
    margin: 50px 0;
}



.newsletter-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 30px 0;
}

.newsletter-program-card {
    background: #fff8f2;
    border: 1px solid #ffe1cc;
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
}

.newsletter-program-card h3 {
    margin-bottom: 12px;
    color: #3b1d0f;
}

.newsletter-program-card p {
    margin-bottom: 14px;
}

.newsletter-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff5a00;
}

@media (max-width: 768px) {
    .newsletter-program-grid {
        grid-template-columns: 1fr;
    }
}
/* Newsletter main wrapper */
.newsletter-content {
    max-width: 980px;
}

/* Table of contents block */
.newsletter-index {
    background: linear-gradient(135deg, #f5fbf7, #fff7ee);
    border: 1px solid rgba(123,174,141,0.25);
    border-radius: 26px;
    padding: 30px;
    margin-bottom: 45px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.newsletter-index h2 {
    text-align: center;
    margin-bottom: 22px;
}

.newsletter-index ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.newsletter-index a {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #315f42;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(123,174,141,0.28);
}

.newsletter-index a:hover {
    background: #7bae8d;
    color: #ffffff;
}

/* Text article blocks */
.newsletter-text {
    background: #ffffff;
    border-radius: 28px;
    padding: 38px 42px;
    margin: 34px 0;
    box-shadow: 0 18px 50px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.05);
}

.newsletter-text h2 {
    margin-top: 0;
    margin-bottom: 22px;
    color: #2f4f3a;
}

.newsletter-text h3 {
    margin-top: 34px;
    color: #6d8f56;
}

.newsletter-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Images as proper magazine dividers */
.newsletter-image {
    margin: 48px 0 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0,0,0,0.12);
}

.newsletter-image img {
    display: block;
    width: 100%;
    border-radius: 30px;
}

/* Hide harsh dividers */
.newsletter-divider {
    border: 0;
    height: 1px;
    margin: 42px 0;
    background: linear-gradient(to right, transparent, rgba(123,174,141,0.45), transparent);
}

/* CTA button spacing */
.newsletter-button-wrap {
    text-align: center;
    margin: 45px 0;
}

/* Summer promo cards inside newsletter */
.newsletter-text .program-grid {
    margin-top: 30px;
    margin-bottom: 20px;
}

.newsletter-text .program-card {
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fff8f2);
    border: 1px solid rgba(255,150,80,0.18);
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.newsletter-text .program-card.featured {
    transform: translateY(-8px);
    border-color: rgba(123,174,141,0.45);
}

.newsletter-text .badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef7f0;
    color: #315f42;
    font-size: 0.82rem;
    font-weight: 700;
}

.newsletter-text .price-main {
    margin-top: 18px;
    font-size: 1.2rem;
    color: #315f42;
}

/* Make first intro feel special */
.newsletter-content > .newsletter-text:first-of-type {
    background: linear-gradient(135deg, #ffffff, #f4faf6);
    border-left: 7px solid #7bae8d;
}

/* Mobile */
@media (max-width: 768px) {
    .newsletter-text {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .newsletter-index {
        padding: 24px 18px;
    }

    .newsletter-index ul {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-index a {
        display: block;
        text-align: center;
    }

    .newsletter-image,
    .newsletter-image img {
        border-radius: 22px;
    }

    .newsletter-text .program-card.featured {
        transform: none;
    }
}


.seasonal-rates-box {
    max-width: 950px;
    margin: 35px auto 45px;
    padding: 34px 36px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff7e8 0%, #ffffff 55%, #eef9f4 100%);
    border: 1px solid rgba(201, 151, 68, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.seasonal-rates-box::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 170px;
    height: 170px;
    background: rgba(201, 151, 68, 0.16);
    border-radius: 50%;
}

.seasonal-rates-box::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 140px;
    height: 140px;
    background: rgba(70, 150, 118, 0.13);
    border-radius: 50%;
}

.seasonal-rates-box > * {
    position: relative;
    z-index: 2;
}

.seasonal-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 17px 26px;
    border-radius: 29px;
    background: #c99744;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seasonal-rates-box h2, .seasonal-rates-box h3 {
    margin: 0 0 12px;
    font-size: 1.8rem;
    color: #25372f;
}

.seasonal-rates-box p {
    max-width: 780px;
    margin: 0 auto 24px;
    color: #52625a;
    line-height: 1.7;
}

.seasonal-rates-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    background: #25372f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.seasonal-rates-btn:hover {
    transform: translateY(-2px);
    background: #c99744;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
    .seasonal-rates-box {
        margin: 28px auto 36px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .seasonal-rates-box h3 {
        font-size: 1.45rem;
    }

    .seasonal-rates-box p {
        font-size: 0.95rem;
    }
}
