* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f4f6f8;
    color: #1d252d;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.shell {
    width: min(1120px, calc(100% - 32px));
    margin: 36px auto;
}

.hero-panel {
    min-height: 360px;
    background: linear-gradient(rgba(16, 28, 38, .64), rgba(16, 28, 38, .64)), url("../audiovisuales1/assets/img/hero_home_1.jpg") center/cover;
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: 8px;
}

.hero-panel h1 {
    max-width: 720px;
    margin: 0 0 12px;
    font-size: clamp(36px, 6vw, 76px);
    line-height: .95;
}

.hero-panel p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
}

.eyebrow {
    margin: 0 0 8px;
    color: #aa8350;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button,
.ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    background: #aa8350;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.ghost {
    background: #edf1f4;
    color: #1d252d;
}

.full {
    width: 100%;
}

.list {
    margin-top: 28px;
}

.list article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #dce2e8;
}

.list span {
    display: block;
    color: #65717d;
    font-size: 13px;
}

.landing-page {
    --landing-gold: #c49a5c;
    --landing-gold-light: #e8c992;
    --landing-dark: #0f1923;
    --landing-dark-soft: #17212b;
    --landing-text: #1d252d;
    --landing-muted: #65717d;
    --landing-surface: #f7f9fb;
    --landing-radius: 14px;
    --landing-shadow: 0 24px 60px rgba(15, 25, 35, .10);
    --landing-shadow-lg: 0 32px 80px rgba(15, 25, 35, .18);
    background: var(--landing-surface);
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

.landing-page .eyebrow {
    color: var(--landing-gold);
    letter-spacing: .14em;
}

.landing-hero .eyebrow,
.landing-register .eyebrow {
    color: var(--landing-gold-light);
}

.landing-page h1,
.landing-page h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
}

.landing-page h1 em {
    font-style: italic;
    color: var(--landing-gold-light);
}

.landing-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(196, 154, 92, .18), transparent 60%),
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(255, 255, 255, .06), transparent 50%),
        linear-gradient(135deg, rgba(15, 25, 35, .92) 0%, rgba(15, 25, 35, .72) 45%, rgba(15, 25, 35, .55) 100%),
        url("../audiovisuales1/assets/img/hero_home_1.jpg") center/cover;
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(to top, var(--landing-surface), transparent);
    pointer-events: none;
}

.landing-nav,
.landing-hero-content,
.landing-main {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    transition: padding .3s ease, background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.landing-nav.is-scrolled {
    padding: 10px 20px;
    margin: 0 calc((100vw - min(1180px, calc(100% - 32px))) / -2 + 16px);
    width: min(1180px, calc(100% - 32px));
    border-radius: 999px;
    background: rgba(15, 25, 35, .82);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .24);
}

.landing-brand {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -.01em;
}

.landing-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
}

.landing-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

.landing-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}

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

.landing-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

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

.landing-nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.landing-nav-links a:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.landing-nav-cta {
    background: var(--landing-gold) !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.landing-nav-cta:hover {
    background: #b0884f !important;
}

.landing-nav-login {
    border: 1px solid rgba(255, 255, 255, .28);
}

.landing-actions,
.landing-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
    gap: 54px;
    align-items: center;
    align-self: center;
    padding: 48px 0 110px;
}

.landing-hero-copy {
    animation: landingFadeUp .8s ease both;
}

.landing-product-preview {
    animation: landingFadeUp .8s .15s ease both;
}

@keyframes landingFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-hero-content h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: 1.08;
    letter-spacing: -.02em;
}

.landing-hero-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.65;
}

.landing-actions {
    margin-top: 32px;
}

.landing-btn-primary {
    padding: 0 28px;
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--landing-gold), #a87d42);
    box-shadow: 0 8px 28px rgba(196, 154, 92, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.landing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(196, 154, 92, .45);
}

.landing-trust-row {
    margin-top: 28px;
}

.landing-trust-row span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .90);
    font-size: 13px;
    font-weight: 600;
}

.landing-trust-row svg {
    color: var(--landing-gold-light);
    flex-shrink: 0;
}

.landing-product-preview {
    position: relative;
    min-height: 480px;
}

