/* O Largo da Costa - Piedra, brasa y mar */
:root {
    --accent-gold: #d76b3f;
    --accent-gold-light: #f1b18f;
    --light-bg: #f1ecdf;
    --studio-charcoal: #121613;
    --studio-charcoal-soft: #1a211d;
    --studio-forest: #1d332b;
    --studio-stone: #d8d0c1;
    --studio-parchment: #f1ecdf;
    --studio-paper: #f8f4e9;
    --studio-copper: var(--accent-gold);
    --studio-copper-dark: #963d20;
    --studio-copper-light: #f3a47f;
    --studio-atlantic: #6d8f89;
    --studio-atlantic-dark: #466963;
    --studio-ink: #171b18;
    --studio-muted: #666a63;
    --studio-line: rgba(23, 27, 24, .18);
}

.landing-page {
    margin: 0;
    overflow-x: hidden;
    background: var(--studio-parchment);
    color: var(--studio-ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

.landing-page.promo-modal-open { overflow: auto; }
.landing-page.menu-open { overflow: hidden; }
.landing-page::selection { color: var(--studio-paper); background: var(--studio-copper); }
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 { font-family: "Cormorant Garamond", serif; }
.landing-page img { max-width: 100%; }
.landing-page a { color: inherit; }
.landing-page main { overflow: clip; }
.landing-page .icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-page :focus-visible {
    outline: 3px solid var(--studio-copper);
    outline-offset: 4px;
    box-shadow: 0 0 0 6px var(--studio-paper);
}

.landing-page .skip-link {
    top: -80px;
    left: 24px;
    padding: 12px 18px;
    color: var(--studio-charcoal);
    background: var(--studio-paper);
    border: 1px solid var(--studio-copper);
}
.landing-page .skip-link:focus { top: 20px; }

.landing-page .scroll-progress {
    height: 2px;
    z-index: 4000;
    background: var(--studio-copper);
}

/* Navigation */
.landing-page .studio-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 24px clamp(24px, 4vw, 64px);
    color: var(--studio-paper);
    background: linear-gradient(180deg, rgba(12, 16, 13, .72), transparent);
    transition: padding .35s ease, background-color .35s ease, border-color .35s ease;
}
.landing-page .studio-nav.scrolled {
    top: 0;
    padding: 13px clamp(24px, 4vw, 64px);
    background: rgba(18, 22, 19, .9);
    border-bottom: 1px solid rgba(241, 236, 223, .12);
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(120%);
}
.landing-page .studio-nav .logo-wrap { gap: 16px; }
.landing-page .studio-nav .logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--studio-paper);
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.landing-page .logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--studio-copper-light);
    border: 1px solid rgba(215, 107, 63, .7);
    border-radius: 50%;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    letter-spacing: 0;
}
.landing-page .studio-nav ul { gap: clamp(18px, 2.2vw, 36px); }
.landing-page .studio-nav ul a {
    color: rgba(248, 244, 233, .78);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
}
.landing-page .studio-nav ul a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: auto;
    width: 0;
    height: 1px;
    background: var(--studio-copper);
    transition: width .3s ease;
}
.landing-page .studio-nav ul a:hover,
.landing-page .studio-nav ul a.active-link { color: var(--studio-paper); }
.landing-page .studio-nav ul a:hover::before,
.landing-page .studio-nav ul a.active-link::before { right: auto; left: 0; width: 100%; }
.landing-page .studio-nav ul a.active-link::after { display: none; }
.landing-page .studio-nav .status-badge {
    margin-left: 0;
    padding: 6px 10px;
    font-size: .6rem;
    letter-spacing: .12em;
    border-radius: 2px;
}
.landing-page .lang-switch {
    gap: 4px;
    margin-left: 0;
    padding-left: 18px;
}
.landing-page .lang-btn {
    min-width: 44px;
    min-height: 44px;
    color: var(--studio-paper);
    font-size: .65rem;
}
.landing-page .lang-btn.active { color: var(--studio-copper-light); }
.landing-page .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(248, 244, 233, .22);
    border-radius: 50%;
}
.landing-page .menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    margin: 4px auto;
    background: currentColor;
    transition: transform .3s ease;
}
.landing-page .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(2.5px) rotate(45deg); }
.landing-page .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-2.5px) rotate(-45deg); }

