@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Manrope:wght@400;500;700;800&family=Syne:wght@500;700;800&display=swap');

:root {
    --bg: #F5C518;
    --bg-soft: #E8B800;
    --panel: rgba(255, 255, 255, 0.96);
    --panel-strong: rgba(255, 255, 255, 0.99);
    --line: rgba(0, 0, 0, 0.10);
    --text: #0d0d0b;
    --muted: #5a4a28;
    --brand: #8a6200;
    --brand-strong: #6b4c00;
    --brand-deep: #7d5523;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: #F5C518;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

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

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

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--brand);
}

.eyebrow::before {
    content: "";
    width: 2.7rem;
    height: 1px;
    background: linear-gradient(90deg, var(--brand), transparent);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
}

.section-heading h2,
.events-copy h2,
.contact-card h2,
.gallery-copy h2,
.hero-card h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.section-copy,
.gallery-copy p,
.events-copy p,
.contact-card p,
.story-card p,
.hero-text,
.hero-highlights li,
.menu-list p,
.location-copy p,
.footer-shell p {
    color: var(--muted);
    text-wrap: pretty;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 1rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(9, 9, 8, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-wordmark-image {
    display: block;
    width: auto;
    height: 2.15rem;
    max-width: min(48vw, 15rem);
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d0d0b;
}

.site-header.scrolled .main-nav a {
    color: rgba(247, 241, 223, 0.92);
}

.site-header:not(.scrolled) .brand-wordmark-image {
    filter: brightness(0);
}

.site-header.scrolled .menu-toggle {
    color: rgba(247, 241, 223, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--brand);
    transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.menu-toggle span {
    display: block;
    width: 1.1rem;
    height: 2px;
    margin: 0.25rem auto;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(245, 197, 24, 0.88) 0%, rgba(245, 197, 24, 0.55) 48%, rgba(245, 197, 24, 0.84) 100%),
        url('../images/hero_real.jpg') center/cover no-repeat;
    transform: scale(1.04);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 12rem;
    background: linear-gradient(180deg, transparent, #F5C518);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.78fr);
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    max-width: 38rem;
    padding-right: 0.75rem;
}

.hero-copy h1 {
    max-width: 8ch;
    margin-bottom: 1.25rem;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.9rem, 6.8vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-wrap: balance;
}

.hero-text {
    max-width: 42rem;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-strong), var(--brand));
    color: #1a1309;
    box-shadow: 0 18px 40px rgba(213, 172, 83, 0.22);
}

.btn-secondary {
    border-color: rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.07);
    color: #0d0d0b;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(0, 0, 0, 0.45);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.hero-pills span {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    color: #0d0d0b;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-pills span:last-child {
    background: rgba(0, 0, 0, 0.13);
}

.hero-card {
    position: relative;
    justify-self: end;
    width: min(100%, 29rem);
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
        rgba(13, 13, 11, 0.88);
    box-shadow: var(--shadow);
    color: #f7f1df;
    margin-right: -1rem;
}

.hero-card h2 {
    color: #f7f1df;
}

.hero-card .hero-highlights li {
    color: rgba(197, 190, 169, 0.90);
}

.hero .eyebrow {
    color: #0d0d0b;
}

.hero .eyebrow::before {
    background: linear-gradient(90deg, #0d0d0b, transparent);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: calc(var(--radius-xl) - 10px);
    border: 1px solid rgba(213, 172, 83, 0.12);
    pointer-events: none;
}

.logo-wrap {
    display: flex;
    justify-content: center;
    padding: 0.9rem 0 1.4rem;
}

.logo-wrap img {
    width: min(100%, 18rem);
    max-height: 18rem;
    object-fit: contain;
}

.hero-card-content {
    padding: 0 1rem 0.75rem;
}

.card-kicker {
    margin-bottom: 0.7rem;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--brand);
}

.hero-highlights {
    margin-top: 1.25rem;
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.hero-highlights li {
    padding-left: 1.5rem;
    position: relative;
}

.hero-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-strong), var(--brand-deep));
}

.stats {
    position: relative;
    z-index: 1;
    margin-top: -2.2rem;
}

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

.stats-grid article {
    padding: 1.4rem 1.3rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stats-grid strong {
    display: block;
    margin-bottom: 0.2rem;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--brand-strong);
}

.stats-grid span {
    color: var(--muted);
    font-size: 0.95rem;
}

