/* ==========================================================================
   Beside You — Clean Luxury Social Companionship Stylesheet
   Palette: Forest Green | Champagne Gold | Warm Ivory
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Core Palette */
    --bg-page: #F7F3EC;
    --bg-surface: #FFFFFF;
    --bg-card-tint: #F3ECE1;
    --forest-dark: #071F18;
    --forest: #0B2E24;
    --gold: #C5933A;
    --gold-bright: #E4B558;
    --gold-light: #FBF4E7;
    
    /* Typography Colors */
    --text-heading: #0B241D;
    --text-dark: #1D2E27;
    --text-body: #4A5B53;
    --text-muted: #768780;
    
    /* Borders & Shadows */
    --border-light: #E6DED3;
    --border-gold: #D6B265;
    --shadow-soft: 0 4px 20px rgba(7, 31, 24, 0.05);
    --shadow-card: 0 12px 36px rgba(7, 31, 24, 0.08);
    
    /* Structure */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: font-size 0.2s ease;
}

*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.skip-link {
    position: absolute;
    top: -60px;
    left: 20px;
    background: var(--forest);
    color: #fff;
    padding: 10px 18px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 6px 6px;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   TOP DARK UTILITY STRIP
   ========================================================================== */
.top-utility-bar {
    background-color: var(--forest-dark);
    color: #FFFFFF;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(197, 147, 58, 0.25);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-size-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.text-scaler-pills {
    display: flex;
    gap: 6px;
}

.text-scaler-pills button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(197, 147, 58, 0.35);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.text-scaler-pills button:hover,
.text-scaler-pills button.active {
    background: var(--gold-bright);
    color: var(--forest-dark);
    border-color: var(--gold-bright);
    font-weight: 700;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-promo-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-bright);
    font-weight: 600;
    font-size: 0.82rem;
}

.top-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}
.top-phone-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #FFFFFF;
}

/* ==========================================================================
   MAIN DASHBOARD HEADER
   ========================================================================== */
header.site-header {
    background: #FAF7F2;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.9rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-combo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

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

.brand-text-name {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
}

.brand-text-sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.main-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
@media (max-width: 1080px) {
    .main-nav-links { display: none; }
}

.main-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.93rem;
    font-weight: 600;
    transition: color 0.2s;
}
.main-nav-links a:hover {
    color: var(--gold);
}

.btn-book-header {
    background: var(--forest);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(7, 31, 24, 0.15);
}
.btn-book-header:hover {
    background: var(--forest-dark);
    transform: translateY(-1px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 3.8rem 5% 4.5rem;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border-light);
}

.hero-layout {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 3.5rem;
    align-items: center;
}
@media (max-width: 980px) {
    .hero-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* Left Column */
.founder-ribbon-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--gold-bright);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    border: 1px solid var(--gold);
}

.hero-main-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.4rem);
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.05;
    margin-bottom: 0.4rem;
}

.hero-tagline-italic {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-style: italic;
    color: var(--gold);
    line-height: 1.3;
    margin-bottom: 1.4rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 620px;
}
.hero-description strong {
    color: var(--text-dark);
}

/* 4-Stat Box Strip */
.stats-strip-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 2.2rem;
    box-shadow: var(--shadow-soft);
}
@media (max-width: 640px) {
    .stats-strip-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border-light);
    padding: 0 8px;
}
.stat-item:last-child {
    border-right: none;
}
.stat-value {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--forest);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(7, 31, 24, 0.2);
}
.btn-primary-hero:hover {
    background: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(7, 31, 24, 0.3);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: var(--text-dark);
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid var(--border-light);
    transition: all 0.25s ease;
}
.btn-secondary-hero:hover {
    border-color: var(--forest);
    background: #FFFFFF;
}

/* Right Column: Commitment Card */
.commitment-card {
    background: #FFFFFF;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.2rem;
    box-shadow: var(--shadow-card);
}

.commitment-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.2rem;
}

