:root {
    --bg: #fbf6f0;
    --bg-deep: #efe1d2;
    --paper: #fffaf3;
    --paper-soft: rgba(255, 250, 243, 0.82);
    --paper-strong: rgba(255, 251, 246, 0.94);
    --ink: #412f2f;
    --ink-soft: rgba(65, 47, 47, 0.72);
    --gold: #b8945a;
    --gold-soft: rgba(184, 148, 90, 0.18);
    --rose: #d8beb5;
    --burgundy: #72424b;
    --burgundy-deep: #5b313b;
    --line: rgba(98, 73, 63, 0.12);
    --shadow-soft: 0 18px 38px rgba(90, 64, 51, 0.08);
    --shadow: 0 30px 70px rgba(90, 64, 51, 0.12);
    --shadow-deep: 0 38px 100px rgba(90, 64, 51, 0.16);
    --radius-lg: 1.8rem;
    --radius-xl: 2.4rem;
    --radius-hero: 5rem 5rem 1.8rem 1.8rem;
    --safe-top: calc(env(safe-area-inset-top, 0px) + 16px);
    --safe-bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.92), transparent 28%),
        radial-gradient(circle at 12% 12%, rgba(216, 190, 181, 0.25), transparent 18%),
        radial-gradient(circle at 88% 18%, rgba(184, 148, 90, 0.18), transparent 20%),
        linear-gradient(180deg, #fdf8f2 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

a,
button {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
    background: none;
    padding: 0;
}

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ambient--one {
    background:
        radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.42), transparent 14%),
        radial-gradient(circle at 80% 74%, rgba(184, 148, 90, 0.12), transparent 18%);
}

.ambient--two {
    background:
        linear-gradient(90deg, rgba(255, 251, 246, 0.08), transparent 18%, transparent 82%, rgba(255, 251, 246, 0.08));
}

.container {
    width: min(100% - 1.5rem, 74rem);
    margin: 0 auto;
}

.section-spacing {
    position: relative;
    padding: 5rem 0;
}

.section-spacing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100% - 3rem, 12rem);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(184, 148, 90, 0.48), transparent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding-top: var(--safe-top);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.72);
    border: 1px solid rgba(184, 148, 90, 0.14);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    text-decoration: none;
}

.brand-mark__crest {
    display: inline-grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--burgundy);
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 251, 246, 0.96), rgba(241, 226, 211, 0.92));
    border: 1px solid rgba(184, 148, 90, 0.18);
    box-shadow: inset 0 0 0 1px rgba(184, 148, 90, 0.08);
    font-size: 1.1rem;
}

.brand-mark__text {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.brand-mark__text strong {
    display: block;
    font-size: 1rem;
}

.brand-mark__text small,
.section-kicker,
.template-style,
.process-step span,
.hero-card__tag,
.hero-card__footer,
.hero-marquee span,
.faq-question {
    font-family: "Segoe UI", system-ui, sans-serif;
}

.brand-mark__text small {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.nav-toggle {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    border: 1px solid rgba(184, 148, 90, 0.18);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1rem;
    height: 1px;
    background: var(--ink);
    transition: transform 0.28s ease;
}

.nav-toggle span + span {
    margin-top: 0.35rem;
}

.site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0.75rem;
    right: 0.75rem;
    display: grid;
    gap: 0.45rem;
    padding: 0.8rem;
    border-radius: 1.5rem;
    background: rgba(255, 250, 243, 0.96);
    border: 1px solid rgba(184, 148, 90, 0.12);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-0.45rem);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-nav a {
    text-decoration: none;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:active {
    background: rgba(184, 148, 90, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--burgundy), #8d5a64);
    color: #fff8f3;
    text-align: center;
}

.hero-section {
    position: relative;
    padding: 3.1rem 0 2.8rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 1rem auto auto 50%;
    width: min(90vw, 58rem);
    height: 24rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.58), transparent 68%);
    filter: blur(22px);
    pointer-events: none;
}