section {
    padding: 6.5rem 0;
}

.story-grid,
.gallery-grid,
.contact-grid {
    display: grid;
    gap: 2rem;
}

.story-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.story-intro-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
    max-height: 280px;
    box-shadow: var(--shadow);
    justify-self: end;
    width: 67%;
}

.story-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.story-card,
.menu-card,
.extra-card,
.contact-card,
.location-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.story-card {
    padding: 1.8rem;
}

.story-card h3,
.menu-card h3,
.extra-card h3,
.legal-box h3,
.location-copy h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.story-card h3 {
    margin-bottom: 0.75rem;
}

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

.menu-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-card-head {
    padding: 1.6rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(26, 19, 9, 0.06);
    background: linear-gradient(180deg, rgba(224, 170, 32, 0.10), transparent);
}

.menu-tag {
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand);
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    border-top: 1px solid rgba(26, 19, 9, 0.05);
}

.menu-list li:first-child {
    border-top: 0;
}

.menu-list strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.02rem;
    color: var(--text);
}

.menu-list p {
    font-size: 0.93rem;
}

.menu-list span {
    align-self: start;
    white-space: nowrap;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: var(--brand-strong);
}

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

.extra-card {
    padding: 1.6rem;
}

.extra-card ul {
    margin-top: 1rem;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.extra-card li,
.legal-box li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.extra-card li span,
.legal-box li span {
    color: var(--muted);
}

.extra-card li strong,
.legal-box li strong {
    color: var(--text);
}

.extra-card.accent {
    background:
        radial-gradient(circle at top right, rgba(224, 170, 32, 0.18), transparent 35%),
        rgba(255, 249, 230, 0.98);
}

.extra-card.accent p + p {
    margin-top: 0.55rem;
}

.extra-card.accent a,
.text-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 800;
    color: var(--brand-strong);
}

.gallery-grid {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
    align-items: center;
}

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

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #f0e8d0;
    min-height: 21rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(120deg, rgba(224, 170, 32, 0.08), rgba(255, 252, 240, 0.50)),
        rgba(255, 252, 240, 0.92);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.events-points {
    display: grid;
    gap: 1rem;
}

.events-points article {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(224, 170, 32, 0.06);
}

.events-points strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.02rem;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    align-items: stretch;
}

.contact-card,
.location-card {
    padding: 1.8rem;
}

.contact-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.3rem;
}

.contact-list a {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 252, 240, 0.8);
    font-weight: 700;
}

.legal-box {
    margin-top: 1.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.legal-box ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.map-frame {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
    min-height: 24rem;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 24rem;
    border: 0;
    filter: grayscale(1) contrast(1.1) saturate(0.8);
}

.location-copy {
    margin-top: 1.25rem;
}

.small-note {
    margin-top: 0.4rem;
    font-size: 0.94rem;
}

.site-footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d0d0b;
    color: #c5bea9;
}

.site-footer .footer-shell p {
    color: rgba(197, 190, 169, 0.85);
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1.5rem;
    align-items: end;
}

