:root {
    --forest: #31483a;
    --olive: #6f8066;
    --sage: #dfe8d8;
    --mist: #eef2ea;
    --cream: #fbf7ef;
    --sand: #eadfce;
    --stone: #d6cabb;
    --ink: #2d332d;
    --muted: #747b70;
    --white: #fffdf8;
    --border: rgba(49, 72, 58, 0.15);
    --shadow: 0 22px 70px rgba(49, 72, 58, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--cream), #f7f1e6 42%, var(--mist));
    font-size: 1.16rem;
    line-height: 1.62;
}

h1,
h2,
h3 {
    color: var(--forest);
    font-weight: 600;
    line-height: 1.03;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--forest);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 247, 239, 0.88);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
}

.logo {
    color: var(--forest);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1;
}

.logo:hover {
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    color: var(--forest);
    font-size: 1rem;
    font-weight: 600;
}

.nav-links a:hover {
    background: var(--sage);
    text-decoration: none;
}

.book-btn,
.cta-btn {
    background: var(--forest);
    color: var(--white) !important;
}

.book-btn:hover,
.cta-btn:hover {
    background: var(--olive) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.45rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--forest);
}

#hero {
    display: flex;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(1.5rem, 5vw, 4rem) 1.25rem 3rem;
}

.hero-panel {
    width: min(100%, 620px);
    padding: clamp(1.5rem, 4vw, 2.4rem);
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 18px 56px rgba(49, 72, 58, 0.13);
    text-align: center;
}

.hero-banner {
    display: block;
    width: min(100%, 360px);
    height: auto;
    margin: 0 auto 0.9rem;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(49, 72, 58, 0.08);
}

.hero-panel h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.75rem, 5vw, 5.6rem);
}

.section-kicker {
    margin-bottom: 0.7rem;
    color: var(--olive);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.hero-panel .section-kicker {
    text-align: center;
    margin-bottom: 0;
}

.cta-btn,
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.72rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
}

.cta-btn:hover,
.whatsapp-btn:hover {
    text-decoration: none;
}

.text-link {
    color: var(--forest);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 4.75rem 1.25rem;
}

section h2 {
    margin: 0 auto 2rem;
    max-width: 760px;
    text-align: center;
    font-size: clamp(2.35rem, 4.5vw, 4rem);
}

.booking-section {
    max-width: none;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: max(1.25rem, calc((100vw - 1180px) / 2));
    padding-right: max(1.25rem, calc((100vw - 1180px) / 2));
    background: linear-gradient(180deg, var(--white), var(--mist));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.booking-intro {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.booking-intro p:not(.section-kicker) {
    color: var(--muted);
}

.booking-tool {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.82fr);
    gap: 1rem;
    max-width: 1180px;
    margin: 0 auto;
}

.booking-notes {
    display: grid;
    gap: 0.45rem;
    max-width: 1180px;
    margin: 1rem auto 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.78);
    color: var(--muted);
}

.booking-notes p {
    margin: 0;
}

.booking-notes strong {
    color: var(--forest);
}

.calendar-panel,
.booking-form,
.about-item,
.faq-item,
.contact-info,
.review-card {
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 18px 54px rgba(49, 72, 58, 0.11);
}

.calendar-panel,
.booking-form {
    padding: 1.25rem;
}

.date-picker-bar {
    display: flex;
    align-items: stretch;
    border: 2px solid var(--forest);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.date-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
}

.date-box:hover {
    background: var(--mist);
}

.date-box.is-active {
    background: var(--sage);
}

.date-box-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
}

.date-box-value {
    font-size: 1.05rem;
    color: var(--ink);
    margin-top: 0.15rem;
}

.date-box-value.is-empty {
    color: var(--muted);
}

.date-box-sublabel {
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--muted);
}

.date-box-sep {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
}

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calendar-toolbar h3 {
    margin: 0;
    font-size: 2rem;
}

.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--forest);
    cursor: pointer;
    font: inherit;
    font-size: 1.5rem;
    line-height: 1;
}

