:root {
    --bg: #0e0d0b;
    --surface-1: #1a1915;
    --surface-2: #252420;
    --text: #d4cfc5;
    --muted: #8a8470;
    --gold: #c9a96e;
    --gold-strong: #b88f4e;
    --whatsapp: #25d366;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 90vw);
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: rgba(14, 13, 11, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: #2b2417;
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gold-strong);
    box-shadow: 0 16px 35px rgba(201, 169, 110, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text);
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(201, 169, 110, 0.12);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #0b2314;
    border-color: var(--whatsapp);
    gap: 8px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--surface-2);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at 15% 20%, rgba(201, 169, 110, 0.18), transparent 55%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.06), transparent 45%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px),
        #0e0d0b;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 13, 11, 0.4), rgba(14, 13, 11, 0.9));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    max-width: 720px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--gold);
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: var(--text);
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

p {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-indicator span {
    width: 2px;
    height: 36px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(6px);
    }
}

section {
    padding: 100px 0;
    position: relative;
}

section:not(.hero)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(780px, 80vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.25), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
}

.about-card {
    background: var(--surface-1);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: "";
    position: absolute;
    inset: -60% 40% auto -60%;
    height: 140%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2), transparent 65%);
}

.stats {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--surface-2);
    border-radius: 16px;
}

.stat-item strong {
    font-size: 1.4rem;
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
}

.quote {
    margin-top: 20px;
    font-style: italic;
    color: var(--text);
    border-left: 2px solid var(--gold);
    padding-left: 16px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tabs {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--surface-2);
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active,
.tab:hover {
    background: rgba(201, 169, 110, 0.15);
    color: var(--text);
    border-color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.menu-item {
    background: var(--surface-1);
    padding: 22px;
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-item h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.menu-item span {
    color: var(--gold);
    font-weight: 600;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.event-card {
    background: var(--surface-1);
    padding: 26px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-tag {
    display: inline-flex;
    align-self: start;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
}

.event-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.reservation-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: var(--surface-1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
}

form {
    display: grid;
    gap: 18px;
}

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

label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

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

input,
select,
textarea {
    width: 100%;
    margin-top: 8px;
    background: var(--surface-2);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text);
    font-family: inherit;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.error-text {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #e0a57a;
    min-height: 16px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.gallery-item {
    min-height: 180px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2c2a23, #1b1915);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(201, 169, 110, 0.18), transparent 60%);
}

.gallery-item span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    z-index: 1;
}

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

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.testimonial-card {
    background: var(--surface-1);
    padding: 26px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.contact-card {
    background: var(--surface-1);
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 20px;
}

.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(201, 169, 110, 0.15);
    display: grid;
    place-items: center;
}

.map-placeholder {
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(201, 169, 110, 0.12), transparent 60%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 24px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 24px),
        #141311;
    border: 1px solid rgba(201, 169, 110, 0.35);
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    padding: 28px;
}

.map-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(201, 169, 110, 0.18), transparent 60%);
}

.map-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    text-align: center;
}

.map-pin {
    font-size: 3rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--gold);
    color: var(--text);
    background: rgba(201, 169, 110, 0.12);
    transition: transform 0.3s ease, background 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
    background: rgba(201, 169, 110, 0.2);
}

footer {
    background: #11100e;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: center;
}

.footer-nav {
    display: grid;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface-2);
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.socials a:hover {
    transform: translateY(-2px);
    background: rgba(201, 169, 110, 0.2);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 960px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        position: fixed;
        top: 70px;
        right: 5vw;
        background: rgba(14, 13, 11, 0.98);
        flex-direction: column;
        gap: 18px;
        padding: 24px;
        border-radius: 18px;
        box-shadow: var(--shadow);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: inline-flex;
    }

    .nav-links .btn {
        width: 100%;
    }
}

@media (max-width: 680px) {
    section {
        padding: 80px 0;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-head {
        align-items: flex-start;
    }
}