@font-face {
    font-family: "Bauer Bodoni";
    src: url("/fonts/BOD_R.TTF") format("truetype");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Bauer Bodoni";
    src: url("/fonts/BOD_B.TTF") format("truetype");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins-Light.otf") format("opentype");
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins-Regular.otf") format("opentype");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins-Medium.otf") format("opentype");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-display: swap;
}

:root {
    --cream: #efeee9;
    --cream-2: #f7f5ef;
    --white: #ffffff;
    --gold: #b88917;
    --gold-soft: #d4c08a;
    --ink: #2c2416;
    --muted: #6b6254;
    --line: rgba(184, 137, 23, 0.28);
    --shadow: 0 24px 60px rgba(44, 36, 22, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.theme-luxe {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
    font-family: "Bauer Bodoni", Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 0.6rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

.container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(239, 238, 233, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 84px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(184, 137, 23, 0.25));
}
.brand strong {
    display: block;
    font-family: "Bauer Bodoni", serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.92rem;
}
.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.site-nav a {
    font-size: 0.92rem;
    color: var(--muted);
}
.site-nav a.is-active,
.site-nav a:hover { color: var(--gold); }
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 999px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.25rem;
    border-radius: 999px;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: 0.2s ease;
}
.btn-gold {
    background: linear-gradient(135deg, #d4c08a, var(--gold));
    color: #fff;
    box-shadow: 0 8px 20px rgba(184, 137, 23, 0.28);
}
.btn-gold:hover { transform: translateY(-1px); }
.btn-ghost {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.hero {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: 420px;
    opacity: 0.07;
    pointer-events: none;
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.eyebrow {
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin: 0 0 0.8rem;
}
.lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 38rem;
}
.hero-actions, .contact-actions, .center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.center { justify-content: center; }
.hours-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.hours-pills span {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.hours-list strong {
    color: var(--ink);
    font-weight: 500;
    text-align: right;
}
.home-hours {
    margin: 0.85rem 0 0.4rem;
}
.home-hours li {
    font-size: 0.9rem;
}
.site-footer .hours-list li,
.site-footer .hours-list strong {
    color: #d8d0c0;
}
.hours-pills span strong {
    color: var(--gold);
    font-weight: 500;
    margin-right: 0.25rem;
}
.portrait-frame {
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    padding: 8px;
    border-radius: 28px 8px 28px 8px;
    box-shadow: var(--shadow);
}
.portrait-frame img {
    width: 100%;
    height: min(620px, 78vw);
    object-fit: cover;
    object-position: center top;
    border-radius: 22px 4px 22px 4px;
    background: #111;
}

.section { padding: 4.5rem 0; }
.section-alt { background: var(--cream-2); }
.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.2rem;
    min-height: 100%;
}
.card-thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    background: var(--cream);
}
.card p { color: var(--muted); margin: 0; font-size: 0.92rem; }
.split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
}
.info-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
}
.info-panel img { border-radius: 12px; margin-bottom: 1rem; }
.info-panel hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 1.1rem 0;
}
.prose p { margin: 0 0 1rem; color: var(--muted); }
.prose.small { font-size: 0.9rem; }
.intro { margin-bottom: 2rem; }
.gold { color: var(--gold); }
.muted { color: var(--muted); font-size: 0.88rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.team-card, .team-row {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
}
.team-photo {
    background: var(--cream);
}
.team-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.team-photo.large img {
    height: auto;
    aspect-ratio: 2 / 3;
}
.team-body { padding: 1rem 1.1rem 1.3rem; }
.team-list { display: grid; gap: 1.4rem; }
.team-row {
    display: grid;
    grid-template-columns: 280px 1fr;
}
.team-row > div:last-child { padding: 1.6rem; }
.specialty { color: var(--gold); font-weight: 500; }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}
.photo-card {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--cream);
}
.photo-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}
.photo-card figcaption {
    padding: 0.7rem 0.9rem 0.9rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.page-hero {
    padding: 4rem 0 1rem;
    text-align: center;
}
.page-hero-media {
    margin: 1.75rem auto 0;
    max-width: 920px;
}
.page-hero-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: var(--cream);
}

.site-footer {
    background: #1c1812;
    color: #efe8d8;
    padding-top: 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-logo { max-width: 320px; margin-bottom: 0.8rem; }
.site-footer h3 { color: var(--gold-soft); font-size: 1rem; }
.site-footer p, .site-footer a { color: #d8d0c0; }
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}
.footer-links a:hover,
.footer-hours-link a:hover {
    color: var(--gold-soft);
}
.footer-hours-link {
    margin-top: 0.9rem;
}
.footer-hours-link a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-contact > p {
    margin: 0 0 0.35rem;
}
.footer-channels {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}
.footer-channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(232, 201, 140, 0.18);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.footer-channel:hover {
    border-color: rgba(232, 201, 140, 0.4);
    background: rgba(255, 255, 255, 0.07);
}
.footer-channel-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
}
.footer-channel-icon svg {
    width: 20px;
    height: 20px;
}
.footer-channel-icon-wa {
    background: #25d366;
    color: #fff;
}
.footer-channel-icon-ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
    color: #fff;
}
.footer-channel-copy {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}
.footer-channel-copy strong {
    display: block;
    color: #efe8d8;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.3;
    overflow-wrap: anywhere;
}
.footer-channel-copy span {
    display: block;
    color: var(--gold-soft);
    font-size: 0.82rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}