.landing-preview-frame {
    position: relative;
    border-radius: var(--landing-radius);
    overflow: hidden;
    box-shadow: var(--landing-shadow-lg);
}

.landing-preview-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.landing-product-preview img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.landing-product-preview:hover img {
    transform: scale(1.04);
}

.landing-preview-panel {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    color: var(--landing-text);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(15, 25, 35, .20);
}

.landing-preview-panel span {
    display: block;
    margin-bottom: 6px;
    color: var(--landing-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.landing-preview-panel strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--landing-text);
}

.landing-preview-panel p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.5;
    font-size: 14px;
}

.landing-ghost {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .30);
    transition: background .2s ease, border-color .2s ease;
}

.landing-ghost:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .50);
}

.landing-main {
    padding-bottom: 20px;
}

.landing-proof {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: -48px;
}

.landing-proof-card,
.landing-split li,
.landing-card {
    border: 1px solid rgba(220, 226, 232, .8);
    border-radius: var(--landing-radius);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.landing-proof-card:hover,
.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow);
    border-color: rgba(196, 154, 92, .30);
}

.landing-proof-card {
    min-height: 160px;
    padding: 26px;
    box-shadow: var(--landing-shadow);
}

.landing-proof-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(196, 154, 92, .14), rgba(196, 154, 92, .06));
    color: var(--landing-gold);
}

.landing-proof span {
    display: block;
    margin-bottom: 8px;
    color: var(--landing-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.landing-proof strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
}

.landing-proof p,
.landing-split p,
.landing-showcase-copy p,
.landing-card span {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.6;
    font-size: 15px;
}

.landing-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    gap: 40px;
    align-items: center;
    padding: 56px 0 24px;
}

.landing-showcase-media {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 14px;
    align-items: end;
}

.landing-showcase-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--landing-radius);
    box-shadow: var(--landing-shadow);
    transition: transform .4s ease;
}

.landing-showcase-media img:hover {
    transform: scale(1.02);
}

.landing-showcase-media img:nth-child(2) {
    height: 300px;
}

.landing-showcase-copy h2,
.landing-split h2,
.landing-model h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.15;
    letter-spacing: -.02em;
}

.landing-showcase-copy ul {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.landing-showcase-copy li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid #e8edf2;
    color: var(--landing-text);
    font-weight: 600;
    font-size: 15px;
}

.landing-showcase-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-gold);
    transform: translateY(-50%);
}

.landing-demo {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    margin: 24px 0 30px;
    padding: 44px;
    border: 1px solid rgba(220, 226, 232, .88);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(196, 154, 92, .16), transparent 34%),
        linear-gradient(145deg, #fff 0%, #f7fafc 100%);
    box-shadow: var(--landing-shadow);
}

.landing-demo-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.landing-demo-copy p:not(.eyebrow) {
    margin: 0;
    color: var(--landing-muted);
    font-size: 16px;
    line-height: 1.65;
}

.landing-demo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.landing-demo-ghost {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid #d8dee7;
    background: #fff;
    color: var(--landing-text);
}

.landing-demo-board {
    position: relative;
    min-height: 440px;
}

.landing-demo-browser,
.landing-demo-card {
    overflow: hidden;
    border: 1px solid rgba(216, 222, 231, .95);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(28, 41, 54, .14);
}

.landing-demo-browser-main {
    position: absolute;
    inset: 0 8% 70px 0;
}

.landing-demo-bar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: #f3f6f9;
    border-bottom: 1px solid #e4e9ef;
}

.landing-demo-bar span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #c9d2dc;
}

.landing-demo-browser-main img {
    width: 100%;
    height: calc(100% - 34px);
    display: block;
    object-fit: cover;
}

.landing-demo-overlay {
    position: absolute;
    inset: 34px 0 0;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 24px;
    background: rgba(15, 25, 35, .38);
    color: #fff;
    text-align: center;
}

.landing-demo-overlay small {
    margin-bottom: 8px;
    color: #e8d3af;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.landing-demo-overlay strong {
    max-width: 520px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
}

.landing-demo-overlay div {
    width: min(420px, 78%);
    height: 42px;
    margin-top: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
}

.landing-demo-card {
    position: absolute;
    z-index: 2;
}

.landing-demo-card-about {
    right: 0;
    bottom: 0;
    width: 38%;
    padding: 8px;
}