/* Hero */
.landing-page .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 118px clamp(24px, 5vw, 80px) 62px;
    text-align: left;
    color: var(--studio-paper);
    background: var(--studio-charcoal);
    isolation: isolate;
}
.landing-page .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 7vw 7vw;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.landing-page .hero-bg {
    z-index: -2;
    opacity: .42;
    background:
        radial-gradient(circle at 72% 34%, rgba(215, 107, 63, .34), transparent 25%),
        radial-gradient(circle at 15% 80%, rgba(109, 143, 137, .18), transparent 28%),
        var(--studio-charcoal);
    animation: none;
    will-change: transform;
}
.landing-page .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
    width: min(1520px, 100%);
    min-height: calc(100svh - 180px);
    margin: 0 auto;
    align-items: center;
}
.landing-page .hero-content {
    z-index: 3;
    align-self: center;
    max-width: 760px;
    padding: 30px 0 70px;
}
.landing-page .hero-tagline,
.landing-page .section-kicker,
.landing-page .footer-kicker,
.landing-page .promo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--studio-copper);
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    backdrop-filter: none;
}
.landing-page .hero-tagline::before,
.landing-page .section-kicker::before,
.landing-page .footer-kicker::before,
.landing-page .promo-kicker::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}
.landing-page .hero h1 {
    position: relative;
    z-index: 2;
    max-width: 6.2ch;
    margin: 0 0 34px;
    color: var(--studio-paper);
    font-size: clamp(5.4rem, 10.2vw, 11rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .72;
    text-wrap: balance;
    text-shadow: none;
    animation: none;
}
.landing-page .hero p {
    max-width: 520px;
    margin: 0 0 38px;
    color: rgba(248, 244, 233, .76);
    font-size: clamp(.82rem, 1.2vw, 1rem);
    font-weight: 500;
    letter-spacing: .18em;
    line-height: 1.7;
    text-transform: uppercase;
    animation: studio-fade-up .8s ease .4s both;
}
.landing-page .hero-btns {
    justify-content: flex-start;
    gap: 28px;
    animation: studio-fade-up .8s ease .55s both;
}
.landing-page .btn {
    display: inline-flex;
    min-height: 54px;
    padding: 14px 24px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 0;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.2;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.landing-page .btn-gold {
    color: var(--studio-charcoal);
    border: 1px solid var(--studio-copper);
    background: var(--studio-copper);
    box-shadow: none;
}
.landing-page .btn-gold:hover {
    color: var(--studio-paper);
    border-color: var(--studio-paper);
    background: transparent;
    box-shadow: none;
    transform: none;
}
.landing-page .btn .icon { font-size: .85rem; }
.landing-page .hero-text-link,
.landing-page .text-arrow {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 14px;
    color: var(--studio-paper);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
}
.landing-page .hero-text-link::after,
.landing-page .text-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(.25);
    transform-origin: left;
    transition: transform .3s ease;
}
.landing-page .hero-text-link:hover::after,
.landing-page .text-arrow:hover::after { transform: scaleX(1); }
.landing-page .hero-meta {
    display: flex;
    gap: 22px;
    margin-top: 52px;
    color: rgba(248, 244, 233, .7);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    animation: studio-fade-up .8s ease .68s both;
}
.landing-page .hero-meta span + span {
    padding-left: 22px;
    border-left: 1px solid rgba(248, 244, 233, .18);
}
.landing-page .hero-media {
    position: relative;
    z-index: 1;
    width: min(100%, 770px);
    height: min(76vh, 800px);
    min-height: 560px;
    margin: 0 0 0 auto;
    animation: studio-hero-image .8s cubic-bezier(.22, 1, .36, 1) .15s both;
}
.landing-page .hero-image-wrap {
    position: absolute;
    inset: 0 6% 8% 0;
    overflow: hidden;
    background: #282b27;
    clip-path: polygon(9% 0, 100% 0, 100% 87%, 86% 100%, 0 100%, 0 12%);
}
.landing-page .hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 22, 19, .36), transparent 40%), linear-gradient(0deg, rgba(18, 22, 19, .34), transparent 35%);
    pointer-events: none;
}
.landing-page .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.84) contrast(1.05);
    transform: scale(1.035);
    animation: studio-hero-breathe 14s ease-in-out 1.5s infinite alternate;
}
.landing-page .hero-media figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    display: grid;
    width: 44%;
    min-width: 230px;
    padding: 22px 26px;
    grid-template-columns: auto 1fr;
    gap: 16px;
    color: var(--studio-charcoal);
    background: var(--studio-stone);
}
.landing-page .hero-media figcaption > span {
    color: var(--studio-copper);
    font-size: .67rem;
    font-weight: 700;
}
.landing-page .hero-media figcaption p {
    display: grid;
    gap: 6px;
    margin: 0;
    color: var(--studio-charcoal);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.05;
    text-transform: none;
    opacity: 1;
    animation: none;
}
.landing-page .hero-media .image-disclosure {
    color: #5f3425;
    font-family: "Manrope", sans-serif;
    font-size: .47rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}
