/* ═══════════════════════════════════════════
    TOKENS
═══════════════════════════════════════════ */
:root {
    /* Core palette — extracted from the watercolor identity */
    --ivory:        #F2EDE4;
    --ivory-warm:   #EBE7DC;
    --parchment:    #E6DDD0;
    --sand:         #D8C8B7;

    --navy:         #182140;
    --navy-soft:    #1B2F42;
    --navy-light:   rgba(24, 33, 64, 0.7);

    --celeste:      #7ABED4;
    --celeste-soft: #A8D5E5;
    --celeste-pale: #C8E4EE;

    --rose:         #D4899E;
    --rose-soft:    #E0A8B8;
    --rose-pale:    #EEDAE0;

    --gold:         #C8A84E;
    --copper:       #B67F4E;
    --copper-light: rgba(182, 127, 78, 0.3);

    --leaf:         #7A8E68;
    --leaf-soft:    #98A888;

    /* Sunset palette — afternoon ceremony */
    --sunset-peach:   #F4C6A0;
    --sunset-rose:    #E8A0A0;
    --sunset-gold:    #E8C77B;
    --sunset-lavender:#D4B0C8;
    --sunset-warm:    #F0D6B8;

    --text:         #1a1a1a;
    --text-soft:    #3d3d3d;

    /* Typography */
    --font-display:  'Italiana', 'Didot', 'Bodoni MT', serif;
    --font-serif:    'Cormorant Garamond', 'Georgia', serif;
    --font-heading:  'Marcellus', 'Georgia', serif;
    --font-body:     'Plus Jakarta Sans', 'Trebuchet MS', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 12vh, 160px);
    --content-width: min(1100px, 90vw);

    /* Radii & Shadows */
    --radius: 18px;
    --shadow-soft: 0 14px 40px rgba(24, 33, 64, 0.10);
    --shadow-glow: 0 0 60px rgba(200, 168, 78, 0.15);
}

/* ═══════════════════════════════════════════
    RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ═══════════════════════════════════════════
    PRELOADER
═══════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__monogram {
    width: clamp(120px, 20vw, 200px);
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader__text {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--navy-soft);
    opacity: 0.6;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.97); }
    50%      { opacity: 1;   transform: scale(1); }
}

/* ═══════════════════════════════════════════
    NAVIGATION
═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
    background: rgba(242, 237, 228, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(24, 33, 64, 0.06);
    padding-top: 12px;
    padding-bottom: 12px;
}

.nav__logo {
    width: 42px;
    height: auto;
    transition: transform 0.3s ease;
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__links {
    display: flex;
    gap: clamp(16px, 3vw, 36px);
    list-style: none;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--copper);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--copper);
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--navy);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:nth-child(3) { bottom: 0; }

.nav__toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ═══════════════════════════════════════════
    HERO
═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: clamp(80px, 12vh, 140px);
    overflow: hidden;
    background: var(--ivory);
}

.hero__sky {
    position: absolute;
    inset: 0;
}

.hero__sky img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Gradient overlay to blend sky into ivory */
.hero__sky::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--ivory), transparent);
    z-index: 2;
}

/* Top fade for sky */
.hero__sky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(to bottom, var(--ivory), transparent);
    z-index: 2;
}

.hero__floating {
    position: absolute;
    pointer-events: none;
}

.hero__angel {
    width: clamp(120px, 18vw, 240px);
    right: 4%;
    top: 12%;
    opacity: 0.9;
    filter: drop-shadow(0 6px 18px rgba(24, 33, 64, 0.1));
}

.hero__doves {
    width: clamp(130px, 20vw, 260px);
    left: 2%;
    top: 16%;
    opacity: 0.9;
    filter: drop-shadow(0 6px 18px rgba(24, 33, 64, 0.1));
}

.hero__content {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.hero__monogram {
    width: clamp(160px, 28vw, 320px);
    margin-bottom: 32px;
    filter: drop-shadow(0 8px 30px rgba(122, 190, 212, 0.2));
}

.hero__names {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    font-weight: 400;
    color: var(--navy);
    letter-spacing: 0.08em;
    line-height: 1.15;
}

.hero__ampersand {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 0.5em;
    color: var(--copper);
    margin: 4px 0;
    letter-spacing: 0;
}

.hero__date {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--navy-soft);
}

