@font-face {
    font-family: 'Scriptina';
    src: url('fonts/akaDora.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* warm cream + rose palette — back to the elegant version */
    --paper: #FDF7EE;
    /*FDF7EE*/
    --cream: #eae3d9;
    /*F7EDDC*/
    --cream-d: #fffcf7;
    /*D9B8C0*/
    --rose: #92a37c;
    /*C17B8E*/
    --rose-d: #444d39;
    /*8E4A5E*/
    /*--rose-d: #3F5147*8/
    --rose-l:  #eae3d9; /*EDD8DF*/
    --rose-vl: #eae3d9;
    /*FAF3F5*/
    --rose-v2: #92a37c41;
    --butter: #f0e1d4;
    /* E8C898 */
    --ink: #080808;
    /*2C2025*/
    --ink-m: #6B5059;
    --ink-faint: #9A8088;
    --border: #E4D5D9;
    --script: 'Scriptina', 'Caveat', cursive;
    --serif: 'Playfair Display', Georgia, serif;
    --body: 'Jost', system-ui, sans-serif;
    --hand: 'Caveat', cursive;
    --sans: 'Manrope', system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
    /* warm texture */
    background-image:
        radial-gradient(circle at 15% 20%, rgba(232, 200, 152, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(193, 123, 142, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(232, 200, 152, 0.04) 0%, transparent 40%);
}

/* paper grain */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.25 0 0 0 0 0.2 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--rose-d);
    text-decoration: none;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2 {
    font-family: var(--script);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: 0;
}

h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
}

h1 {
    font-size: clamp(3.4rem, 8.5vw, 5.6rem);
}

h1 em,
h2 em {
    font-style: normal;
    color: var(--rose-d);
    font-weight: 400;
}

h2 {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    margin-bottom: 1.4rem;
}

h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

p {
    color: var(--ink-m);
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.2rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 500;
    color: var(--ink);
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: 5.5rem 0;
    position: relative;
    scroll-margin-top: 130px;
}

.section+.section {
    border-top: 1px solid var(--border);
}

/* alternating section backgrounds for breathing rhythm */
.bg-white {
    background: #FFFFFF;
}

.bg-paper2 {
    background: #FFFCF6;
}

.bg-cream {
    background: var(--cream);
}

.label {
    display: inline-block;
    font-family: var(--hand);
    font-size: 2.25rem;
    color: var(--rose-d);
    margin-bottom: 0.5rem;
    transform: rotate(-1.5deg);
}

.label-sans {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose-d);
    margin-bottom: 1rem;
    transform: none;
}

.ornament {
    text-align: center;
    margin: 2.5rem 0;
    color: var(--rose-l);
    letter-spacing: 0.6em;
    font-size: 0.85rem;
    user-select: none;
}

.divider-img {
    margin-inline: auto;
    height: 100px;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1.5px solid var(--rose-d);
    color: white;
    background: var(--rose-d);
    transition: all 0.25s;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background: var(--rose);
    transform: translateY(-1px);
}

.btn.solid {
    background: var(--rose);
    color: var(--paper);
}

.btn.solid:hover {
    background: var(--rose-d);
    border-color: var(--rose);
}

.btn.full {
    width: 100%;
    justify-content: center;
}

.btn.ink {
    border-color: var(--ink);
    color: var(--ink);
}

.btn.ink:hover {
    background: var(--ink);
    color: var(--paper);
}

.hero-link {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--ink-m);
    text-decoration: none;
    border-bottom: 1px solid var(--rose-l);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.hero-link:hover {
    color: var(--rose-d);
    border-color: var(--rose-d);
}

/* ─── NAV ─── */
.logo-img {
    height: 60px;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.site-header {
    position: sticky;
    top: 39px;
    z-index: 100;
    background: var(--paper);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
    color: var(--rose-d);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo,
.site-nav a {
    color: var(--rose-d);
    text-decoration: none;

}

.site-logo {
    font-family: var(--script);
    font-size: 2.2rem;
    white-space: nowrap;
    line-height: 1;
}

.site-nav {
    display: flex;
    gap: 1.7rem;
    list-style: none;
    flex-wrap: wrap;
}

.site-nav a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--ink-m);
    transition: color 0.2s;
}

