/* ED Studio: responsive logo + video adjustments */
.ps-studio-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.ps-studio-logo {
    max-width: 160px;
    width: 40%;
    height: auto;
    display: block;
}
.ps-studio-logo-circle { display:block; width:100%; height:auto; }
.ps-service-icon.ps-service-icon-large { width:72px; height:72px; border-radius:999px; display:flex; align-items:center; justify-content:center; overflow:hidden; background:var(--ps-plum); }
.ps-service-icon.ps-service-icon-large img { width:70%; height:70%; object-fit:contain; display:block; border-radius:50%; background:transparent; }

/* ensure brand logo variants inside circular containers are masked */
.ps-service-icon.ps-service-icon-large img[src$="BACKGROUND-02.webp"],
.ps-service-icon.ps-service-icon-large img[src$="WHITE%20ALPHA.webp"] {
    width:78%;
    height:78%;
    object-fit:cover;
    border-radius:50%;
}
.ps-studio-video {
    width: 100%;
    height: auto;
    max-width: 680px;
    object-fit: contain;
    border-radius: 6px;
    background: #000;
}

/* keep video within viewport on small screens */
.ps-studio-video { aspect-ratio: 16/9; max-height: 60vh; }

@media (max-width: 600px) {
    .ps-studio-video { max-height: 40vh; }
}

@media (max-width: 600px) {
    .ps-studio-logo { max-width: 120px; width: 48%; }
    .ps-studio-video { max-width: 100%; height: auto; object-fit: contain; }
    .ps-studio-panel { padding-left: 0.25rem; padding-right: 0.25rem; }
}
/* Patio Rosa / Sala Cultural microsite styling */
:root {
    --ps-bg: #efe8d8;
    --ps-ink: #2b221e;
    --ps-ash: #716257;
    --ps-clay: #b2744c;
    --ps-clay-dark: #795039;
    --ps-stone: #ded2bd;
    --ps-sand: #f8f1e6;
    --ps-plum: #3d2b2d;
    --ps-rose: #b35a54;
    --ps-rose-soft: #eadfd2;
    --ps-shadow: rgba(34, 26, 20, 0.1);
    --ps-font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --ps-font-sans: 'Montserrat', Arial, sans-serif;
    --ps-font-display: 'Playfair Display', 'Georgia', serif;
}

* {
    box-sizing: border-box;
}

body.ps-body {
    margin: 0;
    background: var(--ps-bg);
    color: var(--ps-ink);
    font-family: var(--ps-font-sans);
    line-height: 1.75;
}

.ps-body a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.ps-topbar {
    background: var(--ps-plum);
    color: #ead6bf;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.ps-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ps-navbar {
    background: linear-gradient(180deg, #f5eee1, #efe5d2);
    border-bottom: 1px solid #b79a78;
}

.ps-nav-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
}

.ps-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ps-brand-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--ps-plum);
    color: var(--ps-sand);
    font-weight: 700;
    border: 1px solid var(--ps-clay);
}

.ps-brand-main {
    display: block;
    font-family: var(--ps-font-display);
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--ps-ink);
}

.ps-brand-sub {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ps-clay-dark);
    margin-top: 4px;
}

.ps-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0 auto;
    padding: 0;
}

.ps-nav-links a {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ps-ash);
}

.ps-nav-links a.active,
.ps-nav-links a:hover {
    color: var(--ps-clay-dark);
}

.ps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 26px;
    border: 1px solid transparent;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.ps-button:hover {
    transform: translateY(-2px);
}

.ps-button-primary {
    background: var(--ps-clay);
    border-color: var(--ps-clay);
    color: #fffdf7;
}

.ps-button-primary:hover {
    background: var(--ps-clay-dark);
}

.ps-button-patio {
    background: var(--ps-clay);
    border-color: var(--ps-clay);
    color: #fffdf7;
}

.ps-button-patio:hover {
    background: var(--ps-clay-dark);
}

.ps-button-patio-outline {
    background: transparent;
    border-color: var(--ps-clay-dark);
    color: var(--ps-clay-dark);
}

.ps-button-teatro {
    background: #d9b787;
    border-color: #d9b787;
    color: var(--ps-plum);
}