.hero-grid,
.intro-grid,
.showcase-grid,
.faq-grid,
.benefits-grid,
.templates-intro {
    display: grid;
    gap: 1.3rem;
}

.hero-copy,
.hero-showcase,
.section-heading,
.intro-point,
.category-card,
.template-card,
.process-step,
.benefit-card,
.testimonial-card,
.faq-item,
.cta-shell,
.showcase-visual,
.showcase-copy,
.templates-note {
    position: relative;
    z-index: 1;
}

.section-kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(65, 47, 47, 0.54);
}

.hero-copy h1,
.section-heading h2,
.hero-card h2,
.cta-shell h2 {
    margin: 0.8rem 0 0;
    letter-spacing: -0.045em;
    line-height: 0.95;
}

.hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 12vw, 6.2rem);
}

.hero-text,
.section-heading p,
.intro-point p,
.category-card p,
.template-body p,
.process-step p,
.benefit-card p,
.showcase-copy p,
.testimonials-grid p,
.faq-answer p,
.cta-shell p,
.footer-contact a,
.site-footer p,
.templates-note p,
.hero-note p {
    margin: 1rem 0 0;
    color: var(--ink-soft);
    font: 400 1rem/1.8 "Segoe UI", system-ui, sans-serif;
}

.hero-actions,
.hero-meta,
.categories-grid,
.templates-grid,
.process-grid,
.benefits-list,
.testimonials-grid,
.footer-grid {
    display: grid;
    gap: 1rem;
}

.button,
.template-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.45rem;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(184, 148, 90, 0.16);
    text-decoration: none;
    font: 600 0.92rem/1.2 "Segoe UI", system-ui, sans-serif;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.button:hover,
.button:active,
.template-link:hover,
.template-link:active {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff8f3;
    background: linear-gradient(135deg, var(--burgundy-deep), #8a5862);
    box-shadow: 0 20px 34px rgba(114, 66, 75, 0.2);
}

.button--ghost,
.template-link {
    background: rgba(255, 250, 243, 0.68);
    box-shadow: var(--shadow-soft);
}

.button--ghost:hover,
.template-link:hover {
    border-color: rgba(184, 148, 90, 0.3);
}

.hero-meta div,
.intro-point,
.category-card,
.template-card,
.process-step,
.benefit-card,
.testimonial-card,
.faq-item,
.cta-shell,
.showcase-copy,
.templates-note {
    background:
        linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(246, 236, 224, 0.92)),
        linear-gradient(135deg, rgba(184, 148, 90, 0.06), transparent 52%);
    border: 1px solid rgba(184, 148, 90, 0.12);
    box-shadow: var(--shadow);
}

.hero-meta div,
.intro-point,
.category-card,
.process-step,
.benefit-card,
.testimonial-card,
.faq-item {
    padding: 1.2rem 1rem;
    border-radius: 1.5rem;
}

.hero-meta strong,
.intro-point strong,
.category-card h3,
.template-body h3,
.process-step h3,
.benefit-card h3,
.testimonial-card strong {
    display: block;
    margin: 0;
}

.hero-meta strong,
.intro-point strong,
.category-card h3,
.process-step h3,
.benefit-card h3,
.testimonial-card strong {
    font-size: 1.08rem;
}

.hero-showcase {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 25rem;
    padding: 1rem 0;
}

.hero-envelope {
    position: absolute;
    inset: 1.8rem 0.8rem 2.8rem;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 28px 48px rgba(91, 49, 59, 0.12));
}

.hero-envelope__back,
.hero-envelope__flap,
.hero-envelope__letter,
.hero-envelope__seal {
    position: absolute;
}

.hero-envelope__back {
    inset: auto 0 0;
    height: 68%;
    border-radius: 0 0 2rem 2rem;
    background:
        linear-gradient(180deg, rgba(246, 236, 224, 0.96), rgba(230, 210, 190, 0.96));
    border: 1px solid rgba(184, 148, 90, 0.16);
}

