/* Coming soon — lookbook hero + glass panel */
:root {
    --navy: #2c3e50;
    --navy-deep: #1e2d3a;
    --cream: #f7f5f0;
    --cream-glass: rgba(255, 253, 248, 0.72);
    --ink: #1a1f26;
    --muted: rgba(26, 31, 38, 0.72);
    --accent: #2c3e50;
    --accent-hover: #34495e;
    --whatsapp: #25d366;
    --error: #c0392b;
    --success: #1e8449;
    --radius: 18px;
    --radius-pill: 999px;
    --shadow: 0 24px 60px rgba(30, 45, 58, 0.35);
    --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--navy-deep);
    line-height: 1.55;
}

.page {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Full-viewport background */
.hero-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(145deg, var(--navy-deep) 0%, #3d5a6c 45%, #c4a77d 100%);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.35s ease-in-out;
    transform: scale(1.04);
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.02);
}

@media (prefers-reduced-motion: no-preference) {
    .hero-slide.is-active {
        animation: heroKenBurns 28s ease-in-out infinite alternate;
    }
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.02) translate(0%, 0%);
    }
    100% {
        transform: scale(1.1) translate(-1.2%, -0.8%);
    }
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(30, 45, 58, 0.82) 0%, rgba(30, 45, 58, 0.45) 42%, rgba(30, 45, 58, 0.25) 100%),
        linear-gradient(to top, rgba(20, 28, 36, 0.55), transparent 38%);
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-scrim {
        animation: scrimDrift 14s ease-in-out infinite alternate;
    }
}

@keyframes scrimDrift {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.92;
    }
}

.shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
}

.page:has(.brand) .shell {
    padding-top: clamp(4.25rem, 13vw, 6.25rem);
}

.grid {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
}

@media (min-width: 900px) {
    .grid {
        grid-template-columns: 1fr minmax(300px, 400px);
        gap: 3rem 4rem;
    }
}

.intro {
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.brand {
    position: fixed;
    top: clamp(1rem, 3vw, 1.75rem);
    left: clamp(1rem, 3vw, 1.75rem);
    z-index: 2;
    display: inline-block;
    margin: 0;
    line-height: 0;
    text-decoration: none;
}

.site-logo {
    display: block;
    height: clamp(3.6rem, 14vw, 6.25rem);
    width: auto;
    max-width: min(320px, 78vw);
    object-fit: contain;
    object-position: left top;
    filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.35));
}

@media (prefers-reduced-motion: no-preference) {
    .brand {
        animation: fadeRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0s backwards;
    }

    .intro .badge {
        animation:
            fadeRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s backwards,
            badgeGlow 4.5s ease-in-out 0.95s infinite alternate;
    }

    .intro h1 {
        animation: fadeRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s backwards;
    }

    .intro .lead {
        animation: fadeRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s backwards;
    }

    .intro .slide-dots {
        animation: fadeRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.38s backwards;
    }
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
    to {
        box-shadow: 0 0 24px 2px rgba(255, 255, 255, 0.08);
    }
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 600;
    line-height: 1.12;
    margin: 0 0 0.85rem;
    letter-spacing: -0.02em;
}

.h1-sub {
    display: block;
    font-weight: 500;
    opacity: 0.92;
    font-size: 0.92em;
}

.lead {
    font-size: 1.05rem;
    max-width: 36ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
}

.slide-dots {
    display: flex;
    gap: 0.45rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.slide-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.55);
}

.slide-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

.panel {
    width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    .panel {
        animation: fadeRise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.18s backwards;
    }
}

.card {
    background: var(--cream-glass);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.55rem 1.4rem 1.65rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: no-preference) {
    .card {
        animation: cardFloat 6s ease-in-out infinite;
    }
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@supports not (backdrop-filter: blur(1px)) {
    .card {
        background: rgba(255, 253, 248, 0.94);
    }
}

.card h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 1.05rem;
    font-weight: 600;
    color: var(--navy);
}

.form-row {
    margin-bottom: 1rem;
}

.form-row:last-of-type {
    margin-bottom: 0;
}

label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

label .opt {
    font-weight: 400;
    color: var(--muted);
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.68rem 0.9rem;
    font: inherit;
    border: 1px solid rgba(44, 62, 80, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.2);
}

textarea {
    min-height: 88px;
    resize: vertical;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.15rem;
    font: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s, filter 0.12s, box-shadow 0.12s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.35);
}

.btn-primary:hover {
    filter: brightness(1.08);
    background: var(--accent-hover);
}

@media (prefers-reduced-motion: no-preference) {
    .btn-primary:hover,
    .btn-wa:hover {
        transform: translateY(-2px);
    }
}

.btn-wa {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
    filter: brightness(1.06);
}

.btn-wa svg {
    flex-shrink: 0;
}

.divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.35rem 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(44, 62, 80, 0.15);
}

.wa-hint {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

#notify {
    scroll-margin-top: clamp(5.5rem, 16vw, 7.5rem);
}

.alert {
    padding: 0.75rem 0.95rem;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.alert--flash {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem 1.2rem;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    border-radius: var(--radius);
}

.alert-text {
    margin: 0;
    flex: 1;
}

.alert-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(30, 132, 73, 0.2);
    color: #145a32;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
}

.alert-icon--warn {
    background: rgba(192, 57, 43, 0.18);
    color: var(--error);
}

@media (prefers-reduced-motion: no-preference) {
    .alert--flash.alert-success {
        animation: feedbackIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }

    .alert--flash.alert-error {
        animation: feedbackIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }
}

@keyframes feedbackIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.alert-success {
    background: rgba(30, 132, 73, 0.14);
    color: var(--success);
    border: 1px solid rgba(30, 132, 73, 0.28);
}

.alert-success.alert--flash {
    background: linear-gradient(135deg, #f4fbf7 0%, #e8f5ee 100%);
    color: #0d4d26;
    border: 2px solid #1e8449;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.alert-error {
    background: rgba(192, 57, 43, 0.1);
    color: var(--error);
    border: 1px solid rgba(192, 57, 43, 0.22);
}

.alert-error.alert--flash {
    background: linear-gradient(135deg, #fff8f7 0%, #fdedeb 100%);
    color: #922b21;
    border: 2px solid #c0392b;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.footer-note {
    margin-top: 1.15rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 900px) {
    .footer-note {
        text-align: right;
    }
}