.commitment-heart-badge {
    width: 44px;
    height: 44px;
    background: var(--forest);
    color: var(--gold-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.commitment-card-top h3 {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    color: var(--forest);
    line-height: 1.15;
}
.commitment-card-top span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.commitment-card p {
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

.commitment-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 1.6rem;
}
.commitment-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}
.commitment-checklist svg {
    color: var(--gold);
    flex-shrink: 0;
}

.intro-discount-box {
    background: var(--gold-light);
    border: 1px dashed var(--gold);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    color: #4C3408;
    line-height: 1.55;
}

/* ==========================================================================
   COMMON SECTION SCAFFOLD
   ========================================================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.section-header-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.2rem;
}
.section-badge-pill {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.4vw, 3.2rem);
    color: var(--forest);
    line-height: 1.15;
    margin-bottom: 0.8rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ==========================================================================
   OUTINGS & HOBBIES GRID (6 Cards)
   ========================================================================== */
.outings-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.activity-box {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.activity-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--border-gold);
}

.activity-icon-badge {
    width: 44px;
    height: 44px;
    background: var(--forest);
    color: var(--gold-bright);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.activity-box h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--forest);
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.activity-box p {
    font-size: 0.94rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

.activity-rate-line {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* Mobility Callout */
.mobility-callout-strip {
    margin-top: 3rem;
    background: #FFFFFF;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 18px;
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.mobility-callout-strip svg {
    color: var(--gold);
    flex-shrink: 0;
}
.mobility-callout-strip h4 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--forest);
    margin-bottom: 0.2rem;
}
.mobility-callout-strip p {
    font-size: 0.94rem;
    color: var(--text-body);
    margin: 0;
}

/* ==========================================================================
   CO-FOUNDERS SECTION
   ========================================================================== */
.companions-section {
    background: #F2ECE1;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.companions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.8rem;
}

.founder-card {
    background: #FFFFFF;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.4rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.founder-header-flex {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.4rem;
}

.founder-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--forest);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    flex-shrink: 0;
}

.founder-titles h3 {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    color: var(--forest);
    line-height: 1.1;
}
.founder-titles h3 em {
    font-size: 1.3rem;
    font-weight: 400;
}
.founder-titles .meaning-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.founder-voice-quote {
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.founder-pursuits-box {
    background: #FAF7F2;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}
.founder-pursuits-box h5 {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.8rem;
}
.founder-pursuits-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.founder-pursuits-box li {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}
.founder-pursuits-box li strong {
    color: var(--text-dark);
}

.btn-request-companion {
    background: var(--forest);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}
.btn-request-companion:hover {
    background: var(--forest-dark);
}

/* ==========================================================================
   PRICING CALCULATOR & BOOKING SECTION
   ========================================================================== */
.booking-section {
    background: var(--bg-page);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 3.2rem;
    align-items: start;
}
@media (max-width: 980px) {
    .booking-grid { grid-template-columns: 1fr; }
}

.calculator-card {
    background: #FFFFFF;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 90px;
}
.calculator-card h3 {
    font-family: var(--font-serif);
    font-size: 1.95rem;
    color: var(--forest);
    margin-bottom: 0.3rem;
}
.calculator-card p.calc-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

.calc-field-group {
    margin-bottom: 1.5rem;
}
.calc-field-group label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.pill-radios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.pill-radios input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pill-radios label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    background: #FAF7F2;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.94rem;
    color: var(--forest);
    transition: all 0.2s ease;
}
.pill-radios label span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
}
.pill-radios input[type="radio"]:checked + label {
    background: var(--forest);
    color: #FFFFFF;
    border-color: var(--forest);
    box-shadow: 0 4px 12px rgba(11, 46, 36, 0.25);
}
.pill-radios input[type="radio"]:checked + label span {
    color: var(--gold-bright);
}

