/* ===================================================================
   PERMANIDO – GLOBAL STYLES
   Extracted from index.html
   =================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FAF8F5;
    color: #1A3636;
    -webkit-font-smoothing: antialiased;
}

/* ========== NAV ========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.35s, padding 0.35s;
    padding: 1.5rem 0;
}

#navbar.scrolled {
    background: rgba(26, 54, 54, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.7rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.nav-logo img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.nav-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: color 0.25s, background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.nav-links a.nav-btn:hover,
#navbar.scrolled .nav-links a.nav-btn:hover {
    background: #B6C4A2;
    color: #1A3636 !important;
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 83, 76, 0.3);
}

.nav-links a.social-link {
    padding: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links a.social-link:hover {
    border-radius: 50%;
    opacity: 1;
}

#navbar.scrolled .nav-links a.social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.nav-btn {
    background: #B6C4A2;
    color: #1A3636 !important;
    padding: 0.5rem 1.3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

#navbar.scrolled .nav-btn {
    background: #B6C4A2;
    color: #1A3636 !important;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.2rem;
}

.nav-social .social-link {
    width: 28px;
    height: 28px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    color: white;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0.75;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.7rem;
}

.footer-social .social-link {
    width: 28px;
    height: 28px;
    opacity: 0.6;
}

.footer-social .social-link:hover {
    opacity: 1;
}

.mob-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mob-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: transform 0.3s, opacity 0.3s;
}

.mob-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mob-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mob-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 54, 54, 0.3) 0%, rgba(26, 54, 54, 0.6) 60%, rgba(26, 54, 54, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 2rem;
    max-width: 750px;
    margin: 0 auto;
    margin-top: -7rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.82;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Hero widget */
.hero-widget-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 2rem 2.8rem;
}

.hero-widget-inner {
    max-width: 860px;
    margin: 0 auto;
}

.hero-widget {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-widget .w-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 160px;
    gap: 0.7rem;
    align-items: end;
}

.hero-widget .w-group {
    display: flex;
    flex-direction: column;
}

.hero-widget .w-group label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.hero-widget .w-group input,
.hero-widget .w-group select {
    padding: 0.78rem 0.9rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: border-color 0.2s, background 0.2s;
    appearance: auto;
    -webkit-appearance: auto;
}

.hero-widget .w-group input[type="date"] {
    accent-color: #9DC3A2;
}

.hero-widget .w-group input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.hero-widget .w-group select option {
    color: #1A3636;
    background: white;
}

.hero-widget .w-group input:focus,
.hero-widget .w-group select:focus {
    outline: none;
    border-color: rgba(157, 195, 162, 0.9);
    background: rgba(157, 195, 162, 0.18);
    box-shadow: 0 0 0 2px rgba(157, 195, 162, 0.2);
}

.hero-widget .w-btn {
    width: 100%;
    background: linear-gradient(135deg, #40534C 0%, #1A3636 100%);
    color: white;
    border: none;
    padding: 0.78rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.hero-widget .w-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: white;
    opacity: 0.7;
    display: none;
}

.scroll-indicator span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1.5px solid white;
    border-bottom: 1.5px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(6px);
    }
}

/* ========== WELCOME ========== */
.welcome-section {
    padding: 5rem 0;
    background: #FAF8F5;
}

.section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.title-decoration {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #40534C, #677D6A);
    margin: 0 auto 1.2rem;
    border-radius: 2px;
}

.section-description {
    font-size: 0.95rem;
    color: #677D6A;
    line-height: 1.75;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #1A3636;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.86rem;
    color: #677D6A;
    line-height: 1.7;
}

/* ========== AVAILABILITY MODAL ========== */
.av-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.av-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-mc {
    background: white;
    border-radius: 16px;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.av-mh {
    padding: 1.8rem 2rem;
    border-bottom: 2px solid #F5F2ED;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.av-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #677D6A;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.av-close:hover {
    background: #F5F2ED;
}

.av-mh h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: #1A3636;
    margin-bottom: 0.3rem;
}

.av-mh p {
    color: #677D6A;
    font-size: 0.9rem;
}

.av-mb {
    padding: 1.8rem 2rem;
}

.av-success {
    background: #E8F5E9;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    margin-bottom: 1.5rem;
    color: #2E7D32;
    font-size: 0.88rem;
}

.av-card {
    border: 2px solid #F5F2ED;
    border-radius: 12px;
    padding: 1.4rem;
    margin-bottom: 1.2rem;
    transition: all 0.25s;
    cursor: pointer;
}

.av-card:hover {
    border-color: #40534C;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.av-card.unavail {
    opacity: 0.5;
    cursor: not-allowed;
    background: #FAFAFA;
}

.av-card.unavail:hover {
    transform: none;
    box-shadow: none;
    border-color: #F5F2ED;
}

.av-card-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.av-card-img {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 1.2rem;
}

.av-card-info {
    flex: 1;
}

.av-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A3636;
    margin-bottom: 0.2rem;
}

.av-card-cap {
    color: #677D6A;
    font-size: 0.85rem;
}

.av-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-left: 0.4rem;
}

.av-badge.disc {
    background: #E8F5E9;
    color: #2E7D32;
}

.av-badge.urgent {
    background: #FFE5E0;
    color: #FF5722;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.6
    }
}

.av-unavail-txt {
    color: #C62828;
    font-weight: 600;
    font-size: 0.84rem;
    margin-top: 0.3rem;
}

.av-price-bd {
    background: #FAFAFA;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    margin: 0.8rem 0;
}

.av-p-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
    color: #677D6A;
}

.av-p-line.disc {
    color: #2E7D32;
    font-weight: 500;
}

.av-p-line.total {
    border-top: 2px solid #E5E5E5;
    padding-top: 0.6rem;
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1A3636;
}