.landing-page .hero-seal {
    position: absolute;
    z-index: 3;
    top: 8%;
    left: -42px;
    display: grid;
    width: 108px;
    height: 108px;
    place-content: center;
    text-align: center;
    color: var(--studio-paper);
    border: 1px solid rgba(248, 244, 233, .48);
    border-radius: 50%;
    background: rgba(18, 22, 19, .28);
    backdrop-filter: blur(8px);
}
.landing-page .hero-seal::after { content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(248, 244, 233, .28); border-radius: inherit; }
.landing-page .hero-seal span { font-size: .48rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.landing-page .hero-seal strong { color: var(--studio-copper-light); font-family: "Cormorant Garamond", serif; font-size: 1.55rem; line-height: 1; }
.landing-page .hero-scroll-indicator {
    position: absolute;
    z-index: 3;
    right: clamp(24px, 4vw, 64px);
    bottom: 28px;
    left: auto;
    display: flex;
    flex-direction: row;
    gap: 14px;
    color: rgba(248, 244, 233, .72);
    text-decoration: none;
    transform: none;
    animation: studio-fade-up .8s ease .9s both;
}
.landing-page .hero-scroll-indicator span { color: inherit; }
.landing-page .scroll-line { position: relative; width: 58px; height: 1px; overflow: hidden; background: rgba(248, 244, 233, .2); }
.landing-page .scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--studio-copper); transform: translateX(-100%); animation: studio-scroll-line 2.4s ease-in-out infinite; }
@keyframes studio-hero-title { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes studio-hero-image { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes studio-hero-breathe { from { transform: scale(1.035); } to { transform: scale(1.09); } }
@keyframes studio-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes studio-scroll-line { 0% { transform: translateX(-100%); } 50%, 100% { transform: translateX(100%); } }

/* Editorial promotion */
.landing-page .promo-banner {
    position: relative;
    inset: auto;
    z-index: 1;
    display: block;
    padding: clamp(46px, 7vw, 92px) clamp(20px, 5vw, 80px);
    overflow: hidden;
    background: var(--studio-stone);
    backdrop-filter: none;
}
.landing-page .promo-banner.hidden { display: none; }
.landing-page .promo-modal-card {
    display: grid;
    width: min(1180px, 100%);
    max-height: none;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: center;
    gap: clamp(36px, 7vw, 100px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.landing-page .promo-modal-card::before { display: none; }
.landing-page .promo-copy { position: relative; z-index: 1; padding: 30px 0; }
.landing-page .promo-kicker { color: var(--studio-copper-dark); }
.landing-page .promo-badge {
    margin: 0 0 24px;
    padding: 8px 14px;
    color: var(--studio-paper);
    border-radius: 0;
    background: var(--studio-charcoal);
    box-shadow: none;
    animation: none;
}
.landing-page .promo-copy h2 { max-width: 9ch; margin: 0 0 18px; font-size: clamp(3rem, 6vw, 5.6rem); font-weight: 500; letter-spacing: -.045em; line-height: .88; }
.landing-page .promo-copy > p { margin: 0; color: var(--studio-muted); font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.landing-page .promo-poster { width: 100%; border: 0; border-radius: 0; box-shadow: 24px 24px 0 rgba(18, 22, 19, .12); transform: rotate(1.5deg); }
.landing-page .promo-close {
    top: -22px;
    right: -22px;
    width: 46px;
    height: 46px;
    color: var(--studio-ink);
    border-color: rgba(18, 22, 19, .28);
    background: transparent;
}
.landing-page .promo-close:hover { color: var(--studio-paper); border-color: var(--studio-charcoal); border-radius: 0; background: var(--studio-charcoal); transform: none; }

/* Proof strip */
.landing-page .trust-badges { padding: clamp(70px, 9vw, 130px) clamp(24px, 5vw, 80px); color: var(--studio-ink); background: var(--studio-parchment); }
.landing-page .proof-intro {
    display: grid;
    width: min(1380px, 100%);
    margin: 0 auto 72px;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: end;
}
.landing-page .proof-intro > span { color: var(--studio-copper-dark); font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.landing-page .proof-intro p { max-width: 700px; margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 4.2vw, 4rem); font-weight: 500; letter-spacing: -.025em; line-height: .98; }
.landing-page .badges-grid { display: grid; width: min(1380px, 100%); max-width: none; margin: 0 auto; grid-template-columns: repeat(4, 1fr); gap: 0; }
.landing-page .badge-item {
    display: grid;
    max-width: none;
    min-height: 220px;
    padding: 26px 30px 30px;
    grid-template-rows: auto 1fr auto;
    text-align: left;
    color: var(--studio-ink);
    border: 0;
    border-top: 1px solid var(--studio-line);
    border-right: 1px solid var(--studio-line);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    transition: color .3s ease, background-color .3s ease;
}
.landing-page .badge-item:last-child { border-right: 0; }
.landing-page .badge-item:hover { color: var(--studio-paper); border-color: var(--studio-line); background: var(--studio-forest); box-shadow: none; transform: none; }
.landing-page .badge-number { align-self: start; color: var(--studio-copper-dark); font-size: .62rem; font-weight: 700; letter-spacing: .12em; }
.landing-page .badge-item:hover .badge-number { color: var(--studio-copper-light); }
.landing-page .badge-item strong { align-self: center; margin: 20px 0; color: inherit; font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 500; line-height: .9; }
.landing-page .badge-item > span:last-child { color: var(--studio-muted); font-size: .68rem; line-height: 1.55; letter-spacing: .09em; text-transform: uppercase; }
.landing-page .badge-item:hover > span:last-child { color: rgba(248, 244, 233, .65); }

/* Shared editorial sections */
.landing-page .section { width: min(1540px, 100%); max-width: none; padding: clamp(90px, 11vw, 170px) clamp(24px, 6vw, 96px); }
.landing-page .section-title { margin: 0; color: inherit; font-size: clamp(3.3rem, 7vw, 7.5rem); font-weight: 500; letter-spacing: -.052em; line-height: .82; text-align: left; }
.landing-page .section-title::after { display: none; }
.landing-page .section-index { color: var(--studio-copper-dark); font-size: .62rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.landing-page .reveal { opacity: 0; transform: translateY(45px); transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1); }
.landing-page .reveal.active { opacity: 1; transform: translateY(0); }

/* Story */
.landing-page .story-section { position: relative; background: var(--studio-paper); }
.landing-page .story-section > .section-index { margin-bottom: 58px; }
.landing-page .story-grid { display: grid; grid-template-columns: 1.1fr .72fr; column-gap: clamp(50px, 9vw, 140px); row-gap: 72px; }
.landing-page .story-heading .section-kicker { color: var(--studio-atlantic-dark); }
.landing-page .story-heading .section-title { max-width: 9ch; }
.landing-page .story-copy { align-self: end; max-width: 520px; padding-bottom: 8px; }
.landing-page .story-copy > p { margin: 0 0 30px; color: var(--studio-muted); font-size: clamp(1rem, 1.5vw, 1.14rem); line-height: 1.9; }
.landing-page .story-copy .text-arrow { color: var(--studio-ink); }
.landing-page .story-image-main { position: relative; height: clamp(360px, 48vw, 690px); margin: 0; overflow: hidden; grid-column: 1 / -1; }
.landing-page .story-image-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18, 22, 19, .45), transparent 45%); pointer-events: none; }
.landing-page .story-image-main img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.03); transition: transform 1.2s cubic-bezier(.22, 1, .36, 1); }
.landing-page .story-image-main:hover img { transform: scale(1.025); }
.landing-page .story-image-main figcaption { position: absolute; z-index: 1; right: 30px; bottom: 24px; color: var(--studio-paper); font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.landing-page .story-quote {
    position: absolute;
    right: clamp(24px, 9vw, 150px);
    bottom: clamp(45px, 6vw, 90px);
    z-index: 2;
    width: min(470px, calc(100% - 48px));
    margin: 0;
    padding: 34px 38px 38px;
    color: var(--studio-paper);
    background: var(--studio-forest);
}
.landing-page .story-quote > span { color: var(--studio-copper); font-family: "Cormorant Garamond", serif; font-size: 4rem; line-height: .5; }
.landing-page .story-quote p { margin: 16px 0 0; font-family: "Cormorant Garamond", serif; font-size: clamp(1.45rem, 2vw, 2rem); font-style: italic; line-height: 1.25; }

/* Product */
.landing-page .product-section { padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 96px); color: var(--studio-paper); background: var(--studio-charcoal); }
.landing-page .product-heading { display: grid; width: min(1380px, 100%); margin: 0 auto clamp(72px, 9vw, 130px); grid-template-columns: 1.2fr .55fr; gap: 70px; align-items: end; }
.landing-page .product-heading .section-kicker { color: var(--studio-copper); }
.landing-page .product-heading h2 { margin: 0; font-size: clamp(4rem, 8.6vw, 8.8rem); font-weight: 500; letter-spacing: -.055em; line-height: .75; }
.landing-page .product-heading > p { margin: 0; color: rgba(248, 244, 233, .58); line-height: 1.8; }
.landing-page .product-gallery { display: grid; width: min(1380px, 100%); margin: 0 auto; grid-template-columns: 1.18fr .82fr; gap: 24px; }
.landing-page .product-card { position: relative; min-height: 370px; overflow: hidden; background: #222823; }
.landing-page .product-card-large { min-height: 770px; grid-row: span 2; }
.landing-page .product-card figure { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.landing-page .product-card figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10, 13, 11, .9), transparent 65%); }
.landing-page .product-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: filter .6s ease, transform 1s cubic-bezier(.22, 1, .36, 1); }
.landing-page .product-card:hover img { filter: saturate(1); transform: scale(1.035); }
.landing-page .product-card-copy { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 34px; }
.landing-page .product-card-copy > span { color: var(--studio-copper); font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.landing-page .product-card-copy .image-disclosure { display: block; margin-top: 8px; color: rgba(248, 244, 233, .72); font-size: .52rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.landing-page .product-card-copy h3 { max-width: 12ch; margin: 10px 0 0; font-size: clamp(2rem, 3.6vw, 4rem); font-weight: 500; line-height: .92; }
.landing-page .product-card:not(.product-card-large) .product-card-copy h3 { font-size: clamp(1.8rem, 2.8vw, 3rem); }
.landing-page .product-card-copy p { max-width: 520px; margin: 18px 0 0; color: rgba(248, 244, 233, .64); font-size: .86rem; }
.landing-page .product-cta { display: flex; width: min(1380px, 100%); margin: 68px auto 0; align-items: center; justify-content: space-between; gap: 40px; padding-top: 34px; border-top: 1px solid rgba(248, 244, 233, .16); }
.landing-page .product-cta p { max-width: 620px; margin: 0; color: rgba(248, 244, 233, .62); }
.landing-page .btn-stone { color: var(--studio-paper); border: 1px solid rgba(248, 244, 233, .5); background: transparent; }
.landing-page .btn-stone:hover { color: var(--studio-charcoal); border-color: var(--studio-paper); background: var(--studio-paper); }

/* Place gallery */
.landing-page .place-section { background: var(--studio-stone); }
.landing-page .place-heading { display: grid; margin-bottom: clamp(60px, 8vw, 110px); grid-template-columns: .5fr 1.5fr; }
.landing-page .place-heading .section-index { grid-row: span 2; }
.landing-page .place-heading .section-kicker { color: var(--studio-forest); }
.landing-page .place-heading .section-title { max-width: 11ch; }
.landing-page .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 115px; gap: 16px; }
.landing-page .gallery-item,
.landing-page .gallery-item-wide { height: auto; min-height: 0; grid-column: span 4; grid-row: span 3; border-radius: 0; background: var(--studio-charcoal); }
.landing-page .gallery-item-hero { grid-column: span 7; grid-row: span 5; }
.landing-page .gallery-item-tall { grid-column: span 5; grid-row: span 4; }
.landing-page .gallery-item-wide { grid-column: span 8; grid-row: span 3; }
.landing-page .gallery-item img { filter: saturate(.65); transition: filter .55s ease, transform .9s cubic-bezier(.22, 1, .36, 1); }
.landing-page .gallery-item:hover img { filter: saturate(.95); transform: scale(1.025); }
.landing-page .gallery-item::after { opacity: 1; background: linear-gradient(0deg, rgba(10, 13, 11, .72), transparent 48%); }
.landing-page .gallery-item figcaption { z-index: 2; padding: 24px; font-size: .64rem; letter-spacing: .18em; transform: none; background: transparent; }
.landing-page .gallery-item:hover figcaption { transform: none; }
.landing-page .gallery-item[role="button"] { cursor: zoom-in; }
.landing-page .place-footer { display: flex; margin-top: 36px; justify-content: flex-end; gap: 0; }
.landing-page .place-footer span { padding: 0 24px; color: #4c514b; border-right: 1px solid rgba(18, 22, 19, .25); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.landing-page .place-footer span:last-child { padding-right: 0; border-right: 0; }

/* Reviews */
.landing-page .reviews-section { max-width: none; color: var(--studio-paper); background: var(--studio-forest); }
.landing-page .reviews-heading { display: flex; width: min(1380px, 100%); margin: 0 auto 70px; align-items: end; justify-content: space-between; gap: 50px; }
.landing-page .reviews-heading .section-kicker { color: var(--studio-copper); }
.landing-page .reviews-heading .section-title { max-width: 7ch; color: var(--studio-paper); }
.landing-page .reviews-header { min-width: 180px; margin: 0; padding-left: 34px; text-align: left; border-left: 1px solid rgba(248, 244, 233, .18); }
.landing-page .reviews-rating { justify-content: flex-start; }
.landing-page .reviews-rating .score { color: var(--studio-paper); font-family: "Cormorant Garamond", serif; font-size: 3.4rem; font-weight: 500; }
.landing-page .reviews-rating .stars { color: var(--studio-copper); font-size: .8rem; }
.landing-page .reviews-google-badge { margin: 0 0 8px; padding: 5px 10px; color: rgba(248, 244, 233, .75); background: rgba(248, 244, 233, .08); }
.landing-page .reviews-count { color: rgba(248, 244, 233, .5); font-size: .7rem; }
.landing-page .reviews-carousel { max-width: 1380px; }
.landing-page .reviews-track { gap: 30px; }
.landing-page .review-card {
    min-height: 360px;
    padding: 34px;
    color: var(--studio-paper);
    border: 1px solid rgba(248, 244, 233, .15);
    border-radius: 0;
    background: rgba(248, 244, 233, .035);
}
.landing-page .review-card:hover { border-color: rgba(215, 107, 63, .55); box-shadow: none; transform: none; }
.landing-page .review-card::before { top: 18px; right: 26px; color: var(--studio-copper); font-size: 5.5rem; }
.landing-page .review-card .review-stars { color: var(--studio-copper); }
.landing-page .review-card .review-text { margin-top: 32px; color: rgba(248, 244, 233, .82); font-family: "Cormorant Garamond", serif; font-size: 1.45rem; font-style: normal; line-height: 1.35; }
.landing-page .review-card .review-author { position: absolute; right: 34px; bottom: 30px; left: 34px; }
.landing-page .review-card .review-avatar { color: var(--studio-charcoal); border-radius: 50%; background: var(--studio-copper); }
.landing-page .review-card .review-name { color: var(--studio-paper); }
.landing-page .review-card .review-date { color: rgba(248, 244, 233, .7); }
.landing-page .reviews-nav { justify-content: flex-end; margin-top: 34px; }
.landing-page .review-nav-btn { width: 48px; height: 48px; color: var(--studio-paper); border-color: rgba(248, 244, 233, .28); border-radius: 0; background: transparent; }
.landing-page .review-nav-btn:hover { color: var(--studio-charcoal); border-color: var(--studio-copper); background: var(--studio-copper); }
.landing-page .reviews-dots .dot { width: 18px; height: 2px; border-radius: 0; background: rgba(248, 244, 233, .2); }
.landing-page .reviews-dots button.dot { width: 44px; height: 44px; min-width: 44px; padding: 21px 13px; border: 0; background-clip: content-box; cursor: pointer; }
.landing-page .reviews-dots .dot.active { background: var(--studio-copper); transform: none; }
.landing-page .reviews-cta { max-width: 1380px; margin: 30px auto 0; text-align: left; }
.landing-page .reviews-cta a { display: inline-flex; align-items: center; gap: 8px; color: rgba(248, 244, 233, .65); font-size: .67rem; }
.landing-page .reviews-cta a:hover { color: var(--studio-copper); }

/* Practical and hours */
.landing-page .practical-section { display: grid; padding: clamp(90px, 11vw, 170px) clamp(24px, 6vw, 96px); grid-template-columns: .78fr 1.22fr; gap: clamp(70px, 10vw, 150px); color: var(--studio-ink); background: var(--studio-paper); }
.landing-page .practical-intro { max-width: 520px; }
.landing-page .practical-intro .section-kicker { color: var(--studio-atlantic-dark); }
.landing-page .practical-intro h2 { margin: 0 0 34px; font-size: clamp(4rem, 7.2vw, 7.2rem); font-weight: 500; letter-spacing: -.052em; line-height: .76; }
.landing-page .practical-intro p { max-width: 440px; margin: 0; color: var(--studio-muted); line-height: 1.85; }
.landing-page .hours-panel { align-self: center; padding-top: 16px; border-top: 1px solid var(--studio-line); }
.landing-page .hours-panel-head { display: flex; min-height: 78px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--studio-line); }
.landing-page .hours-panel-head h3 { margin: 0; font-size: 2rem; font-weight: 500; }
.landing-page .hours-panel-head .status-badge { margin: 0; animation: none; }
.landing-page .horarios-grid { display: block; max-width: none; }
.landing-page .horario-card {
    display: grid;
    min-height: 64px;
    padding: 14px 0;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    text-align: left;
    color: var(--studio-ink);
    border: 0;
    border-bottom: 1px solid var(--studio-line);
    border-radius: 0;
    background: transparent;
}
.landing-page .horario-card:hover { border-color: var(--studio-line); transform: none; }
.landing-page .horario-card.cerrado { opacity: .42; }
.landing-page .horario-card.today { margin-inline: -18px; padding-inline: 18px; border-color: var(--studio-copper); background: rgba(215, 107, 63, .08); }
.landing-page .horario-card .dia { margin: 0; color: var(--studio-ink); font-family: "Manrope", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.landing-page .horario-card .horas { color: var(--studio-muted); font-size: .78rem; text-align: right; }
.landing-page .horario-card .horas strong { color: var(--studio-ink); font-weight: 600; }
.landing-page .horario-card.cerrado .dia,
.landing-page .horario-card.cerrado .horas { color: var(--studio-muted); }

/* Reservation */
.landing-page .reservation-section { position: relative; display: grid; min-height: 850px; padding: 0; grid-template-columns: 1fr 1fr; color: var(--studio-paper); background: var(--studio-charcoal); }
.landing-page .reservation-image { min-height: 650px; overflow: hidden; }
.landing-page .reservation-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.02); }
.landing-page .reservation-content { display: flex; padding: clamp(60px, 8vw, 130px); flex-direction: column; justify-content: center; }
.landing-page .reservation-content .section-kicker { color: var(--studio-copper); }
.landing-page .reservation-content .section-title { color: var(--studio-paper); }
.landing-page .reservation-content > p { max-width: 520px; margin: 34px 0; color: rgba(248, 244, 233, .62); }
.landing-page .availability-indicator {
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 34px;
    padding: 9px 14px;
    border-radius: 0;
    font-size: .66rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.landing-page .availability-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 15%, transparent); }