.landing-demo-card-about img {
    width: 100%;
    height: 136px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.landing-demo-card-about strong {
    display: block;
    padding: 10px 6px 4px;
    font-size: 13px;
}

.landing-demo-card-gallery {
    left: 8%;
    bottom: 0;
    width: 46%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 8px;
}

.landing-demo-card-gallery img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 10px;
}

.landing-demo-card-gallery span {
    grid-column: 1 / -1;
    color: var(--landing-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.landing-split {
    display: grid;
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 48px 0 36px;
}

.landing-split > div:first-child p:not(.eyebrow) {
    margin: 0;
    max-width: 360px;
}

.landing-steps {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
}

.landing-step-num {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--landing-dark);
    color: #fff;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    line-height: 1;
}

.landing-steps li strong,
.landing-steps li > div span {
    display: block;
}

.landing-steps li strong {
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 700;
}

.landing-steps li > div span {
    color: var(--landing-muted);
    font-size: 14px;
    line-height: 1.55;
}

.landing-model {
    padding: 28px 0 40px;
}

.landing-page .section-heading {
    max-width: 640px;
    margin-bottom: 20px;
}

.landing-page .section-heading p:last-child {
    margin: 0;
    max-width: 580px;
    line-height: 1.6;
}

.landing-register {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: start;
    margin: 32px 0 64px;
    padding: 48px;
    border-radius: 20px;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(196, 154, 92, .12), transparent 60%),
        linear-gradient(145deg, var(--landing-dark) 0%, var(--landing-dark-soft) 100%);
    color: #fff;
    box-shadow: var(--landing-shadow-lg);
}

.landing-register h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.landing-register p:not(.eyebrow) {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.65;
}

.landing-form-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.landing-form-notes span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .90);
    font-size: 13px;
    font-weight: 600;
}

.landing-lead-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    background: #fff;
    color: var(--landing-text);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .20);
}

.landing-lead-form label {
    display: grid;
    gap: 7px;
    color: #3a4652;
    font-size: 13px;
    font-weight: 700;
}

.landing-lead-form input,
.landing-lead-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dce2e8;
    border-radius: 10px;
    padding: 0 14px;
    background: #fff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.landing-lead-form input:focus,
.landing-lead-form select:focus {
    outline: none;
    border-color: var(--landing-gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 92, .18);
}

.landing-lead-form .button {
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--landing-gold), #a87d42);
    font-size: 15px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.landing-lead-form .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(196, 154, 92, .35);
}

.landing-proof-card,
.landing-showcase,
.landing-demo,
.landing-split,
.landing-card,
.landing-register {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.landing-proof-card.is-visible,
.landing-showcase.is-visible,
.landing-demo.is-visible,
.landing-split.is-visible,
.landing-card.is-visible,
.landing-register.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-proof-card:nth-child(2) { transition-delay: .08s; }
.landing-proof-card:nth-child(3) { transition-delay: .16s; }
.landing-card:nth-child(2) { transition-delay: .08s; }
.landing-card:nth-child(3) { transition-delay: .16s; }

.landing-page .site-legal-footer {
    border-radius: 20px;
    margin-bottom: 48px;
    box-shadow: var(--landing-shadow);
}

.legal-accept {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px !important;
    align-items: start;
    padding: 12px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #f8fafc;
    color: #4d5a66 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.45;
}

.legal-accept input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin: 2px 0 0;
    padding: 0;
    accent-color: #aa8350;
}

.legal-accept a {
    color: #1d252d;
    font-weight: 900;
}

.recaptcha-note {
    margin: -2px 0 0;
    color: #65717d;
    font-size: 12px;
    line-height: 1.4;
}

.lead-message {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.lead-message.success {
    background: #e7f8ef;
    color: #17633a;
}

.lead-message.error {
    background: #fff0f0;
    color: #a12626;
}

.legal-page {
    background: #eef3f6;
}

.legal-shell {
    width: min(920px, calc(100% - 32px));
    margin: 32px auto;
}

.legal-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.legal-nav div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
}

.legal-nav a {
    color: #1d252d;
    font-weight: 800;
    text-decoration: none;
}

.legal-header,
.legal-section {
    padding: 24px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
}