.hero-envelope__flap {
    left: 0;
    right: 0;
    top: 14%;
    height: 52%;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background:
        linear-gradient(180deg, rgba(233, 214, 195, 0.98), rgba(214, 185, 162, 0.98));
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    transform-origin: top center;
    transform: perspective(800px) rotateX(8deg);
}

.hero-envelope__letter {
    left: 10%;
    right: 10%;
    top: 0;
    bottom: 24%;
    border-radius: 1.5rem 1.5rem 0.8rem 0.8rem;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 242, 232, 0.98));
    border: 1px solid rgba(184, 148, 90, 0.14);
    box-shadow: inset 0 0 0 1px rgba(184, 148, 90, 0.06);
}

.hero-envelope__letter::before,
.hero-envelope__letter::after {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    height: 1px;
    background: rgba(184, 148, 90, 0.16);
}

.hero-envelope__letter::before {
    top: 30%;
}

.hero-envelope__letter::after {
    top: 42%;
}

.hero-envelope__seal {
    left: 50%;
    bottom: 26%;
    width: 3.3rem;
    height: 3.3rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(169, 93, 112, 0.96), rgba(98, 41, 55, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 12px 22px rgba(91, 49, 59, 0.22);
}

.hero-envelope__seal::before {
    content: "M";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 247, 240, 0.88);
    font-size: 1rem;
    font-weight: 700;
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    border: 1px solid rgba(184, 148, 90, 0.16);
}

.hero-orbit--one {
    inset: 0.6rem 0.4rem 2.6rem;
    transform: rotate(-10deg);
}

.hero-orbit--two {
    inset: 2.2rem 1.3rem 0.8rem;
    transform: rotate(11deg);
    opacity: 0.54;
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 1.6rem 1.2rem;
    box-shadow: var(--shadow-deep);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: inherit;
    border: 1px solid rgba(184, 148, 90, 0.18);
    pointer-events: none;
}

.hero-card--front {
    z-index: 2;
    border-radius: var(--radius-hero);
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 40%),
        linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(242, 228, 214, 0.94));
}

.hero-card--back {
    position: absolute;
    inset: 1.5rem 1.4rem -0.6rem;
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(114, 66, 75, 0.16), rgba(184, 148, 90, 0.1));
    transform: rotate(-6deg);
}

.hero-card__tag {
    display: inline-flex;
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    background: rgba(184, 148, 90, 0.12);
    color: var(--burgundy);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-card h2 {
    max-width: 10ch;
    font-size: clamp(1.95rem, 8vw, 3.25rem);
}

.hero-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 148, 90, 0.16);
    color: rgba(65, 47, 47, 0.62);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-note {
    z-index: 3;
    width: min(18rem, 84%);
    margin-top: -1rem;
    margin-left: auto;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1.4rem;
    background: rgba(255, 250, 243, 0.72);
    border: 1px solid rgba(184, 148, 90, 0.14);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.hero-note p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
}

.hero-marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 1.4rem;
}

.hero-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.58rem 0.92rem;
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.6);
    border: 1px solid rgba(184, 148, 90, 0.14);
    color: rgba(65, 47, 47, 0.58);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 44rem;
}

.section-heading h2,
.cta-shell h2 {
    font-size: clamp(2rem, 8vw, 4rem);
}

.category-card--featured {
    background:
        linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(241, 223, 202, 0.92)),
        linear-gradient(135deg, rgba(184, 148, 90, 0.08), transparent 52%);
}

