:root {
    --cream: #fbf7f1;
    --paper: #fffdf9;
    --rose: #8f5f69;
    --rose-dark: #6d424c;
    --rose-soft: #ead9dc;
    --sage: #81907d;
    --sage-soft: #e2e8df;
    --sand: #d9c3aa;
    --ink: #31282a;
    --muted: #72676a;
    --line: #e8ded5;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(75, 51, 56, 0.12);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 105px 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 16px;
    top: 16px;
    transform: translateY(-150%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
}

.skip-link:focus {
    transform: translateY(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;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(251, 247, 241, 0.92);
    border-bottom: 1px solid rgba(232, 222, 213, 0.85);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    line-height: 1.05;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50% 45% 50% 42%;
    background: var(--rose);
    color: var(--white);
    font-size: 19px;
    transform: rotate(-4deg);
    box-shadow: 0 9px 24px rgba(143, 95, 105, 0.22);
}

.brand strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    letter-spacing: -0.02em;
}

.brand small {
    display: block;
    margin-top: 5px;
    color: var(--rose);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 2px;
    background: var(--rose);
    transition: right 180ms ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
    right: 0;
}

.nav-cta {
    padding: 11px 18px;
    border: 1px solid var(--rose);
    border-radius: 999px;
    color: var(--rose-dark) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--rose);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(75, 51, 56, 0.08);
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 90px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 217, 220, 0.8), rgba(234, 217, 220, 0));
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 64px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    max-width: 700px;
    margin-bottom: 25px;
    font-size: clamp(3rem, 6.2vw, 5.65rem);
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 4.2vw, 4rem);
}

h3 {
    line-height: 1.25;
}

.hero-intro {
    max-width: 680px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 13px 34px rgba(143, 95, 105, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--rose-dark);
    box-shadow: 0 17px 40px rgba(109, 66, 76, 0.28);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.62);
    color: var(--ink);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 32px 0 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
    font-size: 13px;
    font-weight: 700;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-points li::before {
    content: "♥";
    color: var(--rose);
    font-size: 11px;
}

.hero-art {
    position: relative;
    padding: 18px;
    border-radius: 44px 44px 44px 120px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: 20px;
    z-index: -1;
    border: 1px dashed rgba(143, 95, 105, 0.34);
    border-radius: inherit;
    transform: translate(18px, 18px);
}

.hero-art img {
    width: 100%;
    border-radius: 30px 30px 30px 96px;
}

.handmade-note {
    position: absolute;
    right: -8px;
    bottom: 28px;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--sage);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
    box-shadow: 0 9px 22px rgba(77, 91, 75, 0.2);
    transform: rotate(-4deg);
}

.intro-strip {
    padding: 24px 0;
    background: var(--ink);
    color: var(--white);
}

.intro-strip-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.intro-strip p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
}

.intro-strip span {
    color: var(--sand);
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading > p:last-child {
    color: var(--muted);
}

.section-heading.compact {
    margin-bottom: 42px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    overflow: hidden;
    min-height: 285px;
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 249, 0.82);
    box-shadow: 0 10px 40px rgba(83, 61, 65, 0.055);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -42px;
    bottom: -45px;
    border-radius: 50%;
    background: var(--rose-soft);
    opacity: 0.42;
}

.product-card:nth-child(2)::after,
.product-card:nth-child(4)::after {
    background: var(--sage-soft);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(83, 61, 65, 0.09);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 27px;
    border-radius: 15px;
    background: var(--rose-soft);
    color: var(--rose-dark);
    font-size: 23px;
    font-weight: 700;
}

.product-card:nth-child(2) .icon-wrap,
.product-card:nth-child(4) .icon-wrap {
    background: var(--sage-soft);
    color: #566353;
}

.product-card h3 {
    margin-bottom: 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
}

.product-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.material-section {
    position: relative;
    background: var(--paper);
}

.material-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(143, 95, 105, 0.10) 0.8px, transparent 0.8px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), transparent 58%);
    pointer-events: none;
}

.material-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 76px;
}

.material-image {
    padding: 18px;
    border-radius: 30px;
    background: var(--cream);
    box-shadow: var(--shadow);
    transform: rotate(-1.5deg);
}

.material-image img {
    width: 100%;
    border-radius: 20px;
}

.material-copy p:not(.eyebrow) {
    color: var(--muted);
}

.signature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--rose-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-style: italic;
    transform: rotate(-3deg);
}

.signature span {
    color: var(--rose);
    font-size: 17px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 26px 10px 26px 0;
    border-top: 1px solid var(--line);
}

.steps > li > span {
    color: var(--rose);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1;
}

.steps h3 {
    margin-bottom: 9px;
    font-size: 18px;
}

.steps p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.gallery-section {
    background: #f3ece7;
}

.split-heading {
    max-width: none;
    display: grid;
    grid-template-columns: 1.1fr 0.6fr;
    align-items: end;
    gap: 80px;
    text-align: left;
}

.split-heading h2 {
    margin-bottom: 0;
}

.split-heading > p {
    margin-bottom: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    margin: 0;
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(76, 53, 58, 0.09);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 350ms ease;
}

.gallery-item:hover img {
    transform: scale(1.025);
}

.gallery-item figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    background: rgba(255, 253, 249, 0.88);
    backdrop-filter: blur(12px);
}

.gallery-item figcaption strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.gallery-item figcaption span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.request-section {
    background: var(--ink);
    color: var(--white);
}

.request-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 70px;
}

