/* DESIGN SYSTEM & TOKENS */
:root {
    --color-forest: #245C4A;
    --color-sage: #A8BFAF;
    --color-ivory: #FAF8F2;
    --color-beige: #F1EBDD;
    --color-gold: #F4D44D;
    --color-charcoal: #202824;
    --color-white: #FFFFFF;
    --color-shadow: rgba(32, 40, 36, 0.08);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-ivory);
    color: var(--color-charcoal);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-forest);
}

p {
    color: var(--color-charcoal);
    opacity: 0.9;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITIES */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 0;
}

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

.text-white {
    color: var(--color-white) !important;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-sage);
    margin: 20px 0 30px 0;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

.divider.gold {
    background-color: var(--color-gold);
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-forest);
    margin-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 4px;
}

.section-badge.dark {
    color: var(--color-forest);
    border-bottom-color: var(--color-sage);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-forest);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(36, 92, 74, 0.2);
}

.btn-primary:hover {
    background-color: #1a4436;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 92, 74, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1.5px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-forest);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-forest);
    font-weight: 700;
}

.btn-gold:hover {
    background-color: #e0be34;
    transform: translateY(-2px);
}

.btn-ivory-outline {
    background-color: transparent;
    color: var(--color-ivory);
    border: 1.5px solid var(--color-sage);
}

.btn-ivory-outline:hover {
    background-color: var(--color-ivory);
    color: var(--color-forest);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.btn-block {
    width: 100%;
}

/* HEADER / NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    border-bottom: 1px solid rgba(36, 92, 74, 0.05);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(36, 92, 74, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    height: 70px;
}

.header-container {
    width: 90%;
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.main-header.scrolled .logo-area {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.brand-logo {
    height: 52px;
    width: 52px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--color-forest);
    transition: var(--transition-fast);
}

.brand-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sage);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-forest);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.main-header.scrolled .nav-link {
    color: rgba(32, 40, 36, 0.8);
}

.main-header.scrolled .nav-link:hover, 
.main-header.scrolled .nav-link.active {
    color: var(--color-forest);
}

.nav-cta-btn {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    background-color: var(--color-gold);
    color: var(--color-forest) !important;
    border-radius: 4px;
    margin-left: 10px;
    box-shadow: 0 4px 10px rgba(244, 212, 77, 0.25);
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(244, 212, 77, 0.4);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-forest);
    transition: var(--transition-fast);
}

.main-header.scrolled .hamburger-menu .bar {
    background-color: var(--color-forest);
}

/* HERO SECTION REDESIGN */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-charcoal);
    padding-top: var(--header-height);
    overflow: hidden;
}

/* Left-to-right fade overlay to match reference */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(250, 248, 242, 1) 0%, 
        rgba(250, 248, 242, 0.98) 25%, 
        rgba(250, 248, 242, 0.8) 40%, 
        rgba(250, 248, 242, 0) 65%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-container-flex {
    display: grid;
    grid-template-columns: 55% 45%;
    width: 95%;
    max-width: 1400px;
    margin: auto auto;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 80px;
    z-index: 2;
}

.hero-left-col {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-section-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
    display: inline-block;
}

.hero-brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-brand-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    object-fit: cover;
}

.hero-brand-text h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-forest);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.hero-brand-text p {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-forest);
    opacity: 0.8;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.hero-life-tag {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-charcoal);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-main-title {
    font-family: var(--font-body);
    font-size: 4.8rem;
    font-weight: 900;
    color: var(--color-forest);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Prohibition Circle for NO ALCOHOL */
.prohibition-o {
    display: inline-block;
    position: relative;
    width: 4.2rem;
    height: 4.2rem;
    border: 8px solid #c0392b;
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 4px;
}

.prohibition-slash {
    position: absolute;
    top: 50%;
    left: -2px;
    width: 100%;
    height: 8px;
    background-color: #c0392b;
    transform: rotate(-45deg) translateY(-50%);
    transform-origin: center;
}

.hero-script-tag {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2.2rem;
    color: var(--color-forest);
    margin-bottom: 35px;
    font-weight: 400;
}

/* Benefits Grid */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid rgba(36, 92, 74, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--color-forest);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-forest);
}

/* Pill badge & journey text */
.hero-pill-badge {
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(36, 92, 74, 0.25);
}

.pill-badge-icon {
    font-size: 1.1rem;
}

.badge-highlight {
    color: var(--color-gold);
    font-weight: 700;
}

.hero-journey-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-forest);
    opacity: 0.9;
}

/* Right Side Floating CTA Card */
.floating-cta-card {
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(32, 40, 36, 0.22);
    max-width: 380px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
    transition: var(--transition-smooth);
}