.site-nav a:hover {
    color: black;
}

.site-nav a.ig-link {
    border: 1px solid currentColor;
    padding: 0.35rem 0.7rem;
    transition: background 0.2s, color 0.2s;
}

/* ─── STATIC SHIPPING BANNER ─── */
.mail-banner {
    position: sticky;
    top: 0;
    z-index: 100;
    background: black;
    color: white;
    padding: 5px 0;
    text-align: center;
}

.mail-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.banner-content {
    display: flex;
    align-items: baseline;
    gap: 1.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-headline {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--paper);
    white-space: nowrap;
    margin: 0;
    font-weight: 300;
}

.banner-headline em {
    font-family: var(--script);
    font-style: normal;
    font-size: 1.55rem;
    color: var(--rose-l);
    vertical-align: middle;
    margin-right: 0.15rem;
}

.banner-headline strong {
    font-weight: 500;
    color: var(--paper);
    letter-spacing: 0.01em;
}

.banner-scarcity {
    font-family: var(--body);
    font-size: 0.7rem;
    color: white;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0;
    padding: 0.25rem 0.9rem;
    border: 1px solid rgba(217, 184, 192, 0.4);
    white-space: nowrap;
}

.banner-cta {
    font-family: var(--body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0;
    padding: 0.25rem 0.9rem;
    border: 1px solid black;
    white-space: nowrap;
    background: var(--rose);
    color: black;
    font-weight: 300;
}

.banner-cta:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
}

/* ─── HERO ─── */
.hero-label {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose-d);
    margin-bottom: 1rem;
    transform: none;
    text-align: center;
}

.floating-kocicka {
    position: absolute;
    width: 160px;
    bottom: -35px;
    left: 320.7px;
    rotate: 1090deg;
}

.hero {
    padding: 4.5rem 0 4.5rem;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, var(--rose-vl), transparent 70%),
        var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    position: relative;
}

.hero-left h1 {
    margin-bottom: 0.4rem;
    letter-spacing: 0;
}

.hero-subtitle {
    font-family: var(--hand);
    font-size: 1.9rem;
    color: var(--ink-m);
    margin-bottom: 1.8rem;
    transform: rotate(-1deg);
    margin-left: 6px;
    line-height: 1;
}

.hero-lead {
    font-size: 1.08rem;
    color: var(--ink-m);
    margin-bottom: 2rem;
    max-width: 46ch;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* hero painting + decorations */
.hero-right {
    position: relative;
}

.painting-frame {
    aspect-ratio: 4/5;
    background: var(--cream);
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.04),
        0 30px 60px -25px rgba(44, 32, 37, 0.3),
        0 18px 30px -18px rgba(44, 32, 37, 0.18);
    transform: rotate(1.5deg);
    position: relative;
}

.painting-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stamp-note {
    position: absolute;
    top: -22px;
    left: -32px;
    width: 110px;
    height: 110px;
    background: var(--paper);
    border: 1px solid var(--border);
    transform: rotate(-7deg);
    box-shadow: 0 10px 22px -10px rgba(44, 32, 37, 0.2);
    z-index: 3;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hand);
    font-size: 1.1rem;
    color: var(--ink-m);
    text-align: center;
    line-height: 1.25;
}

.postmark {
    position: absolute;
    bottom: -22px;
    right: -18px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    border: 2px dashed var(--rose-d);
    color: var(--rose-d);
    transform: rotate(-10deg);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-align: center;
    background: rgba(253, 247, 238, 0.7);
    text-transform: uppercase;
}

.postmark .big {
    font-family: var(--hand);
    font-size: 1.5rem;
    letter-spacing: 0;
    margin: 2px 0;
    text-transform: none;
}

.floating-envelope {
    position: absolute;
    width: 170px;
    opacity: 0.85;
    z-index: 4;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 8px 14px rgba(44, 32, 37, 0.18));
}

.floating-envelope.one {
    top: -6%;
    right: -10%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-12px) rotate(-4deg);
    }
}

/* ─── DECORATIVE FLOWERS DIVIDER ─── */
.flowers-divider {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 1.5rem auto 0.5rem;
    opacity: 0.9;
    height: auto;
}

