:root {
    --bg: #0b0b0c;
    --surface: #141416;
    --surface-2: #1a1a1d;
    --text: #f5f3ef;
    --muted: #aaa7a2;
    --line: #2a2a2e;
    --accent: #d7322f;
    --accent-2: #f05850;
    --paper: #f5f1e9;
    --paper-text: #19191b;
    --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(11,11,12,.92);
    backdrop-filter: blur(14px);
}
.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand img { width: 176px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
    color: #dedbd6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}
.main-nav a:hover { color: #fff; }
.nav-cta {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.hero {
    min-height: 650px;
    display: grid;
    align-items: center;
    padding: 86px 0 92px;
    background:
        radial-gradient(circle at 82% 22%, rgba(215,50,47,.20), transparent 32%),
        linear-gradient(180deg, #111113 0%, #0b0b0c 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 72px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #d7d2cb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
}
h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;
}
.hero-copy {
    max-width: 680px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
}
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}
.btn:hover { background: var(--accent-2); }
.btn-secondary { border-color: var(--line); background: transparent; }
.btn-secondary:hover { border-color: #4b4b50; background: #151518; }

.hero-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(145deg, #171719, #101012);
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.hero-card-label { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.hero-card strong { display: block; margin: 8px 0 14px; font-size: 28px; line-height: 1.15; }
.hero-card p { margin: 0; color: var(--muted); }

.section { padding: 92px 0; }
.section-light { background: var(--paper); color: var(--paper-text); }
.section-head { max-width: 730px; margin-bottom: 42px; }
.section-kicker { color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.section h2 { margin: 8px 0 12px; font-size: clamp(32px, 4vw, 50px); line-height: 1.05; letter-spacing: -.035em; }
.section-head p { margin: 0; color: #6e6b67; font-size: 17px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
    min-height: 210px;
    padding: 28px;
    border: 1px solid #ddd6cc;
    border-radius: 16px;
    background: #fffdf9;
}
.feature-number { color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.feature h3 { margin: 34px 0 8px; font-size: 21px; }
.feature p { margin: 0; color: #706c67; }

.contact-section { padding: 92px 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 66px; align-items: start; }
.contact-copy h2 { margin: 6px 0 14px; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; }
.contact-copy p { color: var(--muted); }
.contact-list { display: grid; gap: 12px; }
.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    text-decoration: none;
}
.contact-item:hover { border-color: #45454b; background: var(--surface-2); }
.contact-item small { display: block; color: var(--muted); }
.contact-item strong { display: block; font-size: 17px; }
.contact-arrow { color: var(--accent-2); font-weight: 900; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; color: #85817d; font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }

/* Carta de drinks */
.page-hero { padding: 86px 0 52px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 920px; font-size: clamp(42px, 5vw, 68px); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 18px; }
.drinks-section { padding: 58px 0 100px; }
.drinks-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.drink-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
}
.drink-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #202024;
}
.drink-photo img { width: 100%; height: 100%; object-fit: cover; }
.drink-placeholder {
    width: 100%; height: 100%; display: grid; place-items: center; color: #6f6c68; font-weight: 800;
    background: radial-gradient(circle at 50% 45%, #29292d, #18181b 65%);
}
.drink-body { padding: 24px; }
.drink-body h2 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.025em; }
.drink-description { margin: 0; color: #b1ada7; font-size: 14px; }
.ingredients { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
.ingredients-label { display: block; margin-bottom: 7px; color: #77736e; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.ingredients p { margin: 0; color: #e7e2db; font-size: 14px; }
.empty-state { padding: 42px; border: 1px dashed var(--line); border-radius: 14px; color: var(--muted); text-align: center; }
.back-link { display: inline-flex; margin-top: 26px; color: #ddd8d1; font-weight: 700; text-decoration: none; }
.back-link:hover { color: #fff; }


.drinks-cta {
    padding: 72px 0;
    border-top: 1px solid var(--line);
    background: linear-gradient(145deg, #151517, #0d0d0f);
}
.drinks-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.drinks-cta h2 {
    margin: 7px 0 10px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.035em;
}
.drinks-cta p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}
.drinks-cta .btn {
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .hero { min-height: auto; }
    .hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
    .drinks-cta-inner { align-items: flex-start; flex-direction: column; gap: 26px; }
    .feature-grid, .drinks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--max)); }
    .header-inner { min-height: 68px; }
    .brand img { width: 150px; }
    .main-nav a:not(.nav-cta) { display: none; }
    .nav-cta { padding: 8px 12px; font-size: 12px !important; }
    .hero { padding: 64px 0 70px; }
    .hero-grid { gap: 34px; }
    .hero-card { padding: 24px; }
    .section, .contact-section { padding: 70px 0; }
    .feature-grid, .drinks-grid { grid-template-columns: 1fr; }
    .feature { min-height: 180px; }
    .page-hero { padding: 58px 0 38px; }
    .drinks-section { padding-top: 38px; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
}