.floating-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(32, 40, 36, 0.3);
}

.cta-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cta-phone-circle {
    width: 40px;
    height: 40px;
    background-color: var(--color-gold);
    color: var(--color-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-phone-circle svg {
    width: 20px;
    height: 20px;
}

.cta-card-header h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.floating-cta-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.45;
}

.cta-card-btn {
    display: block;
    text-align: center;
    background-color: var(--color-white);
    color: var(--color-forest);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 12px 0;
    border-radius: 6px;
    transition: var(--transition-fast);
    border: 1.5px solid transparent;
}

.cta-card-btn:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

/* BOTTOM BAR */
.hero-bottom-bar {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    z-index: 5;
}

.hero-bottom-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.b-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-forest);
}

.b-feature-icon {
    font-size: 1.1rem;
}


/* FEATURE STRIP */
.feature-strip {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 90%;
    max-width: var(--container-width);
    background: rgba(250, 248, 242, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px var(--color-shadow);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 5;
    overflow: hidden;
}

.strip-item {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid rgba(36, 92, 74, 0.1);
    transition: var(--transition-smooth);
}

.strip-item:last-child {
    border-right: none;
}

.strip-item:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
}

.strip-icon {
    width: 32px;
    height: 32px;
    color: var(--color-forest);
    margin: 0 auto 15px auto;
}

.strip-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-forest);
}

/* ABOUT SECTION */
.about-section {
    background-color: var(--color-white);
    padding: 100px 0 60px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.split-layout.inverted {
    grid-template-columns: 0.9fr 1.1fr;
}

.about-paragraph {
    font-size: 1.05rem;
    margin-bottom: 24px;
    opacity: 0.85;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-ivory);
    border-left: 4px solid var(--color-gold);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 35px;
    box-shadow: 0 4px 15px var(--color-shadow);
}

.badge-icon {
    width: 48px;
    height: 48px;
    color: var(--color-forest);
    flex-shrink: 0;
}

.badge-title {
    font-size: 1.3rem;
    color: var(--color-forest);
    font-weight: 700;
}

.badge-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px var(--color-shadow);
    position: relative;
    z-index: 2;
}

.image-accent-border {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-sage);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.image-accent-border.font-green {
    border-color: var(--color-forest);
    left: -20px;
    right: auto;
}

/* OUR APPROACH */
.approach-section {
    background-color: var(--color-beige);
}

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

.approach-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--color-shadow);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.approach-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--color-forest);
    box-shadow: 0 20px 40px rgba(32, 40, 36, 0.12);
}

.card-icon {
    width: 40px;
    height: 40px;
    color: var(--color-forest);
    margin-bottom: 25px;
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
}

.approach-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* TIMELINE PROGRAMME */
.programme-section {
    background-color: var(--color-ivory);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background-color: var(--color-sage);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 15px;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-forest);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    border: 3px solid var(--color-ivory);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--color-gold);
    color: var(--color-forest);
    transform: scale(1.1);
}

.timeline-content {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px var(--color-shadow);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px var(--color-shadow);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* WELLNESS SECTION */
.wellness-section {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.wellness-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 92, 74, 0.85);
    z-index: 1;
}

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

.wellness-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 40px 0;
}

