:root {
    --text-muted: #a6aab1;
    --whatsapp: #25d366;
    --whatsapp-hover: #1ebe5c;
    --white: #fff;
}

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

html {
    font-family: "Poppins", Arial, sans-serif;
}

body {
    margin: 0;
    min-height: 100dvh;
    background: #000;
    color: #111;
}

.site {
    min-height: 100dvh;
    width: 100%;
}

.poster {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    padding-block: clamp(1.25rem, 4vh, 3rem);
}

.hero {
    background: #000;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: clamp(1.1rem, 2.4vw, 1.8rem) 1.2rem 0.65rem;
}

.logo {
    width: min(100%, 460px);
    height: auto;
    filter: none;
    cursor: pointer;
}

.booking-section {
    background: #000;
    padding: clamp(1rem, 2.8vw, 1.5rem) 1rem 0.9rem;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.9rem;
}

.booking-title {
    margin: 0;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0.22em;
    font-size: clamp(1.05rem, 3vw, 1.9rem);
    line-height: 1.4;
}

.app-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    max-width: 600px;
    margin: 0 auto;
}

.app-links a {
    display: inline-flex;
    text-decoration: none;
    width: min(100%, 165px);
}

.app-links a:hover,
.app-links a:focus-visible {
    opacity: 0.92;
}

.app-links img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
    margin: 0 auto;
}

.salon-code {
    margin: 0;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.22em;
    font-size: clamp(0.95rem, 2.6vw, 1.3rem);
    padding-right: 2.65rem;
}

.salon-code-wrap {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
}

.salon-code-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2.6rem;
    border: 1px solid #323845;
    border-radius: 999px;
    background: #10141c;
    padding: 0.55rem 0.85rem;
}

.copy-code-badge {
    position: absolute;
    right: 0.28rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.95rem;
    height: 1.95rem;
    border: 1px solid #454d5d;
    border-radius: 999px;
    background: #1a202b;
    cursor: pointer;
    padding: 0;
}

.copy-code-badge:hover,
.copy-code-badge:focus-visible {
    background: #232b39;
}

.copy-icon {
    position: relative;
    width: 0.82rem;
    height: 0.82rem;
    display: inline-block;
}

.copy-icon::before,
.copy-icon::after {
    content: "";
    position: absolute;
    border: 1.5px solid #e4e8ee;
    border-radius: 0.12rem;
    width: 100%;
    height: 100%;
}

.copy-icon::before {
    top: 0.14rem;
    left: -0.14rem;
    opacity: 0.85;
}

.copy-icon::after {
    top: -0.14rem;
    left: 0.14rem;
}

.copied-feedback {
    margin: 0;
    color: #a8dcb8;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-section {
    margin-top: clamp(1.8rem, 5vh, 3.8rem);
    padding: clamp(1.7rem, 5vw, 3rem) 1rem clamp(1.8rem, 5vw, 3.2rem);
    display: grid;
    justify-items: center;
    gap: 1.15rem;
}

.contact-title {
    margin: 0;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: clamp(1.25rem, 3.4vw, 2.1rem);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 260px);
    padding: 0.9rem 1.3rem;
    border-radius: 0.68rem;
    background: var(--whatsapp);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    font-size: clamp(0.95rem, 2.1vw, 1.1rem);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.2);
    transition: background-color 150ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
    background: var(--whatsapp-hover);
}

.whatsapp-button::before {
    content: "\1F4AC";
    margin-right: 0.45rem;
    line-height: 1;
    font-size: 1.2em;
}

.quote-section {
    margin-top: clamp(0.7rem, 2vh, 1.4rem);
    padding: 0.35rem 1rem clamp(1rem, 2.6vh, 1.8rem);
    display: grid;
    justify-items: center;
}

.quote-text {
    margin: 0;
    max-width: 760px;
    color: #8d94a1;
    font-size: clamp(0.86rem, 2.1vw, 1rem);
    letter-spacing: 0.02em;
    text-align: center;
    font-style: italic;
    line-height: 1.45;
}

.easter-egg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    display: grid;
    place-items: center;
    padding: 1rem;
    z-index: 999;
}

.easter-egg-modal {
    width: min(92vw, 420px);
    border: 1px solid #2f3747;
    border-radius: 1rem;
    background: #11161f;
    color: #f6f7f9;
    padding: 1rem 1rem 1.2rem;
    position: relative;
    text-align: center;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.easter-egg-close {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    border: 0;
    background: transparent;
    color: #d9dce2;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
}

.easter-egg-title {
    margin: 0.2rem 0 0.7rem;
    color: #ffd34d;
    font-size: 0.88rem;
    letter-spacing: 0.13em;
    line-height: 1.35;
}

.easter-egg-subtitle {
    margin: 0 0 0.45rem;
    color: #cfd5df;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.easter-egg-image {
    width: min(100%, 260px);
    height: auto;
    display: block;
    margin: 0 auto 0.55rem;
    border-radius: 0.65rem;
}

.easter-egg-message {
    margin: 0;
    line-height: 1.4;
    color: #edf0f5;
    font-size: 1.15rem;
}

@media (max-width: 420px) {
    .logo {
        width: min(100%, 340px);
    }

    .booking-title {
        letter-spacing: 0.18em;
    }

    .salon-code {
        letter-spacing: 0.16em;
    }

    .contact-title {
        letter-spacing: 0.16em;
    }
}