.flowers-divider.tight {
    margin: 0 auto;
    padding: 0;
    border: 0;
    max-width: 1100px;
    width: 100%;
    display: block;
}

.flowers-strip {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    opacity: 0.7;
}

.flowers-strip img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ─── WHAT IS ─── */
.what-is {
    text-align: center;
}

.what-is .container {
    max-width: 760px;
}

.what-is h2 {
    margin-bottom: 1.2rem;
}

.what-is .lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--ink-m);
    margin-bottom: 1.4rem;
    line-height: 1.55;
}

.lead-bold {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
    margin-top: 1.6rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.4rem 1.2rem;
    position: relative;
}

.lead-bold::before,
.lead-bold::after {
    min-width: 100px;
    height: 100px;
    position: absolute;
    display: block;
    background-size: 100px;
    background-repeat: no-repeat;
}

.lead-bold::before {
    background-image: url('dopis1-orez.png');
    left: -120px;
}

.lead-bold::after {
    background-image: url('dopis2-orez.png');
    right: -120px;
    top: 0;
    rotate: 38deg;
}

#pro-koho {
    background-color: var(--cream);
}

/* ─── EXAMPLE / WHAT'S INSIDE ─── */
.example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.example-photo {
    position: relative;
}

.example-photo .frame {
    aspect-ratio: 4/3.2;
    background: linear-gradient(135deg, var(--cream), var(--rose-vl));
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.04),
        0 24px 50px -22px rgba(44, 32, 37, 0.25);
    transform: rotate(-1.2deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-faint);
    font-family: var(--hand);
    font-size: 1.25rem;
    text-align: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.example-photo .main-frame {
    aspect-ratio: 3/4;
}

.example-photo .second-frame {
    aspect-ratio: 4/3;
    transform: rotate(2.4deg);
    margin-top: -8.5rem;
    margin-left: 45%;
    width: 50%;
    position: relative;
    z-index: 2;
}

.example-photo .frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 40%, var(--rose) 0%, transparent 25%),
        radial-gradient(circle at 70% 60%, var(--butter) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, var(--rose-l) 0%, transparent 25%);
    opacity: 0.3;
}

.example-photo .frame.has-image::before {
    display: none;
}

.example-photo .frame.has-image {
    padding: 0;
    background: var(--cream);
}

.example-photo .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.example-photo .placeholder-text {
    position: relative;
    z-index: 2;
}

.photo-hint {
    font-family: var(--hand);
    font-size: 1rem;
    color: var(--ink-faint);
    text-align: center;
    margin-top: 0.6rem;
    font-style: italic;
}

.example-photo-knodl {
    rotate: 5deg;
}

.example-photo .corner-tape {
    position: absolute;
    width: 100px;
    height: 26px;
    background: rgba(232, 200, 152, 0.4);
    border: 1px dashed rgba(232, 200, 152, 0.6);
    z-index: 2;
}

.example-photo .corner-tape.tl {
    top: -10px;
    left: 20%;
    transform: rotate(-8deg);
}

.example-photo .corner-tape.br {
    bottom: -10px;
    right: 15%;
    transform: rotate(6deg);
}

.example h2 {
    margin-bottom: 1rem;
}

.example ul.what-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

ul.what-list li::marker {
    content: none;
}

.example ul.what-list li {
    list-style: none;
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(44, 32, 37, 0.15);
    color: var(--ink-m);
    font-size: 1rem;
}

.example ul.what-list li:last-child {
    border: none;
}

.example-img {
    margin-left: -21px;
}

/* ─── HOW IT WORKS (from old version - circle steps) ─── */
.how-it-works {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-it-works .container {
    max-width: 1080px;
}

.how-it-works h2 {
    text-align: center;
}

.how-it-works .intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 3rem;
}

.steps::before {
    content: '';
    position: absolute;
    top: 2.6rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--rose-l);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    padding: 0 1.2rem;
    text-align: center;
}

.step-num {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    background: var(--paper);
    border: 1.5px solid var(--rose-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--rose-d);
    margin: 0 auto 1.2rem;
    transition: all 0.3s;
}

.step:hover .step-num {
    background: var(--rose);
    border-color: var(--rose-d);
    transform: translateY(-3px);
    color: black;
}

