:root {
    --gold: #c5a059;
    --gold-light: #d4b881;
    --white: #fdfcf8;
    --black: #1a1a1a;
    --gray: #f5f5f5;
    --text: #333333;
    --text-muted: #666666;
    --border: rgba(0, 0, 0, 0.05);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section {
    padding: 10rem 0;
}

.center { text-align: center; }
.bg-dark { background: var(--black); color: white; }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 2.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--black);
    letter-spacing: -1px;
}

.logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 4rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    transition: var(--transition);
}

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

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin-left: 4rem;
}

.hero-content span {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 3rem;
}

.hero h1 span { font-style: italic; }

.hero p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}

.mouse {
    width: 20px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10rem;
    align-items: center;
}

.concept-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.feat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feat p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.img-box {
    position: relative;
}

.img-box img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(0.2);
    transition: var(--transition);
}

.img-box:hover img { filter: grayscale(0); }

.img-badge {
    position: absolute;
    bottom: -2rem; left: -2rem;
    background: var(--gold);
    color: white;
    padding: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

/* Versatility modes */
.modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    margin-top: 6rem;
}

.mode-card {
    background: var(--white);
    padding: 8rem 4rem;
    text-align: center;
    transition: var(--transition);
}

.mode-card:hover { background: var(--gray); }

.mode-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

.mode-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mode-card p {
    max-width: 400px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Gastronomy */
.gastronomy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
}

.gas-img img {
    width: 100%;
    border-radius: 200px 200px 0 0;
}

.label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1.5rem;
}

/* Contact */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: -1rem;
    border: 1px solid var(--gold);
    z-index: -1;
    pointer-events: none;
}

.luxury-form {
    margin-top: 5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

input, select, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
}

textarea {
    height: 150px;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gold);
    color: white;
}

.btn-gold:hover {
    background: var(--black);
    transform: translateY(-5px);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--black);
}

section .btn-outline {
    border-color: var(--black);
    color: var(--black);
}

section .btn-outline:hover {
    background: var(--black);
    color: white;
}

.btn-full { width: 100%; }

/* Footer */
.footer {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.social-links a {
    text-decoration: none;
    color: var(--black);
    margin-left: 3rem;
}

/* FAB WhatsApp */
.fab-whatsapp {
    position: fixed;
    bottom: 4rem; right: 4rem;
    width: 70px; height: 70px;
    background: var(--black);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 100;
    transition: var(--transition);
}

.fab-whatsapp:hover { transform: scale(1.1); background: var(--gold); color: white; }

/* Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 2rem; }
    .concept-grid, .gastronomy-layout { grid-template-columns: 1fr; gap: 6rem; }
    .hero-content { margin-left: 0; }
    .navbar .inner { padding: 0 2rem; }
}

@media (max-width: 768px) {
    .section { padding: 6rem 0; }
    .hero-buttons { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .contact-card { padding: 4rem 2rem; }
    .footer-inner { flex-direction: column; gap: 4rem; text-align: center; }
    .nav-links { display: none; }
    .hamburger { display: flex; flex-direction: column; gap: 8px; background: none; border: none; }
    .hamburger span { width: 40px; height: 2px; background: var(--black); }
}
