@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --brand-black: #0f0f10;
    --brand-white: #ffffff;
    --brand-muted: #646464;
    --brand-soft: #f7f4ef;
    --brand-line: rgba(15, 15, 16, 0.08);
    --brand-accent: #ff0055;
    --brand-accent-dark: #d90049;
    --brand-focus: #ffd84d;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--brand-white);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--brand-black);
    background: var(--brand-white);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0;
}

a {
    color: inherit;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    background: var(--brand-white);
}

.navbar-logo {
    color: var(--brand-black);
    font-family: "DM Serif Display", serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.navbar-link {
    color: var(--brand-black);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-link:hover {
    color: var(--brand-accent);
}

.newsletter-page {
    min-height: auto;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    padding: clamp(2.7rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
    background: var(--brand-white);
    text-align: center;
}

.hero-copy {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--brand-accent);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: var(--brand-black);
    font-family: "DM Serif Display", serif;
    font-size: clamp(2.35rem, 4.4vw, 3.75rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero-subline {
    max-width: 720px;
    margin: 1.1rem auto 0;
    color: var(--brand-muted);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 500;
    line-height: 1.35;
}

.notice {
    max-width: 640px;
    margin: 1.4rem auto 0;
    padding: 0.95rem 1rem;
    border-left: 4px solid currentColor;
    background: var(--brand-soft);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.notice.success {
    color: #136b3b;
}

.notice.error {
    color: #a51d35;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 460px;
    margin: 2rem auto 1.5rem;
    text-align: left;
    align-items: end;
}

.form-field {
    display: grid;
    gap: 0.35rem;
}

.newsletter-form label {
    display: block;
}

.field-label {
    display: block;
    margin: 0 0 0.45rem 1.25rem;
    color: var(--brand-muted);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.newsletter-form input {
    width: 100%;
    min-height: 58px;
    border: 2px solid #e3e3e3;
    border-radius: 999px;
    padding: 0 1.35rem;
    background: var(--brand-white);
    color: var(--brand-black);
    font: inherit;
    font-size: 1.08rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(255, 0, 85, 0.14);
}

.newsletter-form input[aria-invalid="true"] {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(255, 0, 85, 0.14);
}

.field-help,
.field-error {
    display: block;
    padding: 0 1.25rem;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
}

.field-help {
    display: none;
    color: rgba(100, 100, 100, 0.72);
}

.form-field:focus-within .field-help {
    display: block;
}

.field-error {
    min-height: 0;
    color: var(--brand-accent);
}

.field-error:empty {
    display: none;
}

.whatsapp-consent {
    display: none;
    margin-top: 0.2rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(15, 15, 16, 0.1);
    border-radius: 16px;
    background: #fafafa;
    color: var(--brand-muted);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.whatsapp-consent.is-visible {
    display: block;
}

.whatsapp-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.newsletter-form .whatsapp-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    min-height: 0;
    margin: 0.05rem 0 0;
    border-radius: 4px;
    padding: 0;
    accent-color: var(--brand-accent);
    box-shadow: none;
}

.newsletter-form button {
    min-height: 58px;
    border: none;
    border-radius: 999px;
    padding: 0 2rem;
    background: var(--brand-accent);
    color: var(--brand-white);
    font: inherit;
    font-size: 1.22rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
    white-space: nowrap;
    width: 100%;
}

.newsletter-form button:hover:not(:disabled) {
    background: var(--brand-accent-dark);
    transform: translateY(-2px);
}

.newsletter-form button:focus-visible {
    outline: 3px solid var(--brand-focus);
    outline-offset: 4px;
}

.newsletter-form button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.home-about-section {
    position: relative;
    padding: clamp(3rem, 6vw, 5.25rem) 2rem clamp(3.25rem, 6vw, 5.75rem);
    background: var(--brand-black);
    color: var(--brand-white);
}

.home-about-container {
    display: grid;
    grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.75rem, 5vw, 4rem);
    width: min(100%, 860px);
    margin: 0 auto;
}

.home-about-image-wrap {
    position: relative;
}

.home-about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 999px;
    background: var(--brand-accent);
    filter: blur(64px);
    opacity: 0.34;
    z-index: 0;
}

.home-about-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 34px 74px rgba(0, 0, 0, 0.46);
}

.home-about-copy {
    max-width: 520px;
}

.home-about-name {
    margin: 0 0 1rem;
    color: var(--brand-white);
    font-family: "DM Serif Display", serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 1.02;
    text-transform: uppercase;
}

.home-about-copy p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.6;
}

.home-about-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 0.45rem;
    padding: 12px 26px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
    background: transparent;
    color: var(--brand-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-about-link::after {
    content: "→";
    font-weight: 700;
    transition: transform 0.2s ease;
}

.home-about-link:hover,
.home-about-link:focus-visible {
    border-color: var(--brand-white);
    background: var(--brand-white);
    color: var(--brand-black);
}

.home-about-link:hover::after,
.home-about-link:focus-visible::after {
    transform: translateX(3px);
}

.site-footer {
    padding: 0 0 2.6rem;
    background: var(--brand-black);
    color: rgba(255, 255, 255, 0.55);
}

.footer-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.12);
    color: var(--brand-white);
    transform: translateY(-2px);
}

.footer-social a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 3px;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a,
.footer-disclaimer-toggle {
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font: inherit;
    font-size: 0.82rem;
    text-decoration: none;
    cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-disclaimer-toggle:hover,
.footer-disclaimer-toggle:focus-visible {
    color: var(--brand-white);
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 760px;
    margin: 1.15rem auto 0;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.55;
}

.footer-disclaimer a {
    color: rgba(255, 255, 255, 0.76);
}

.footer-disclaimer a:hover,
.footer-disclaimer a:focus-visible {
    color: var(--brand-white);
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
}

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

@media (max-width: 900px) {
    body {
        font-size: 16px;
    }

    .navbar {
        padding: 1rem 1.25rem;
    }

    .navbar-logo {
        font-size: 1.15rem;
    }

    .navbar-links {
        gap: 0.85rem;
    }

    .navbar-link {
        font-size: 0.86rem;
    }

    .hero {
        width: 100%;
        min-height: auto;
        padding: 2.2rem 0 2.85rem;
    }

    h1 {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

    .hero-subline {
        font-size: 1rem;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
        margin-top: 1.45rem;
    }

    .newsletter-form button {
        width: 100%;
    }

    .home-about-container {
        grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
    }
}

@media (max-width: 520px) {
    .navbar {
        align-items: flex-start;
        gap: 0.8rem;
    }

    .navbar-links {
        max-width: 180px;
        justify-content: flex-end;
        flex-wrap: wrap;
        row-gap: 0.25rem;
    }

    .hero {
        width: 100%;
        padding: 1.9rem 0 2.6rem;
    }

    .hero-eyebrow {
        margin-bottom: 0.65rem;
    }

    h1 {
        font-size: clamp(1.9rem, 8vw, 2.2rem);
    }

    .hero-subline {
        font-size: 0.96rem;
        line-height: 1.32;
    }

    .newsletter-form input,
    .newsletter-form button {
        min-height: 54px;
    }

    .field-label {
        margin-left: 1rem;
    }

    .home-about-section {
        padding: 2.5rem 1rem 3rem;
    }

    .home-about-container {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        align-items: start;
    }

    .home-about-copy {
        max-width: none;
    }

    .home-about-image {
        width: 100%;
        border-radius: 10px;
    }

    .home-about-name {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
        margin-bottom: 0.75rem;
        letter-spacing: 0;
        text-transform: none;
    }

    .home-about-copy p {
        font-size: 0.94rem;
        line-height: 1.5;
    }

    .home-about-link {
        width: 100%;
        padding: 11px 14px;
        font-size: 0.84rem;
        text-align: center;
    }

    .footer-container {
        padding: 0 1rem;
    }
}