.select-wrap select {
    width: 100%;
    padding: 12px 14px;
    background: #FAF7F2;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.94rem;
    color: var(--text-dark);
    cursor: pointer;
}

.intro-check-box {
    background: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 1.6rem;
}
.intro-check-box label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #4C3408;
    cursor: pointer;
}
.intro-check-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--forest);
}

.calc-price-summary {
    text-align: center;
    border-top: 1px dashed var(--border-gold);
    padding-top: 1.5rem;
}
.calc-price-summary .summary-lbl {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.calc-price-summary .summary-price {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.1;
    margin: 4px 0;
}
.calc-price-summary .summary-note {
    font-size: 0.88rem;
    color: var(--text-body);
}

/* Booking Form Box */
.booking-form-box {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}
.booking-form-box h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--forest);
    margin-bottom: 0.3rem;
}
.booking-form-box p.form-lead {
    font-size: 0.94rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
}
@media (max-width: 640px) {
    .form-cols-2 { grid-template-columns: 1fr; }
}

.form-group {
    margin-bottom: 1.4rem;
}
.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: #FAF8F5;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.94rem;
    color: var(--text-dark);
    transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(197, 147, 58, 0.12);
}

.nok-box {
    background: #FAF7F2;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 1.4rem;
    margin-bottom: 1.5rem;
}
.nok-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.9rem;
    color: var(--forest);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nok-box-header svg { color: var(--gold); }

.charter-checkbox-box {
    background: #FAF7F2;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin-bottom: 1.8rem;
}
.charter-checkbox-box label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}
.charter-checkbox-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--forest);
}
.charter-checkbox-box a {
    color: var(--forest);
    font-weight: 700;
    text-decoration: underline;
}

.btn-proceed-pay {
    background: var(--forest);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    box-shadow: 0 4px 14px rgba(11, 46, 36, 0.25);
}
.btn-proceed-pay:hover {
    background: var(--forest-dark);
}

#paypal-button-container {
    margin-top: 1.5rem;
    display: none;
}
#success-message {
    display: none;
    background: #EDF7F2;
    border: 1.5px solid #68B08B;
    border-radius: var(--radius-sm);
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
}
#success-message h4 {
    font-family: var(--font-serif);
    color: var(--forest);
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 31, 24, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-content {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    max-width: 620px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.8rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--gold);
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F3ECE1;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--forest);
    cursor: pointer;
}
.modal-content h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--forest-dark);
    color: #FFFFFF;
    padding: 4.5rem 5% 2.8rem;
    border-top: 3px solid var(--gold);
}
.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 840px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand h3 {
    font-family: var(--font-serif);
    color: var(--gold-bright);
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.94rem;
    line-height: 1.65;
}

.footer-col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-bright);
    margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
    max-width: 1240px;
    margin: 2.2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   PRINT SUMMARY FLYER
   ========================================================================== */
.print-only-summary { display: none; }

@media print {
    .top-utility-bar, header, .hero-section, .outings-section, 
    .companions-section, .booking-section, footer, .modal-overlay {
        display: none !important;
    }
    body {
        background: #FFFFFF !important;
        color: #000000 !important;
        font-size: 11pt !important;
        line-height: 1.5 !important;
    }
    .print-only-summary {
        display: block !important;
        padding: 1.5cm 2cm;
    }
    .print-header {
        text-align: center;
        border-bottom: 2px solid #000;
        padding-bottom: 12px;
        margin-bottom: 18px;
    }
    .print-header h1 {
        font-family: serif;
        font-size: 24pt;
        color: #000;
    }
    .print-body h2 {
        font-size: 13pt;
        border-bottom: 1px solid #777;
        padding-bottom: 4px;
        margin: 14px 0 6px;
    }
    .print-body ul { padding-left: 20px; }
    .print-body li { margin-bottom: 4px; }
    .print-contact {
        margin-top: 20px;
        border: 1.5px solid #000;
        padding: 14px;
        background: #F9F9F9;
    }
}
