:root {
    --ink: #0d1f24;
    --ink-soft: #173038;
    --surface: #f4f7f5;
    --surface-2: #e7efea;
    --cream: #f7f3ea;
    --gold: #c4a35a;
    --gold-deep: #9a7a35;
    --teal: #1f6f78;
    --teal-bright: #2a8f99;
    --text: #142429;
    --muted: #5c7178;
    --white: #ffffff;
    --line: rgba(13, 31, 36, 0.12);
    --shadow: 0 18px 50px rgba(13, 31, 36, 0.12);
    --radius: 18px;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Outfit", sans-serif;
    --header-h: 78px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(42, 143, 153, 0.08), transparent 28%),
        linear-gradient(180deg, #f7faf8 0%, var(--surface) 40%, #eef4f1 100%);
    line-height: 1.6;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--ink);
    color: var(--white);
    padding: 0.75rem 1rem;
    z-index: 1000;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(244, 247, 245, 0.88);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px rgba(13, 31, 36, 0.06);
}

.header-inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    display: block;
    height: auto;
    width: auto;
    max-height: 40px;
    max-width: min(168px, 38vw);
    object-fit: contain;
}

.site-logo-footer {
    max-height: 42px;
    max-width: 150px;
    margin-bottom: 0.85rem;
    opacity: 0.96;
}

.site-logo-hero {
    max-height: clamp(56px, 9vw, 84px);
    max-width: min(260px, 72vw);
    margin: 0 0 1rem;
    animation: riseIn 0.9s ease both;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.28));
}

.site-logo-login {
    max-height: 48px;
    max-width: 150px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--ink) 0%, var(--teal) 100%);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-nav a {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(31, 111, 120, 0.1);
    color: var(--teal);
}

.nav-cta {
    background: linear-gradient(120deg, var(--ink) 0%, var(--teal) 100%) !important;
    color: var(--white) !important;
    margin-left: 0.35rem;
}

.nav-cta:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 31, 36, 0.25) 0%, rgba(13, 31, 36, 0.72) 58%, rgba(13, 31, 36, 0.92) 100%),
        url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4.5rem 0 4rem;
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.8rem);
    line-height: 0.95;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
    animation: riseIn 0.9s ease both;
}

.hero-text {
    max-width: 34rem;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 1.75rem;
    animation: riseIn 0.9s ease 0.12s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: riseIn 0.9s ease 0.22s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold) 0%, #dfc07a 100%);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(196, 163, 90, 0.28);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.btn-dark {
    background: linear-gradient(120deg, var(--ink) 0%, var(--teal) 100%);
    color: var(--white);
}

.section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4.5rem 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-head h2,
.page-hero h1,
.legal h1,
.panel h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section-head p,
.lede {
    color: var(--muted);
    margin: 0.55rem 0 0;
    max-width: 36rem;
}

.link-more {
    color: var(--teal);
    font-weight: 600;
    white-space: nowrap;
}

.category-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.category-item {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    padding: 1.25rem;
    border-radius: var(--radius);
    background:
        linear-gradient(160deg, rgba(13, 31, 36, 0.08), rgba(31, 111, 120, 0.18)),
        var(--white);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(31, 111, 120, 0.28);
}

.category-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.category-item span {
    color: var(--muted);
    font-size: 0.92rem;
}

.deal-grid,
.other-grid,
.partner-grid {
    display: grid;
    gap: 1.1rem;
}

.deal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deal-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.deal-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.deal-card .body {
    padding: 1rem 1.1rem 1.2rem;
}

