/* ═══════════════════════════════════════════════
   HOTEL UNIÃO — Design System
   Aesthetic: Hospitality Bento · Warm Sophistication
   ═══════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────── */
:root {
    --gold: #C5A059;
    --gold-soft: rgba(197, 160, 89, 0.12);
    --navy: #12171E;
    --ink: #1F2937;
    --muted: #6B7280;
    --silk: #F6F7F9;
    --white: #FFFFFF;
    --border: rgba(0, 0, 0, 0.04);
    --glass: rgba(255, 255, 255, 0.72);
    --green: #10B981;
    --red: #EF4444;

    --r-sm: 14px;
    --r-md: 22px;
    --r-lg: 30px;
    --r-xl: 38px;

    --sh-rest: 0 6px 30px -8px rgba(0, 0, 0, 0.06);
    --sh-hover: 0 14px 44px -10px rgba(0, 0, 0, 0.12);
    --sh-modal: 0 32px 80px -16px rgba(0, 0, 0, 0.28);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --dur: 0.55s;
}

/* ── Reset ──────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--silk);
    color: var(--ink);
    line-height: 1.55;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Shell ──────────────────────────────────── */
.shell {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 22px 32px;
}

/* ── Floating Status ────────────────────────── */
.floating-status {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 500;
    background: var(--white);
    padding: 7px 16px 7px 12px;
    border-radius: 40px;
    box-shadow: var(--sh-rest);
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0;
    transform: translateY(-10px);
    animation: slideIn var(--dur) var(--ease) 0.3s forwards;
}

.fs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
    animation: blink 2.4s infinite;
}

.floating-status.is-closed .fs-dot {
    background: var(--red);
    box-shadow: 0 0 6px var(--red);
    animation: none;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero ───────────────────────────────────── */
.hero {
    text-align: center;
    margin-bottom: 28px;
}

.logo-ring {
    width: 130px;
    height: 130px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: var(--sh-rest), 0 0 0 1px var(--border);
    overflow: hidden;
}

.logo-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--navy);
    margin-bottom: 10px;
}

.tagline {
    font-size: 15px;
    color: var(--muted);
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   TABS NAVIGATION
   ═══════════════════════════════════════════════ */
.tabs-nav {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--sh-rest);
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--muted);
    transition: var(--dur) var(--ease);
    position: relative;
}

.tab-btn span {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 12px -2px rgba(18, 23, 30, 0.25);
}

.tab-btn span::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--navy);
}

.tab-btn:hover span,
.tab-btn:focus-visible span {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tab-btn.is-active {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 16px -4px rgba(18, 23, 30, 0.3);
}

.tab-btn.is-active span {
    background: var(--gold);
    color: var(--navy);
}

.tab-btn.is-active span::after {
    border-top-color: var(--gold);
}

.tab-btn:not(.is-active):hover {
    background: var(--silk);
    color: var(--ink);
}

/* ── Tab Panels ─────────────────────────────── */
.tab-panel {
    display: none;
    animation: panelIn .45s var(--ease);
}

.tab-panel.is-active {
    display: block;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Bento Grid ─────────────────────────────── */
.bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 48px;
}

.tile {
    background: var(--glass);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--sh-rest);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    text-align: left;
}

.tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-hover);
}

.tile:active {
    transform: scale(0.97);
}

.tile strong {
    font-size: 15px;
    font-weight: 700;
}

.tile span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.tile--hero {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: var(--navy);
    color: #fff;
    padding: 26px;
    position: relative;
}

.tile--hero strong {
    font-size: 17px;
}

.tile--hero span {
    color: rgba(255, 255, 255, .65);
}

.tile__arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
}

.tile--accent {
    background: var(--gold-soft);
    border-color: rgba(197, 160, 89, 0.15);
}

.tile__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--silk);
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
}

.tile__icon--gold {
    background: var(--gold);
    color: #fff;
}

.tile__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

