/* From Peru Bar — sitio público. Tema oscuro y atmosférico que acompaña las
   fotos reales del local (neón, terciopelo, piedra). Mobile-first, sin frameworks. */

:root {
    color-scheme: dark;
    --bg: #08080a;
    --bg-soft: #0d0d10;
    --surface: #121216;
    --surface-2: #191920;
    --ink: #f3f1ee;
    --muted: #9b9aa3;
    --faint: #6a6973;
    /* Acento verde limón, tomado del logo (limón). Mantengo los nombres --gold*
       para no tocar todas las referencias; el valor ahora es lima. */
    --gold: #8fbf36;
    --gold-bright: #b6e04a;
    --green: #43e3a6;
    --pink: #ff7bad;
    --line: rgba(243,241,238,.08);
    --line-strong: rgba(243,241,238,.16);
    --danger: #ff8a7a;
    --ok: #57e0a8;
    --shadow: 0 24px 60px rgba(0,0,0,.45);
    --radius: 16px;
    --maxw: 1180px;
    --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

h1, h2, h3 {
    font-family: "Fraunces", "Playfair Display", Georgia, serif;
    font-weight: 600;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -.01em;
}

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-bright);
}
.eyebrow::before {
    content: "";
    width: 26px; height: 1px;
    background: var(--gold);
    opacity: .7;
}

/* ---------- buttons ---------- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .01em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
    background: #d7a647;
    color: #160f05;
    border-color: rgba(255,225,162,.34);
    box-shadow: 0 12px 26px rgba(0,0,0,.28);
}
.button.primary:hover {
    background: #e1b457;
    box-shadow: 0 16px 34px rgba(0,0,0,.34);
}
.button.ghost {
    background: rgba(255,255,255,.045);
    border-color: rgba(255,255,255,.20);
    color: var(--ink);
}
.button.ghost:hover {
    background: rgba(255,228,163,.10);
    border-color: rgba(255,228,163,.50);
    color: #ffe4a3;
}
.button.full { width: 100%; }

/* ---------- topbar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8,8,10,.72);
    backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid var(--line);
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand {
    font-family: "Fraunces", serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .01em;
}
.brand b { color: var(--gold-bright); font-weight: 600; }
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav a.link {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s var(--ease);
}
.nav a.link:hover { color: var(--ink); }
.nav .button { min-height: 44px; padding: 0 20px; font-size: 14px; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    padding-block: 120px 64px;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("/images/hero.jpg");
    background-size: cover;
    background-position: center;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(120% 90% at 15% 100%, rgba(8,8,10,.92), rgba(8,8,10,.35) 55%, transparent),
        linear-gradient(180deg, rgba(8,8,10,.55) 0%, transparent 30%, rgba(8,8,10,.55) 75%, var(--bg) 100%);
}
.hero-inner { max-width: 680px; }
.hero h1 {
    font-size: clamp(46px, 9vw, 96px);
    margin: 18px 0 0;
}
.hero h1 .accent { color: var(--gold-bright); font-style: italic; }
.hero .lead {
    margin: 22px 0 0;
    max-width: 540px;
    color: var(--muted);
    font-size: clamp(16px, 2.4vw, 20px);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--muted);
}
.hero-meta b { color: var(--ink); font-weight: 600; }

/* ---------- generic section ---------- */
.section { padding-block: clamp(64px, 10vw, 120px); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(32px, 5vw, 52px); margin-top: 14px; }
.section-head p { color: var(--muted); margin: 16px 0 0; font-size: 17px; }

/* ---------- experience split ---------- */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.split .media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .media::after {
    content: "";
    position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px var(--line-strong);
    border-radius: var(--radius);
}
.feature-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 18px;
}
.feature-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.feature-list .ico {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(143,191,54,.12);
    border: 1px solid var(--line-strong);
    font-size: 20px;
}
.feature-list b { display: block; color: var(--ink); font-size: 16px; }
.feature-list span { color: var(--muted); font-size: 15px; }

/* ---------- carta band ---------- */
.carta {
    position: relative;
    isolation: isolate;
    text-align: center;
    padding-block: clamp(80px, 12vw, 150px);
}
.carta::before {
    content: "";
    position: absolute; inset: 0; z-index: -2;
    background-image: url("/images/carta-bg.jpg");
    background-size: cover; background-position: center;
}
.carta::after {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(8,8,10,.86), rgba(8,8,10,.78));
}
.carta .inner { max-width: 640px; margin-inline: auto; }
.carta h2 { font-size: clamp(34px, 6vw, 60px); margin: 16px 0 0; }
.carta p { color: var(--muted); margin: 18px auto 0; max-width: 520px; }
.carta .button { margin-top: 32px; }
.carta small { display: block; margin-top: 16px; color: var(--faint); font-size: 13px; }