.deal-card .meta {
    color: var(--gold-deep);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.deal-card h3 {
    margin: 0.35rem 0 0.2rem;
    font-size: 1.05rem;
}

.deal-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.other-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.other-card {
    padding: 1.35rem;
    border-radius: var(--radius);
    background: linear-gradient(165deg, var(--ink) 0%, var(--ink-soft) 55%, #1a4d55 100%);
    color: var(--white);
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.other-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.other-card h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.other-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.other-card .arrow {
    margin-top: 1.2rem;
    color: var(--gold);
    font-weight: 600;
}

.cta-band {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto 4.5rem;
    padding: 2.5rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at right top, rgba(196, 163, 90, 0.28), transparent 40%),
        linear-gradient(120deg, var(--ink) 0%, #184249 55%, var(--teal) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 0.45rem;
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero {
    padding: 4rem 0 2rem;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.page-hero p {
    max-width: 40rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.6rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
}

.partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-item {
    min-height: 140px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.35rem;
    text-align: center;
    padding: 1.1rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px dashed rgba(31, 111, 120, 0.28);
    font-weight: 600;
    color: var(--ink-soft);
}

.partner-item span {
    font-weight: 500;
    color: var(--muted);
    font-size: 0.9rem;
}

.partner-item a {
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 600;
}

.partner-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 0.35rem;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
}

.contact-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: var(--surface);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(31, 111, 120, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.form-status {
    min-height: 1.4rem;
    font-size: 0.95rem;
}

.form-status.is-success {
    color: #1f6b45;
}

.form-note {
    margin: 0.75rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.form-note a {
    color: var(--teal);
    font-weight: 600;
}

.detail-hero-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.eyebrow {
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
}

.meta-line {
    color: var(--muted);
}

.feature-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.feature-list li {
    margin-bottom: 0.45rem;
}

.auth-card {
    width: min(480px, 100%);
}

.toolbar-public {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-ghost-dark {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
}

.public-table {
    width: 100%;
    border-collapse: collapse;
}

.public-table th,
.public-table td {
    text-align: left;
    padding: 0.75rem 0.4rem;
    border-bottom: 1px solid var(--line);
}

.public-table th {
    color: var(--muted);
    font-weight: 600;
}

.badge {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-new { background: #fff4d8; color: #8a6a16; }
.badge-confirmed { background: #e8f6ee; color: #1f6b45; }
.badge-closed { background: #eceff1; color: #516066; }
.badge-cancelled { background: #fde8e8; color: #9b2c2c; }
.badge-paid { background: #e8f6ee; color: #1f6b45; }
.badge-unpaid { background: #fff4d8; color: #8a6a16; }
.badge-pending { background: #e7f3f5; color: #1f6f78; }
.badge-failed { background: #fdecec; color: #9b2c2c; }

.filter-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    align-items: end;
}

.filter-bar label {
    display: grid;
    gap: 0.35rem;
    font-weight: 500;
}

.filter-bar select,
.filter-bar input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem 0.95rem;
    background: var(--surface);
}

.filter-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.price-tag,
.price-hero,
.amount-note {
    color: var(--teal);
}

.price-hero {
    font-size: 1.2rem;
    font-weight: 700;
}

.calendar-panel {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.calendar-panel h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
}

.calendar-legend {
    display: flex;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0.8rem 0;
}

.calendar-legend .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.35rem;
}

.calendar-legend .busy { background: #c4a35a; }
.calendar-legend .free { background: #1f6f78; }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.45rem;
}

.calendar-day {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 0.55rem 0.35rem;
    cursor: pointer;
    min-height: 58px;
}

.calendar-day strong {
    display: block;
    font-size: 0.95rem;
}

.calendar-day small {
    color: var(--muted);
    font-size: 0.72rem;
}

.calendar-day.is-busy {
    background: #fff7e8;
    border-color: #e2c687;
}

@media (max-width: 900px) {
    .filter-bar {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.remember-inline {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
}

.deal-card {
    text-decoration: none;
    color: inherit;
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.contact-info a,
.contact-info p {
    margin: 0;
}

.info-block {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.info-block:last-child {
    border-bottom: 0;
}

.info-block span {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.legal {
    width: min(860px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0 4.5rem;
}

.legal h1 {
    margin-bottom: 1rem;
}

.legal h2 {
    margin-top: 2rem;
    font-family: var(--font-display);
}

.legal p,
.legal li {
    color: var(--muted);
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.82);
    padding: 3.5rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-grid {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.footer-copy {
    margin: 0;
    max-width: 22rem;
}

.footer-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0 0 0.8rem;
}

.footer-grid a {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    width: min(1180px, calc(100% - 2rem));
    margin: 2.5rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 90;
    background: #1fa855;
    color: var(--white);
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(31, 168, 85, 0.35);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

@media (max-width: 980px) {
    .category-rail,
    .deal-grid,
    .other-grid,
    .partner-grid,
    .footer-grid,
    .two-col,
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .other-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1rem;
        background: rgba(244, 247, 245, 0.98);
        border-bottom: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .hero {
        min-height: 78vh;
    }

    .category-rail,
    .deal-grid,
    .other-grid,
    .partner-grid,
    .footer-grid,
    .two-col,
    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-grid,
    .deal-gallery,
    .newsletter-band .newsletter-inner {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

.home-city-filter {
    margin-bottom: 1.25rem;
}

.partner-item-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-item-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 31, 36, 0.08);
}

.partner-detail-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.25rem;
    display: grid;
    gap: 0.6rem;
}

.testimonial-card .stars {
    color: var(--gold);
    letter-spacing: 0.08em;
}

.testimonial-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.testimonial-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.newsletter-band .newsletter-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.newsletter-form {
    display: grid;
    gap: 0.75rem;
}

.deal-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gallery-thumb {
    height: 120px;
    object-fit: cover;
}

.promo-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: end;
}

.header-search {
    flex: 1;
    max-width: 220px;
}

.header-search input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background: rgba(255,255,255,0.9);
}

.inline-form {
    display: inline;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.3rem;
    margin-left: 0.25rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 700;
    vertical-align: middle;
}

.faq-panel {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.25rem 1rem;
    background: #fff;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    padding: 0.85rem 0;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.6;
}

.compare-table-wrap {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    border-bottom: 1px solid var(--line);
    padding: 0.85rem;
    vertical-align: top;
    text-align: left;
}

.compare-thumb {
    width: 100%;
    max-width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.compare-actions {
    display: grid;
    gap: 0.5rem;
}

.notification-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
}

.notification-item.is-unread {
    border-color: rgba(31, 111, 120, 0.35);
    background: rgba(31, 111, 120, 0.04);
}

.notification-actions {
    display: grid;
    gap: 0.35rem;
    justify-items: end;
}

.link-btn {
    background: none;
    border: 0;
    color: var(--teal);
    cursor: pointer;
    padding: 0;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.deal-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.deal-badge-ending_soon {
    background: rgba(196, 163, 90, 0.18);
    color: #8a6d1d;
}

.deal-badge-scheduled {
    background: rgba(31, 111, 120, 0.12);
    color: var(--teal);
}

.deal-badge-expired {
    background: rgba(180, 60, 60, 0.12);
    color: #9b2c2c;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: end;
}

.search-filters .filter-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .search-filters {
        grid-template-columns: 1fr;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.blog-card {
    display: grid;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 31, 36, 0.08);
}

.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.blog-card .body {
    padding: 1rem;
    display: grid;
    gap: 0.45rem;
}

.blog-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.blog-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.blog-article .blog-body {
    line-height: 1.7;
    color: var(--ink);
}

.referral-panel .referral-code {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--teal);
}

.referral-url {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.75rem;
    background: #fff;
}

.badge-registered { background: rgba(31, 111, 120, 0.12); color: var(--teal); }
.badge-booked { background: rgba(196, 163, 90, 0.18); color: #8a6d1d; }

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