.well-card {
    background-color: rgba(250, 248, 242, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 20px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    color: var(--color-white);
}

.well-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.well-card h3 {
    color: var(--color-gold);
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.well-card p {
    color: var(--color-white);
    opacity: 0.9;
    font-size: 0.95rem;
}

.wellness-subtext {
    font-size: 1.1rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* MEDICAL SECTION */
.medical-section {
    background-color: var(--color-white);
}

.medical-list {
    list-style: none;
    margin-bottom: 35px;
}

.medical-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--color-forest);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-block {
    background-color: var(--color-ivory);
    border-left: 4px solid var(--color-forest);
    padding: 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px var(--color-shadow);
}

.highlight-block h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.highlight-block p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* NUTRITION */
.nutrition-section {
    padding: 100px 0;
    background-attachment: fixed;
}

.nutrition-schedule {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.nutrition-badge {
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 20px 30px;
    border-radius: 6px;
    max-width: 320px;
    box-shadow: 0 6px 15px rgba(36, 92, 74, 0.2);
}

.nutrition-badge h3 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.nutrition-badge p {
    color: var(--color-white);
    opacity: 0.9;
    font-size: 0.9rem;
}

.nutrition-details {
    list-style: none;
}

.nutrition-details li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.nutrition-details li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1;
}

/* FACILITIES MASONRY */
.facilities-section {
    background-color: var(--color-white);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 40px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    box-shadow: 0 8px 25px var(--color-shadow);
}

.masonry-item:nth-child(2), .masonry-item:nth-child(6) {
    height: 380px;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(32, 40, 36, 0.9));
    color: var(--color-white);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.masonry-item:hover img {
    transform: scale(1.08);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.masonry-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* INTERACTIVE GALLERY */
.gallery-section {
    background-color: var(--color-beige);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-white);
    border: 1px solid var(--color-sage);
    color: var(--color-forest);
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-forest);
    color: var(--color-white);
    border-color: var(--color-forest);
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 20px var(--color-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 92, 74, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.item-overlay span {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1.5px solid var(--color-white);
    padding: 10px 20px;
    border-radius: 4px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

/* PROGRAMME INFO SECTION */
.info-section {
    background-color: var(--color-white);
}

.info-container {
    max-width: 900px;
}

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

.info-card {
    background-color: var(--color-ivory);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--color-shadow);
    display: flex;
    flex-direction: column;
}

.info-card-header {
    background-color: var(--color-forest);
    padding: 20px;
    text-align: center;
}

.info-card-header h4 {
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 600;
}

.info-card-body {
    padding: 40px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card-body h2 {
    font-size: 2.2rem;
    color: var(--color-forest);
    margin-bottom: 20px;
}

.info-card-body p {
    font-size: 1rem;
    opacity: 0.85;
}

.cost-note {
    font-style: italic;
    color: var(--color-forest);
    font-weight: 500;
    margin-bottom: 25px;
}

.add-ons {
    border-top: 1px solid var(--color-sage);
    padding-top: 20px;
    text-align: left;
}

.add-on-item {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.add-on-item-desc {
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.4;
}

/* FINAL CTA SECTION */
.cta-section {
    background-color: var(--color-forest);
    position: relative;
    padding: 100px 0;
    color: var(--color-white);
    overflow: hidden;
}

.cta-title {
    color: var(--color-white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Abstract Shape Backgrounds for CTA */
.cta-shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(244, 212, 77, 0.05);
    z-index: 1;
    pointer-events: none;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -100px;
}

/* CONTACT SECTION & ENQUIRY FORM */
.contact-section {
    background-color: var(--color-ivory);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-intro {
    font-size: 1.05rem;
    margin-bottom: 35px;
    opacity: 0.85;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-white);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--color-shadow);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--color-shadow);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    color: var(--color-forest);
    background-color: var(--color-beige);
    padding: 10px;
    border-radius: 50%;
}

.contact-card-details h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-forest);
}

.contact-card-details p {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 2px 0;
}

.contact-card-details span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-sage);
    font-weight: 600;
}

.contact-form-panel {
    background-color: var(--color-white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px var(--color-shadow);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-panel p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-sage);
    background-color: transparent;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-charcoal);
    outline: none;
    transition: var(--transition-fast);
}

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

.form-group label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: rgba(32, 40, 36, 0.6);
    pointer-events: none;
    transition: var(--transition-fast);
    background-color: var(--color-white);
    padding: 0 6px;
}

.form-group textarea ~ label {
    top: 25px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.75rem;
    color: var(--color-forest);
    font-weight: 600;
}

.form-status {
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
}

.form-status.success {
    color: var(--color-forest);
}

.form-status.error {
    color: #cc3333;
}

/* FOOTER */
.footer {
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 80px 0 40px 0;
    position: relative;
}