.request-copy {
    position: sticky;
    top: 122px;
}

.request-copy .eyebrow {
    color: var(--sand);
}

.request-copy h2 {
    color: var(--white);
}

.request-copy > p:not(.eyebrow) {
    color: #d6cdcf;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 35px 0 24px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.contact-card > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--rose);
}

.contact-card small,
.contact-card a {
    display: block;
}

.contact-card small {
    color: #bdb1b4;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.contact-card a {
    margin-top: 2px;
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.small-note {
    font-size: 13px;
}

.form-card {
    padding: 38px;
    border-radius: var(--radius-lg);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.alert {
    margin-bottom: 26px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 14px;
}

.alert strong,
.alert span {
    display: block;
}

.alert-success {
    border: 1px solid #b8d3b8;
    background: #eef7ec;
    color: #3d5d3b;
}

.alert-error {
    border: 1px solid #dfb9be;
    background: #fbebed;
    color: #7b3f49;
}

.alert ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.request-form {
    display: grid;
    gap: 20px;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label {
    font-size: 13px;
    font-weight: 800;
}

.field label span,
.checkbox-field strong {
    color: var(--rose);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dcd1c8;
    border-radius: 11px;
    outline: none;
    background: #fffdfa;
    color: var(--ink);
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field input,
.field select {
    min-height: 50px;
    padding: 11px 13px;
}

.field textarea {
    min-height: 145px;
    padding: 13px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a09598;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--rose);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(143, 95, 105, 0.11);
}

.field small {
    justify-self: end;
    color: var(--muted);
    font-size: 11px;
}

.checkbox-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    cursor: pointer;
}

.checkbox-field input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: var(--rose);
}

.captcha-wrap {
    overflow-x: auto;
    padding: 4px 0;
}

.captcha-preview {
    display: grid;
    gap: 2px;
    padding: 13px 15px;
    border: 1px dashed #cabdb3;
    border-radius: 11px;
    background: #f5eee9;
    color: var(--muted);
    font-size: 12px;
}

.captcha-preview strong {
    color: var(--ink);
}

.form-submit {
    width: 100%;
    min-height: 57px;
    border: 0;
    margin-top: 3px;
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.required-note {
    margin: -8px 0 0;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.faq-section {
    background: var(--paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.66fr 1.34fr;
    gap: 90px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 24px 42px 24px 0;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 18px;
    color: var(--rose);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 15px;
}

.site-footer {
    padding: 58px 0 28px;
    background: #272022;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 35px;
}

.footer-brand strong {
    color: var(--white);
}

.footer-grid p {
    margin: 0;
    color: #bdb4b6;
    font-size: 14px;
}

.footer-grid > a {
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #94898c;
    font-size: 12px;
}

.footer-bottom a {
    color: #c8bdc0;
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid rgba(143, 95, 105, 0.35);
    outline-offset: 4px;
}

@media (max-width: 1000px) {
    .hero-grid,
    .material-grid,
    .request-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 54px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-art {
        max-width: 720px;
        margin-inline: auto;
    }

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

    .request-copy {
        position: static;
        max-width: 720px;
    }

    .request-grid {
        gap: 45px;
    }
}

@media (max-width: 800px) {
    .section {
        padding: 80px 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 13px;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 5px;
        text-align: center;
    }

    .intro-strip-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-item,
    .gallery-item img {
        min-height: 360px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

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

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand strong {
        font-size: 18px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding: 54px 0 70px;
    }

    h1 {
        font-size: clamp(2.65rem, 14vw, 4rem);
    }

    h2 {
        font-size: clamp(2.1rem, 11vw, 3.25rem);
    }

    .hero-intro {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
        gap: 8px;
    }

    .hero-art {
        padding: 10px;
        border-radius: 28px 28px 28px 70px;
    }

    .hero-art img {
        border-radius: 20px 20px 20px 57px;
    }

    .handmade-note {
        right: -4px;
        bottom: 16px;
    }

    .product-grid,
    .gallery-grid,
    .form-row.two-columns {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: auto;
    }

    .material-grid {
        gap: 44px;
    }

    .gallery-item,
    .gallery-item img {
        min-height: 310px;
    }

    .gallery-item figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .gallery-item figcaption span {
        text-align: left;
    }

    .form-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


.checkbox-field a {
    color: var(--rose-dark);
    font-weight: 800;
}

.privacy-back {
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.privacy-page {
    min-height: calc(100vh - 180px);
    padding: 95px 0;
}

.privacy-content {
    max-width: 820px;
}

.privacy-content h1 {
    max-width: none;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 5rem);
}

.privacy-lead {
    margin-bottom: 54px;
    color: var(--muted);
    font-size: 19px;
}

.privacy-content section {
    padding: 27px 0;
    border-top: 1px solid var(--line);
}

.privacy-content section h2 {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

.privacy-content section p {
    margin-bottom: 0;
    color: var(--muted);
}

.privacy-content section a {
    color: var(--rose-dark);
    font-weight: 800;
}

.privacy-content > .button {
    margin-top: 35px;
}

.privacy-footer {
    padding-top: 1px;
}

.footer-bottom span a {
    color: #c8bdc0;
    text-decoration: none;
}

@media (max-width: 620px) {
    .privacy-back {
        padding: 9px 12px;
        font-size: 12px;
    }

    .privacy-page {
        padding: 68px 0;
    }
}

.captcha-notice {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    color: var(--muted, #6f6668);
}
