@font-face {
    font-family: 'DFVN';
    src: url('/assets/fonts/DFVN-BAGEL-FAT-ONE.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maglony';
    src: url('/assets/fonts/1FTV-Maglony.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DFVN Bropella';
    src: url('/assets/fonts/DFVN%20BROPELLA.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #f02156;
    --color-section-title: var(--color-primary);
    --color-section-subtitle: var(--color-primary);
    --color-bg-pink: #f9a7bd;
    --color-bg-pink-strong: #f6839f;
    --color-panel-light: #fbd6f2;
    --color-cream: #ffeee3;
    --color-white: #ffffff;
    --color-brand-dark: var(--color-primary);
    --color-accent: var(--color-primary);
    --color-accent-strong: var(--color-primary);
    --color-text-on-pink: var(--color-primary);
    --color-text-muted-on-pink: rgba(240, 33, 86, 0.7);
    --color-text-body: #5b4550;
    --color-text-soft: #8a7480;
    --font-display: 'Maglony', 'Brush Script MT', cursive;
    --font-heading: 'DFVN', 'Be Vietnam Pro', sans-serif;
    --font-body: 'Montserrat', 'Be Vietnam Pro', 'Segoe UI', sans-serif;
    --font-header: 'Lexend', 'Be Vietnam Pro', sans-serif;
    --color-header: var(--color-primary);
    --font-serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
    --font-section-title: 'DFVN Bropella', var(--font-serif);
    --font-section-subtitle: var(--font-body);
    --fs-section-title: clamp(24px, 3.3vw, 44px);
    --fs-section-subtitle: clamp(15px, 1.4vw, 24px);
    --radius-pill: 999px;
    --radius-card: 24px;
    --radius-card-sm: 16px;
    --shadow-soft: 0 16px 40px rgba(168, 24, 80, 0.16);
    --shadow-card: 0 10px 24px rgba(168, 24, 80, 0.12);
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-text-body);
    background-color: var(--color-white);
    overflow-x: hidden;
    font-synthesis: none;
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.2;
    overflow-wrap: break-word;
}

p {
    margin: 0;
    overflow-wrap: break-word;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* sections size to their content; only the hero fills the first screen */
.section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    --section-py: 64px;
    padding: var(--section-py) 0;
}

/* landing sections below the hero get more breathing room between content and edges */
.hero ~ .section {
    --section-py: 100px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading {
    font-family: var(--font-section-title);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--color-section-title);
    font-size: 64px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.85);
}

.heading-script {
    font-family: var(--font-display);
    text-transform: none;
    font-size: 1.3em;
    line-height: 1;
    vertical-align: -0.06em;
}

.section-subtext {
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
    font-family: var(--font-section-subtitle);
    font-size: 24px;
    line-height: 1.65;
    color: var(--color-section-subtitle);
}

.section-header {
    margin-bottom: 40px;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 991px) {
    .section {
        --section-py: 48px;
    }

    .hero ~ .section {
        --section-py: 72px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-heading {
        font-size: clamp(34px, 6.2vw, 52px);
        line-height: 1.2;
    }

    .section-subtext {
        max-width: 680px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .section {
        --section-py: 40px;
    }

    .hero ~ .section {
        --section-py: 56px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-heading {
        font-size: clamp(26px, 7.8vw, 34px);
        text-wrap: balance;
    }

    .section-subtext {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.6;
    }
}