.legal-header {
    margin-bottom: 14px;
}

.legal-header h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: .98;
}

.legal-header p:last-child,
.legal-section p {
    margin: 0;
    color: #4d5a66;
    line-height: 1.65;
}

.legal-section {
    margin-bottom: 12px;
}

.legal-section h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.legal-section a {
    color: #1d252d;
    font-weight: 800;
}

.cookie-consent[hidden],
.cookie-preferences-button[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(16, 28, 38, .38);
}

.cookie-consent__panel {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 20px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(16, 28, 38, .26);
}

.cookie-consent__eyebrow {
    margin: 0 0 6px;
    color: #aa8350;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cookie-consent h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.cookie-consent p {
    margin: 0;
    color: #4d5a66;
    line-height: 1.5;
}

.cookie-consent__links,
.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.cookie-consent__links a {
    color: #1d252d;
    font-size: 13px;
    font-weight: 800;
}

.cookie-consent__settings {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid #edf1f4;
    border-radius: 8px;
    background: #f8fafc;
}

.cookie-consent__settings label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #4d5a66;
    font-size: 14px;
    line-height: 1.45;
}

.cookie-consent__settings input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #aa8350;
}

.cookie-consent__settings strong {
    display: block;
    color: #1d252d;
}

.cookie-consent__actions {
    align-content: start;
    justify-content: flex-end;
    margin-top: 0;
}

.cookie-consent__actions button,
.cookie-preferences-button {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    background: #fff;
    color: #1d252d;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.cookie-consent__actions [data-cookie-accept],
.cookie-consent__actions [data-cookie-save] {
    border-color: #aa8350;
    background: #aa8350;
    color: #fff;
}

.cookie-preferences-button {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(16, 28, 38, .16);
}

.landing-examples {
    padding: 32px 0 82px;
}

.landing-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.landing-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(220, 226, 232, .8);
    border-radius: var(--landing-radius);
    background: #fff;
}

.landing-card strong {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--landing-text);
    font-size: 20px;
    font-weight: 600;
}

.landing-card a {
    width: fit-content;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    background: #1d252d;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.site-legal-footer {
    width: min(1180px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, .7fr) minmax(180px, .7fr);
    gap: 24px;
    margin: 0 auto 32px;
    padding: 26px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #17212b;
    color: #fff;
}

.legal-shell .site-legal-footer {
    width: 100%;
    margin-top: 18px;
}

.site-legal-footer strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.site-legal-footer h2 {
    margin: 0 0 10px;
    color: #d9c5aa;
    font-size: 13px;
    text-transform: uppercase;
}

.site-legal-footer p {
    max-width: 520px;
    margin: 0 0 10px;
    color: #c8d0d8;
    line-height: 1.55;
}

.site-legal-footer__copy {
    font-size: 13px;
}

.site-legal-footer a,
.site-legal-footer button {
    width: fit-content;
    min-height: 28px;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.admin-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    min-height: 100vh;
}

aside {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: auto;
    background: #17212b;
    color: #fff;
    padding: 28px;
}

aside h1 {
    margin: 28px 0 10px;
    font-size: 30px;
}

aside p {
    color: #b7c1cb;
}

.back {
    color: #c8d0d8;
    text-decoration: none;
}

.session-pill {
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 13px;
}

.session-pill a {
    color: #fff;
    font-weight: 700;
}