/* ---------- gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
}
.gallery-grid figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: var(--surface);
}
.gallery-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ---------- location ---------- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
}
.info-card {
    background: linear-gradient(180deg, var(--surface), var(--bg-soft));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(26px, 4vw, 40px);
}
.info-card h3 { font-size: 24px; margin-bottom: 18px; }
.info-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.info-row:last-child { border-bottom: 0; }
.info-row .ico { color: var(--gold-bright); font-size: 18px; line-height: 1.5; }
.info-row b { color: var(--ink); font-weight: 600; }
.info-row span, .info-row a { color: var(--muted); }
.info-row a:hover { color: var(--gold-bright); }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 15px;
}
.hours-list li:last-child { border-bottom: 0; }
.card-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- reserve band ---------- */
.reserve-cta {
    text-align: center;
    background:
        radial-gradient(80% 120% at 50% 0%, rgba(143,191,54,.10), transparent 60%),
        var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.reserve-cta h2 { font-size: clamp(32px, 5vw, 52px); }
.reserve-cta p { color: var(--muted); max-width: 480px; margin: 16px auto 30px; }

/* ---------- footer ---------- */
.footer { padding-block: 56px 40px; }
.footer .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}
.footer .brand { font-size: 20px; }
.footer .foot-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; color: var(--muted); }
.footer .foot-links a:hover { color: var(--gold-bright); }
.footer .copy { width: 100%; color: var(--faint); font-size: 13px; border-top: 1px solid var(--line); padding-top: 24px; }

/* ---------- reservation page ---------- */
.res-page { padding-block: 110px 80px; }
.res-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
}
.res-intro { position: sticky; top: 100px; }
.res-intro h1 { font-size: clamp(34px, 5vw, 54px); margin: 16px 0 0; }
.res-intro p { color: var(--muted); margin: 18px 0 0; }
.res-intro .media {
    margin-top: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 11;
    box-shadow: var(--shadow);
}
.res-intro .media img { width: 100%; height: 100%; object-fit: cover; }
.res-mini {
    margin-top: 24px;
    display: grid;
    gap: 10px;
    font-size: 15px;
    color: var(--muted);
}
.res-mini a { color: var(--gold-bright); }