.ps-button-teatro:hover {
    background: #eadcc8;
}

.ps-button-teatro-outline {
    background: transparent;
    border-color: #eadcc8;
    color: #eadcc8;
}

.ps-button-ghost {
    background: transparent;
    border-color: var(--ps-sand);
    color: #fffdf7;
}

.ps-button-secondary {
    background: transparent;
    border-color: var(--ps-clay-dark);
    color: var(--ps-clay-dark);
}

.ps-button-light {
    background: #fffdf7;
    color: var(--ps-plum);
    border-color: #fffdf7;
}

.ps-button-outline-light {
    background: transparent;
    color: #f8eadb;
    border-color: #f8eadb;
}

.ps-button.wide {
    width: 100%;
}

.ps-hero {
    background: linear-gradient(135deg, rgba(59, 34, 23, 0.95), rgba(126, 74, 49, 0.96)), url('https://images.unsplash.com/photo-1512453974798-3934c89fac29?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 560px;
    position: relative;
}

.ps-hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
    opacity: 0.95;
}

.ps-hero-grid {
    min-height: 560px;
    padding: 90px 0 100px;
    display: grid;
    grid-template-columns: minmax(540px, 1fr) minmax(380px, 0.9fr);
    align-items: center;
    gap: 44px;
    position: relative;
    z-index: 1;
}

.ps-hero-copy {
    max-width: 620px;
}

.ps-kicker,
.ps-section-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.ps-kicker {
    color: #f0d8ba;
}

.ps-hero-copy h1 {
    margin: 20px 0 20px;
    font-family: var(--ps-font-display);
    font-size: clamp(3.75rem, 6.4vw, 5.9rem);
    line-height: 0.87;
    letter-spacing: -0.04em;
    color: #fffdf7;
}

.ps-lead {
    max-width: 560px;
    color: #ece4da;
    font-size: clamp(1.10rem, 2.5vw, 1.48rem);
    line-height: 1.6;
}

.ps-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.ps-hero-stats {
    margin-top: 42px;
    display: flex;
    gap: 44px;
    align-items: end;
}

.ps-hero-stats article {
    border-left: 1px solid rgba(255,255,255,0.55);
    padding-left: 12px;
}

.ps-stat-number {
    display: block;
    font-family: var(--ps-font-display);
    font-size: 1.55rem;
    color: #fff;
}

.ps-stat-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    line-height: 1;
    color: #ece4da;
}

.ps-hero-card {
    display: flex;
    justify-content: center;
}

.ps-hero-image {
    background: rgba(255, 248, 238, 0.94);
    border: 1px solid rgba(255,255,255,0.75);
    padding: 12px;
    box-shadow: 0 22px 70px var(--ps-shadow);
}

