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

:root {
    --primary: #2C1E18;
    --mocha: #583C2F;
    --accent: #C59B7B;
    --accent-hover: #AA7F61;
    --accent-soft: #F6EEE7;
    --bg-color: #FAF7F2;
    --card-bg: #FFFFFF;
    --border-color: #EAE2D8;
    --text-muted: #73645A;
    --shadow-soft: 0 10px 30px rgba(44, 30, 24, 0.05);
    --shadow-hover: 0 15px 40px rgba(44, 30, 24, 0.1);
    --radius: 8px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--primary);
    background-color: var(--bg-color);
    font-weight: 300;
    overflow-x: hidden;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   HEADER / HERO
   ========================================= */
header.hero {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
    padding: 70px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-logo-wrapper {
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
}

.hero-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(44, 30, 24, 0.15);
    border: 3px solid var(--accent);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-logo:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 35px rgba(44, 30, 24, 0.22);
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

header .subtitle {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #442E25 0%, #2C1E18 100%);
    color: #FFFFFF;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0 6px 22px rgba(44, 30, 24, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5A3E31 0%, #38241B 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(44, 30, 24, 0.3);
}

/* =========================================
   SECTIONS & TITLES
   ========================================= */
section {
    margin: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.divider-gold {
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* =========================================
   SECTION 1: ABOUT & WELCOME
   ========================================= */
.about-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 45px 50px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--mocha);
    max-width: 720px;
    margin: 0 auto 35px;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
    text-align: left;
}

.feature-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 24px 20px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-num {
    width: 36px;
    height: 36px;
    background: var(--accent-soft);
    color: var(--mocha);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =========================================
   SECTION 2: PRICING GUIDE & BOOKING
   ========================================= */
.pricing-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.pricing-column {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow-soft);
}

.pricing-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--mocha);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-column ul {
    list-style: none;
}

.pricing-column li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #F0EAE3;
    font-size: 0.9rem;
}

.pricing-column li:last-child {
    border-bottom: none;
}

.pricing-column .item-name {
    color: var(--primary);
    font-weight: 500;
}

.pricing-column .item-price {
    font-weight: 700;
    color: var(--mocha);
    background: var(--accent-soft);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.82rem;
}

.auto-calc-notice {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Booking CTA Portal Card */
.booking-cta-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 55px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.booking-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(197, 155, 123, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.booking-cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.booking-cta-content p {
    font-size: 1rem;
    color: var(--mocha);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(44, 30, 24, 0.25);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(44, 30, 24, 0.35);
}

.booking-features-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.booking-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.booking-feature-pill span {
    color: var(--accent);
    font-size: 1rem;
}


/* =========================================
   SECTION 3: POLICIES & MEDIA CONSENT
   ========================================= */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.policy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.3s ease;
}

.policy-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.policy-badge {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--mocha);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.policy-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================
   SECTION 4: CLIENT REVIEWS
   ========================================= */
#reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 35px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: #E2A63B;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.review-author {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--mocha);
    font-weight: 600;
}

.review-author em {
    text-transform: none;
    font-style: normal;
    color: var(--accent);
    margin-left: 4px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--primary);
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px 50px;
    margin-top: 90px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.footer-contact {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.hero-instagram {
    margin-bottom: 25px;
    font-size: 0.92rem;
    color: var(--mocha);
}

.hero-instagram a {
    color: var(--mocha);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}

.hero-instagram a:hover {
    color: var(--primary);
}

.partner-banner {
    background: linear-gradient(135deg, #FFF9F3 0%, #FAF2EA 100%);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 30px 0 10px;
    text-align: left;
    box-shadow: var(--shadow-soft);
}

.partner-banner h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.partner-banner p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.partner-banner a {
    color: var(--mocha);
    font-weight: 600;
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.footer-credits {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}

.footer-credits a {
    color: var(--accent);
    text-decoration: underline;
}


/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 860px) {
    .features-grid,
    .pricing-overview-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 2.6rem;
    }

    .about-box {
        padding: 30px 20px;
    }
}