.category-badge {
    display: inline-flex;
    margin-bottom: 0.65rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(114, 66, 75, 0.1);
    color: var(--burgundy);
    font: 600 0.74rem/1.2 "Segoe UI", system-ui, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.templates-section {
    position: relative;
}

.templates-intro {
    margin-bottom: 1.4rem;
}

.templates-note {
    padding: 1.2rem 1rem;
    border-radius: 1.6rem;
}

.templates-note p {
    margin: 0;
}

.templates-grid {
    align-items: stretch;
}

.template-card {
    display: grid;
    overflow: hidden;
    border-radius: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.template-card:hover,
.template-card:active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
}

.template-preview {
    position: relative;
    min-height: 13rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.template-preview::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 10%;
    bottom: 24%;
    border-radius: 1.2rem 1.2rem 0.7rem 0.7rem;
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.88), rgba(248, 239, 229, 0.82));
    border: 1px solid rgba(255, 251, 246, 0.44);
    box-shadow: 0 18px 28px rgba(65, 47, 47, 0.08);
}

.template-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 250, 243, 0.08), transparent 24%, transparent 76%, rgba(65, 47, 47, 0.16)),
        radial-gradient(circle at top left, rgba(255, 250, 243, 0.24), transparent 28%);
}

.template-card::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 2.4rem;
    height: 2.4rem;
    z-index: 2;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(168, 89, 109, 0.94), rgba(98, 41, 55, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 18px rgba(91, 49, 59, 0.18);
}

.template-card::after {
    content: "";
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    height: 38%;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: linear-gradient(180deg, rgba(236, 219, 201, 0.72), rgba(214, 185, 162, 0.6));
    opacity: 0.44;
    pointer-events: none;
}