.ps-image-split {
    min-height: 420px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.ps-image-panel {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 28px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.ps-image-panel span {
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ps-image-panel strong {
    display: block;
    margin-top: 20px;
    font-family: var(--ps-font-display);
    font-size: 2rem;
}

.patio-panel {
    background-image: linear-gradient(rgba(62,40,30,0.55), rgba(0,0,0,0.4)), url('assets/WebP/Patio_Rosa.webp');
}

.teatro-panel {
    background-image: linear-gradient(rgba(30,25,33,0.72), rgba(0,0,0,0.45)), url('assets/WebP/Sotano_teatro-10.webp');
}

.ps-hero-card-bottom {
    padding: 20px 10px 2px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    border-top: 1px solid var(--ps-stone);
}

.ps-date-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--ps-ash);
    text-transform: uppercase;
}

.ps-date {
    font-family: var(--ps-font-display);
    font-size: 1.06rem;
    color: var(--ps-plum);
}

.ps-section {
    padding: 88px 0;
}

.ps-section-light {
    background: var(--ps-sand);
}

.ps-section-terracotta {
    background: #efe4d6;
}

.ps-section-dark {
    background: var(--ps-plum);
    color: #f4ecdf;
}

.ps-section-plum {
    background: #b79a78;
}

.ps-section-studio {
    background: linear-gradient(135deg, #382922, #60452f);
    color: #f8eedf;
}

.ps-studio-feature {
    display: grid;
    grid-template-columns: minmax(560px, 1fr) minmax(360px, 420px);
    gap: 40px;
    align-items: center;
}

.ps-studio-copy {
    max-width: 680px;
}

.ps-studio-copy h2 {
    margin: 12px 0 12px;
}

.ps-studio-copy h2 .ps-studio-title {
    display: inline-block;
    font-family: var(--ps-font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 0.95;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.ps-studio-text {
    color: #eee2cf;
    font-size: 1rem;
    line-height: 1.88;
}

.ps-studio-copy .ps-story-row {
    margin-top: 28px;
}

.ps-studio-panel {
    background: rgba(255, 246, 232, 0.12);
    border: 1px solid rgba(255,255,255,0.55);
    padding: 36px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ps-studio-panel .ps-service-icon-large {
    width: 96px;
    height: 96px;
    font-size: 1rem;
    margin-bottom: 26px;
    background: var(--ps-sand);
    color: var(--ps-plum);
}

.ps-studio-panel h3 {
    font-family: var(--ps-font-display);
    font-size: 2rem;
    color: #fff;
    margin: 10px 0 8px;
}

.ps-studio-panel p {
    color: #eadfd2;
}

.ps-panel-label {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.20em;
    color: #e8b585;
}

.ps-intro-grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.8fr) minmax(480px, 1fr);
    gap: 54px;
    align-items: center;
}

.ps-intro-grid h2,
.ps-section-heading h2,
.ps-copy-block h2 {
    margin: 14px 0 0;
    font-family: var(--ps-font-display);
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.02;
    color: var(--ps-ink);
}

.ps-section-dark .ps-copy-block h2,
.ps-section-dark .ps-section-kicker,
.ps-section-dark .ps-feature-list li {
    color: #f8eadb;
}

.ps-intro-text {
    margin: 0;
    font-size: 1.04rem;
    color: var(--ps-ash);
}

.ps-section-kicker {
    color: var(--ps-clay-dark);
}

.ps-section-dark .ps-section-kicker {
    color: #e8caa5;
}

.ps-two-column {
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(480px, 1fr);
    gap: 54px;
    align-items: center;
}

.ps-two-column-reverse {
    grid-template-columns: minmax(480px, 1fr) minmax(420px, 0.95fr);
}

.ps-media-frame {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-photo-card {
    width: min(100%, 500px);
    min-height: 430px;
    border: 1px solid rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.ps-photo-card:before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent, rgba(0,0,0,0.22));
    pointer-events: none;
}

.patio-card {
    background: var(--ps-clay-dark);
    background-image: linear-gradient(rgba(61,43,45,0.54), rgba(56,36,21,0.64)), url('assets/WebP/Patio Rosa 4.webp');
    background-size: cover;
    background-position: center;
}

.teatro-card {
    background: var(--ps-plum);
    background-image: linear-gradient(rgba(24,20,23,0.54), rgba(71,30,34,0.62)), url('assets/WebP/Sotano_teatro.webp');
    background-size: cover;
    background-position: center;
}

.ps-card-label {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.ps-card-copy {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 34px;
}

.ps-card-copy span {
    font-size: 0.70rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.ps-card-copy h3 {
    margin: 12px 0 8px;
    font-family: var(--ps-font-display);
    font-size: 2rem;
    line-height: 1;
}

.ps-card-copy p {
    margin: 0;
    font-size: 0.88rem;
    color: #efe9dd;
}

.ps-card-lines {
    position: absolute;
    top: 84px;
    left: 30px;
    display: flex;
    gap: 8px;
}

.ps-card-lines span {
    width: 54px;
    height: 2px;
    background: #f8eadb;
}

.ps-copy-block {
    max-width: 640px;
}

.ps-copy-block h2 {
    color: var(--ps-ink);
}

.ps-section-dark .ps-copy-block h2 {
    color: #fff;
}

.ps-copy-block p {
    color: var(--ps-ash);
    line-height: 1.98;
}

.ps-section-dark .ps-copy-block p {
    color: #eadcc8;
}

.ps-feature-list {
    padding: 0 0 0 24px;
    margin: 26px 0 34px;
}

.ps-feature-list li {
    color: var(--ps-ink);
    line-height: 1.85;
    margin-bottom: 12px;
}

.ps-section-dark .ps-feature-list li {
    color: #fbefe0;
}

.ps-button-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ps-section-heading.centered {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.ps-section-heading.centered h2 {
    color: var(--ps-plum);
}

.ps-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
}

.ps-service-card {
    background: rgba(255, 248, 236, 0.46);
    border: 1px solid rgba(61,43,45,0.24);
    padding: 28px;
    min-height: 250px;
}

.ps-service-card h3 {
    font-family: var(--ps-font-display);
    margin: 24px 0 8px;
    font-size: 1.58rem;
    color: var(--ps-plum);
}

.ps-service-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--ps-ash);
}

.ps-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--ps-plum);
    color: var(--ps-sand);
}

.ps-section-light.ps-contact {
    background: linear-gradient(180deg, var(--ps-sand), #f6eccf);
}

.ps-booking-wrap {
    display: grid;
    grid-template-columns: minmax(440px, 1fr) minmax(420px, 520px);
    gap: 50px;
    align-items: center;
}

.ps-contact-copy {
    margin: 24px 0 34px;
    color: var(--ps-ash);
}

.ps-contact-details {
    display: grid;
    gap: 20px;
}

.ps-contact-details > div {
    border-top: 1px solid rgba(85, 68, 40, 0.35);
    padding-top: 12px;
}

.ps-contact-details .ps-label {
    display: block;
    margin-bottom: 3px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ps-clay-dark);
}

.ps-map-link {
    color: var(--ps-clay-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.ps-map-wrap {
    margin-top: 24px;
}

.ps-map-wrap iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    filter: sepia(8%) saturate(1.06);
}

.ps-booking-form {
    background: var(--ps-plum);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 20px 45px var(--ps-shadow);
}

.ps-booking-form label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f8eadb;
    margin-bottom: 9px;
}

.ps-booking-form input,
.ps-booking-form select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #a99879;
    background: #eadfcf;
    color: var(--ps-ink);
    margin-bottom: 20px;
}