.form-shell {
    background: linear-gradient(180deg, var(--surface), var(--bg-soft));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: var(--shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    color: var(--ink);
    padding: 12px 16px;
    font: inherit;
    font-size: 16px;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; padding-top: 14px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(143,191,54,.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-shell .button { margin-top: 6px; }
.form-note { margin-top: 16px; color: var(--faint); font-size: 13px; text-align: center; }
.res-page .button.primary {
    background: #d7a647;
    color: #160f05;
    border-color: rgba(255,225,162,.34);
    box-shadow: 0 12px 26px rgba(0,0,0,.28);
}
.res-page .button.primary:hover {
    background: #e1b457;
    box-shadow: 0 16px 34px rgba(0,0,0,.34);
}

/* ---------- alerts ---------- */
.alert {
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 22px;
    font-size: 15px;
    border: 1px solid;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.alert.ok { background: rgba(67,227,166,.1); border-color: rgba(67,227,166,.4); color: #b8f5dc; }
.alert.error { background: rgba(255,138,122,.1); border-color: rgba(255,138,122,.4); color: #ffd2c9; }
.alert ul { margin: 6px 0 0; padding-left: 18px; }
.alert .ico { font-size: 18px; }

/* ---------- highlights strip ---------- */
.highlights {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}
.hl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.hl {
    padding: 48px 36px;
    border-right: 1px solid var(--line);
}
.hl-grid .hl:first-child { padding-left: 0; }
.hl-grid .hl:last-child { padding-right: 0; border-right: 0; }
.hl svg {
    width: 30px; height: 30px;
    stroke: var(--gold-bright);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 14px;
}
.hl b { display: block; font-family: "Fraunces", serif; font-size: 19px; font-weight: 600; }
.hl span { display: block; color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ---------- dish showcase ---------- */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.dish {
    background: linear-gradient(180deg, var(--surface), var(--bg-soft));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.dish:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
}
.dish-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dish:hover .dish-photo img { transform: scale(1.07); }
.dish-body { padding: 20px 22px 24px; }
.dish-body h3 { font-size: 22px; }
.dish-body p { color: var(--muted); font-size: 14.5px; margin: 8px 0 0; }
.center-cta { text-align: center; margin-top: 40px; }

/* ---------- flambé feature band ---------- */
.feature-band {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.feature-media { position: relative; min-height: 460px; overflow: hidden; }
.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 7vw, 90px);
    max-width: 560px;
}
.feature-copy h2 { font-size: clamp(34px, 5vw, 56px); margin: 14px 0 0; }
.feature-copy h2 + p { color: var(--muted); margin: 18px 0 30px; font-size: 17px; }

/* ---------- cocktails ---------- */
.cocktails { background: radial-gradient(120% 90% at 100% 0%, rgba(255,123,173,.08), transparent 55%), var(--bg); }
.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.cocktail-grid figure {
    margin: 0;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--surface);
}
.cocktail-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cocktail-grid figure:hover img { transform: scale(1.07); }
.cocktail-grid figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 30px 14px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    background: linear-gradient(180deg, transparent, rgba(8,8,10,.85));
}

/* ---------- dessert strip ---------- */
.dessert-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
}
.dessert-strip img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
    .hl-grid { grid-template-columns: 1fr 1fr; }
    .hl { padding: 28px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .hl-grid .hl:nth-child(2n) { border-right: 0; }
    .dish-grid { grid-template-columns: 1fr 1fr; }
    .feature-band { grid-template-columns: 1fr; }
    .feature-media { min-height: 320px; aspect-ratio: 16 / 10; }
    .cocktail-grid { grid-template-columns: repeat(3, 1fr); }
    .split { grid-template-columns: 1fr; }
    .split .media { aspect-ratio: 16 / 10; order: -1; }
    .location-grid { grid-template-columns: 1fr; }
    .res-grid { grid-template-columns: 1fr; }
    .res-intro { position: static; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-grid .wide { grid-column: span 2; }
    .gallery-grid .tall { grid-row: span 1; }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .nav .link, .nav .button.cta-nav { display: none; }
    .nav-toggle {
        display: inline-flex;
        align-items: center; justify-content: center;
        width: 44px; height: 44px;
        border-radius: 10px;
        border: 1px solid var(--line-strong);
        background: rgba(255,255,255,.04);
        color: var(--ink);
        font-size: 20px;
    }
    .nav.open { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 20px 22px; background: rgba(8,8,10,.97); border-bottom: 1px solid var(--line); }
    .nav.open .link { display: block; padding: 12px 4px; color: var(--ink); border-bottom: 1px solid var(--line); }
    .nav.open .button.cta-nav { display: inline-flex; margin-top: 10px; }
    .hero { min-height: 88vh; padding-block: 100px 48px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .form-grid { grid-template-columns: 1fr; }
    .footer .wrap { flex-direction: column; align-items: flex-start; }
    .hl-grid { grid-template-columns: 1fr; }
    .hl { padding: 22px 0; border-right: 0; }
    .dish-grid { grid-template-columns: 1fr; }
    .cocktail-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-copy { padding: 40px 20px; }
}

/* ---------- brand logo (con fallback al wordmark de texto) ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { display: none; height: 40px; width: auto; }
.brand.has-logo .brand-logo { display: block; }
.brand.has-logo .brand-text { display: none; }
.footer .brand-logo { height: 34px; }
.hero-logo {
    height: clamp(64px, 12vw, 104px);
    width: auto;
    margin-bottom: 22px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
}

/* ---------- buffet + bar ---------- */
.buffet {
    background: radial-gradient(90% 120% at 50% 0%, rgba(143,191,54,.06), transparent 60%), var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 28px); }
.promo-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(180deg, var(--surface), var(--bg-soft));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(26px, 4vw, 40px);
}
.promo-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-bright);
    background: rgba(143,191,54,.12);
    border: 1px solid var(--line-strong);
}
.promo-ico {
    width: 34px; height: 34px;
    stroke: var(--gold-bright);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.promo-card h3 { font-size: 26px; }
.promo-card > p { color: var(--muted); font-size: 15px; margin: 0; }
.promo-hours { list-style: none; margin: 6px 0 0; padding: 0; width: 100%; display: grid; gap: 10px; }
.promo-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--muted);
}
.promo-hours li:last-child { border-bottom: 0; }
.promo-hours b { color: var(--ink); font-weight: 600; }
.promo-note { color: var(--faint); font-size: 13px; margin: 0; }
.promo-card .button { margin-top: 8px; }