.hero__location {
    margin-top: 8px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--navy-light);
    letter-spacing: 0.04em;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--navy-soft);
}

.hero__scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--navy-soft), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════
    GOLD PARTICLES (floating sparkles)
═══════════════════════════════════════════ */
.particles {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(100vh) scale(0); }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ═══════════════════════════════════════════
    SECTION SHARED STYLES
═══════════════════════════════════════════ */
.section {
    position: relative;
    padding: var(--section-pad) 0;
}

.section__inner {
    width: var(--content-width);
    margin: 0 auto;
}

.section__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--copper);
    text-align: center;
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--navy-light);
    text-align: center;
    max-width: 50ch;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Decorative separator */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 48px auto;
    max-width: 200px;
}

.separator__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sand), transparent);
}

.separator__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--copper);
    opacity: 0.5;
}

/* ═══════════════════════════════════════════
    NOSSA HISTÓRIA
═══════════════════════════════════════════ */
.historia {
    background: var(--ivory);
    overflow: hidden;
}

.historia__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.historia__illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.historia__illustration img {
    width: clamp(200px, 80%, 340px);
    filter: drop-shadow(0 12px 40px rgba(24, 33, 64, 0.08));
}

/* Glow behind the angel illustration */
.historia__illustration::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 168, 78, 0.12), transparent 70%);
    z-index: 0;
}

.historia__illustration img {
    position: relative;
    z-index: 1;
    mix-blend-mode: multiply;
}

.historia__text {
    max-width: 480px;
}

.historia__text h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.historia__text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.historia__text p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
    CERIMÔNIA
═══════════════════════════════════════════ */
.cerimonia {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-warm) 100%);
    overflow: hidden;
}

.cerimonia__hero {
    position: relative;
    width: min(900px, 85vw);
    margin: 0 auto 60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.cerimonia__hero img {
    width: 100%;
    height: auto;
}

/* Decorative frame overlay */
.cerimonia__hero::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: calc(var(--radius) - 6px);
    z-index: 2;
    pointer-events: none;
}

.cerimonia__details {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* Floral frame around ceremony details */
.cerimonia__frame {
    position: relative;
    padding: clamp(40px, 6vw, 80px);
}

.cerimonia__frame-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.cerimonia__frame-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.55;
}

.cerimonia__frame-content {
    position: relative;
    z-index: 1;
}

.cerimonia__nossa-senhora {
    width: clamp(80px, 14vw, 140px);
    margin: 0 auto 24px;
    opacity: 0.7;
    filter: drop-shadow(0 4px 20px rgba(200, 168, 78, 0.15));
    mix-blend-mode: multiply;
}

.cerimonia__info {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 8px;
}

.cerimonia__info strong {
    font-weight: 600;
    display: block;
    font-size: 1.1em;
    margin-bottom: 4px;
}

.cerimonia__address {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-top: 16px;
}

/* ═══════════════════════════════════════════
    RECEPÇÃO
═══════════════════════════════════════════ */
.recepcao {
    background: linear-gradient(180deg,
    #EDE4D8 0%,
    #EDE2D4 10%,
    #EEE0D2 20%,
    #EEDFD0 30%,
    #EDDCCE 40%,
    #ECDACC 50%,
    #EBD8CC 60%,
    #E9D6CC 70%,
    #E8D5CC 80%,
    #E6D4CC 90%,
    #E5D3CC 100%);
    color: var(--navy);
    position: relative;
    overflow: hidden;
}

/* Soft sunset watercolor overlay */
.recepcao::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse at 25% 25%, rgba(240, 214, 184, 0.08), transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(232, 200, 180, 0.07), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(220, 200, 210, 0.06), transparent 50%);
    pointer-events: none;
}

.recepcao .section__eyebrow { color: var(--copper); }
.recepcao .section__title { color: var(--navy); }
.recepcao .section__subtitle { color: rgba(24, 33, 64, 0.6); }