.template-preview--royal {
    background:
        linear-gradient(180deg, rgba(114, 66, 75, 0.18), rgba(114, 66, 75, 0.02)),
        linear-gradient(135deg, #f8efe5, #ead7c8 42%, #c6a27b);
}

.template-preview--editorial {
    background:
        linear-gradient(180deg, rgba(65, 47, 47, 0.2), rgba(65, 47, 47, 0.04)),
        linear-gradient(135deg, #fffaf4, #eadfce 38%, #d1ac8c);
}

.template-preview--romantic {
    background:
        linear-gradient(180deg, rgba(114, 66, 75, 0.14), rgba(114, 66, 75, 0.04)),
        linear-gradient(135deg, #fff8f3, #eedad4 40%, #cd9e98);
}

.template-preview--minimal {
    background:
        linear-gradient(180deg, rgba(184, 148, 90, 0.08), rgba(184, 148, 90, 0.02)),
        linear-gradient(135deg, #fffaf4, #f3e9dd 44%, #dcc9b7);
}

.template-preview--cinematic {
    background:
        linear-gradient(180deg, rgba(114, 66, 75, 0.18), rgba(65, 47, 47, 0.08)),
        linear-gradient(135deg, #f8efe8, #dbbaa7 42%, #8b5958);
}

.template-preview--floral {
    background:
        linear-gradient(180deg, rgba(216, 190, 181, 0.22), rgba(184, 148, 90, 0.08)),
        linear-gradient(135deg, #fffaf6, #efdbcf 42%, #d9b79d);
}

.template-body {
    display: grid;
    gap: 0.9rem;
    padding: 1.25rem 1.05rem 1.2rem;
}

.template-style {
    margin: 0;
    color: rgba(65, 47, 47, 0.54);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.template-body p {
    margin: 0;
}

.template-link {
    margin-top: 0.2rem;
}

.process-step span {
    display: inline-flex;
    margin-bottom: 0.7rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.benefits-list {
    grid-template-columns: 1fr;
}

.benefit-card {
    padding-top: 1.35rem;
}

.benefit-icon {
    display: inline-flex;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 251, 246, 0.96), rgba(241, 226, 211, 0.92));
    border: 1px solid rgba(184, 148, 90, 0.18);
    box-shadow: var(--shadow-soft);
}

.showcase-grid {
    align-items: center;
}

.showcase-visual {
    min-height: 23rem;
    padding: 1rem;
    border-radius: var(--radius-hero);
    background:
        linear-gradient(180deg, rgba(114, 66, 75, 0.14), rgba(65, 47, 47, 0.1)),
        linear-gradient(135deg, #fff7f1, #edd7c8 42%, #cfaa93);
    box-shadow: var(--shadow-deep);
}

.showcase-screen {
    position: relative;
    height: 100%;
    min-height: 21rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.36), transparent 32%),
        linear-gradient(180deg, rgba(255, 250, 243, 0.18), rgba(65, 47, 47, 0.14)),
        linear-gradient(135deg, #fffaf4, #ead7c8 44%, #b98e79);
    border: 1px solid rgba(255, 251, 246, 0.26);
}

.showcase-screen__letter {
    position: absolute;
    left: 15%;
    right: 15%;
    top: 14%;
    bottom: 16%;
    border-radius: 1.8rem 1.8rem 1rem 1rem;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(246, 235, 223, 0.92));
    box-shadow: 0 22px 32px rgba(65, 47, 47, 0.12);
    transform: rotate(-3deg);
}

.showcase-screen__letter::before,
.showcase-screen__letter::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    height: 1px;
    background: rgba(184, 148, 90, 0.2);
}

.showcase-screen__letter::before {
    top: 30%;
}

.showcase-screen__letter::after {
    top: 44%;
}

.showcase-screen__seal {
    position: absolute;
    right: 18%;
    bottom: 20%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(168, 89, 109, 0.96), rgba(98, 41, 55, 0.98));
    box-shadow: 0 14px 22px rgba(91, 49, 59, 0.2);
}

.showcase-copy {
    padding: 1.8rem 1.2rem;
    border-radius: 2rem;
}

.faq-grid {
    gap: 1.2rem;
}

.faq-list {
    display: grid;
    gap: 0.78rem;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.faq-plus {
    color: var(--gold);
    font-size: 1.25rem;
    transition: transform 0.24s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1rem 1rem;
    margin-top: 0;
}

.faq-item.is-open .faq-plus {
    transform: rotate(45deg);
}

.cta-shell {
    padding: 2rem 1.15rem;
    border-radius: var(--radius-hero);
    text-align: center;
}

.site-footer {
    padding: 1.8rem 0 calc(var(--safe-bottom) + 1rem);
    background: rgba(65, 47, 47, 0.04);
}

.footer-grid {
    padding: 1.4rem 0;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 0.45rem;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(98, 73, 63, 0.1);
    color: var(--ink-soft);
    font: 400 0.9rem/1.5 "Segoe UI", system-ui, sans-serif;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px) scale(0.988);
    filter: blur(8px);
    transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@keyframes floatOrbit {
    0%, 100% {
        transform: translateY(0) rotate(-8deg);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.44;
    }
    50% {
        opacity: 0.76;
    }
}

.hero-orbit--one {
    animation: floatOrbit 8s ease-in-out infinite;
}

.hero-orbit--two {
    animation: floatOrbit 10s ease-in-out infinite reverse;
}

.hero-note,
.hero-card--back {
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero-envelope__letter {
    animation: floatOrbit 9s ease-in-out infinite;
}

.hero-envelope__seal,
.showcase-screen__seal {
    animation: pulseGlow 5.5s ease-in-out infinite;
}

@media (min-width: 760px) {
    .container {
        width: min(100% - 2rem, 74rem);
    }

    .section-spacing {
        padding: 6.5rem 0;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .hero-section {
        padding: 4.8rem 0 3.6rem;
    }

    .hero-grid,
    .intro-grid,
    .showcase-grid,
    .faq-grid,
    .benefits-grid,
    .templates-intro {
        grid-template-columns: 1.02fr 0.98fr;
    }

    .hero-showcase {
        min-height: 33rem;
    }

    .hero-card--front {
        margin-right: 2rem;
    }

    .hero-card--back {
        inset: 2rem 0.8rem -0.8rem 5.1rem;
    }

    .hero-note {
        margin-top: -2.5rem;
        margin-right: 0.6rem;
    }

    .hero-actions {
        grid-template-columns: auto auto;
        justify-content: start;
    }

    .hero-meta {
        grid-template-columns: 1fr 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .templates-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid,
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 0.8fr 0.9fr;
        align-items: start;
    }
}
