:root {
    --black: #050505;
    --night: #101010;
    --panel: #1a1a1a;
    --text: #f5f5f5;
    --muted: #b8b8b8;
    --soft: #777;
    --gold: #c9a227;
    --gold-light: #e6c766;
    --line: rgba(230, 199, 102, .22);
    --glass: rgba(16, 16, 16, .72);
    --radius: 8px;
    --shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 10%, rgba(201, 162, 39, .12), transparent 26rem),
        radial-gradient(circle at 80% 35%, rgba(230, 199, 102, .07), transparent 28rem),
        linear-gradient(180deg, #050505 0%, #101010 48%, #050505 100%);
    line-height: 1.6;
    overflow-x: clip;
}

body.menu-open {
    position: fixed;
    inset: var(--scroll-lock-top, 0) 0 auto 0;
    width: 100%;
    overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg, video, iframe { max-width: 100%; }
img { display: block; }

:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

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

.skip-link, .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    background: var(--gold);
    color: #090909;
    z-index: 1000;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, .82);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(5, 5, 5, .94);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.brand-logo {
    display: block;
    width: clamp(150px, 20vw, 220px);
    max-height: 54px;
    object-fit: contain;
    height: auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--gold-light);
    font-family: Orbitron, sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
    background: linear-gradient(135deg, rgba(201, 162, 39, .18), rgba(255, 255, 255, .04));
}

.brand strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.brand small {
    display: block;
    color: var(--gold-light);
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.main-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 100svh;
    padding: 92px 28px 34px;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, .96), rgba(5, 5, 5, .985)),
        radial-gradient(circle at 50% 20%, rgba(230, 199, 102, .12), transparent 18rem);
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

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

body.menu-open .main-nav.is-open {
    top: var(--scroll-lock-y, 0);
    bottom: auto;
    height: 100svh;
}

.mobile-menu-logo {
    display: inline-flex;
    width: min(230px, 68vw);
    margin-bottom: 22px;
}

.mobile-menu-logo img {
    width: 100%;
    height: auto;
}

.main-nav a {
    width: min(100%, 340px);
    padding: 15px 14px;
    color: var(--muted);
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(10px);
    opacity: 0;
    transition: color .2s ease, background .2s ease, transform .28s ease, opacity .28s ease;
}

.main-nav .mobile-menu-logo {
    width: min(230px, 68vw);
    padding: 0;
    background: transparent;
}

.main-nav .mobile-menu-logo:hover,
.main-nav .mobile-menu-logo:focus-visible {
    background: transparent;
}

.main-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
}

.main-nav.is-open a:nth-child(2) { transition-delay: .04s; }
.main-nav.is-open a:nth-child(3) { transition-delay: .07s; }
.main-nav.is-open a:nth-child(4) { transition-delay: .1s; }
.main-nav.is-open a:nth-child(5) { transition-delay: .13s; }
.main-nav.is-open a:nth-child(6) { transition-delay: .16s; }
.main-nav.is-open a:nth-child(7) { transition-delay: .19s; }
.main-nav.is-open a:nth-child(8) { transition-delay: .22s; }

.mobile-menu-logo {
    transform: translateY(10px);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

.main-nav.is-open .mobile-menu-logo {
    opacity: 1;
    transform: translateY(0);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--gold-light);
    background: rgba(230, 199, 102, .08);
}

.main-nav .mobile-nav-home {
    display: none;
}

.menu-toggle {
    position: relative;
    z-index: 80;
    width: 44px;
    height: 44px;
    display: grid;
    gap: 5px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    color: var(--text);
}

.menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform .22s ease, opacity .22s ease;
}

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

.menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: calc(var(--scroll-lock-y, 0px) + 16px);
    right: 14px;
}

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

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

.hero, .page-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: 74px 0;
}

.hero {
    min-height: calc(100svh - 76px);
}

.page-hero {
    min-height: min(620px, 62svh);
}