.admin-shortcuts {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.admin-shortcuts a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.admin-shortcuts a.is-active,
.admin-shortcuts a:first-child.is-active {
    background: #aa8350;
}

.editor {
    padding: 32px;
}

.admin-view {
    display: none !important;
}

.admin-view[hidden] {
    display: none !important;
}

.admin-view.is-active {
    display: block !important;
}

.admin-view.is-active.hotels-section,
.admin-view.is-active.tasks-section {
    display: grid !important;
}

.admin-section {
    max-width: 1040px;
    margin-bottom: 22px;
    padding: 22px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dce2e8;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.section-heading p:last-child {
    margin: 0;
    color: #65717d;
}

.metrics-panel {
    max-width: 1040px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.metric-card {
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dce2e8;
}

.metric-card span {
    display: block;
    color: #65717d;
    font-size: 13px;
    font-weight: 700;
}

.metric-card strong {
    display: block;
    margin-top: 6px;
    color: #1d252d;
    font-size: 34px;
    line-height: 1;
}

.metrics-table {
    max-width: 1040px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
}

.metrics-table > div {
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dce2e8;
    overflow: auto;
}

.metrics-table h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.metrics-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.metrics-table th,
.metrics-table td {
    padding: 9px 8px;
    border-bottom: 1px solid #edf1f4;
    text-align: left;
}

.metrics-table th {
    color: #65717d;
    font-size: 12px;
    text-transform: uppercase;
}

.review-list {
    display: grid;
    gap: 10px;
}

.review-item {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid #edf1f4;
    border-radius: 8px;
    background: #fbfcfd;
}

.review-item strong,
.review-item span {
    display: block;
}

.review-item div > span {
    margin-top: 3px;
    color: #65717d;
    font-size: 13px;
}

.review-item p {
    margin: 0;
    color: #4d5a66;
    font-size: 13px;
    line-height: 1.45;
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-actions a {
    color: #1d252d;
    font-size: 13px;
    font-weight: 800;
}

.tasks-section {
    display: grid;
    gap: 16px;
}

.tasks-empty,
.task-card {
    padding: 16px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
}

.tasks-empty strong {
    display: block;
    margin-bottom: 4px;
    color: #17633a;
    font-size: 18px;
}

.tasks-empty p {
    margin: 0;
    color: #65717d;
}

.task-list {
    display: grid;
    gap: 10px;
}

.task-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.task-card.is-reviewed {
    opacity: .72;
    background: #fbfcfd;
}

.task-main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.task-main h3 {
    margin: 0 0 5px;
    color: #1d252d;
    font-size: 16px;
}

.task-main p {
    margin: 0 0 6px;
    color: #4d5a66;
    font-size: 13px;
    line-height: 1.45;
}

.task-main span {
    display: block;
    color: #65717d;
    font-size: 12px;
}

.task-priority {
    width: fit-content;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.task-priority.alta {
    background: #fff0f0;
    color: #9f1d1d;
}

.task-priority.media {
    background: #fff0d9;
    color: #8a5a00;
}

.task-priority.baja {
    background: #eaf2ff;
    color: #2459a6;
}

.task-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.task-actions a,
.task-actions button {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
    color: #1d252d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.task-actions button {
    border-color: #1a73e8;
    background: #1a73e8;
    color: #fff;
}

.reviewed-tasks {
    padding-top: 6px;
}

.reviewed-tasks summary {
    cursor: pointer;
    color: #3a4652;
    font-size: 14px;
    font-weight: 800;
}

.reviewed-tasks .task-list {
    margin-top: 12px;
}

.site-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.site-checklist-card {
    padding: 16px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
}

.site-checklist-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.site-checklist-head h3 {
    margin: 0 0 4px;
    color: #1d252d;
    font-size: 18px;
}

.site-checklist-head span {
    color: #65717d;
    font-size: 12px;
    font-weight: 800;
}

.site-checklist-head > strong {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f1f5f9;
    color: #1d252d;
    font-size: 14px;
}

.site-checklist-items {
    display: grid;
    gap: 8px;
}

.site-checklist-items > div {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    background: #f8fafc;
}

.site-checklist-items span {
    align-self: start;
    padding: 5px 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
}

.site-checklist-items .is-ready span {
    background: #e7f8ef;
    color: #17633a;
}

.site-checklist-items .is-missing span {
    background: #fff0d9;
    color: #8a5a00;
}

.site-checklist-items strong {
    display: block;
    margin-bottom: 3px;
    color: #1d252d;
    font-size: 13px;
}

.site-checklist-items p {
    margin: 0;
    color: #65717d;
    font-size: 12px;
    line-height: 1.4;
}

.site-checklist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.site-checklist-actions a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
    color: #1d252d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.lead-board {
    display: grid;
    gap: 14px;
}

.lead-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 16px;
    padding: 16px;
    border: 1px solid #dce2e8;
    border-left: 5px solid #1a73e8;
    border-radius: 8px;
    background: #fff;
}

.lead-card-converted {
    border-left-color: #17633a;
}

.lead-card-archived {
    border-left-color: #8a94a0;
    background: #fbfcfd;
}

.lead-card-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
    margin-bottom: 12px;
}

.lead-card h3 {
    margin: 8px 0 0;
    color: #1d252d;
    font-size: 20px;
}

.lead-created {
    color: #65717d;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.lead-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.lead-contact-grid div {
    min-width: 0;
    padding: 10px;
    border: 1px solid #edf1f4;
    border-radius: 8px;
    background: #f8fafc;
}

.lead-contact-grid span {
    display: block;
    margin-bottom: 4px;
    color: #65717d;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.lead-contact-grid a,
.lead-contact-grid strong {
    color: #1d252d;
    font-size: 13px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.lead-followup-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px auto;
    gap: 10px;
    align-items: end;
}

.lead-followup-form label {
    display: grid;
    gap: 6px;
    color: #4d5a66;
    font-size: 12px;
    font-weight: 800;
}

.lead-followup-form textarea,
.lead-followup-form input {
    width: 100%;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
}

.lead-followup-form textarea {
    resize: vertical;
}

.lead-followup-form button,
.lead-card-actions a,
.lead-card-actions button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
    color: #1d252d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.lead-followup-form button,
.lead-card-actions a,
.lead-card-actions .primary-action {
    border-color: #1a73e8;
    background: #1a73e8;
    color: #fff;
}

.lead-card-actions {
    display: grid;
    align-content: start;
    gap: 8px;
}

.lead-card-actions form,
.lead-card-actions button,
.lead-card-actions a {
    width: 100%;
}

.welcome-box {
    max-width: 1040px;
    margin-bottom: 22px;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dce2e8;
}

.welcome-box h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.welcome-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}

.welcome-summary div {
    padding: 12px;
    border: 1px solid #edf1f4;
    border-radius: 8px;
    background: #f8fafc;
}

.welcome-summary span {
    display: block;
    margin-bottom: 4px;
    color: #65717d;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.welcome-summary strong {
    color: #1d252d;
    overflow-wrap: anywhere;
}

.welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.welcome-actions a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    background: #1a73e8;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.welcome-actions a + a {
    background: #fff;
    color: #1a73e8;
    border: 1px solid #1a73e8;
}

.quick-create-section {
    border: 2px solid #aa8350;
    background: #fffaf2;
}

.quick-create-section form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quick-create-section button {
    align-self: end;
}

.hotels-section {
    display: grid;
    gap: 16px;
}

.hotels-heading {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
}

.hotels-heading strong {
    white-space: nowrap;
    color: #1d252d;
    font-size: 15px;
}

.hotel-search {
    display: grid;
    gap: 8px;
}

.hotel-search label {
    color: #3a4652;
    font-size: 13px;
    font-weight: 800;
}

.hotel-search input {
    max-width: 520px;
}

.hotel-filters {
    display: grid;
    grid-template-columns: 1fr 1.2fr repeat(2, .9fr) auto auto;
    gap: 10px;
    align-items: end;
    padding: 12px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #f8fafc;
}

.hotel-filters label {
    display: grid;
    gap: 6px;
}

.hotel-filters input,
.hotel-filters select {
    min-height: 40px;
}

.filter-check {
    min-height: 40px;
    display: flex !important;
    align-items: center;
    gap: 8px !important;
    padding: 0 10px;
    border: 1px solid #cfd7df;
    border-radius: 6px;
    background: #fff;
}

.filter-check input {
    width: auto;
    min-height: auto;
}

.hotels-table-wrap {
    max-height: 520px;
    overflow: auto;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
}

.hotels-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.hotels-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f8fafc;
    color: #65717d;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
}