.footer-channel:hover .footer-channel-copy strong {
    color: #fff;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.6rem;
    align-items: start;
}
.contact-main {
    display: grid;
    gap: 1.4rem;
}
.contact-hero .lead {
    max-width: 36rem;
    margin-inline: auto;
    color: var(--muted);
}
.contact-top {
    padding-top: 1.5rem;
}
.contact-intro {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.3rem 1.4rem;
}
.contact-card {
    background: linear-gradient(180deg, #fffdf8 0%, var(--white) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.55rem 1.5rem 1.6rem;
    box-shadow: var(--shadow);
}
.contact-card > .eyebrow {
    margin-bottom: 0.35rem;
}
.contact-card h3 {
    color: var(--ink);
    margin-bottom: 1rem;
}
.contact-block + .contact-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.contact-line {
    margin: 0 0 0.25rem;
    color: var(--muted);
}
.contact-hours {
    margin-top: 0.35rem;
}
.contact-hours li {
    padding: 0.55rem 0.7rem;
    border-radius: 12px;
    background: rgba(184, 137, 23, 0.06);
}
.contact-hours li + li {
    margin-top: 0.45rem;
}
.contact-hours span {
    color: var(--gold);
    font-weight: 500;
}
.contact-hours strong {
    color: var(--ink);
    font-weight: 500;
}
.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: rgba(239, 238, 233, 0.7);
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-channel + .contact-channel {
    margin-top: 0.7rem;
}
.contact-channel:hover {
    border-color: var(--line);
    background: #fff;
}
.contact-channel-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
}
.contact-channel-icon svg {
    width: 22px;
    height: 22px;
}
.contact-channel-icon-wa {
    background: #25d366;
    color: #fff;
}
.contact-channel-icon-ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
    color: #fff;
}
.contact-channel-copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}
.contact-channel-copy strong {
    display: block;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.contact-channel-copy span {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    line-height: 1.35;
}
.contact-card .contact-actions {
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}
.contact-card .contact-actions .btn {
    width: 100%;
    justify-content: center;
}
.contact-card .contact-actions .btn + .btn {
    margin-top: 0.55rem;
}
@media (min-width: 981px) {
    .contact-card .contact-actions {
        display: grid;
        gap: 0.55rem;
    }
    .contact-card .contact-actions .btn + .btn {
        margin-top: 0;
    }
}
.map-section .section-heading {
    margin-bottom: 2rem;
}
.home-about {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: left;
}
.map-stage {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;
    gap: 1.4rem;
    align-items: stretch;
}
.map-frame {
    position: relative;
    min-height: 420px;
    border-radius: 28px 8px 28px 8px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    padding: 8px;
    box-shadow: var(--shadow);
}
.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 404px;
    border: 0;
    border-radius: 22px 4px 22px 4px;
    background: #111;
}
.map-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    box-shadow: var(--shadow);
}
.map-card-block {
    display: grid;
    gap: 0.35rem;
}
.map-card-block + .map-card-block {
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}
.map-card h3 {
    margin: 0.15rem 0 0.35rem;
}
.map-card p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
}
.map-card .eyebrow {
    margin: 0 0 0.2rem;
}
.map-card .contact-channel {
    margin-top: 0.35rem;
}
.map-card .contact-actions {
    margin-top: 0.4rem;
}
.map-card .contact-actions .btn {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}
.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cta-band .lead {
    margin: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(212, 192, 138, 0.2);
    padding: 1rem 0;
    font-size: 0.82rem;
    color: #b7ad9c;
}
.footer-bottom .container {
    display: grid;
    gap: 0.35rem;
}
.footer-bottom p {
    margin: 0;
}
.footer-responsible {
    color: #d8d0c0;
}
.footer-legal a {
    color: #b7ad9c;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-legal a:hover {
    color: var(--gold-soft);
}
.legal-page {
    max-width: 820px;
}
.legal-page .prose {
    text-align: left;
}
.legal-page .prose h2,
.legal-page .prose h3 {
    margin-top: 1.8rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    z-index: 30;
}
.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 980px) {
    .hero-grid, .split, .cards-grid, .team-grid, .footer-grid, .team-row, .contact-layout, .cta-band, .map-stage {
        grid-template-columns: 1fr;
    }
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
    .cards-grid, .team-grid, .photo-grid { grid-template-columns: 1fr 1fr; }
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        inset: 84px 1rem auto;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .portrait-frame img { height: 420px; }
    .team-photo.large { max-width: 280px; }
}

@media (max-width: 640px) {
    .cards-grid, .team-grid { grid-template-columns: 1fr; }
    .photo-grid { grid-template-columns: 1fr 1fr; }
    .header-inner { min-height: 72px; }
    .brand small { display: none; }
    .hero { padding: 2.5rem 0 2rem; }
    .section { padding: 3rem 0; }
    .team-photo { max-width: 280px; margin-inline: auto; }
}