.ps-booking-form button {
    width: 100%;
}

.ps-footer {
    background: #2f281f;
    color: #eee3d1;
    padding: 60px 0 28px;
}

.ps-footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(160px, 0.56fr));
    gap: 40px;
}

.footer-brand .ps-brand-main,
.footer-brand .ps-brand-sub {
    color: #fffaf1;
}

.ps-footer-copy {
    max-width: 340px;
    color: #aa9c88;
    font-size: 0.84rem;
    line-height: 1.7;
    margin-top: 20px;
}

.ps-footer-title {
    display: inline-block;
    color: #f6d4a2;
    font-family: var(--ps-font-display);
    font-size: 1.26rem;
    margin-bottom: 10px;
}

.ps-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-footer-list li {
    margin-bottom: 10px;
}

.ps-footer-list a {
    color: #bda98d;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
}

.ps-footer-list a:hover {
    color: #fff;
}

.ps-footer-bottom {
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.14);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.70rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c0b1a2;
}

@media (max-width: 940px) {
    .container {
        width: min(1180px, calc(100% - 36px));
    }

    .ps-hero-grid,
    .ps-intro-grid,
    .ps-two-column,
    .ps-two-column-reverse,
    .ps-booking-wrap,
    .ps-studio-feature,
    .ps-footer-grid,
    .ps-service-grid {
        grid-template-columns: 1fr;
    }

    .ps-hero-copy {
        max-width: 680px;
    }

    .ps-hero-copy h1 {
        font-size: clamp(2.68rem, 12vw, 4.2rem);
    }

    .ps-hero {
        min-height: auto;
    }

    .ps-hero-grid {
        min-height: auto;
        padding: 54px 0 84px;
    }

    .ps-image-split {
        min-height: auto;
    }

    .ps-photo-card {
        width: 100%;
    }

    /* allow studio panel to shrink and avoid horizontal overflow on small screens */
    .ps-studio-feature { grid-template-columns: 1fr; }
    .ps-studio-panel { min-width: 0; }

    .ps-nav-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .ps-nav-links {
        flex-wrap: wrap;
        gap: 24px;
        margin: 12px auto;
    }
}