.recepcao__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.recepcao__card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: clamp(24px, 3vw, 36px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(24, 33, 64, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.recepcao__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 40px rgba(24, 33, 64, 0.1);
}

.recepcao__card-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
}

.recepcao__card h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}

.recepcao__card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-soft);
}

/* ═══════════════════════════════════════════
    PRESENÇA (RSVP)
═══════════════════════════════════════════ */
.presenca {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-warm) 50%, var(--ivory) 100%);
    overflow: hidden;
}

.presenca__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.presenca__illustration {
    display: flex;
    justify-content: center;
    position: relative;
}

.presenca__illustration img {
    width: clamp(160px, 70%, 260px);
    filter: drop-shadow(0 8px 30px rgba(24, 33, 64, 0.06));
    mix-blend-mode: multiply;
}

.presenca__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.presenca__form h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 4px;
}

.presenca__form p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 14px 18px;
    border: 1px solid var(--sand);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--celeste);
    box-shadow: 0 0 0 3px rgba(122, 190, 212, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-rsvp {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    border-radius: 999px;
    background: var(--navy);
    color: var(--ivory);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    align-self: flex-start;
}

.btn-rsvp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 33, 64, 0.2);
    background: var(--navy-soft);
}

.btn-rsvp:active {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
    FOOTER
═══════════════════════════════════════════ */
.footer {
    background: var(--ivory);
    text-align: center;
    padding: var(--section-pad) 0 60px;
    position: relative;
    overflow: hidden;
}

.footer__illus-wrap {
    position: relative;
    width: clamp(180px, 28vw, 300px);
    margin: 0 auto 40px;
}

.footer__illustration {
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(24, 33, 64, 0.06));
}

.footer__names {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--navy);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer__date {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--navy-light);
    margin-bottom: 32px;
}

.footer__monogram {
    width: 120px;
    margin: 0 auto 24px;
    opacity: 0.4;
}

.footer__credits {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-soft);
    opacity: 0.4;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
    WATERCOLOR SECTION DIVIDERS
═══════════════════════════════════════════ */
.divider-watercolor {
    width: 100%;
    height: clamp(40px, 8vw, 80px);
    margin: 0;
    border: none;
}

.divider-watercolor--to-dark {
    height: clamp(80px, 16vw, 180px);
    background: linear-gradient(to bottom, var(--ivory-warm) 0%, #ECE3D8 30%, #EDE4D8 60%, #EDE4D8 100%);
}

.divider-watercolor--to-light {
    height: clamp(80px, 16vw, 180px);
    background: linear-gradient(to bottom, #E5D3CC 0%, #E8D8D0 25%, #EADED6 50%, #EBE3DA 75%, var(--ivory-warm) 100%);
}

/* ═══════════════════════════════════════════
    SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }

/* ═══════════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .nav__links { display: none; }
    .nav__toggle { display: block; }

    .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(242, 237, 228, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    }

    .nav__links.open .nav__link {
    font-size: 1rem;
    letter-spacing: 0.25em;
    }

    .historia__grid {
    grid-template-columns: 1fr;
    text-align: center;
    }

    .historia__text {
    max-width: 100%;
    order: 2;
    }

    .historia__illustration {
    order: 1;
    }

    .recepcao__grid {
    grid-template-columns: 1fr;
    }

    .presenca__layout {
    grid-template-columns: 1fr;
    text-align: center;
    }

    .presenca__illustration {
    order: -1;
    }

    .btn-rsvp {
    align-self: center;
    }

    .hero__angel {
    right: 1%;
    top: 10%;
    width: clamp(90px, 22vw, 150px);
    }

    .hero__doves {
    left: 0%;
    top: 12%;
    width: clamp(100px, 24vw, 160px);
    }
}

@media (max-width: 520px) {
    .hero__names {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    .hero__monogram {
    width: clamp(130px, 40vw, 200px);
    }

    .cerimonia__frame {
    padding: clamp(30px, 8vw, 50px);
    }
}