/* ---------- line icons en info-row + alertas ---------- */
.info-row .ico { display: inline-flex; }
.info-row .ico svg {
    width: 20px; height: 20px;
    stroke: currentColor; fill: none;
    stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.info-row .ico svg.brand-ico { fill: currentColor; stroke: none; }
.alert .ico svg {
    width: 20px; height: 20px;
    stroke: currentColor; fill: none;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
    display: block;
}
.res-mini span { display: inline-flex; align-items: center; gap: 8px; }
.mini-ico {
    width: 16px; height: 16px; flex: none;
    color: var(--gold-bright);
    stroke: currentColor; fill: none;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.mini-ico.brand-ico { fill: currentColor; stroke: none; }

/* ---------- redes sociales (íconos de marca) ---------- */
.social { display: flex; align-items: center; gap: 12px; }
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.social-link svg { width: 20px; height: 20px; }
.social-link svg.brand-ico { fill: currentColor; }
.social-link svg:not(.brand-ico) {
    stroke: currentColor; fill: none;
    stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.social-link:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
    transform: translateY(-2px);
    background: rgba(143,191,54,.1);
}
.foot-social { gap: 10px; }

/* ---------- hero chips (accesos directos a las ofertas) ---------- */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-chips a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.hero-chips a svg {
    width: 17px; height: 17px;
    stroke: var(--gold-bright); fill: none;
    stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.hero-chips a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

/* highlights ahora son enlaces a cada oferta */
.hl { display: block; text-decoration: none; }
.hl svg { transition: transform .25s var(--ease); }
a.hl:hover b { color: var(--gold-bright); }
a.hl:hover svg { transform: translateY(-3px); }

/* ---------- form: evitar que inputs se salgan en celular ---------- */
.field { min-width: 0; }
.field input, .field select, .field textarea { max-width: 100%; min-width: 0; }
.field input[type="date"], .field input[type="time"] { -webkit-appearance: none; appearance: none; }

@media (max-width: 760px) {
    .promo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .promo-card .button { width: 100%; }
    .hero-chips { gap: 8px; }
    .hero-chips a { font-size: 12px; padding: 8px 13px; }
}

@media (max-width: 680px) {
    body.reservation-body {
        min-height: 100svh;
        overflow-x: hidden;
        overflow-y: auto;
    }
    body.reservation-body .topbar .wrap {
        min-height: 56px;
    }
    body.reservation-body .brand-logo {
        height: 32px;
    }
    body.reservation-body .nav-toggle {
        width: 38px;
        height: 38px;
    }
    body.reservation-body .res-page {
        min-height: calc(100svh - 57px);
        padding-block: 10px max(18px, env(safe-area-inset-bottom));
        overflow: visible;
    }
    body.reservation-body .wrap {
        width: min(100% - 28px, var(--maxw));
    }
    body.reservation-body .res-grid {
        min-height: calc(100svh - 85px);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    body.reservation-body .res-intro {
        flex: 0 0 auto;
    }
    body.reservation-body .res-intro .eyebrow {
        font-size: 10px;
        letter-spacing: .16em;
    }
    body.reservation-body .res-intro h1 {
        font-size: 26px;
        margin-top: 8px;
    }
    body.reservation-body .res-intro p {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.35;
    }
    body.reservation-body .res-intro .media,
    body.reservation-body .res-mini,
    body.reservation-body .footer {
        display: none;
    }
    body.reservation-body .form-shell {
        flex: 1 1 auto;
        min-height: 0;
        overflow: visible;
        padding: 16px;
        border-radius: 14px;
    }
    body.reservation-body .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    body.reservation-body .field {
        gap: 5px;
    }
    body.reservation-body .field.mobile-full,
    body.reservation-body .field.full {
        grid-column: 1 / -1;
    }
    body.reservation-body .field label {
        font-size: 11px;
        letter-spacing: .01em;
    }
    body.reservation-body .field input,
    body.reservation-body .field select,
    body.reservation-body .field textarea {
        min-height: 42px;
        border-radius: 10px;
        padding: 9px 12px;
        font-size: 15px;
    }
    body.reservation-body .field textarea {
        min-height: 86px;
        max-height: none;
        line-height: 1.35;
        overflow: auto;
        resize: none;
    }
    body.reservation-body .form-grid > .field.full:last-child {
        position: sticky;
        bottom: max(8px, env(safe-area-inset-bottom));
        z-index: 4;
        margin: 2px -6px -6px;
        padding: 8px 6px 6px;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(18,18,22,.82), var(--surface) 34%, var(--bg-soft));
        box-shadow: 0 -16px 30px rgba(8,8,10,.72);
    }
    body.reservation-body .button {
        min-height: 48px;
        font-size: 14px;
    }
    body.reservation-body .form-note {
        margin-top: 8px;
        font-size: 11px;
        line-height: 1.3;
    }
    body.reservation-body .alert {
        padding: 10px 12px;
        margin-bottom: 10px;
        font-size: 13px;
        max-height: 86px;
        overflow: auto;
    }
    body.reservation-body .footer {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}