.icon-button:hover {
    background: var(--sage);
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.calendar-weekdays {
    margin-bottom: 0.45rem;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.calendar-day {
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--forest);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.calendar-day small {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.calendar-day.is-available:hover,
.calendar-day.is-selected {
    background: var(--forest);
    color: var(--white);
}

.calendar-day.is-selected small {
    color: var(--white);
}

.calendar-day.is-in-range {
    background: var(--sage);
}

.calendar-day.is-unavailable {
    color: rgba(45, 51, 45, 0.34);
    background: rgba(234, 223, 206, 0.45);
    cursor: not-allowed;
}

.calendar-day.is-checkout-only {
    background: var(--white);
}

.calendar-day.is-checkout-only:not(:disabled):hover,
.calendar-day.is-checkout-only.is-selected {
    background: var(--forest);
    color: var(--white);
}

.calendar-day.is-checkout-only:disabled {
    cursor: default;
    color: var(--muted);
}

.calendar-day.is-in-window {
    background: var(--white);
    border-color: var(--olive);
    border-width: 2px;
    cursor: default;
}

.calendar-day.is-range-preview {
    background: var(--sage);
    border-color: var(--forest);
}

.calendar-day.is-blank {
    border: 0;
    background: transparent;
}

.calendar-note,
.booking-intro p,
.about-item p,
#faq > p:not(.section-kicker),
.faq-answer,
.contact-info p,
.form-message,
.payment-note {
    color: var(--muted);
}

.calendar-note {
    margin: 1rem 0 0;
    font-size: 1rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.child-ages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.child-needs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--mist);
}

.child-needs p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--forest);
    font-weight: 700;
}

.child-needs label {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 0.45rem;
}

.child-needs input {
    width: auto;
}

.child-ages[hidden],
.child-needs[hidden] {
    display: none;
}

.booking-form label {
    display: grid;
    gap: 0.35rem;
    color: var(--forest);
    font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 1.05rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: 2px solid rgba(111, 128, 102, 0.24);
    border-color: var(--olive);
}

.booking-form .child-needs input {
    width: auto;
}

.form-wide {
    grid-column: 1 / -1;
}

.booking-summary,
.form-message,
.payment-note {
    margin: 0;
}

.booking-summary:not(:empty) {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.summary-header {
    margin: 0 0 0.75rem;
    font-weight: 700;
    color: var(--forest);
}

.summary-note,
.summary-error {
    margin: 0;
    font-size: 1rem;
}

.summary-error {
    color: var(--danger, #c0392b);
}

.summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--muted);
}

.summary-total {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--forest);
}

.summary-discount {
    color: var(--olive);
}

.payment-note {
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-size: 1rem;
}

.submit-booking {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.submit-booking:hover {
    background: var(--olive);
}

.form-message.is-success {
    color: var(--olive);
}

.form-message.is-error {
    color: #9d4032;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-item {
    overflow: hidden;
}

.about-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.about-item h3 {
    margin: 1.15rem 1.15rem 0.6rem;
    font-size: 1.8rem;
}

.about-item p {
    margin: 0 1.15rem 1.25rem;
}

#photos {
    max-width: none;
    background: var(--sand);
}

#photos h2,
#photos .section-kicker,
.photo-gallery {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.8rem;
}

.gallery-item {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 18px 46px rgba(49, 72, 58, 0.16);
}

.gallery-item:focus-visible {
    outline: 3px solid rgba(111, 128, 102, 0.55);
    outline-offset: 4px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 220ms ease;
}

.gallery-item--contain img {
    object-fit: contain;
    background: #f8f3ea;
}

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

.gallery-item:nth-child(1) {
    grid-column: span 6;
    height: 430px;
}

.gallery-item:nth-child(1) img {
    height: 430px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
    grid-column: span 2;
}

.gallery-item:nth-child(8),
.gallery-item:nth-child(9) {
    grid-column: span 3;
}

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(25, 31, 26, 0.86);
    backdrop-filter: blur(10px);
}

.lightbox figure {
    display: grid;
    gap: 0.85rem;
    justify-items: center;
    margin: 0;
}

.lightbox img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox figcaption {
    color: var(--cream);
    font-size: 1.15rem;
    text-align: center;
}

.lightbox-close,
.lightbox-nav {
    border: 1px solid rgba(255, 253, 248, 0.35);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.14);
    color: var(--cream);
    cursor: pointer;
    font: inherit;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 253, 248, 0.25);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-open {
    overflow: hidden;
}

#reviews {
    max-width: none;
    background: linear-gradient(180deg, var(--mist), var(--cream));
}