.hero::before, .page-hero::before, .image-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .48) 0%, rgba(5, 5, 5, .37) 46%, rgba(5, 5, 5, .45) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, .09) 0%, rgba(5, 5, 5, .46) 100%),
        var(--hero-image, linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,0))),
        radial-gradient(circle at 25% 30%, rgba(201, 162, 39, .26), transparent 18rem),
        radial-gradient(circle at 80% 60%, rgba(230, 199, 102, .08), transparent 22rem);
    background-size: cover;
    background-position: var(--hero-position, center);
    opacity: .8;
    filter: saturate(.9) contrast(1.08);
}

.hero-content, .page-hero .container, .image-band .container {
    position: relative;
    z-index: 1;
}

.hero-location {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(230, 199, 102, .24);
    border-radius: var(--radius);
    color: rgba(245, 245, 245, .82);
    background: rgba(5, 5, 5, .48);
    backdrop-filter: blur(10px);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-location a {
    color: var(--muted);
}

.hero-location span:last-child {
    color: var(--gold-light);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-light);
    font-family: Orbitron, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

h1, h2, h3 {
    margin: 0;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

h1 {
    max-width: 850px;
    font-size: clamp(2.5rem, 9vw, 5.8rem);
    letter-spacing: .02em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    text-transform: uppercase;
}

h3 { font-size: 1.15rem; }
p { color: var(--muted); margin: 0; }
.lead {
    max-width: 720px;
    margin-top: 18px;
    color: #dedede;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    overflow-wrap: anywhere;
}

.hero-actions, .section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-align: center;
    overflow-wrap: anywhere;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.btn.is-loading {
    position: relative;
}

.btn.is-loading::after {
    content: "";
    width: 14px;
    height: 14px;
    margin-left: 10px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.btn.primary {
    color: #080808;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: transparent;
}
.btn.secondary {
    color: var(--text);
    background: rgba(255, 255, 255, .04);
}

.section {
    padding: 72px 0;
}

.section-header {
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}

.section-header p { max-width: 760px; }

.grid {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }

.grid > *,
.split > *,
.footer-elegant > *,
.footer-panel > * {
    min-width: 0;
}

.card, .pack-card, .service-card, .extra-card, .contact-card {
    border: 1px solid rgba(230, 199, 102, .16);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
    transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.card:hover,
.pack-card:hover,
.extra-card:hover {
    border-color: rgba(230, 199, 102, .34);
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(230, 199, 102, .075), rgba(255,255,255,.025));
}

.card, .service-card, .extra-card, .contact-card { padding: 24px; }
.contact-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card h3, .service-card h3, .extra-card h3 {
    margin-bottom: 10px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.gold { color: var(--gold-light); }

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.stat {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, .58);
}

.stat strong {
    display: block;
    color: var(--gold-light);
    font-family: Orbitron, sans-serif;
    font-size: clamp(2rem, 8vw, 3.6rem);
    line-height: 1;
}

.stat span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pack-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    min-height: 100%;
    min-width: 0;
}

.pack-card.featured {
    border-color: rgba(230, 199, 102, .48);
    background: linear-gradient(180deg, rgba(201, 162, 39, .16), rgba(255,255,255,.03));
}

.pack-kicker {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.pack-name {
    margin-top: 4px;
    color: var(--gold-light);
    font-family: Orbitron, sans-serif;
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    letter-spacing: .12em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.price {
    margin-top: auto;
    padding-top: 22px;
    color: var(--gold-light);
    font-family: Orbitron, sans-serif;
    font-size: 2rem;
}

.clean-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.clean-list li {
    position: relative;
    padding: 9px 0 9px 22px;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    overflow-wrap: anywhere;
}

.clean-list a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.image-band {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: #080808;
}

.split {
    display: grid;
    gap: 28px;
    align-items: center;
    min-width: 0;
}

.media-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #090909;
    box-shadow: var(--shadow);
}

.media-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: saturate(.9) contrast(1.05);
    transition: transform .45s ease, filter .45s ease;
}

.media-card:hover img,
.card.with-media:hover img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.08);
}