.landing-page .phone-cta {
    max-width: none;
    margin: 0;
    padding: 26px 0 0;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    border: 0;
    border-top: 1px solid rgba(248, 244, 233, .2);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}
.landing-page .phone-cta > span { color: var(--studio-copper); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.landing-page .phone-cta-number { width: 100%; justify-content: space-between; gap: 20px; color: var(--studio-paper); font-family: "Cormorant Garamond", serif; font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.04em; }
.landing-page .phone-cta-number:hover { color: var(--studio-copper); transform: none; }
.landing-page .phone-cta-number .icon { color: var(--studio-copper); font-size: 1.2rem; }
.landing-page .phone-cta-hint { color: rgba(248, 244, 233, .7); font-size: .72rem; }

/* FAQ */
.landing-page .faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); background: var(--studio-parchment); }
.landing-page .faq-heading .section-kicker { color: var(--studio-atlantic-dark); }
.landing-page .faq-heading .section-title { max-width: 7ch; }
.landing-page .faq-heading > p { max-width: 360px; margin: 28px 0 0; color: var(--studio-muted); }
.landing-page .faq-list { width: 100%; max-width: none; }
.landing-page .faq-item { margin: 0; border: 0; border-bottom: 1px solid var(--studio-line); border-radius: 0; background: transparent; box-shadow: none; }
.landing-page .faq-item:first-child { border-top: 1px solid var(--studio-line); }
.landing-page .faq-item summary { min-height: 86px; padding: 22px 2px; color: var(--studio-ink); font-family: "Cormorant Garamond", serif; font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 600; }
.landing-page .faq-item summary::after { display: grid; width: 44px; height: 44px; place-items: center; color: var(--studio-copper-dark); border: 1px solid rgba(23, 27, 24, .28); border-radius: 50%; font-family: "Manrope", sans-serif; font-size: 1.1rem; font-weight: 400; }
.landing-page .faq-item p { max-width: 680px; padding: 0 60px 28px 2px; color: var(--studio-muted); line-height: 1.75; }

