/* Booking Landing Page Styles */

:root {
    --primary: #9b6b43;
    --primary-dark: #7a5333;
    --sand: #f6efe8;
    --paper: #fffdf9;
    --ink: #211910;
    --muted: #6e6258;
    --line: rgba(93, 71, 50, 0.16);
    --success: #1f7a52;
    --danger: #b24d4d;
    --header-height: 88px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}
body {
    max-width: 100%;
    overflow-x: clip;
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f7efe6 0%, #fbf7f2 42%, #fefcf8 100%);
    line-height: 1.6;
}
img, video, canvas, svg { max-width: 100%; }

.shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.section-gap { padding: 80px 0; }
.section-light { background: var(--paper); }
.section-warm { background: linear-gradient(180deg, rgba(246,239,232,0.5) 0%, rgba(254,252,248,0.5) 100%); }
.section-gradient { background: linear-gradient(180deg, #f7efe6 0%, #f0e8de 100%); }
.section-cta { background: var(--ink); }

/* Header */
.landing-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(248, 241, 233, 0.78);
    border-bottom: 1px solid rgba(93, 71, 50, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.landing-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
    position: relative;
}
.landing-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    overflow: hidden;
}
.landing-brand > span {
    min-width: 0;
    overflow: hidden;
}
.landing-brand-mark {
    width: 68px; height: 68px; border-radius: 22px; overflow: hidden;
    border: 1px solid rgba(93, 71, 50, 0.12);
    background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(244,230,212,0.94));
    box-shadow: 0 10px 24px rgba(39, 25, 14, 0.08);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.landing-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.landing-brand-kicker {
    display: block; font-size: 0.75rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted);
}
.landing-brand-name {
    display: block; font-family: "Cormorant Garamond", serif; font-size: 1.5rem;
    line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    color: var(--ink);
}
.landing-nav { display: flex; align-items: center; gap: 8px; }
.landing-nav a {
    padding: 10px 14px; border-radius: 999px; color: var(--muted);
    font-weight: 700; font-size: 0.88rem; transition: background 0.2s ease, color 0.2s ease;
}
.landing-nav a:hover { color: var(--ink); background: rgba(255,255,255,0.82); }
.landing-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 18px; border-radius: 999px; border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; font-weight: 800; font-size: 0.9rem;
    box-shadow: 0 16px 34px rgba(84, 55, 33, 0.22);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.landing-cta:hover { transform: translateY(-1px); }
.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.76);
    color: var(--ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,250,244,0.98);
    border: 1px solid rgba(93,71,50,0.1);
    box-shadow: 0 28px 60px rgba(39,25,14,0.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    display: block;
    padding: 14px 18px;
    border-radius: 14px;
    color: var(--ink);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: background 0.2s ease;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.82); }
.mobile-cta-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    margin-top: 8px;
}

/* Hero */
.photo-hero {
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(246,239,232,0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(246,239,232,0.6) 0%, transparent 40%);
    pointer-events: none;
}
.photo-hero .shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    min-width: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(155,107,67,0.1);
    border: 1px solid rgba(155,107,67,0.2);
    border-radius: 999px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--ink);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 50ch;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
}
.stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--line);
}
.hero-visual {
    display: flex;
    justify-content: flex-end;
}
.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 16px;
    max-width: 430px;
}
.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(39,25,14,0.15);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hero-image:hover img { transform: scale(1.03); }
.hero-image.main {
    grid-row: span 3;
    height: 348px;
}
.hero-image.secondary,
.hero-image.tertiary,
.hero-image.quaternary {
    height: 105px;
}

/* Profile Mark */
.booking-profile-mark {
    display: flex;
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.9);
    box-shadow: 0 12px 32px rgba(39,25,14,0.18);
    background: linear-gradient(135deg, rgba(246,239,232,0.8), rgba(255,255,255,0.8));
    animation: profileFloat 4s ease-in-out infinite;
}

@keyframes profileFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.booking-profile-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 16px 36px rgba(155,107,67,0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(155,107,67,0.3);
}
.btn-ghost {
    background: rgba(255,255,255,0.9);
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover {
    background: #fff;
    transform: translateY(-1px);
}
.btn-secondary {
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-secondary:hover {
    background: #fff;
    transform: translateY(-1px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Section Headers */
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 8px 14px;
    background: rgba(155,107,67,0.1);
    border-radius: 999px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    overflow-wrap: anywhere;
}
.section-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-description {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 55ch;
}
.section-header.centered .section-description { margin: 16px auto 0; }

/* Problem Cards */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.problem-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--paper);
    transition: all 0.3s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(39,25,14,0.1); }
.problem-card.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
}
.problem-card.highlight h3,
.problem-card.highlight p { color: #fff; }
.problem-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}
.problem-card:not(.highlight) .problem-icon {
    background: rgba(155,107,67,0.1);
    color: var(--primary);
}
.problem-card.highlight .problem-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.problem-card h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.problem-card p { color: var(--muted); line-height: 1.7; }
.problem-card.highlight p { color: rgba(255,255,255,0.9); }