.hotels-table th,
.hotels-table td {
    padding: 12px;
    border-bottom: 1px solid #edf1f4;
    vertical-align: middle;
}

.hotels-table tr.active {
    background: #fff4df;
}

.hotels-table td strong,
.hotels-table td span {
    display: block;
}

.hotels-table td span {
    margin-top: 3px;
    color: #65717d;
}

.status-pill {
    width: fit-content;
    margin: 0 !important;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-pill.published {
    background: #e7f8ef;
    color: #17633a;
}

.status-pill.draft {
    background: #fff0d9;
    color: #8a5a00;
}

.status-pill.lead-new {
    background: #fff4df;
    color: #855a13;
}

.status-pill.lead-contacted {
    background: #e8f1ff;
    color: #245aa5;
}

.status-pill.lead-converted {
    background: #e7f8ef;
    color: #17633a;
}

.status-pill.lead-archived {
    background: #edf1f4;
    color: #65717d;
}

.booking-warning {
    width: fit-content;
    margin-top: 6px !important;
    padding: 4px 7px;
    border-radius: 999px;
    background: #fff0f0;
    color: #9f1d1d !important;
    font-size: 11px;
    font-weight: 800;
}

.hotel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.lead-actions {
    align-items: flex-start;
}

.hotel-actions form {
    max-width: none;
    margin: 0;
}

.hotel-actions .domain-inline-form,
.hotel-actions .booking-inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hotel-actions .domain-inline-form input,
.hotel-actions .booking-inline-form input {
    width: 190px;
    min-height: 32px;
    padding: 0 9px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 12px;
}

.hotel-actions .booking-inline-form input {
    width: min(360px, 100%);
}

.hotel-actions a,
.hotel-actions button {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 0;
    border-radius: 6px;
    background: #edf1f4;
    color: #1d252d;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.hotel-actions a:first-child {
    background: #aa8350;
    color: #fff;
}

.hotel-actions .unpublish-action {
    background: #fff0f0;
    color: #9f1d1d;
}

.hotel-actions .publish-action {
    background: #e7f8ef;
    color: #17633a;
}

.hotel-actions .delete-action {
    background: #7f1d1d;
    color: #fff;
}

.hotel-empty {
    margin: 0;
    padding: 18px;
    color: #65717d;
}

.welcome-box p {
    margin-top: 0;
    color: #65717d;
}

.welcome-box textarea {
    min-height: 220px;
    font-family: Consolas, monospace;
}

form {
    max-width: 1040px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
}

.form-header h2 {
    margin: 0;
    font-size: 32px;
}

fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 18px;
    padding: 22px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
}