.av-book-btn {
    background: linear-gradient(135deg, #40534C, #1A3636);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s;
}

.av-book-btn:hover {
    transform: translateY(-2px);
}

.av-empty {
    text-align: center;
    padding: 3rem;
}

.av-empty h3 {
    color: #1A3636;
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.av-empty p {
    color: #677D6A;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* ========== OUR STORY ========== */
.story-section {
    padding: 5.5rem 0;
    background: #FAF8F5;
}

.story-inner {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-img-wrap {
    position: relative;
}

.story-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 18px;
    background: linear-gradient(145deg, #6B8E6B 0%, #5A7A5A 30%, #4A6A4A 60%, #8B7355 100%);
    position: relative;
    overflow: hidden;
}

.story-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(26, 54, 54, 0.35) 100%);
    border-radius: 18px;
}

.story-img-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 55%;
    height: 55%;
    border-radius: 16px;
    background: linear-gradient(135deg, #C8A86E 0%, #A89070 100%);
    z-index: -1;
}

.story-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #40534C;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.story-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: #1A3636;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.story-text {
    font-size: 0.92rem;
    color: #677D6A;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-btn {
    display: inline-block;
    margin-top: 0.6rem;
    color: #1A3636;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid #40534C;
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}

.story-btn:hover {
    color: #40534C;
    border-color: #C8A86E;
}

/* ========== REVIEWS ========== */
.reviews-section {
    padding: 5rem 0;
    background: #FAF8F5;
}

.reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-head {
    text-align: center;
    margin-bottom: 2.8rem;
}

.reviews-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reviews-head p {
    color: #677D6A;
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.review-card {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.rv-top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.rv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.rv-info {
    flex: 1;
    min-width: 0;
}

.rv-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1A3636;
}

.rv-date {
    font-size: 0.73rem;
    color: #999;
}

.rv-stars {
    color: #F5A623;
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.rv-text {
    font-size: 0.82rem;
    color: #677D6A;
    line-height: 1.7;
    flex: 1;
}

.rv-google {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.8rem;
    font-size: 0.72rem;
    color: #999;
}

.rv-google svg {
    width: 14px;
    height: 14px;
}

.reviews-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.reviews-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1A3636;
    color: white;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.reviews-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 54, 54, 0.3);
}

.reviews-rating-summary {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: #677D6A;
}

.reviews-rating-summary strong {
    color: #1A3636;
}

/* ========== FOOTER ========== */
.footer,
footer {
    background: #1A3636;
    color: white;
    padding: 3.5rem 0 1.5rem;
}

.footer-inner,
.ft-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-inner h4,
.ft-inner h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.42;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.ft-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ft-brand img {
    height: 34px;
    width: auto;
    display: block;
}

.footer-inner p,
.footer-inner a,
.ft-inner p,
.ft-inner a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    line-height: 1.85;
}

.footer-inner ul,
.ft-inner ul {
    list-style: none;
}

.footer-inner ul li,
.ft-inner ul li {
    margin-bottom: 0.25rem;
}

.footer-bot,
.ft-bot {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 1.2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-bot p,
.ft-bot p {
    opacity: 0.33;
    font-size: 0.8rem;
}

.ft-links {
    margin-bottom: 0.5rem;
}

.ft-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    text-decoration: none;
}

.ft-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 54, 54, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 2rem;
    display: none;
}

.cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cookie-inner a {
    color: white;
    font-weight: 500;
}

.cookie-btns {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.cookie-accept {
    background: #6B8E6B;
    color: white;
    border: none;
    padding: 0.5rem 1.3rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.cookie-accept:hover {
    background: #7B9A7B;
}

.cookie-manage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
}

.cookie-manage:hover {
    color: white;
}

/* ========== RESPONSIVE ========== */
@media(max-width:768px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-content {
        margin-top: -4rem;
    }

    .hero-widget-wrap {
        padding: 0 1rem 1.8rem;
    }

    .hero-widget {
        padding: 1rem;
    }

    .hero-widget .w-inputs {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .hero-widget .w-btn {
        margin-top: 0.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }



    .story-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 54, 54, 0.97);
        padding: 1.5rem 2rem;
        gap: 0.4rem;
    }

    .nav-links.open a {
        border-radius: 10px;
        padding: 0.7rem 1rem;
    }

    .nav-links.open .nav-btn {
        background: #6B8E6B;
        padding: 0.7rem 1rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.26);
    }

    .nav-links.open .nav-social {
        margin-top: 0.3rem;
    }

    .mob-toggle {
        display: flex;
    }

    .footer-inner,
    .ft-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .av-card-hd {
        flex-direction: column;
    }

    .av-card-img {
        width: 100%;
        height: 160px;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

/* Temporary imagery fills (Paths corrected for css/ directory) */
.story-img {
    background-image: url('../images/Homepage/ourstory-homepage.jpg');
    background-size: cover;
    background-position: center;
}

/* ===================================================================
   STAY PAGE STYLES
   Extracted from pages/stay.html
   =================================================================== */

/* HERO */
.page-hero {
    height: 380px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4A6741 0%, #6B8E6B 30%, #8B9A7A 55%, #A89070 80%, #8B7355 100%);
}

.ph-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(26, 54, 54, 0.72) 0%, rgba(26, 54, 54, 0.35) 40%, rgba(26, 54, 54, 0.3) 55%, rgba(26, 54, 54, 0.72) 100%);
}

.ph-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.ph-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ph-content p {
    font-size: 1.05rem;
    opacity: 0.82;
    max-width: 580px;
    margin: 0 auto;
}

/* MAIN */
.main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* PROPERTY CARDS */
.prop-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 3.5rem;
    transition: box-shadow 0.3s;
}

.prop-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}

.prop-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.35rem;
    height: 420px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.pg {
    background: #E8E4DF;
    position: relative;
    overflow: hidden;
}

.pg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.c1,
.s1,
.b1 {
    grid-column: 1/3;
    grid-row: 1/3;
}

.c2,
.s2,
.b2 {
    grid-column: 3;
    grid-row: 1;
}

.c3,
.s3,
.b3 {
    grid-column: 4;
    grid-row: 1;
}

.c4,
.s4,
.b4 {
    grid-column: 3;
    grid-row: 2;
}

.c5,
.s5,
.b5 {
    grid-column: 4;
    grid-row: 2;
}