/* ── Content Section (inner tabs) ───────────── */
.content-section {
    margin-bottom: 40px;
}

/* ── Section Heads ──────────────────────────── */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 4px;
}

.section-head h2 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.badge-new {
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   ROOMS TAB
   ═══════════════════════════════════════════════ */
.room-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: var(--sh-rest);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--dur) var(--ease);
}

.room-card:hover {
    box-shadow: var(--sh-hover);
}

.room-card__icon {
    width: 56px;
    height: 56px;
    background: var(--gold-soft);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.room-card__info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    margin-bottom: 6px;
}

.room-card__info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.room-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    background: var(--silk);
    padding: 6px 12px;
    border-radius: 10px;
}

.room-features li i {
    color: var(--gold);
}

.room-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.room-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    background: var(--silk);
    border-radius: 12px;
    border: 1px solid var(--border);
    gap: 4px;
}

.room-price__type {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.room-price__value {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.3px;
}

.room-card__btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    transition: background var(--dur) var(--ease);
}

.room-card__btn:hover {
    background: var(--gold);
}

/* ═══════════════════════════════════════════════
   SERVICES TAB
   ═══════════════════════════════════════════════ */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.svc-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 22px;
    box-shadow: var(--sh-rest);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--dur) var(--ease);
}

.svc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-hover);
}

.svc-card__icon {
    width: 48px;
    height: 48px;
    background: var(--gold-soft);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.svc-card h4 {
    font-size: 14px;
    font-weight: 700;
}

.svc-card p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   SCHEDULE TAB
   ═══════════════════════════════════════════════ */
.schedule-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 20px;
    box-shadow: var(--sh-rest);
    margin-bottom: 12px;
}

.schedule-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-soft);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
}

.schedule-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.schedule-info p {
    font-size: 13px;
    color: var(--muted);
}

.schedule-info strong {
    color: var(--ink);
}

/* ═══════════════════════════════════════════════
   POLICIES TAB
   ═══════════════════════════════════════════════ */
.policy-card {
    display: flex;
    gap: 16px;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 20px;
    box-shadow: var(--sh-rest);
    margin-bottom: 12px;
    align-items: flex-start;
}

.policy-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--silk);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.policy-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.policy-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── Info Note ──────────────────────────────── */
.info-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--gold-soft);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--r-md);
    padding: 18px;
    margin-top: 20px;
}

.info-note i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-note p {
    font-size: 12px;
    color: var(--ink);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   CITY GUIDE TAB
   ═══════════════════════════════════════════════ */
.city-intro,
.catalog-intro,
.gallery-intro {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-rest);
}

.city-intro i,
.catalog-intro i,
.gallery-intro i {
    color: var(--gold);
    flex-shrink: 0;
}

.city-category {
    margin-bottom: 20px;
}

.city-category__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--r-md) var(--r-md) 0 0;
    font-family: 'Sora', sans-serif;
}

.city-category__head i {
    color: var(--gold);
}

.city-category__head h3 {
    font-size: 15px;
    font-weight: 700;
}

.city-places {
    background: var(--white);
    border-radius: 0 0 var(--r-md) var(--r-md);
    box-shadow: var(--sh-rest);
    overflow: hidden;
}

.city-place {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.city-place:last-child {
    border-bottom: none;
}

.city-place:hover {
    background: var(--silk);
}

.city-place strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.city-place span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.city-place__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
    transition: color 0.2s ease;
}

.city-place__link:hover {
    color: var(--navy);
}

.city-place__link i {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   CATALOG TAB
   ═══════════════════════════════════════════════ */
.catalog-category {
    margin-bottom: 24px;
}

.catalog-category__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    padding: 0 4px;
}

.catalog-category__title i {
    color: var(--gold);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.catalog-item {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 20px 16px;
    box-shadow: var(--sh-rest);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--dur) var(--ease);
}

.catalog-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-hover);
}