legend {
    padding: 0 8px;
    font-weight: 700;
}

label {
    display: grid;
    gap: 7px;
    color: #3a4652;
    font-size: 13px;
    font-weight: 700;
}

.toggle-field {
    display: flex !important;
    grid-column: 1 / -1;
    align-items: center;
    gap: 10px !important;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #f8fafc;
}

.toggle-field input {
    width: auto;
    min-height: auto;
    margin: 0;
}

.compact-toggle {
    grid-column: auto;
    align-self: end;
}

.field-note {
    align-self: end;
    margin: 0;
    color: #65717d;
    font-size: 13px;
}

.booking-priority-fieldset {
    border: 2px solid #aa8350;
    background: #fffaf2;
}

.booking-url-admin,
.booking-url-final {
    display: grid;
    gap: 10px;
}

.booking-url-admin > span,
.booking-url-final > span {
    display: inline-flex;
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    background: #17212b;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.booking-url-final {
    padding: 14px;
    border: 1px solid #ead7b8;
    border-radius: 8px;
    background: #fff;
}

.booking-url-final code {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    color: #1d252d;
    font-size: 12px;
    line-height: 1.45;
}

input,
textarea,
select {
    width: 100%;
    min-height: 43px;
    border: 1px solid #cfd7df;
    border-radius: 6px;
    padding: 10px 12px;
    color: #1d252d;
    font: inherit;
    font-weight: 400;
}

textarea {
    resize: vertical;
}

.room-grid {
    display: grid;
    grid-template-columns: 1.1fr .7fr 1.4fr;
    grid-column: 1 / -1;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #edf1f4;
}

.room-edit-card {
    grid-template-columns: .7fr 1fr 1fr;
    padding: 14px;
    border: 1px solid #edf1f4;
    border-radius: 8px;
    background: #f8fafc;
}

.room-edit-card > strong {
    align-self: center;
    color: #aa8350;
}

.room-description-field,
.room-image-field {
    grid-column: 1 / -1;
}

.room-detail-admin {
    grid-column: 1 / -1;
    padding: 12px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #fff;
}

.room-detail-admin summary {
    cursor: pointer;
    color: #1d252d;
    font-weight: 800;
}