.media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.5));
    pointer-events: none;
}

.media-card figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.card.with-media {
    overflow: hidden;
    padding: 0;
}

.service-clickable {
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.service-clickable:hover,
.service-clickable:focus-visible {
    border-color: rgba(230, 199, 102, .44);
    background: linear-gradient(180deg, rgba(230, 199, 102, .09), rgba(255,255,255,.025));
    transform: translateY(-3px);
    outline: none;
}

.card.with-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: saturate(.9) contrast(1.04);
    transition: transform .45s ease, filter .45s ease;
}

.card.with-media div {
    padding: 22px;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.service-modal.is-open {
    display: flex;
}

.service-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(10px);
}

.service-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 22px;
    width: min(980px, 100%);
    max-height: min(760px, calc(100svh - 36px));
    overflow: auto;
    padding: 22px;
    border: 1px solid rgba(230, 199, 102, .22);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(20,20,20,.98), rgba(6,6,6,.98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .62);
}

.service-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(230, 199, 102, .24);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255, 255, 255, .06);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.service-modal__close:hover,
.service-modal__close:focus-visible {
    color: #080808;
    background: var(--gold-light);
    outline: none;
}

.service-modal__copy {
    padding-right: 48px;
}

.service-modal__copy h2 {
    font-size: clamp(1.7rem, 5vw, 3rem);
}

.service-modal__gallery {
    display: grid;
    gap: 12px;
}

.service-modal__gallery figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(230, 199, 102, .18);
    border-radius: var(--radius);
    background: #070707;
}

.service-modal__gallery img {
    width: 100%;
    max-height: 520px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: saturate(.94) contrast(1.04);
}

.extra-card header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.extras-moments {
    background: rgba(255, 255, 255, .025);
    border-block: 1px solid rgba(255, 255, 255, .07);
}

.extras-timeline {
    display: grid;
    gap: 14px;
}

.extras-timeline article {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(230, 199, 102, .16);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(5, 5, 5, .66), rgba(255, 255, 255, .025));
}

.extras-timeline span,
.extra-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border: 1px solid rgba(230, 199, 102, .34);
    border-radius: var(--radius);
    color: var(--gold-light);
    background: rgba(230, 199, 102, .08);
    font-family: Orbitron, sans-serif;
    font-size: .78rem;
    font-weight: 800;
}

.extras-timeline h3,
.extra-info-card h3 {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.extras-feature .lead {
    margin-top: 18px;
}

.extras-assurance {
    padding-top: 0;
}

.extra-info-card {
    height: 100%;
}

.price-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.price-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.price-list strong {
    color: var(--gold-light);
    white-space: nowrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.gallery-item {
    min-height: 220px;
    display: flex;
    align-items: end;
    padding: 18px;
    border: 1px solid rgba(230, 199, 102, .16);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.9)),
        var(--gallery-bg, radial-gradient(circle at 40% 30%, rgba(201,162,39,.3), transparent 12rem)),
        #161616;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.gallery-item h3 {
    color: var(--text);
    letter-spacing: .1em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.form {
    display: grid;
    gap: 14px;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 700;
}

input, textarea, select {
    width: 100%;
    border: 1px solid rgba(230, 199, 102, .18);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--text);
    background: rgba(255, 255, 255, .045);
    font: inherit;
}

.form select {
    color: var(--text);
    background-color: rgba(255, 255, 255, .045);
    color-scheme: light;
}

.form select option {
    color: #050505;
    background-color: #fff;
}

textarea { min-height: 150px; resize: vertical; }

.alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 18px;
}
.alert.success { background: rgba(83, 170, 91, .14); border: 1px solid rgba(83, 170, 91, .35); }
.alert.error { background: rgba(190, 70, 70, .14); border: 1px solid rgba(190, 70, 70, .35); }

.contact-layout {
    align-items: stretch;
}

.map-frame {
    position: relative;
    display: grid;
    place-items: stretch;
    overflow: hidden;
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #090909;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 320px;
}