.catalog-item__icon {
    width: 52px;
    height: 52px;
    background: var(--gold-soft);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.catalog-item strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.catalog-item__price {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.catalog-item__btn {
    width: 100%;
    margin-top: auto;
    padding: 10px 0;
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    transition: background var(--dur) var(--ease);
}

.catalog-item__btn:hover {
    background: var(--gold);
}

/* ═══════════════════════════════════════════════
   GALLERY (FOTOS) TAB
   ═══════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-rest);
    overflow: hidden;
    transition: var(--dur) var(--ease);
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-hover);
}

.gallery-card--featured {
    grid-column: 1 / -1;
}

.gallery-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--silk) 0%, rgba(197, 160, 89, 0.08) 100%);
    color: var(--gold);
    height: 120px;
}

.gallery-card--featured .gallery-card__placeholder {
    height: 180px;
}

.gallery-card__label {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    border-top: 1px solid var(--border);
}

/* When real images are added, use this class */
.gallery-card__img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.gallery-card--featured .gallery-card__img {
    height: 180px;
}

/* ── Convenience Section ────────────────────── */
.convenience {
    margin-bottom: 48px;
}

.prod-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.prod {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 20px;
    box-shadow: var(--sh-rest);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prod__img {
    width: 56px;
    height: 56px;
    margin: 0 auto 4px;
    background: var(--silk);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.prod h4 {
    font-size: 14px;
    font-weight: 700;
}

.prod p {
    font-size: 11px;
    color: var(--muted);
}

.prod button {
    margin-top: auto;
    padding: 9px 0;
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    transition: background var(--dur) var(--ease);
}

.prod button:hover {
    background: var(--gold);
}

/* ── Last Call Section ──────────────────────── */
.last-call {
    text-align: center;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px 24px;
    box-shadow: var(--sh-rest);
    margin-bottom: 48px;
}

.lc-icon {
    color: var(--gold);
    margin-bottom: 14px;
}

.last-call h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.last-call p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.btn-last {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    transition: background var(--dur) var(--ease);
}

.btn-last:hover {
    background: var(--gold);
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
    text-align: center;
    padding: 12px 0 24px;
}

.site-footer span {
    display: block;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.site-footer a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--ink);
    text-transform: uppercase;
    transition: color .3s var(--ease);
}

.site-footer a:hover {
    color: var(--gold);
}

/* ═══════════ MODALS ═══════════ */
.modal {
    border: none;
    border-radius: var(--r-xl);
    width: 92%;
    max-width: 400px;
    margin: auto;
    padding: 0;
    background: var(--white);
    box-shadow: var(--sh-modal);
    overflow: hidden;
}

.modal::backdrop {
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal[open] {
    animation: modalIn .45s var(--ease);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal__inner {
    padding: 40px 28px 32px;
    text-align: center;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    background: var(--silk);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--muted);
    transition: background .3s;
}

.modal__close:hover {
    background: #e5e7eb;
}

.modal__badge {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
}

.modal h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    margin-bottom: 6px;
}

.modal__sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
}

.modal__qr {
    background: var(--silk);
    display: inline-block;
    padding: 14px;
    border-radius: var(--r-md);
    margin-bottom: 24px;
}

.modal__field {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.modal__field.single {
    grid-template-columns: 1fr;
}

.modal__field>div {
    background: var(--silk);
    border-radius: 12px;
    padding: 12px;
    text-align: left;
}

.modal__field small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.modal__field strong {
    font-size: 14px;
}

.modal__btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 16px;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .3s var(--ease);
}

.modal__btn:hover {
    background: #b3903e;
    color: #fff;
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp .7s var(--ease) forwards;
    animation-delay: calc(var(--delay, 0) * 120ms + 200ms);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 360px) {
    .shell {
        padding: 36px 16px 24px;
    }

    h1 {
        font-size: 26px;
    }

    .tile {
        padding: 18px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════ SCROLLBAR ═══════════ */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ═══════════ ACCESSIBILITY ═══════════ */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 8px;
}



@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}