#reviews h2,
#reviews .section-kicker,
.testimonial-carousel {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-carousel {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
    overflow: hidden;
}

.review-card {
    display: none;
    max-width: 680px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: center;
}

.review-card.is-active {
    display: block;
    animation: testimonial-slide 360ms ease;
}

.review-stars {
    margin-bottom: 0.8rem;
    color: var(--olive);
    letter-spacing: 0.08em;
}

.review-card p {
    margin: 0 auto 0.85rem;
    max-width: 660px;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.35;
}

.review-card footer {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.review-card strong {
    color: var(--forest);
    font-size: 0.82rem;
    font-weight: 700;
}

.review-card footer span::before {
    content: "/";
    margin-right: 0.35rem;
    color: rgba(45, 51, 45, 0.36);
}

.testimonial-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.testimonial-controls button {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--forest);
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    line-height: 1;
}

.testimonial-dots {
    display: none;
    gap: 0.3rem;
}

.testimonial-dots button {
    width: 5px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(74, 95, 75, 0.28);
    cursor: pointer;
}

.testimonial-dots button.is-active {
    width: 14px;
    background: var(--forest);
}

.testimonial-source {
    color: var(--forest);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@keyframes testimonial-slide {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reviews-status {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
}

#faq {
    max-width: 840px;
}

#faq > p:not(.section-kicker) {
    text-align: center;
}

.faq-item {
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 56px;
    padding: 1rem 1.15rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--forest);
    font: inherit;
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-question:hover {
    background: var(--sage);
}

.faq-answer {
    display: none;
    padding: 0 1.15rem 1.15rem;
}

#contact {
    text-align: center;
}

.contact-info {
    max-width: 640px;
    margin: 0 auto 1.75rem;
    padding: 1.5rem;
}

.whatsapp-btn {
    margin-bottom: 1rem;
    background: var(--olive);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: var(--forest);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 700;
    background: rgba(255, 253, 248, 0.55);
}

.social-links a:hover {
    background: var(--sage);
    text-decoration: none;
}

.site-footer {
    background: var(--forest);
    color: var(--cream);
    text-align: center;
    padding: 1.25rem;
}

.site-footer p {
    margin: 0;
}

.status-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

.status-logo {
    width: min(100%, 520px);
    height: auto;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.status-page h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.status-page p {
    max-width: 560px;
    color: var(--muted);
}

.cancel-card {
    width: min(100%, 600px);
    padding: clamp(1.5rem, 4vw, 2.4rem);
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 18px 56px rgba(49, 72, 58, 0.13);
    text-align: left;
}

.cancel-card h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.cancel-card label {
    display: grid;
    gap: 0.35rem;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cancel-card input[type="text"] {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.cancel-card input[type="text"]:focus {
    outline: 2px solid rgba(111, 128, 102, 0.24);
    border-color: var(--olive);
}

.cancel-summary {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--mist);
    margin-bottom: 1.25rem;
    color: var(--ink);
}

.cancel-summary p {
    margin: 0 0 0.4rem;
    color: var(--ink);
}

.cancel-summary p:last-child {
    margin-bottom: 0;
}

.refund-amount {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--forest);
}

.danger-btn {
    min-height: 48px;
    padding: 0.72rem 1.5rem;
    border: 0;
    border-radius: 999px;
    background: #9d4032;
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.danger-btn:hover {
    background: #7d3228;
}

@media (max-width: 980px) {
    #hero,
    .booking-tool,
    .about-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        width: min(92%, 620px);
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(n) {
        grid-column: auto;
        height: 260px;
    }

    .gallery-item:nth-child(n) img {
        height: 260px;
    }
}

@media (max-width: 760px) {
    nav {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 0.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        justify-content: center;
    }

    section {
        padding: 3.5rem 1rem;
    }

    #hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 520px) {
    .hero-panel {
        width: 100%;
    }

    .hero-banner {
        width: min(100%, 280px);
    }

    .booking-form,
    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .calendar-day {
        min-height: 48px;
        font-size: 1rem;
    }

    .lightbox {
        grid-template-columns: 1fr;
        padding: 4rem 1rem 1rem;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 0.75rem;
    }

    .lightbox-next {
        right: 0.75rem;
    }

    .lightbox img {
        max-height: 76vh;
    }
}