/* Lightbox and floating actions */
.landing-page .lightbox-overlay { background: rgba(10, 13, 11, .96); }
.landing-page .lightbox-overlay img { max-width: min(88vw, 1400px); border-radius: 0; }
.landing-page .lightbox-close,
.landing-page .lightbox-nav { border: 1px solid rgba(248, 244, 233, .3); border-radius: 0; background: rgba(18, 22, 19, .4); }
.landing-page .lightbox-close { display: grid; width: 48px; height: 48px; place-items: center; font-size: 1.8rem; }
.landing-page .wa-float-wrap { right: 26px; bottom: 26px; }
.landing-page .wa-float { width: 58px; height: 58px; color: var(--studio-charcoal); border-radius: 50%; background: var(--studio-copper); box-shadow: 0 12px 36px rgba(10, 13, 11, .26); }
.landing-page .wa-float:hover { box-shadow: 0 12px 36px rgba(10, 13, 11, .4); transform: rotate(-8deg); }
.landing-page .scroll-top { bottom: 26px; left: 26px; color: var(--studio-paper); border-color: rgba(248, 244, 233, .22); border-radius: 50%; background: rgba(18, 22, 19, .82); backdrop-filter: blur(10px); }

/* Footer */
.landing-page footer { position: relative; padding: 0; overflow: hidden; color: var(--studio-paper); background: #0c100d; }
.landing-page .footer-marquee { overflow: hidden; padding: 26px 0; color: rgba(248, 244, 233, .38); border-bottom: 1px solid rgba(248, 244, 233, .1); white-space: nowrap; }
.landing-page .footer-marquee span { display: block; width: max-content; font-family: "Cormorant Garamond", serif; font-size: clamp(3rem, 7vw, 7rem); line-height: .75; animation: studio-marquee 28s linear infinite; }
@keyframes studio-marquee { to { transform: translateX(-40%); } }
.landing-page .footer-top { width: min(1440px, 100%); margin: 0 auto; padding: clamp(70px, 9vw, 130px) clamp(24px, 5vw, 80px); grid-template-columns: 1.1fr .8fr 1fr; gap: clamp(50px, 7vw, 110px); }
.landing-page .footer-brand .footer-business-name { max-width: 6ch; margin: 0 0 28px; color: var(--studio-paper); font-family: "Cormorant Garamond", serif; font-size: clamp(3.5rem, 6vw, 6.8rem); font-weight: 500; letter-spacing: -.055em; line-height: .72; }
.landing-page .footer-brand > p { max-width: 390px; margin: 0; color: rgba(248, 244, 233, .5); }
.landing-page .footer-kicker { color: var(--studio-copper); }
.landing-page .footer-social { gap: 10px; margin-top: 34px; }
.landing-page .footer-social a { display: grid; width: 46px; height: 46px; place-items: center; color: var(--studio-paper); border: 1px solid rgba(248, 244, 233, .2); border-radius: 50%; font-size: 1rem; }
.landing-page .footer-social a:hover { color: var(--studio-charcoal); border-color: var(--studio-copper); background: var(--studio-copper); transform: none; }
.landing-page .footer-top .footer-heading { margin: 0 0 30px; color: var(--studio-paper); font-family: "Manrope", sans-serif; font-size: .67rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.landing-page .footer-contact { margin: 0; padding: 0; list-style: none; }
.landing-page .footer-contact li { display: grid; gap: 4px; padding: 16px 0; border-bottom: 1px solid rgba(248, 244, 233, .12); }
.landing-page .footer-contact li span { color: rgba(248, 244, 233, .68); font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.landing-page .footer-contact li strong,
.landing-page .footer-contact li a { color: rgba(248, 244, 233, .82); font-size: .8rem; font-weight: 500; }
.landing-page .map-responsive { height: 260px; border-radius: 0; }
.landing-page .map-responsive iframe { filter: grayscale(1) invert(.92) contrast(.85); }
.landing-page .map-link { display: flex; min-height: 48px; align-items: center; justify-content: space-between; color: rgba(248, 244, 233, .68); border-bottom: 1px solid rgba(248, 244, 233, .2); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.landing-page .map-link:hover { color: var(--studio-copper); }
.landing-page .footer-bottom { display: flex; width: min(1440px, 100%); margin: 0 auto; padding: 24px clamp(24px, 5vw, 80px) 30px; align-items: center; justify-content: space-between; gap: 20px; color: rgba(248, 244, 233, .68); border-top: 1px solid rgba(248, 244, 233, .1); font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.landing-page .footer-bottom a { margin: 0; color: inherit; }
.landing-page .footer-bottom a:hover { color: var(--studio-copper); }

/* Cookies */
.landing-page .cookie-banner { right: 20px; bottom: 20px; left: auto; width: min(520px, calc(100% - 40px)); padding: 20px; justify-content: flex-start; color: var(--studio-paper); border: 1px solid rgba(248, 244, 233, .14); background: rgba(18, 22, 19, .96); box-shadow: 0 22px 70px rgba(0, 0, 0, .35); backdrop-filter: blur(14px); transition: none; }
.landing-page .cookie-banner p { width: 100%; max-width: none; }
.landing-page .cookie-btn,
.landing-page .cookie-btn-reject { min-height: 44px; border-radius: 0; }
.landing-page .cookie-btn { color: var(--studio-charcoal); background: var(--studio-copper); }
.landing-page .cookie-btn:hover { transform: none; }

/* Accessible accent tones: darker on mineral surfaces, lighter on charcoal. */
.landing-page .hero-tagline,
.landing-page .product-heading .section-kicker,
.landing-page .product-card-copy > span,
.landing-page .reviews-heading .section-kicker,
.landing-page .reviews-rating .stars,
.landing-page .review-card .review-stars,
.landing-page .story-quote > span,
.landing-page .reservation-content .section-kicker,
.landing-page .phone-cta > span,
.landing-page .phone-cta-number .icon,
.landing-page .footer-kicker { color: var(--studio-copper-light); }
.landing-page .hero-media figcaption > span { color: var(--studio-copper-dark); }
.landing-page .reviews-cta a:hover,
.landing-page .footer-bottom a:hover,
.landing-page .map-link:hover { color: var(--studio-copper-light); }

@media (max-width: 1120px) {
    .landing-page .studio-nav ul { gap: 16px; }
    .landing-page .studio-nav ul a { font-size: .61rem; }
    .landing-page .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); }
    .landing-page .hero h1 { font-size: clamp(5rem, 10vw, 8.5rem); }
    .landing-page .hero-media { height: 66vh; min-height: 540px; }
    .landing-page .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .landing-page .badge-item:nth-child(2) { border-right: 0; }
    .landing-page .badge-item:nth-child(n+3) { border-top-color: transparent; }
    .landing-page .product-card-large { min-height: 680px; }
    .landing-page .review-card { flex-basis: calc(33.333% - 20px); }
    .landing-page .practical-section { grid-template-columns: .7fr 1.3fr; gap: 60px; }
    .landing-page .footer-top { grid-template-columns: 1fr 1fr; }
    .landing-page .footer-map-wrap { grid-column: 1 / -1; }
}

@media (max-width: 1024px) and (min-width: 821px) {
    .landing-page .review-card { flex-basis: calc(50% - 15px); }
}

@media (max-width: 820px) {
    .landing-page { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
    .landing-page .studio-nav,
    .landing-page .studio-nav.scrolled { padding: 12px 18px; }
    .landing-page .logo-name { font-size: .66rem; }
    .landing-page .logo-mark { width: 38px; height: 38px; }
    .landing-page .studio-nav .status-badge { display: none; }
    .landing-page .menu-toggle { display: block; }
    .landing-page .studio-nav ul {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        width: min(86vw, 390px);
        padding: 100px 32px 40px;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
        background: rgba(18, 22, 19, .98);
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.22, 1, .36, 1), visibility .4s;
    }
    .landing-page .studio-nav ul.active { visibility: visible; pointer-events: auto; transform: translateX(0); }
    .landing-page .studio-nav ul li { width: 100%; }
    .landing-page .studio-nav ul a { display: flex; min-height: 56px; align-items: center; font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 500; letter-spacing: -.02em; text-transform: none; }
    .landing-page .lang-switch { width: 100%; margin-top: 20px; padding: 18px 0 0; justify-content: flex-start; border-top: 1px solid rgba(248, 244, 233, .16); }
    .landing-page .lang-btn { min-width: 48px; min-height: 44px; }

    .landing-page .hero { min-height: auto; padding: 106px 20px 58px; }
    .landing-page .hero::before { background-size: 18vw 18vw; }
    .landing-page .hero-grid { display: flex; min-height: auto; flex-direction: column; }
    .landing-page .hero-content { width: 100%; padding: 18px 0 30px; }
    .landing-page .hero h1 { max-width: 6ch; margin-bottom: 28px; font-size: clamp(4.5rem, 22vw, 7rem); line-height: .73; }
    .landing-page .hero p { max-width: 330px; margin-bottom: 30px; font-size: .75rem; animation: none; }
    .landing-page .hero-btns { align-items: flex-start; }
    .landing-page .hero-btns,
    .landing-page .hero-meta { animation: none; }
    .landing-page .hero-meta { gap: 12px; margin-top: 34px; flex-wrap: wrap; }
    .landing-page .hero-meta span + span { padding-left: 12px; }
    .landing-page .hero-media { width: 94%; height: 58vh; min-height: 460px; margin: 10px 0 0 auto; animation: none; }
    .landing-page .hero-seal { top: 10%; left: -22px; width: 86px; height: 86px; }
    .landing-page .hero-media figcaption { width: 58%; min-width: 200px; padding: 17px 19px; }
    .landing-page .hero-scroll-indicator { display: none; }

    .landing-page .promo-banner { padding-inline: 20px; }
    .landing-page .promo-modal-card { grid-template-columns: 1fr; gap: 30px; }
    .landing-page .promo-copy { padding: 0; }
    .landing-page .promo-copy h2 { font-size: clamp(3.2rem, 14vw, 5rem); }
    .landing-page .promo-poster { max-width: 480px; margin: 0 auto; box-shadow: 14px 14px 0 rgba(18, 22, 19, .12); }
    .landing-page .promo-close { top: -28px; right: 0; }

    .landing-page .proof-intro { grid-template-columns: 1fr; margin-bottom: 50px; gap: 20px; }
    .landing-page .badges-grid { grid-template-columns: 1fr 1fr; }
    .landing-page .badge-item { min-height: 190px; padding: 22px 18px; }

    .landing-page .section { padding: 90px 20px; }
    .landing-page .story-section > .section-index { margin-bottom: 40px; }
    .landing-page .story-grid { grid-template-columns: 1fr; row-gap: 38px; }
    .landing-page .story-heading .section-title { max-width: 8ch; }
    .landing-page .story-copy { padding: 0; }
    .landing-page .story-image-main { height: 470px; grid-column: 1; }
    .landing-page .story-image-main img { object-position: center; }
    .landing-page .story-quote { position: relative; right: auto; bottom: auto; width: calc(100% - 32px); margin: -100px 0 0 auto; }

    .landing-page .product-section { padding: 95px 20px; }
    .landing-page .product-heading { grid-template-columns: 1fr; gap: 34px; margin-bottom: 70px; }
    .landing-page .product-gallery { grid-template-columns: 1fr; }
    .landing-page .product-card,
    .landing-page .product-card-large { min-height: 520px; grid-row: auto; }
    .landing-page .product-cta { align-items: flex-start; flex-direction: column; }

    .landing-page .place-heading { grid-template-columns: 1fr; }
    .landing-page .place-heading .section-index { margin-bottom: 40px; grid-row: auto; }
    .landing-page .gallery-grid { grid-auto-rows: 86px; }
    .landing-page .gallery-item,
    .landing-page .gallery-item-wide,
    .landing-page .gallery-item-hero,
    .landing-page .gallery-item-tall { grid-column: span 6; grid-row: span 4; }
    .landing-page .gallery-item-hero,
    .landing-page .gallery-item-wide { grid-column: 1 / -1; }
    .landing-page .place-footer { justify-content: flex-start; flex-wrap: wrap; gap: 10px 0; }
    .landing-page .place-footer span:first-child { padding-left: 0; }

    .landing-page .reviews-heading { align-items: flex-start; flex-direction: column; }
    .landing-page .reviews-header { padding-left: 0; border-left: 0; }
    .landing-page .review-card { min-height: 340px; flex-basis: calc(100% - 10px); }
    .landing-page .reviews-nav { justify-content: center; }

    .landing-page .practical-section { padding: 90px 20px; grid-template-columns: 1fr; gap: 60px; }
    .landing-page .practical-intro { max-width: 620px; }
    .landing-page .reservation-section { min-height: 0; grid-template-columns: 1fr; }
    .landing-page .reservation-image { height: 52vh; min-height: 380px; }
    .landing-page .reservation-content { order: -1; padding: 75px 20px 90px; }

    .landing-page .faq-section { grid-template-columns: 1fr; gap: 55px; }
    .landing-page .faq-heading .section-title { max-width: 8ch; }

    .landing-page .wa-float-wrap,
    .landing-page .scroll-top { display: none; }
    .landing-page .mobile-action-bar { display: grid; height: calc(58px + env(safe-area-inset-bottom)); grid-template-columns: 1.25fr .75fr; background: var(--studio-charcoal); }
    .landing-page .mobile-action-bar a { display: flex; padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); align-items: center; justify-content: center; gap: 10px; font-size: .72rem; }
    .landing-page .mobile-action-bar .call { color: var(--studio-charcoal); background: var(--studio-copper); }
    .landing-page .mobile-action-bar .reserve { color: var(--studio-paper); background: var(--studio-charcoal); }

    .landing-page .footer-top { grid-template-columns: 1fr; }
    .landing-page .footer-map-wrap { grid-column: auto; }
    .landing-page .footer-bottom { align-items: flex-start; flex-direction: column; }
    .landing-page .cookie-banner {
        bottom: calc(72px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 16px;
        text-align: left;
    }
    .landing-page .cookie-banner p { grid-column: 1 / -1; font-size: .76rem; }
    .landing-page .cookie-banner button { width: 100%; padding-inline: 12px; }
}

@media (max-width: 520px) {
    .landing-page .logo-name { max-width: 120px; line-height: 1.15; }
    .landing-page .hero-btns { gap: 14px; flex-direction: column; }
    .landing-page .hero-text-link { min-height: 40px; }
    .landing-page .hero-meta span:first-child { display: none; }
    .landing-page .hero-media { width: calc(100% - 10px); height: 55vh; min-height: 420px; }
    .landing-page .hero-image-wrap { right: 0; }
    .landing-page .hero-media figcaption { right: -10px; }
    .landing-page .badges-grid { grid-template-columns: 1fr; }
    .landing-page .badge-item { min-height: 160px; border-right: 0; }
    .landing-page .badge-item:nth-child(n+2) { border-top-color: var(--studio-line); }
    .landing-page .story-image-main { height: 390px; }
    .landing-page .story-quote { width: calc(100% - 18px); padding: 28px; }
    .landing-page .product-card,
    .landing-page .product-card-large { min-height: 440px; }
    .landing-page .product-card-copy { padding: 24px; }
    .landing-page .gallery-grid { display: flex; flex-direction: column; }
    .landing-page .gallery-item,
    .landing-page .gallery-item-wide,
    .landing-page .gallery-item-hero,
    .landing-page .gallery-item-tall { height: 300px; }
    .landing-page .place-footer span { padding: 0 10px; font-size: .54rem; }
    .landing-page .horario-card { grid-template-columns: .8fr 1.2fr; }
    .landing-page .reservation-image { min-height: 390px; }
    .landing-page .phone-cta-number { font-size: clamp(2.5rem, 12vw, 4rem); }
    .landing-page .faq-item summary { font-size: 1.25rem; }
    .landing-page .footer-brand .footer-business-name { font-size: 4.6rem; }
    .landing-page .cookie-banner { right: 12px; width: calc(100% - 24px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .landing-page *,
    .landing-page *::before,
    .landing-page *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .landing-page .hero-image-wrap img,
    .landing-page .footer-marquee span,
    .landing-page .scroll-line::after { animation: none !important; }
    .landing-page .reveal { opacity: 1; transform: none; }
}