.map-cookie-button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 9px 11px;
    border: 1px solid rgba(230, 199, 102, .32);
    border-radius: var(--radius);
    color: #080808;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 12px 32px rgba(0, 0, 0, .38);
    font: inherit;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
}

.map-cookie-button:hover,
.map-cookie-button:focus-visible {
    background: var(--text);
    outline: none;
}

.map-frame.is-blocked iframe {
    display: none;
}

.map-consent-message {
    min-height: 260px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 24px;
    color: var(--muted);
    background:
        linear-gradient(135deg, rgba(230, 199, 102, .08), rgba(255, 255, 255, .03)),
        #090909;
}

.map-consent-message[hidden] {
    display: none;
}

.map-consent-message strong {
    color: var(--text);
    font-size: 1.02rem;
}

.map-consent-message p {
    margin: 0;
}

.policy-content {
    max-width: 880px;
}
.policy-content h2 { margin-top: 34px; font-size: 1.45rem; }
.policy-content p { margin-top: 12px; }

.site-footer {
    position: relative;
    padding: 70px 0 24px;
    background: #050505;
    border-top: 1px solid rgba(230, 199, 102, .16);
}

.footer-elegant {
    display: grid;
    gap: 30px;
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 20px;
    align-content: start;
}

.footer-logo {
    display: inline-flex;
    width: min(250px, 76vw);
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-brand p {
    max-width: 390px;
    margin: 0;
    color: rgba(245, 245, 245, .7);
    font-size: .96rem;
}

.footer-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-nav {
    display: grid;
    gap: 11px;
}

.footer-nav a {
    display: inline-flex;
    width: fit-content;
    color: rgba(245, 245, 245, .78);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .2s ease, transform .2s ease;
}

.footer-secondary {
    display: grid;
    align-content: start;
    gap: 18px;
}

.footer-legal {
    display: grid;
    gap: 10px;
}

.footer-legal a,
.footer-legal button {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    color: rgba(245, 245, 245, .76);
    background: rgba(255, 255, 255, .025);
    font: inherit;
    font-size: .84rem;
    line-height: 1.25;
    text-align: center;
    overflow-wrap: anywhere;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
    cursor: pointer;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    color: rgba(245, 245, 245, .78);
    background: rgba(255, 255, 255, .025);
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-social svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-legal button:hover,
.footer-social a:hover {
    color: var(--gold-light);
}

.footer-nav a:hover {
    transform: translateY(-2px);
}

.footer-legal a:hover,
.footer-legal button:hover,
.footer-social a:hover {
    border-color: rgba(230, 199, 102, .34);
    background: rgba(230, 199, 102, .055);
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(245, 245, 245, .45);
    font-size: .82rem;
    text-align: center;
}

.footer-bottom a {
    color: var(--gold-light);
    font-weight: 800;
}

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    display: grid;
    gap: 12px;
    justify-items: center;
}

.floating-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--gold-light);
    background: transparent;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .45));
    transition: color .2s ease, opacity .2s ease, transform .2s ease, filter .2s ease;
}

.floating-action svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-action img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scroll-top-action {
    width: 38px;
    height: 38px;
    color: rgba(245, 245, 245, .78);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

.scroll-top-action.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-action {
    color: #25d366;
}

.floating-action:hover,
.floating-action:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
}