.footer-brand-centered {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-centered {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-title-centered {
    color: var(--color-white);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.footer-tagline-centered {
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
}

.footer-logo-row h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-mission {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact strong {
    color: var(--color-white);
}

.footer-bottom {
    margin-top: 60px;
}

.gold-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    margin-bottom: 25px;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* MEDIA LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(20, 26, 23, 0.98);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    animation: zoom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoom {
    from {transform: scale(0.95); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: 300;
    transition: var(--transition-fast);
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-size: 30px;
    font-weight: bold;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
    border-radius: 50%;
}

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

.lightbox-prev {
    left: 5%;
}

.lightbox-next {
    right: 5%;
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--color-white);
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 500;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* RESPONSIVE DESIGN */

/* Large Tablets & Desktop adjustments */
@media (max-width: 1024px) {
    .split-layout, .split-layout.inverted {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .split-layout.inverted .split-image {
        order: 2;
    }
    
    .split-layout.inverted .split-content {
        order: 1;
    }
    
    .grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-strip {
        grid-template-columns: repeat(2, 1fr);
        bottom: -20px;
        transform: translate(-50%, 0);
    }
    
    .feature-strip .strip-item {
        border-right: none;
        border-bottom: 1px solid rgba(36, 92, 74, 0.1);
    }
    
    .feature-strip .strip-item:nth-child(even) {
        border-left: 1px solid rgba(36, 92, 74, 0.1);
    }
    
    .hero-section {
        height: auto;
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .hero-container-flex {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
        width: 90%;
    }
    
    .hero-left-col {
        padding-right: 0;
        background: rgba(250, 248, 242, 0.92);
        backdrop-filter: blur(10px);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(36, 92, 74, 0.1);
    }
    
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .prohibition-o {
        width: 3rem;
        height: 3rem;
        border-width: 6px;
    }
    
    .prohibition-slash {
        height: 6px;
    }
    
    .hero-bottom-bar {
        flex-direction: column;
        align-items: stretch;
        width: 90%;
    }
    
    .floating-cta-card {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .masonry-item:nth-child(2), .masonry-item:nth-child(6) {
        height: 300px;
    }
}

/* Small Tablets & Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .main-header {
        background-color: transparent;
        border-bottom: 1px solid rgba(36, 92, 74, 0.05);
    }
    
    .main-header.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(36, 92, 74, 0.1);
    }
    
    .brand-logo {
        height: 38px !important;
        width: 38px !important;
    }
    
    .brand-title {
        color: var(--color-forest);
        font-size: 1.05rem !important;
        letter-spacing: 0.02em;
    }

    .brand-subtitle {
        font-size: 0.55rem !important;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hamburger-menu .bar {
        background-color: var(--color-forest);
    }
    
    /* Mobile Menu Drawer */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 25px;
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: 0 15px 30px var(--color-shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--color-charcoal) !important;
        font-size: 1.1rem;
    }
    
    .nav-cta-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    /* Mobile Hero Styling */
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        padding-top: calc(var(--header-height) + 20px) !important;
        padding-bottom: 40px !important;
        background-position: 65% center !important;
        background-size: cover !important;
    }

    .hero-section::before {
        background: linear-gradient(to bottom, 
            rgba(250, 248, 242, 0) 0%, 
            rgba(250, 248, 242, 0.25) 30%, 
            rgba(250, 248, 242, 0.7) 65%, 
            rgba(250, 248, 242, 0.95) 100%
        ) !important;
    }
    
    .hero-container-flex {
        grid-template-columns: 1fr !important;
        width: 90% !important;
        padding-bottom: 20px !important;
    }
    
    .hero-left-col {
        align-items: center !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .hero-section-logo {
        height: 65px !important;
        width: auto !important;
        margin: 0 auto 20px auto !important;
        display: block !important;
    }

    .hero-brand-header {
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .hero-brand-logo {
        width: 70px !important;
        height: 70px !important;
    }

    .hero-brand-text h2 {
        font-size: 1.25rem !important;
    }

    .hero-brand-text p {
        font-size: 0.6rem !important;
        letter-spacing: 0.05em !important;
    }
    
    .hero-life-tag {
        font-size: 1.1rem !important;
        letter-spacing: 0.05em !important;
        margin-bottom: 5px !important;
    }

    .hero-main-title {
        font-size: 2.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .prohibition-o {
        width: 2rem !important;
        height: 2rem !important;
        border-width: 4px !important;
        margin: 0 2px !important;
    }
    
    .prohibition-slash {
        height: 4px !important;
    }
    
    .hero-script-tag {
        font-size: 1.3rem !important;
        margin-bottom: 25px !important;
    }
    
    /* 2x2 Benefits Grid */
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        margin-bottom: 25px !important;
    }

    .benefit-item {
        padding: 10px !important;
        gap: 8px !important;
        border-radius: 6px !important;
        background-color: rgba(255, 255, 255, 0.85) !important;
        justify-content: center !important;
        flex-direction: column !important;
        text-align: center !important;
        border: 1px solid rgba(36, 92, 74, 0.08) !important;
    }

    .benefit-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .benefit-item span {
        font-size: 0.65rem !important;
        letter-spacing: 0.02em !important;
    }

    .hero-pill-badge {
        font-size: 0.75rem !important;
        padding: 8px 18px !important;
        margin-bottom: 15px !important;
    }

    .hero-journey-text {
        font-size: 0.7rem !important;
    }
    
    .feature-strip {
        grid-template-columns: 1fr;
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin: 40px auto 0 auto;
        width: 100%;
    }
    
    .feature-strip .strip-item {
        border-left: none !important;
        border-bottom: 1px solid rgba(36, 92, 74, 0.1);
    }
    
    .about-main-img {
        height: 320px;
    }
    
    .grid-3x2, .gallery-grid, .masonry-grid, .info-cards, .grid-2-col, .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 30px !important;
        text-align: center !important;
        padding-top: 30px !important;
    }
    
    .masonry-item {
        height: 250px !important;
    }
    
    .wellness-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-nav {
        font-size: 24px;
        padding: 8px;
    }
}