.step-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.step-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-m);
    line-height: 1.6;
}

.steps-note {
    margin-top: 2.5rem;
    padding: 1rem 1.4rem;
    background: var(--paper);
    border-left: 3px solid var(--rose);
    color: var(--ink-m);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-note strong {
    color: var(--ink);
}

/* ─── SUBSCRIPTION TIERS ─── */
.tiers-section {
    padding: 5.5rem 0;
}

.tiers-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.tiers-intro {
    max-width: 60ch;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tier {
    border: 1px solid var(--border);
    background: var(--paper);
    padding: 2rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(44, 32, 37, 0.15);
}

.tier.featured {
    border-color: var(--rose-d);
    background: var(--rose-v2);
}

.tier-badge {
    position: absolute;
    top: -0.7rem;
    left: 1.4rem;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
}

.tier-badge.b-rose {
    background: var(--rose-d);
    color: var(--paper);
}

.tier-badge.b-ink {
    background: var(--ink);
    color: var(--paper);
}

.tier-emoji {
    font-family: var(--hand);
    font-size: 1.5rem;
    color: var(--rose-d);
    margin-bottom: 0.2rem;
    line-height: 1;
    display: none;
}

.tier-name {
    font-family: var(--script);
    font-size: 2.6rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
    line-height: 1;
    font-weight: 400;
}

.tier-price {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--rose-d);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.tier-price span {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ink-m);
}

.tier-desc {
    font-size: 0.92rem;
    color: var(--ink-m);
    margin: 0.5rem 0 1rem;
    font-style: italic;
    font-family: var(--serif);
}

.tier-list {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    flex: 1;
}

.tier-list li {
    font-size: 0.92rem;
    color: var(--ink-m);
    padding-left: 1.1rem;
    position: relative;
    font-weight: 300;
    line-height: 1.5;
}

.tier-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-size: 0.7rem;
    top: 4px;
}

/* ─── WHEN DATE CARD ─── */
.when {
    text-align: center;
    padding: 5rem 0;
    background-color: var(--rose);
}

.date-card {
    display: inline-block;
    padding: 2.5rem 4rem;
    border: 1px solid var(--border);
    background: var(--paper);
    position: relative;
    margin: 1.5rem 0;
    box-shadow: 0 12px 30px -15px rgba(44, 32, 37, 0.18);
}

.date-card .day {
    font-family: var(--serif);
    font-size: 5.5rem;
    line-height: 1;
    color: var(--ink);
    font-weight: 500;
}

.date-card .month {
    font-family: var(--hand);
    font-size: 2rem;
    color: var(--rose-d);
    margin-top: 0.4rem;
}

.date-card::before,
.date-card::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.date-card::before {
    top: -6px;
    left: -6px;
    background: var(--rose);
    border: 1px solid var(--rose-d);
}

.date-card::after {
    bottom: -6px;
    right: -6px;
    background: var(--butter);
    border: 1px solid var(--rose-d);
}