.footer-brand {
    margin-bottom: 0.9rem;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.footer-meta a {
    color: var(--brand-strong);
}

.footer-meta {
    text-align: right;
}

.floating-wa {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.6rem;
    padding: 0 1.3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d5ac53, #f0c86b);
    color: #161108;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(213, 172, 83, 0.28);
}

@media (max-width: 1100px) {
    .hero-grid,
    .gallery-grid,
    .events-shell,
    .contact-grid,
    .footer-shell,
    .story-cards,
    .menu-layout,
    .extras-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-stack {
        grid-column: 1 / -1;
    }

    .hero-copy {
        max-width: none;
        padding-right: 0;
    }

    .gallery-item-wide {
        grid-column: auto;
    }

    .footer-meta {
        text-align: left;
    }
}

@media (max-width: 820px) {
    section {
        padding: 5rem 0;
    }

    .menu-toggle {
        display: inline-block;
        position: relative;
        z-index: 60;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        inset: 5.4rem 1rem auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        background: rgba(12, 12, 10, 0.97);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition);
        box-shadow: var(--shadow);
    }

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

    .main-nav a {
        padding: 0.85rem 0.9rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        color: rgba(247, 241, 223, 0.92);
    }

    .hero {
        padding-top: 7.25rem;
    }

    .hero-grid,
    .story-intro,
    .story-cards,
    .menu-layout,
    .extras-grid,
    .gallery-grid,
    .gallery-stack,
    .events-shell,
    .contact-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 9ch;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-card-content,
    .hero-card::before {
        inset: auto;
    }

    .hero-card {
        width: 100%;
        justify-self: stretch;
        margin-right: 0;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1.2rem), var(--container));
    }

    .brand-wordmark-image {
        height: 1.7rem;
        max-width: 11rem;
    }

    .hero-copy h1 {
        max-width: 7ch;
        font-size: 3rem;
        line-height: 0.95;
    }

    .hero {
        padding: 6.8rem 0 3.4rem;
    }

    .hero-text {
        font-size: 1rem;
        max-width: 30rem;
    }

    .hero-actions {
        margin-top: 1.4rem;
    }

    .hero-text,
    .section-copy,
    .menu-list p,
    .gallery-copy p,
    .events-copy p,
    .story-card p,
    .contact-card p,
    .location-copy p {
        font-size: 0.97rem;
    }

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

    .hero-pills {
        gap: 0.65rem;
        margin-top: 1.2rem;
    }

    .hero-pills span {
        padding: 0.8rem 0.95rem;
        font-size: 0.86rem;
    }

    .hero-card {
        padding: 1rem;
        border-radius: 26px;
    }

    .logo-wrap {
        padding: 0.45rem 0 1rem;
    }

    .logo-wrap img {
        width: min(100%, 13rem);
    }

    .hero-card-content {
        padding: 0 0.45rem 0.45rem;
    }

    .card-kicker {
        font-size: 1.7rem;
        margin-bottom: 0.45rem;
    }

    .hero-highlights {
        margin-top: 1rem;
        gap: 0.75rem;
    }

    .stats {
        margin-top: -1rem;
    }

    .stats-grid {
        gap: 0.8rem;
    }

    .stats-grid article {
        padding: 1.15rem 1rem;
    }

    .section-heading {
        margin-bottom: 2.2rem;
    }

    .story-card,
    .menu-card,
    .extra-card,
    .contact-card,
    .location-card {
        border-radius: 20px;
    }

    .story-card {
        padding: 1.35rem;
    }

    .menu-card-head,
    .menu-list li,
    .extra-card,
    .contact-card,
    .location-card {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .menu-card-head {
        padding-top: 1.2rem;
        padding-bottom: 0.9rem;
    }

    .menu-list li {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .gallery-stack {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-item {
        min-height: 14rem;
    }

    .gallery-item:nth-child(3) {
        min-height: 21rem;
    }

    .events-shell {
        padding: 1.25rem;
    }

    .events-points article {
        padding: 1rem;
    }

    .contact-list {
        gap: 0.75rem;
    }

    .contact-list a {
        padding: 0.9rem 1rem;
    }

    .btn,
    .floating-wa {
        width: 100%;
    }

    .menu-list li,
    .extra-card li,
    .legal-box li {
        grid-template-columns: 1fr;
        display: block;
    }

    .menu-list span,
    .extra-card strong,
    .legal-box strong {
        display: inline-block;
        margin-top: 0.55rem;
    }

    .gallery-item,
    .map-frame,
    .map-frame iframe {
        min-height: 18rem;
    }

    .footer-shell {
        gap: 1rem;
    }
}

/* El Rincón de las Mesas */
.rincon-shell {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(120deg, rgba(224, 170, 32, 0.07), transparent),
        var(--panel);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.rincon-header {
    max-width: 680px;
}

.rincon-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    text-wrap: balance;
}

.rincon-header p {
    color: var(--muted);
    margin-top: 0.75rem;
    text-wrap: pretty;
}

.rincon-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.rincon-photo-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 26rem;
    background: linear-gradient(135deg, rgba(224, 170, 32, 0.12), rgba(125, 85, 35, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}

.rincon-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 26rem;
}

.rincon-photo-placeholder span {
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 600;
}

.rincon-details {
    display: grid;
    gap: 1.5rem;
}

.rincon-features {
    display: grid;
    gap: 0.85rem;
}

.rincon-features article {
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(224, 170, 32, 0.05);
}

.rincon-features strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.98rem;
}

.rincon-features p {
    color: var(--muted);
    font-size: 0.91rem;
}

@media (max-width: 820px) {
    .rincon-content {
        grid-template-columns: 1fr;
    }
}