/* Portfolio Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 0;
    padding: 0;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: rgba(255, 255, 255, 0.72);
}
.gallery-item.visible { opacity: 1; transform: translateY(0); }
.gallery-item:focus-visible {
    outline: 3px solid rgba(155, 107, 67, 0.34);
    outline-offset: 4px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(33,25,16,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-category {
    padding: 8px 14px;
    background: rgba(255,255,255,0.95);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}
.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.portfolio-lightbox[hidden] {
    display: none;
}
.portfolio-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 12, 8, 0.82);
    backdrop-filter: blur(6px);
}
.portfolio-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px 18px 20px;
    border-radius: 30px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid rgba(93, 71, 50, 0.12);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}
.portfolio-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(39, 25, 14, 0.76);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.portfolio-lightbox-close:hover {
    transform: scale(1.04);
    background: rgba(39, 25, 14, 0.92);
}
.portfolio-lightbox-media {
    overflow: auto;
    border-radius: 24px;
    background: #fff;
    min-height: 180px;
}
.portfolio-lightbox-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: calc(100vh - 210px);
    margin: 0 auto;
}
.portfolio-lightbox-caption {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 6px;
}
.portfolio-lightbox-category {
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(155, 107, 67, 0.12);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
}
.portfolio-lightbox-caption h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.1;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.benefit-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--paper);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.benefit-card.visible { opacity: 1; transform: translateY(0); }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(39,25,14,0.1); }
.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(155,107,67,0.15), rgba(155,107,67,0.05));
    color: var(--primary);
    font-size: 1.5rem;
}
.benefit-card h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.benefit-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--paper);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(39,25,14,0.1); }
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #f5a623;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--line);
}
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-service { color: var(--muted); font-size: 0.85rem; }

/* Booking */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    min-width: 0;
}
.booking-info .section-tag { margin-bottom: 16px; }
.booking-info h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}
.booking-intro {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.booking-trust { display: flex; flex-direction: column; gap: 16px; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 600;
}
.trust-item i { color: var(--primary); font-size: 1.2rem; }
.booking-form-card {
    background: var(--paper);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    padding: 36px;
    box-shadow: 0 28px 60px rgba(39,25,14,0.1);
    min-width: 0;
}
.form-header {
    margin-bottom: 28px;
    text-align: center;
}
.form-header h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.form-header p { color: var(--muted); }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-width: 0;
}
.form-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
}
.form-field label .optional { font-weight: 400; color: var(--muted); }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    background: #fff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(155,107,67,0.1);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-status {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    line-height: 1.6;
}
.form-status.show { display: block; }
.form-status.success {
    background: rgba(31,122,82,0.08);
    border: 1px solid rgba(31,122,82,0.2);
    color: var(--success);
}
.form-status.error {
    background: rgba(178,77,77,0.08);
    border: 1px solid rgba(178,77,77,0.2);
    color: var(--danger);
}
.payment-box { display: none; margin-top: 20px; }
.payment-box.show { display: block; }
.payment-success {
    padding: 24px;
    background: linear-gradient(135deg, rgba(246,239,232,0.5), rgba(254,252,248,0.8));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
}
.payment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(31,122,82,0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.payment-success h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.payment-success p { color: var(--muted); margin-bottom: 20px; font-size: 0.95rem; }
.payment-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.payment-amount {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.payment-amount .label { font-size: 0.78rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.payment-amount .value { font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.payment-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.qr-wrapper {
    width: 140px;
    height: 140px;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--line);
}
.qr-wrapper img { width: 100%; height: 100%; object-fit: contain; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    gap: 20px;
    min-width: 0;
}
.faq-question i {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
    padding-bottom: 24px;
    color: var(--muted);
    line-height: 1.8;
}

/* CTA Final */
.cta-final {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(155,107,67,0.1), rgba(155,107,67,0.05));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(155,107,67,0.2);
}
.cta-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-content .btn-primary {
    background: #fff;
    color: var(--ink);
}
.cta-content .btn-primary:hover {
    background: #f7efe6;
    transform: translateY(-2px);
}

/* Site Header Override */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(248,241,233,0.78);
    border-bottom: 1px solid rgba(93,71,50,0.08);
}
.site-header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
    width: 54px; height: 54px; border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(93,71,50,0.12);
    background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(244,230,212,0.94));
    box-shadow: 0 10px 24px rgba(39,25,14,0.08);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-kicker {
    display: block; font-size: 0.75rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted);
}
.brand-name {
    display: block; font-family: "Cormorant Garamond", serif; font-size: 1.7rem;
    line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.menu-toggle {
    display: none; width: 48px; height: 48px; border-radius: 14px;
    border: 1px solid var(--line); background: rgba(255,255,255,0.76); color: var(--ink);
}
.site-nav { display: flex; align-items: center; gap: 10px; }
.site-nav a {
    padding: 11px 16px; border-radius: 999px; color: var(--muted);
    font-weight: 700; font-size: 0.94rem; transition: background 0.2s ease, color 0.2s ease;
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--ink); background: rgba(255,255,255,0.82); }
.header-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 18px; border-radius: 999px; border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; font-weight: 800; box-shadow: 0 16px 34px rgba(84,55,33,0.22);
    text-decoration: none;
}
.floating-whatsapp {
    position: fixed; right: 20px; bottom: 20px; z-index: 35;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: 999px;
    background: #1e1914; color: #fff;
    box-shadow: 0 20px 42px rgba(26,17,11,0.28);
    text-decoration: none;
}
.floating-whatsapp i { color: #4ee28b; }
.footer { padding: 16px 0 40px; color: var(--muted); text-align: center; font-size: 0.9rem; }

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 16px 20px;
    background: rgba(33, 25, 16, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}
.cookie-text {
    flex: 1;
    min-width: 0;
}
.cookie-text h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.cookie-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0;
}
.cookie-text a {
    color: #f5a623;
    text-decoration: underline;
}
.cookie-text a:hover { color: #fff; }
.cookie-actions {
    flex-shrink: 0;
    display: flex;
    gap: 10px;
}
.btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
}
.cookie-consent .btn-ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2);
}
.cookie-consent .btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Reveal Scroll Animations */
.reveal {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger-1 { transition-delay: 0.1s; }
.reveal-stagger-2 { transition-delay: 0.2s; }
.reveal-stagger-3 { transition-delay: 0.3s; }
.reveal-stagger-4 { transition-delay: 0.4s; }
.reveal-stagger-5 { transition-delay: 0.5s; }
.reveal-stagger-6 { transition-delay: 0.6s; }

/* Animations */
@keyframes waPulse {
    0%, 100% { box-shadow: 0 20px 42px rgba(26,17,11,0.28); }
    50% { box-shadow: 0 20px 50px rgba(78, 226, 139, 0.3); }
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }
}
@media (max-width: 860px) {
    .mobile-menu-toggle { display: inline-flex; }
    .landing-nav { display: none; }
    .landing-cta { display: none; }
    .landing-brand { flex: 1 1 auto; }
    .landing-brand-mark { display: none; }
    .booking-profile-mark { margin-bottom: 50px; }
    .photo-hero .shell { grid-template-columns: 1fr; gap: 32px; }
    .hero-visual { order: 0; justify-content: center; }
    .hero-content { text-align: center; order: 1; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-grid { max-width: 320px; margin: 0 auto; }
    .photo-hero .shell { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .problem-grid { grid-template-columns: 1fr; }
    .portfolio-gallery { grid-template-columns: repeat(2, 1fr); }
    .booking-wrapper { grid-template-columns: 1fr; }
    .booking-info { text-align: center; }
    .booking-trust { align-items: center; }
    .section-header.centered .section-description { margin-left: auto; margin-right: auto; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .site-nav {
        position: absolute; top: calc(100% + 10px); left: 16px; right: 16px;
        display: none; flex-direction: column;
        align-items: stretch; gap: 8px; padding: 14px;
        border-radius: 22px; background: rgba(255,250,244,0.98);
        border: 1px solid rgba(93,71,50,0.1); box-shadow: 0 28px 60px rgba(39,25,14,0.12);
    }
    .site-header.menu-open .site-nav { display: flex; }
    .header-cta { display: none; }
}
@media (max-width: 640px) {
    .section-gap { padding: 60px 0; }
    .shell { width: min(100% - 24px, 1200px); }
    .photo-hero { padding: 40px 0 60px; }
    .hero-badge { font-size: 0.72rem; }
    .booking-profile-mark { width: 150px; height: 150px; }
    .hero-stats {
        gap: 14px 18px;
    }
    .stat-divider { display: none; }
    .stat-item {
        flex: 1 1 96px;
        align-items: center;
    }
    .stat-label { font-size: 0.78rem; }
    .btn-lg { padding: 16px 28px; font-size: 1rem; }
    .btn { width: 100%; justify-content: center; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }
    .portfolio-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
    .portfolio-lightbox {
        padding: 14px;
    }
    .portfolio-lightbox-dialog {
        max-height: calc(100vh - 28px);
        padding: 14px 14px 18px;
        border-radius: 24px;
    }
    .portfolio-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
    .portfolio-lightbox-media img {
        max-height: calc(100vh - 220px);
    }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: span 1; }
    .booking-form-card { padding: 24px; }
    .cta-final { padding: 40px 24px; }
    .floating-whatsapp { left: 14px; right: 14px; bottom: 14px; justify-content: center; }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-actions .btn { width: 100%; }
}