.cookie-banner {
    position: fixed;
    right: 14px;
    bottom: 76px;
    left: 14px;
    z-index: 80;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-card {
    width: min(100%, 440px);
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(230, 199, 102, .26);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
        rgba(12, 12, 12, .96);
    box-shadow: 0 22px 80px rgba(0, 0, 0, .58);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}

.cookie-card .eyebrow {
    margin-bottom: 6px;
}

.cookie-card h2 {
    margin: 0;
    font-size: 1.05rem;
}

.cookie-card p:not(.eyebrow) {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cookie-actions .btn {
    width: 100%;
    justify-content: center;
    padding-inline: 12px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 679px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .header-inner {
        min-height: 68px;
        gap: 12px;
    }

    .brand-logo {
        width: clamp(138px, 48vw, 176px);
        max-height: 48px;
    }

    .main-nav {
        padding-inline: 22px;
    }

    .hero,
    .page-hero {
        padding: 54px 0;
    }

    .hero {
        min-height: calc(100svh - 68px);
    }

    .page-hero {
        min-height: min(500px, 58svh);
    }

    .hero-location {
        gap: 7px;
        padding: 7px 9px;
        font-size: .58rem;
        letter-spacing: .1em;
    }

    .eyebrow {
        font-size: .64rem;
        letter-spacing: .17em;
    }

    h1 {
        font-size: clamp(2rem, 11vw, 3.1rem);
        line-height: 1.02;
        letter-spacing: .01em;
    }

    h2 {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
        line-height: 1.08;
    }

    .lead {
        margin-top: 14px;
        font-size: .98rem;
        line-height: 1.65;
    }

    .hero-actions,
    .section-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .btn {
        width: 100%;
        min-height: 46px;
        padding: 12px 14px;
        font-size: .72rem;
        letter-spacing: .09em;
    }

    .section,
    .image-band {
        padding: 54px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .card,
    .service-card,
    .extra-card,
    .contact-card,
    .pack-card,
    .stat,
    .extras-timeline article {
        padding: 18px;
    }

    .pack-kicker,
    .stat span,
    .media-card figcaption,
    .footer-nav a {
        letter-spacing: .1em;
    }

    .pack-name {
        font-size: clamp(1.45rem, 8vw, 2.05rem);
        letter-spacing: .06em;
    }

    .price {
        font-size: 1.65rem;
    }

    .media-card {
        min-height: 220px;
    }

    .card.with-media div {
        padding: 18px;
    }

    .service-modal {
        padding: 14px;
    }

    .service-modal__dialog {
        max-height: calc(100svh - 28px);
        padding: 18px;
    }

    .service-modal__copy {
        padding-right: 46px;
    }

    .service-modal__copy h2 {
        font-size: clamp(1.45rem, 8vw, 2rem);
    }

    .gallery-item {
        min-height: 190px;
    }

    .map-cookie-button {
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        font-size: .62rem;
        letter-spacing: .08em;
    }

    .map-consent-message {
        padding: 18px;
    }

    .footer-elegant,
    .footer-panel {
        gap: 24px;
    }

    .footer-logo {
        width: min(220px, 68vw);
    }

    .footer-legal a,
    .footer-legal button {
        min-height: 44px;
        text-align: left;
    }

    .footer-bottom {
        justify-content: center;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .floating-action {
        width: 42px;
        height: 42px;
    }

    .scroll-top-action {
        width: 34px;
        height: 34px;
    }

    .cookie-banner {
        right: 14px;
        bottom: 70px;
        left: 14px;
    }

    .cookie-actions {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 680px) {
    .grid.two, .stats, .form-row { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .extras-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-panel { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
    .cookie-banner {
        right: 24px;
        bottom: 24px;
        left: auto;
        justify-content: flex-end;
    }
}

@media (min-width: 920px) {
    .menu-toggle { display: none; }
    .mobile-menu-logo { display: none; }
    .main-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        min-height: 0;
        padding: 0;
        background: transparent;
        border: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }
    .main-nav .mobile-nav-home { display: inline-flex; }
    .main-nav a {
        width: auto;
        padding: 10px 9px;
        font-size: .68rem;
        opacity: 1;
        transform: none;
        transition: color .2s ease, background .2s ease;
    }
    .grid.three { grid-template-columns: repeat(3, 1fr); }
    .grid.four { grid-template-columns: repeat(4, 1fr); }
    .split { grid-template-columns: 1.02fr .98fr; }
    .contact-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; }
    .extras-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .footer-elegant { grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr); }
    .footer-panel { padding: 0 0 0 36px; border-top: 0; border-left: 1px solid rgba(255, 255, 255, .08); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