/* ─── SIGN UP ─── */
.signup {
    background: var(--rose-d);
    color: var(--paper);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.signup h2 {
    color: var(--paper);
}

.signup h2 em {
    color: var(--rose);
}

.signup p {
    color: rgba(253, 247, 238, 0.75);
    max-width: 560px;
    margin: 0 auto 2rem;
}

.signup .label {
    color: var(--rose);
}

.signup-form {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.signup-form input {
    flex: 1;
    min-width: 240px;
    padding: 0.95rem 1.4rem;
    border: 1px solid rgba(253, 247, 238, 0.22);
    background: transparent;
    color: var(--paper);
    font-family: var(--body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.signup-form input::placeholder {
    color: rgba(253, 247, 238, 0.4);
}

.signup-form input:focus {
    border-color: var(--rose);
}

.signup-form button {
    padding: 0.95rem 2rem;
    background: var(--rose);
    color: var(--ink);
    border: none;
    font-family: var(--body);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.signup-form button:hover {
    background: var(--paper);
}

.archive .container {
    max-width: 1200px;
}

.archive .intro {
    text-align: center;
    margin-bottom: 3rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.archive-card {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border);
}

.archive-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── FAQ ─── */
#faq {
    padding-bottom: 0;
}

.sunka-img {
    height: 100px;
    margin-inline: auto;
    margin-top: 2.5rem;
}

.faq .container {
    max-width: 800px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

details {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    cursor: pointer;
}

details summary {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    gap: 1rem;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--rose-d);
    transition: transform 0.3s;
    flex-shrink: 0;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details:hover summary {
    color: var(--rose-d);
}

details p {
    margin-top: 0.9rem;
    font-size: 0.98rem;
    color: var(--ink-m);
}

/* ─── ABOUT ─── */
.about .container {
    max-width: 1080px;
}

.about .intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.about-card .icon {
    font-family: var(--hand);
    font-size: 2.2rem;
    color: var(--rose);
    margin-bottom: 0.3rem;
    line-height: 1;
    transform: rotate(-2deg);
    display: inline-block;
}


.about-card h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.about-card p {
    font-size: 0.98rem;
}
.about-card img {
    width: 90%;
    margin-bottom: 1rem;
    margin-inline: auto;
}

#about {
    padding-bottom: 0;
}

.divider {
    margin-top: 5.5rem;
    height: 100px;
    background-repeat: repeat-x;
    background-size: auto 100px;
    background-image: url('lem2-rez.png');
    margin-bottom: -7px;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--cream);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.site-footer .container {
    max-width: 1080px;
}

.footer-logo {
    width: 100px;
    margin-inline: auto;
    margin-bottom: 1rem;
}

.footer-brand {
    font-family: var(--script);
    font-size: 3rem;
    color: var(--rose-d);
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.footer-tag {
    font-family: var(--hand);
    font-size: 1.2rem;
    color: var(--ink-m);
    margin-bottom: 1.4rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-socials a,
.footer-socials span {
    color: var(--ink-m);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--rose-d);
}

.footer-copy {
    color: black;
    font-size: 0.9rem;
}



/* ─── ANIMATIONS ─── */
.hero-left>* {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
}

.hero-left>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-left>*:nth-child(2) {
    animation-delay: 0.22s;
}

.hero-left>*:nth-child(3) {
    animation-delay: 0.34s;
}

.hero-left>*:nth-child(4) {
    animation-delay: 0.46s;
}

.hero-left>*:nth-child(5) {
    animation-delay: 0.58s;
}

.hero-right {
    opacity: 0;
    animation: fadeIn 1.2s ease 0.4s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu-checkbox {
    display: none;
}

    .mobile-content {
        display: none;
    }

    .scroll-top {
        display: none;
    }

/* ─── RESPONSIVE ─── */
@media (min-width: 1055px) {
    .lead-bold::after,
    .lead-bold::before {
        content: "";
    }

    .mobile-menu {
        display: none;
    }
}

@media (max-width: 1054px) {

    .banner-content {
        flex-direction: column;
        align-items: center;
        gap: .3rem;
    }

    .mail-banner {
        padding: 0;
    }

    .banner-scarcity.secondary {
        display: none;;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-envelope {
        width: 130px;
    }

    .example {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .steps::before {
        display: none;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .archive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mail-banner .container {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.4rem 1rem;
    }

    .site-header {
        top: 76px;
        padding: .5rem;
    }

    nav {
        display: none;
    }

    .site-header .container {
        flex-direction: column;
        gap: .5rem;
        padding-inline: .5rem;
    }

    .mobile-menu {
        display: block;
        height: 30px;
        width: 30px;
        cursor: pointer;
    }

    .menu-checkbox:checked ~ nav {
        display: block;
    }

    .site-nav {
        gap: 1rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .scroll-top {
        display: block;
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        height: 90px;
        width: 90px;
        z-index: 9;
        filter: invert(26%) sepia(38%) saturate(274%) hue-rotate(45deg) brightness(93%) contrast(88%);
    }

    .scroll-top:hover {
        filter: invert(63%) sepia(6%) saturate(1176%) hue-rotate(44deg) brightness(97%) contrast(93%);
    }
}

@media (max-width: 520px) {
    .mobile-content {
        display: block;
    }
    .steps {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form input {
        width: 100%;
        min-width: 0;
    }

    .signup-form button {
        width: 100%;
    }

    .date-card {
        padding: 2rem 2.5rem;
    }

    .date-card .day {
        font-size: 4rem;
    }
}