/* Gallery gradients (backup if images fail) */
.c1 {
    background: linear-gradient(135deg, #677D6A 0%, #8B9A8B 100%)
}

.c2 {
    background: linear-gradient(135deg, #4A90A4 0%, #6AABBA 50%, #8BBCC8 100%)
}

.c3 {
    background: linear-gradient(135deg, #6B8E6B 0%, #7DA07D 50%, #90B090 100%)
}

.c4 {
    background: linear-gradient(135deg, #8B7355 0%, #A89070 100%)
}

.c5 {
    background: linear-gradient(135deg, #A0826D 0%, #C09B7D 100%)
}

.s1 {
    background: linear-gradient(135deg, #8B7355 0%, #A89070 100%)
}

.s2 {
    background: linear-gradient(135deg, #D4856A 0%, #E8A87C 100%)
}

.s3 {
    background: linear-gradient(135deg, #A0826D 0%, #C09B7D 100%)
}

.s4 {
    background: linear-gradient(135deg, #677D6A 0%, #8B9A8B 100%)
}

.s5 {
    background: linear-gradient(135deg, #6B8E6B 0%, #90B090 100%)
}

.b1 {
    background: linear-gradient(135deg, #677D6A 0%, #8B9A8B 100%)
}

.b2 {
    background: linear-gradient(135deg, #8B7355 0%, #A89070 100%)
}

.b3 {
    background: linear-gradient(135deg, #4A90A4 0%, #6AABBA 100%)
}

.b4 {
    background: linear-gradient(135deg, #D4856A 0%, #E8A87C 100%)
}

.b5 {
    background: linear-gradient(135deg, #A0826D 0%, #C09B7D 100%)
}

/* Show all photos button */
.gal-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
    pointer-events: auto;
}

.gal-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.gal-overlay span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.prop-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.prop-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.prop-desc {
    color: #677D6A;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.93rem;
}

.prop-feats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.prop-feat {
    background: #F4F1EA;
    color: #40534C;
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.prop-btn {
    background: linear-gradient(135deg, #40534C, #1A3636);
    color: white;
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.prop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 83, 76, 0.3);
}

.prop-price-block {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ppf {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.3rem;
}

.ppa {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1A3636;
    line-height: 1;
}

.ppn {
    font-size: 0.8rem;
    color: #677D6A;
    margin-top: 0.35rem;
}

/* Lightbox */
.lbx {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lbx.active {
    display: flex;
}

.lbx-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.9rem;
    cursor: pointer;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.lbx-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lbx-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    z-index: 10;
}

.lbx-title {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.lbx-counter {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.lbx-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 3.5rem 1rem;
    position: relative;
    width: 100%;
}

.lbx-img {
    max-height: calc(100vh - 220px);
    max-width: calc(100vw - 180px);
    object-fit: contain;
    border-radius: 6px;
}

.lbx-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lbx-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lbx-nav.prev {
    left: 0.6rem;
}

.lbx-nav.next {
    right: 0.6rem;
}

.lbx-thumbs {
    display: flex;
    gap: 0.45rem;
    padding: 0.8rem 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 85vw;
}

.lbx-thumb {
    width: 60px;
    height: 44px;
    border-radius: 5px;
    cursor: pointer;
    object-fit: cover;
    opacity: 0.42;
    border: 2.5px solid transparent;
    transition: all 0.2s;
}

.lbx-thumb:hover {
    opacity: 0.7;
}

.lbx-thumb.active {
    opacity: 1;
    border-color: white;
}


/* BOOKING */
.bk-sec {
    background: linear-gradient(135deg, #F4F1EA, #FDFBF7);
    padding: 4rem 2rem;
}

.bk-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.bk-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bk-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bk-head p {
    color: #677D6A;
    font-size: 0.92rem;
}

.bk-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
}

.bk-main {
    background: white;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.sum-col {
    position: sticky;
    top: 5.5rem;
    height: fit-content;
    align-self: start;
}

.sum-box {
    background: white;
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.sum-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 1rem;
    font-weight: 600;
}

#noSelMsg {
    text-align: center;
    color: #999;
    padding: 1.5rem 0;
    font-size: 0.88rem;
}

.sum-prop-card {
    display: none;
    margin-bottom: 1.5rem;
}

.sum-prop-card.vis {
    display: block;
}

.sum-prop-img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}

.sum-prop-img .spi-main {
    grid-column: 1;
    grid-row: 1/3;
}

.sum-prop-img .spi-sm {}

.sum-prop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sum-prop-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A3636;
    margin-bottom: 0.3rem;
}

.sum-prop-rate {
    font-size: 0.8rem;
    color: #677D6A;
    margin-bottom: 0.6rem;
}

.sum-prop-feats {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #40534C;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #F4F1EA;
}

.sum-row:last-child {
    border-bottom: none;
}

.sum-l {
    font-size: 0.84rem;
    color: #677D6A;
}

.sum-r {
    font-size: 0.84rem;
    color: #1A3636;
    font-weight: 600;
}

.price-breakdown {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1.5px solid #E8E4DF;
    display: none;
}

.p-line {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    font-size: 0.8rem;
}

.p-line.disc {
    color: #40534C;
}

.sum-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #1A3636;
}

.sum-total .sum-l,
.sum-total .sum-r {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A3636;
}

.cal-box {
    margin-bottom: 1.8rem;
}

.cal-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
}

.cal-lbl {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1A3636;
}

.cal-nav {
    display: flex;
    gap: 0.4rem;
}

.cal-nav button {
    background: #F4F1EA;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    color: #40534C;
    transition: background 0.2s;
}

.cal-nav button:hover {
    background: #E8E4DF;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}

.cal-lbl {
    text-align: center;
    font-size: 0.7rem;
    color: #999;
    padding: 0.4rem 0;
    font-weight: 600;
}

.cal-d {
    text-align: center;
    padding: 0.6rem;
    font-size: 0.84rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.cal-d.empty {
    cursor: default;
}

.cal-d.past {
    color: #C8C8C8;
    cursor: not-allowed;
}

.cal-d.unavail {
    background: #FDE8E8;
    color: #D95B5B;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.7;
}

.cal-d.avail:hover {
    background: #F4F1EA;
}

.cal-d.cin {
    background: #40534C !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
    opacity: 1 !important;
    border: 2px solid #2B3D37;
}

.cal-d.cout {
    background: #40534C !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
    opacity: 1 !important;
    border: 2px solid #2B3D37;
}

.cal-d.inr {
    background: #E8F4EA !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

.cal-d.today {
    border: 2px solid #40534C;
}

.date-hint {
    text-align: center;
    font-size: 0.76rem;
    color: #677D6A;
    margin-top: 0.6rem;
}

.exp-box {
    margin-bottom: 1.8rem;
}

.exp-item {
    background: #FAFAF8;
    border-radius: 10px;
    padding: 1.1rem;
    margin-bottom: 0.8rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}

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

.exp-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.exp-item.sel {
    background: #F0ECE4;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.exp-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.exp-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A3636;
}

.exp-price {
    font-size: 0.8rem;
    color: #677D6A;
}

.exp-desc {
    font-size: 0.78rem;
    color: #677D6A;
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

.exp-ctrl {
    display: none;
    gap: 0.8rem;
    align-items: flex-end;
    padding-top: 0.7rem;
    border-top: 1px solid #E8E4DF;
}

.exp-item.sel .exp-ctrl {
    display: flex;
}

.exp-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 130px;
}

.exp-group label {
    font-size: 0.72rem;
    color: #677D6A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.exp-cnt {
    font-size: 0.9rem;
    color: #1A3636;
    border: 2px solid #E8E4DF;
    border-radius: 8px;
    background: white;
    padding: 0.5rem 0.6rem;
    width: 100%;
}

.exp-state {
    font-size: 0.76rem;
    color: #40534C;
    font-weight: 600;
}

.equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.equip-cb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.equip-cb input {
    width: 17px;
    height: 17px;
    cursor: pointer;
    accent-color: #40534C;
}

.equip-cb label {
    font-size: 0.8rem;
    color: #677D6A;
    cursor: pointer;
}

.f-sec {
    margin-bottom: 1.6rem;
}

.f-sec h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: #677D6A;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.f-row {
    display: grid;
    gap: 0.8rem;
}

.f-row.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.f-row.cols-2 {
    grid-template-columns: 1fr 1fr;
}

.fg {
    display: flex;
    flex-direction: column;
}

.fg label {
    font-size: 0.8rem;
    color: #677D6A;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.fg select,
.fg input,
.fg textarea {
    padding: 0.68rem 0.82rem;
    border: 2px solid #E8E4DF;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: #1A3636;
    background: #FAFAF8;
    transition: border-color 0.2s;
}

.fg select:focus,
.fg input:focus,
.fg textarea:focus {
    outline: none;
    border-color: #40534C;
}

.fg textarea {
    resize: vertical;
    min-height: 90px;
}

.fg .note {
    font-size: 0.72rem;
    color: #999;
    margin-top: 0.3rem;
}

.pol-sec {
    background: #FFF8E1;
    border-left: 3px solid#FFA000;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
}

.pol-sec h5 {
    font-size: 0.88rem;
    color: #F57C00;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.pol-sec p {
    font-size: 0.78rem;
    color: #677D6A;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.pol-chk {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pol-chk input {
    width: 17px;
    height: 17px;
    cursor: pointer;
    accent-color: #40534C;
    margin-top: 1px;
    flex-shrink: 0;
}

.pol-chk label {
    font-size: 0.8rem;
    color: #1A3636;
    cursor: pointer;
    line-height: 1.4;
}

.sub-btn {
    width: 100%;
    background: linear-gradient(135deg, #40534C, #1A3636);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.4rem;
}

.sub-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 83, 76, 0.3);
}

.sub-btn:disabled {
    background: #C8C8C8;
    cursor: not-allowed;
}

.success-msg {
    display: none;
    background: #E8F5E9;
    border-left: 3px solid #4CAF50;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: #2E7D32;
    font-size: 0.86rem;
    line-height: 1.5;
}

.error-msg {
    display: none;
    background: #FFEBEE;
    border-left: 3px solid #F44336;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: #C62828;
    font-size: 0.86rem;
    line-height: 1.5;
}

.error-msg a {
    color: #C62828;
    text-decoration: underline;
}

.recaptcha-note {
    font-size: 0.72rem;
    color: #999;
    text-align: center;
    margin-top: 0.8rem;
}

.recaptcha-note a {
    color: #999;
}

/* Stay Page Responsive Overrides */
@media(max-width:768px) {
    .bk-layout {
        grid-template-columns: 1fr;
    }

    .sum-col {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .sum-box {
        width: min(100%, 560px);
    }

    .sum-row {
        align-items: flex-start;
        gap: 0.6rem;
    }

    .sum-r {
        min-width: 0;
        text-align: right;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .bk-sec {
        padding: 3rem 1rem;
        overflow-x: clip;
    }

    .bk-inner {
        max-width: 100%;
    }

    .ph-content h1 {
        font-size: 2.2rem;
    }

    .sum-col {
        position: static;
        top: auto;
        margin-bottom: 2rem;
    }

    .bk-main,
    .sum-box {
        max-width: 100%;
    }

    .prop-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 260px;
    }

    .c1,
    .s1,
    .b1 {
        grid-column: 1/2;
        grid-row: 1/3;
    }

    .c2,
    .s2,
    .b2 {
        grid-column: 2;
        grid-row: 1;
    }

    .c3,
    .s3,
    .b3 {
        grid-column: 2;
        grid-row: 2;
    }

    .c4,
    .s4,
    .b4,
    .c5,
    .s5,
    .b5 {
        display: none;
    }

    .gal-overlay {
        bottom: 0.6rem;
        right: 0.6rem;
    }

    .prop-body {
        grid-template-columns: 1fr;
    }

    .f-row.cols-3 {
        grid-template-columns: 1fr;
    }

    .equip-grid {
        grid-template-columns: 1fr;
    }

    .lbx-main {
        padding: 2.5rem 2rem 1rem;
    }

    .lbx-nav.prev {
        left: 0.2rem;
    }

    .lbx-nav.next {
        right: 0.2rem;
    }

    .lbx-img {
        max-height: calc(100vh - 260px);
        max-width: calc(100vw - 80px);
    }

    .lbx-thumb {
        width: 46px;
        height: 34px;
    }
}

/* Hero + gallery lead images (Stay Page Specific) */
.ph-bg {
    background-image: url('../images/Hero Images/Stay_hero.jpg');
    background-size: cover;
    background-position: center;
}

/* ===================================================================
   EXPERIENCES PAGE STYLES
   Extracted from pages/experiences.html
   =================================================================== */

.exp-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.exp-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #E8E4DF;
}

.exp-block:last-child {
    border-bottom: none;
}

.exp-block.reverse .exp-img {
    order: 2;
}

.exp-block.reverse .exp-text {
    order: 1;
}

.exp-img-wrap {
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
}

.exp-tag {
    display: inline-block;
    font-size: 0.72rem;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exp-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: #1A3636;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.exp-text p {
    font-size: 0.92rem;
    color: #677D6A;
    line-height: 1.75;
    margin-bottom: 0.8rem;
}

.exp-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.exp-meta-tag {
    font-size: 0.78rem;
    color: #40534C;
    background: #F5F2ED;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

.exp-meta-tag.status-fully-booked {
    background: #F9E8E8;
    color: #9A5C5C;
    border: 1px solid rgba(154, 92, 92, 0.22);
}

.exp-pricing {
    margin: 1rem 0;
}

.exp-pricing h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #677D6A;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.exp-pr-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    margin-bottom: 0.3rem;
}

.exp-pr-row span:first-child {
    color: #677D6A;
}

.exp-pr-row span:last-child {
    color: #40534C;
    font-weight: 600;
}

.exp-btn {
    display: inline-block;
    background: linear-gradient(135deg, #40534C, #1A3636);
    color: white;
    padding: 0.68rem 1.7rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
}

.exp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(64, 83, 76, 0.3);
}

.cta-section {
    background: #1A3636;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    opacity: 0.75;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #1A3636;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Experiences Responsive Overrides */
@media(max-width:768px) {

    .exp-block,
    .exp-block.reverse {
        grid-template-columns: 1fr;
    }

    .exp-block.reverse .exp-img {
        order: 1;
    }

    .exp-block.reverse .exp-text {
        order: 2;
    }

    .exp-img-wrap {
        height: 260px;
    }
}

/* Experience Specific Images */
/* Note: .ph-bg on this page overrides the one from stay.html via cascade if loaded after, or we need more specificity */
/* But since these are unique classes/circumstances, it should be fine. However, .ph-bg is defined in stay styles too. */
/* I will give this one a specific modifier class in HTML later to avoid conflict, e.g. .ph-bg.exp-bg */
.ph-bg.exp-bg {
    background-image: url('../images/Blog/blog-landscape.jpg');
    background-size: cover;
    background-position: center;
}

.img-cooking {
    background-image: url('../images/Blog/blog-cooking.jpg');
    background-size: cover;
    background-position: center;
}

.img-yoga {
    background-image: url('../images/Blog/blog-yoga.jpg');
    background-size: cover;
    background-position: center;
}

.img-farm {
    background-image: url('../images/Blog/blog-nature.jpg');
    background-size: cover;
    background-position: center;
}

/* ===================================================================
   CONTACT PAGE STYLES
   Extracted from pages/contact.html
   =================================================================== */

/* FULL PAGE HERO BG */
.contact-page {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 4rem;
}

.cp-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #4A6741 0%, #5C6B4A 25%, #6B8E6B 50%, #8B9A7A 75%, #A89070 100%);
    z-index: -1;
}

.cp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 54, 54, 0.55);
    z-index: -1;
}

/* CENTERED CARD */
.contact-card {
    background: white;
    border-radius: 22px;
    width: 100%;
    max-width: 520px;
    padding: 3rem 2.8rem 2.8rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.cc-head {
    text-align: center;
    margin-bottom: 2rem;
}

.cc-head h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cc-head p {
    font-size: 0.84rem;
    color: #677D6A;
}

/* Info pills at top */
.cc-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.cc-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #677D6A;
}

.cc-pill span {
    font-weight: 500;
    color: #40534C;
}

/* Form */
.fg {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.fg label {
    font-size: 0.74rem;
    color: #677D6A;
    margin-bottom: 0.28rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.fg input,
.fg select,
.fg textarea {
    padding: 0.72rem 0.9rem;
    border: 2px solid #E8E4DF;
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: #1A3636;
    background: #FAFAF8;
    transition: border-color 0.2s, background 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    outline: none;
    border-color: #40534C;
    background: white;
}

.fg textarea {
    resize: vertical;
    min-height: 100px;
}

.fg select {
    appearance: auto;
    -webkit-appearance: auto;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #40534C, #1A3636);
    color: white;
    border: none;
    padding: 0.88rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.4rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 83, 76, 0.3);
}

.submit-btn:disabled {
    background: #A0A0A0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.success-msg {
    display: none;
    background: #E8F5E9;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
    color: #2E7D32;
    font-size: 0.84rem;
}

.error-msg {
    display: none;
    background: #FFF3F3;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-top: 1rem;
    color: #C62828;
    font-size: 0.82rem;
    line-height: 1.5;
}

.error-msg a {
    color: #C62828;
    font-weight: 600;
}

.recaptcha-note {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.68rem;
    color: #999;
    line-height: 1.5;
}

.recaptcha-note a {
    color: #677D6A;
}

/* Contact Responsive Overrides */
@media(max-width:768px) {
    .contact-card {
        padding: 2rem 1.6rem;
    }

    .cc-info {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
}

/* ===================================================================
   ABOUT PAGE STYLES
   Extracted from pages/about.html
   =================================================================== */

.about-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Story block: image left, text right */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-block.reverse .s-img {
    order: 2;
}

.story-block.reverse .s-text {
    order: 1;
}

.s-img-wrap {
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.s-tag {
    display: inline-block;
    font-size: 0.72rem;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1A3636;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.s-text p {
    font-size: 0.9rem;
    color: #677D6A;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.s-text ul {
    margin: 0.5rem 0 1rem 1.2rem;
    padding-left: 0;
}

.s-text li {
    font-size: 0.9rem;
    color: #677D6A;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

/* Founders */
.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin: 3rem 0 4rem;
}

.founder-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.founder-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    overflow: hidden;
}

.founder-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #1A3636;
    margin-bottom: 0.2rem;
}

.founder-card .role {
    font-size: 0.78rem;
    color: #677D6A;
    font-style: italic;
    margin-bottom: 0.7rem;
}

.founder-card p {
    font-size: 0.82rem;
    color: #677D6A;
    line-height: 1.7;
}

/* Timeline */
.timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: #1A3636;
    text-align: center;
    margin-bottom: 2.2rem;
}

.timeline {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.tl-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

.tl-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #40534C;
    min-width: 52px;
    padding-top: 0.1rem;
}

.tl-content h4 {
    font-size: 0.88rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tl-content p {
    font-size: 0.8rem;
    color: #677D6A;
    line-height: 1.6;
}

/* Philosophy */
.phil-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: #1A3636;
    text-align: center;
    margin-bottom: 1.8rem;
}

.phil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.phil-card {
    background: white;
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.phil-card h4 {
    font-size: 0.88rem;
    color: #1A3636;
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.phil-card p {
    font-size: 0.8rem;
    color: #677D6A;
    line-height: 1.7;
}

/* About Responsive */
@media(max-width:768px) {

    .story-block,
    .story-block.reverse {
        grid-template-columns: 1fr;
    }

    .story-block.reverse .s-img {
        order: 1;
    }

    .story-block.reverse .s-text {
        order: 2;
    }

    .s-img-wrap {
        height: 240px;
    }

    .founders {
        grid-template-columns: 1fr;
    }

    .phil-grid {
        grid-template-columns: 1fr;
    }
}

/* About Images */
.ph-bg.about-bg {
    background-image: url('../images/Hero Images/Hero_homepage.jpg');
    background-size: cover;
    background-position: center;
}

.img-a1 {
    background-image: url('../images/Our%20Story/a%20dream%20takes%20root.jpeg');
    background-size: cover;
    background-position: center;
}

.img-a2 {
    background-image: url('../images/Our%20Story/meetsam%26crhistina.jpeg');
    background-size: cover;
    background-position: center;
}

.img-a3 {
    background-image: url('../images/Homepage/ourstory-homepage.jpg');
    background-size: cover;
    background-position: center;
}

.fa-1 {
    background-image: url('../images/Our%20Story/Sam.jpeg');
    background-size: cover;
    background-position: center;
}

.fa-2 {
    background-image: url('../images/Our%20Story/Christina.jpeg');
    background-size: cover;
    background-position: center;
}


/* ===================================================================
   BLOG PAGE STYLES
   Extracted from pages/blog.html
   =================================================================== */

.blog-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

/* CARD */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bc-img {
    height: 195px;
    position: relative;
}

.bc-tag {
    position: absolute;
    bottom: 0.7rem;
    left: 0.75rem;
    background: #B6C4A2;
    color: white;
    font-size: 0.68rem;
    padding: 0.28rem 0.65rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.bc-body {
    padding: 1.3rem 1.4rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bc-meta {
    font-size: 0.72rem;
    color: #999;
    margin-bottom: 0.55rem;
}

.bc-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #1A3636;
    margin-bottom: 0.4rem;
    font-weight: 600;
    line-height: 1.35;
}

.bc-body p {
    font-size: 0.8rem;
    color: #677D6A;
    line-height: 1.7;
    flex: 1;
}

.bc-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.78rem;
    color: #40534C;
    font-weight: 600;
    text-decoration: none;
}

.bc-link:hover {
    color: #1A3636;
}

/* Blog Responsive */
@media(max-width:800px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Blog Images */
.ph-bg.blog-bg {
    background-image: url('../images/Blog/blog-hero.jpg');
    background-size: cover;
    background-position: center;
}

.bi-1 {
    background-image: url('../images/Blog/blog-winter-farm.jpg');
    background-size: cover;
    background-position: center;
}

.bi-2 {
    background-image: url('../images/Blog/blog-cooking.jpg');
    background-size: cover;
    background-position: center;
}

.bi-3 {
    background-image: url('../images/Blog/blog-garden.jpg');
    background-size: cover;
    background-position: center;
}

.bi-4 {
    background-image: url('../images/Blog/blog-yoga.jpg');
    background-size: cover;
    background-position: center;
}

.bi-5 {
    background-image: url('../images/Blog/blog-interior.jpg');
    background-size: cover;
    background-position: center;
}

.bi-6 {
    background-image: url('../images/Blog/blog-nature.jpg');
    background-size: cover;
    background-position: center;
}

.bi-7 {
    background-image: url('../images/Blog/blog-forest.jpg');
    background-size: cover;
    background-position: center;
}

.bi-8 {
    background-image: url('../images/Blog/blog-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* ===================================================================
   POLICY PAGES (Cookie & Privacy)
   =================================================================== */

.policy-page {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 7rem 2rem 4rem;
}

.policy-card {
    background: white;
    border-radius: 22px;
    width: 100%;
    max-width: 860px;
    padding: 3rem 3.2rem 3rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    margin-top: 1rem;
}

.policy-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-align: center;
}

.policy-card .subtitle {
    font-size: 0.84rem;
    color: #677D6A;
    text-align: center;
    margin-bottom: 2rem;
}

.policy-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #1A3636;
    font-weight: 600;
    margin: 2rem 0 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid #E8E4DF;
}

.policy-card h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.policy-card p {
    font-size: 0.87rem;
    color: #677D6A;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.policy-card ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.policy-card li {
    font-size: 0.85rem;
    color: #677D6A;
    line-height: 1.8;
    margin-bottom: 0.3rem;
}

.policy-card a {
    color: #40534C;
    font-weight: 500;
}

.policy-card .last-updated {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #E8E4DF;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.83rem;
}

.cookie-table th {
    text-align: left;
    padding: 0.6rem 0.8rem;
    background: #F5F3F0;
    color: #1A3636;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E8E4DF;
}

.cookie-table td {
    padding: 0.6rem 0.8rem;
    color: #677D6A;
    border-bottom: 1px solid #E8E4DF;
    vertical-align: top;
    line-height: 1.6;
}

/* Policy Responsive */
@media(max-width:768px) {
    .policy-card {
        padding: 2rem 1.6rem;
    }

    .policy-card h1 {
        font-size: 1.7rem;
    }

    .cookie-table {
        font-size: 0.78rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.45rem 0.5rem;
    }
}

/* Policy Background */
.ph-bg.policy-bg {
    background: linear-gradient(160deg, #4A6741 0%, #5C6B4A 25%, #6B8E6B 50%, #8B9A7A 75%, #A89070 100%);
}

.ph-overlay.policy-overlay {
    background: rgba(26, 54, 54, 0.55);
}

/* Override typical overlay */


/* ===================================================================
   VOLUNTEER PAGE
   =================================================================== */

.vol-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 2rem 4rem;
}

.vol-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vol-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vol-intro p {
    font-size: 0.88rem;
    color: #677D6A;
    line-height: 1.7;
}

.f-sec {
    margin-bottom: 2rem;
}

.f-sec h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: #677D6A;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.f-row {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.f-row.cols-2 {
    grid-template-columns: 1fr 1fr;
}

.f-row.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

/* CHECKBOX GRIDS */
.cb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.cb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cb-item input[type="checkbox"] {
    width: 17px;
    height: 17px;
    cursor: pointer;
    accent-color: #40534C;
    flex-shrink: 0;
}

.cb-item label {
    font-size: 0.82rem;
    color: #40534C;
    cursor: pointer;
    line-height: 1.3;
}

.other-lang {
    margin-top: 0.5rem;
    display: none;
}

.other-lang.vis {
    display: block;
}

/* Volunteer Responsive */
@media(max-width:768px) {

    .f-row.cols-2,
    .f-row.cols-3 {
        grid-template-columns: 1fr;
    }

    .cb-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Volunteer Images */
.ph-bg.vol-bg {
    background-image: url('../images/Homepage/ourstory-homepage.jpg');
    background-size: cover;
    background-position: center;
}

/* ===================================================================
   YOGA RETREATS PAGES
   =================================================================== */

/* TOGGLE SWITCHER (Index) */
.toggle-wrap {
    display: flex;
    justify-content: center;
    padding: 2.5rem 2rem 0;
}

.toggle-switcher {
    position: relative;
    display: inline-flex;
    background: #E8E4DF;
    border-radius: 12px;
    padding: 4px;
}

.toggle-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: linear-gradient(135deg, #40534C, #1A3636);
    border-radius: 9px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.toggle-indicator.right {
    transform: translateX(100%);
}

.toggle-opt {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 0.65rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #677D6A;
    cursor: pointer;
    transition: color 0.3s;
    white-space: nowrap;
}

.toggle-opt.active {
    color: white;
}

/* TAB PANELS */
.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

/* Keep retreat and host panels aligned to the same visual start line */
#panelRetreats .exp-block:first-child {
    padding-top: 2rem;
}

/* HOST SECTION */
.host-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
}

.host-form-wrap {
    max-width: 860px;
    margin: 4rem auto 0;
    padding: 0 0 2rem;
}

.host-form-card {
    background: white;
    border-radius: 22px;
    padding: 2.2rem 2rem 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.hf-head {
    text-align: center;
    margin-bottom: 1.4rem;
}

.hf-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #1A3636;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.hf-head p {
    font-size: 0.84rem;
    color: #677D6A;
}

/* WAITLIST FORM */
.waitlist-form {
    max-width: 480px;
    margin: 0 auto;
}

.waitlist-input-wrap {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.waitlist-email {
    flex: 1;
    padding: 0.85rem 1.1rem;
    border: none;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: #1A3636;
    outline: none;
}

.waitlist-email::placeholder {
    color: #999;
}

.waitlist-btn {
    background: white;
    color: #1A3636;
    border: none;
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.waitlist-btn:hover {
    background: #F5F2ED;
}

.waitlist-note {
    font-size: 0.78rem;
    opacity: 0.5;
    margin-top: 0.8rem;
}

.waitlist-success p {
    background: rgba(255, 255, 255, 0.12);
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-size: 0.92rem;
}

/* RETREAT BOOKING SECTION (Individual Pages) */
.retreat-booking-sec {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.25rem 2rem;
}

.retreat-booking-sec .cp-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.retreat-booking-sec .cp-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* NAVIGATION LINKS */
.back-link-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 2rem 0;
}

.back-link {
    font-size: 0.84rem;
    color: #677D6A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: #1A3636;
}

/* HERO CTA */
.hero-cta {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.7rem 1.8rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.25s, transform 0.2s;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

/* RETREAT IMAGES */
.ph-bg.retreat-idx-bg {
    background-image: url('../images/Blog/blog-yoga.jpg');
    background-size: cover;
    background-position: center;
}

.ph-bg.retreat-single-bg {
    background-image: url('../images/Yoga%20Retreats/retreat-spring-hero.jpg');
    background-size: cover;
    background-position: center;
}

.img-ret-1 {
    background-image: url('../images/Yoga%20Retreats/retreat-spring-hero.jpg');
    background-size: cover;
    background-position: center;
}

.img-ret-2 {
    background-image: url('../images/Yoga%20Retreats/retreat-mountain.jpg');
    background-size: cover;
    background-position: center;
}

.img-ret-3 {
    background-image: url('../images/Villa%20Eolo/Villa-Eolo11.jpg');
    background-size: cover;
    background-position: center;
}

.host-img-1 {
    background-image: url('../images/Hero Images/Hero_homepage.jpg');
}

.host-img-2 {
    background-image: url('../images/Villa%20Eolo/Villa-Eolo1.jpg');
}

.host-img-3 {
    background-image: url('../images/Villa%20Eolo/Villa-Eolo5.jpg');
}

.img-ret-single-1 {
    background-image: url('../images/Yoga%20Retreats/retreat-yoga-pose.jpg');
    background-size: cover;
    background-position: center;
}

.img-ret-single-2 {
    background-image: url('../images/Blog/blog-landscape.jpg');
    background-size: cover;
    background-position: center;
}

.img-ret-single-3 {
    background-image: url('../images/Blog/blog-cooking.jpg');
    background-size: cover;
    background-position: center;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .toggle-opt {
        padding: 0.55rem 1.4rem;
        font-size: 0.85rem;
    }

    .waitlist-input-wrap {
        flex-direction: column;
    }

    .waitlist-btn {
        padding: 0.75rem;
    }

    .retreat-booking-sec {
        padding: 3rem 1rem;
    }
}

/* ===================================================================
   BLOG POST ARTICLE STYLES
   Extracted from pages/blog/*.html
   =================================================================== */

/* Post hero (shorter than page-hero, bottom-aligned content) */
.post-hero {
    height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.post-hero .ph-overlay {
    background: linear-gradient(to top, rgba(26, 54, 54, 0.85) 0%, rgba(26, 54, 54, 0.2) 60%, transparent 100%);
}

.post-hero .ph-content {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem 2.8rem;
    text-align: left;
}

.ph-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.6rem;
}

/* Blog post category tags: brighter CTA-green background + white text */
.post-hero .ph-tag {
    background: #B6C4A2;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.ph-tag.status-fully-booked {
    background: #F9E8E8;
    color: #9A5C5C;
    border: 1px solid rgba(154, 92, 92, 0.22);
}

.ph-tag.ph-tag-note {
    text-transform: none;
    letter-spacing: 0.2px;
    font-size: 0.78rem;
}

.ph-content h1 {
    max-width: 680px;
}

.ph-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Post body */
.post-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.2rem 2rem 4rem;
}

.post-body p {
    font-size: 0.92rem;
    color: #4A4A4A;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.post-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: #1A3636;
    margin: 2rem 0 0.7rem;
    font-weight: 600;
}

.post-body h3 {
    font-size: 1rem;
    color: #1A3636;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.post-body blockquote {
    border-left: 3px solid #40534C;
    padding: 0.8rem 1.2rem;
    background: #F0ECE4;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: #40534C;
    font-size: 0.9rem;
    line-height: 1.7;
}

.post-body .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #40534C;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.post-body .back-link:hover {
    color: #1A3636;
}

/* Post CTA banner */
.post-cta {
    background: linear-gradient(rgba(26, 54, 54, 0.68), rgba(26, 54, 54, 0.68)), url("../images/Hero Images/Hero_homepage.jpg") center/cover no-repeat;
    color: white;
    border-radius: 16px;
    padding: 2.2rem;
    text-align: center;
    margin-top: 3rem;
}

.post-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.5rem;
}

.post-cta p {
    font-size: 0.85rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.post-cta a {
    display: inline-block;
    background: rgba(26, 54, 54, 0.4);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 0.65rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: transform 0.2s, background 0.2s;
}

.post-cta a:hover {
    background: rgba(26, 54, 54, 0.6);
    transform: translateY(-2px);
}

/* Blog hero image gradient fallbacks */
.bi-1 {
    background: linear-gradient(135deg, #6B8E6B 0%, #5C6B4A 40%, #4A6741 100%);
}

.bi-2 {
    background: linear-gradient(135deg, #8B7355 0%, #A89070 40%, #C4B590 100%);
}

.bi-3 {
    background: linear-gradient(135deg, #87CEEB 0%, #6AABBA 35%, #5C7A8A 100%);
}

.bi-4 {
    background: linear-gradient(135deg, #E8A87C 0%, #D4856A 40%, #8B6914 100%);
}

.bi-5 {
    background: linear-gradient(135deg, #7B9A7B 0%, #6B8E6B 35%, #8B7355 100%);
}

.bi-6 {
    background: linear-gradient(135deg, #5C7A8A 0%, #4A6A7A 40%, #6B8E6B 100%);
}

.bi-7 {
    background: linear-gradient(135deg, #D4C5A9 0%, #C4B590 35%, #8B7355 100%);
}

.bi-8 {
    background: linear-gradient(135deg, #4A6741 0%, #6B8E6B 40%, #87CEEB 100%);
}

/* Blog hero images */
.bi-1 {
    background-image: url('../images/Blog/blog-winter-farm.jpg');
    background-size: cover;
    background-position: center;
}

.bi-2 {
    background-image: url('../images/Blog/blog-cooking.jpg');
    background-size: cover;
    background-position: center;
}

.bi-3 {
    background-image: url('../images/Blog/blog-garden.jpg');
    background-size: cover;
    background-position: center;
}

.bi-4 {
    background-image: url('../images/Blog/blog-yoga.jpg');
    background-size: cover;
    background-position: center;
}

.bi-5 {
    background-image: url('../images/Blog/blog-interior.jpg');
    background-size: cover;
    background-position: center;
}

.bi-6 {
    background-image: url('../images/Blog/blog-nature.jpg');
    background-size: cover;
    background-position: center;
}

.bi-7 {
    background-image: url('../images/Blog/blog-forest.jpg');
    background-size: cover;
    background-position: center;
}

.bi-8 {
    background-image: url('../images/Blog/blog-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* Post responsive */
@media(max-width:600px) {
    .post-hero {
        height: 320px;
    }
}


/* ======================================
   THINGS TO DO PAGE
   ====================================== */

.ph-bg.ttd-bg {
    background-image: url('../images/Blog/blog-landscape.jpg');
    background-size: cover;
    background-position: center;
}

.ttd-img-1,
.ttd-img-2,
.ttd-img-3,
.ttd-img-4,
.ttd-img-5 {
    background-size: cover;
    background-position: center;
}

.ttd-img-1 {
    background-image: url('../images/Blog/blog-forest.jpg');
}

.ttd-img-2 {
    background-image: url('../images/Blog/blog-cooking.jpg');
}

.ttd-img-3 {
    background-image: url('../images/Blog/blog-hero.jpg');
}

.ttd-img-4 {
    background-image: url('../images/Blog/blog-cta-farm.jpg');
}

.ttd-img-5 {
    background-image: url('../images/Blog/blog-garden.jpg');
}


/* ======================================
   ABOUT OUR PERMACULTURE FARM PAGE
   ====================================== */

.ph-bg.farm-bg {
    background-image: url('../images/Blog/blog-cta-farm.jpg');
    background-size: cover;
    background-position: center;
}

.farm-img-1,
.farm-img-2,
.farm-img-3,
.farm-img-4,
.farm-img-5 {
    background-size: cover;
    background-position: center;
}

.farm-img-1 {
    background-image: url('../images/Blog/blog-landscape.jpg');
}

.farm-img-2 {
    background-image: url('../images/Blog/blog-garden.jpg');
}

.farm-img-3 {
    background-image: url('../images/Blog/blog-cta-farm.jpg');
}

.farm-img-4 {
    background-image: url('../images/Our%20Story/a%20dream%20takes%20root.jpeg');
}

.farm-img-5 {
    background-image: url('../images/Blog/blog-nature.jpg');
}


/* ======================================
   BREADCRUMB NAVIGATION
   ====================================== */

.breadcrumb {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0 2rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb li + li::before {
    content: '›';
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 1);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .breadcrumb {
        top: 70px;
        padding: 0 1rem;
    }
    .breadcrumb ol {
        font-size: 0.7rem;
    }
}