.room-detail-admin[open] {
    display: grid;
    gap: 12px;
}

.room-detail-admin label {
    display: grid;
    gap: 6px;
}

.room-facility-admin {
    display: grid;
    gap: 10px;
}

.room-facility-admin > strong {
    color: #3a4652;
}

.room-facility-row {
    grid-template-columns: .9fr 1.4fr;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: .7fr 1fr .7fr 1.5fr;
    grid-column: 1 / -1;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #edf1f4;
}

.admin-services-field {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
}

.admin-services-field > span {
    color: #3a4652;
    font-size: 13px;
    font-weight: 700;
}

.admin-dynamic-service-list {
    display: grid;
    gap: 10px;
}

.admin-service-row {
    display: grid;
    grid-template-columns: .8fr 1fr 1.4fr auto;
    gap: 12px;
    align-items: end;
    padding: 12px;
    border: 1px solid #edf1f4;
    border-radius: 8px;
    background: #f8fafc;
}

.admin-service-row[hidden] {
    display: none !important;
}

.admin-service-add,
.admin-service-remove {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    font-weight: 800;
    cursor: pointer;
}

.admin-service-add {
    justify-self: start;
    color: #17633a;
    border-color: #b7e4ca;
    background: #f2fbf6;
}

.admin-service-remove {
    color: #9f1d1d;
    border-color: #f0b8b8;
    background: #fff8f8;
}

.notice {
    max-width: 1040px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    background: #e7f8ef;
    color: #17633a;
    font-weight: 700;
}

.save {
    min-width: 180px;
    margin-bottom: 32px;
}

.db-error {
    margin-top: 18px !important;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 6px;
    font-family: Consolas, monospace;
    font-size: 13px !important;
}

@media (max-width: 880px) {
    .hero-panel,
    .form-header,
    .hotels-heading,
    .list article {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-nav {
        flex-wrap: wrap;
    }

    .landing-nav-toggle {
        display: flex;
    }

    .landing-nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 12px;
        border-radius: 16px;
        background: rgba(15, 25, 35, .95);
        backdrop-filter: blur(16px);
    }

    .landing-nav-links.is-open {
        display: flex;
    }

    .landing-nav-links a {
        justify-content: center;
        min-height: 44px;
    }

    .landing-nav.is-scrolled {
        margin: 0 auto;
        border-radius: 0;
        width: min(1180px, calc(100% - 32px));
    }

    .admin-layout,
    .landing-proof,
    .landing-showcase,
    .landing-showcase-media,
    .landing-demo,
    .landing-split,
    .landing-cards,
    .landing-hero-content,
    .landing-register,
    .metrics-panel,
    .metrics-table,
    .quick-create-section form,
    .hotel-filters,
    .welcome-summary,
    .site-checklist-grid,
    .lead-card,
    .lead-contact-grid,
    .lead-followup-form,
    .admin-service-row,
    .task-card,
    .task-main,
    fieldset,
    .testimonial-grid,
    .room-grid {
        grid-template-columns: 1fr;
    }

    .task-actions {
        justify-content: flex-start;
    }

    aside {
        position: static;
        height: auto;
    }

    .landing-hero {
        min-height: auto;
    }

    .landing-hero-content {
        padding: 32px 0 72px;
    }

    .landing-hero-content h1 {
        font-size: clamp(32px, 8vw, 44px);
    }

    .site-legal-footer {
        grid-template-columns: 1fr;
    }

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

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__actions button {
        flex: 1 1 140px;
    }

    .landing-product-preview {
        min-height: auto;
    }

    .landing-product-preview img {
        height: 320px;
    }

    .landing-proof {
        margin-top: -28px;
    }

    .landing-showcase {
        padding-top: 48px;
    }

    .landing-showcase-media img,
    .landing-showcase-media img:nth-child(2) {
        height: 220px;
    }

    .landing-demo {
        padding: 28px 20px;
    }

    .landing-demo-board {
        min-height: auto;
        display: grid;
        gap: 12px;
    }

    .landing-demo-browser-main,
    .landing-demo-card {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .landing-demo-browser-main {
        height: 330px;
    }

    .landing-demo-card-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .landing-register {
        padding: 28px 20px;
    }

    .landing-lead-form {
        padding: 20px;
    }
}
