:root {
    --ws-ink: #292323;
    --ws-ink-soft: #554c4c;
    --ws-muted: #756b6b;
    --ws-rose: #9e626b;
    --ws-rose-dark: #78444d;
    --ws-rose-soft: #f5e7e9;
    --ws-blush: #fbf5f4;
    --ws-cream: #fffaf6;
    --ws-white: #ffffff;
    --ws-border: rgba(87, 65, 68, 0.14);
    --ws-border-strong: rgba(87, 65, 68, 0.22);
    --ws-success: #2e6d50;
    --ws-shadow: 0 26px 80px rgba(72, 48, 52, 0.11);
    --ws-shadow-soft: 0 14px 42px rgba(72, 48, 52, 0.08);
    --ws-radius-large: 32px;
    --ws-radius: 22px;
    --ws-radius-small: 14px;
    --ws-shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behaviour: smooth;
}

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

body.ws-menu-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
}

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

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

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

.ws-narrow {
    width: min(calc(100% - 40px), 820px);
    margin-inline: auto;
}

.ws-section {
    padding: clamp(74px, 9vw, 126px) 0;
}

.ws-section-soft {
    background: var(--ws-blush);
}

.ws-section-cream {
    background: var(--ws-cream);
}

.ws-kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin: 0 0 18px;
    color: var(--ws-rose-dark);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ws-kicker::before {
    width: 28px;
    height: 1px;
    content: "";
    background: currentColor;
}

.ws-display,
.ws-heading,
.ws-card-title,
.ws-article-title {
    margin-top: 0;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.ws-display {
    max-width: 880px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 8vw, 6.7rem);
    line-height: 0.98;
}

.ws-heading {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.04;
}

.ws-heading-centred {
    margin-inline: auto;
    text-align: center;
}

.ws-lead {
    max-width: 690px;
    margin: 0;
    color: var(--ws-muted);
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    line-height: 1.75;
}

.ws-lead-centred {
    margin-inline: auto;
    text-align: center;
}

.ws-small {
    color: var(--ws-muted);
    font-size: 0.9rem;
}

.ws-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
}

.ws-actions-centred {
    justify-content: center;
}

.ws-button {
    min-height: 52px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.ws-button:hover {
    transform: translateY(-2px);
}

.ws-button-primary {
    color: #fff;
    background: var(--ws-rose);
    box-shadow: 0 14px 32px rgba(126, 69, 78, 0.23);
}

.ws-button-primary:hover {
    background: var(--ws-rose-dark);
}

.ws-button-secondary {
    color: var(--ws-ink);
    border-color: var(--ws-border-strong);
    background: rgba(255, 255, 255, 0.78);
}

.ws-button-secondary:hover {
    border-color: var(--ws-rose);
    background: #fff;
}

.ws-button-dark {
    color: #fff;
    background: var(--ws-ink);
}

.ws-button-block {
    width: 100%;
}

.ws-public-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(87, 65, 68, 0.1);
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(18px);
}

.ws-public-nav {
    min-height: 78px;
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
}

.ws-public-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.ws-public-brand img {
    width: auto;
    height: 46px;
    display: block;
}

.ws-public-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.ws-public-links > a:not(.ws-button) {
    position: relative;
    color: var(--ws-ink-soft);
    font-size: 0.93rem;
    font-weight: 720;
    text-decoration: none;
}

.ws-public-links > a:not(.ws-button)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--ws-rose);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.ws-public-links > a:hover::after,
.ws-public-links > a.is-active::after {
    transform: scaleX(1);
}

.ws-public-links > a.is-active {
    color: var(--ws-rose-dark);
}

.ws-public-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ws-login-link {
    padding: 9px 4px;
    color: var(--ws-ink-soft);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.ws-mobile-menu-button {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    padding: 0;
    border: 1px solid var(--ws-border);
    border-radius: 14px;
    color: var(--ws-ink);
    background: var(--ws-white);
    cursor: pointer;
}

.ws-mobile-menu-button span,
.ws-mobile-menu-button::before,
.ws-mobile-menu-button::after {
    width: 20px;
    height: 2px;
    display: block;
    content: "";
    background: currentColor;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.ws-mobile-menu-button {
    gap: 4px;
}

.ws-mobile-menu-button.is-open span {
    opacity: 0;
}

.ws-mobile-menu-button.is-open::before {
    transform: translateY(6px) rotate(45deg);
}

.ws-mobile-menu-button.is-open::after {
    transform: translateY(-6px) rotate(-45deg);
}

.ws-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 126px) 0 clamp(80px, 10vw, 148px);
    background:
        radial-gradient(
            circle at 86% 16%,
            rgba(223, 179, 184, 0.45),
            transparent 30%
        ),
        radial-gradient(
            circle at 8% 86%,
            rgba(239, 218, 204, 0.58),
            transparent 34%
        ),
        linear-gradient(135deg, #fffdfb 0%, #f8eeef 100%);
}

.ws-hero::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(126, 69, 78, 0.13);
    border-radius: 50%;
    content: "";
}

.ws-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(44px, 7vw, 92px);
    align-items: center;
}

.ws-hero-copy {
    min-width: 0;
}

.ws-hero .ws-display strong {
    color: var(--ws-rose-dark);
    font-weight: inherit;
}

.ws-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin: 28px 0 0;
    padding: 0;
    color: var(--ws-ink-soft);
    font-size: 0.88rem;
    font-weight: 730;
    list-style: none;
}

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

.ws-hero-proof li::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--ws-rose);
    box-shadow: 0 0 0 5px rgba(158, 98, 107, 0.12);
}

.ws-product-stage {
    position: relative;
    min-height: 560px;
}

.ws-product-panel {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(87, 65, 68, 0.13);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--ws-shadow);
}

.ws-product-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ws-product-panel-main {
    inset: 20px 18px 58px 70px;
    transform: rotate(2deg);
}

.ws-product-panel-secondary {
    z-index: 2;
    right: 55%;
    bottom: 0;
    width: 50%;
    height: 47%;
    transform: rotate(-5deg);
}

.ws-product-panel-tertiary {
    z-index: 3;
    top: 0;
    right: 0;
    width: 43%;
    height: 38%;
    transform: rotate(5deg);
}

.ws-floating-note {
    position: absolute;
    z-index: 4;
    right: 6px;
    bottom: 55px;
    max-width: 215px;
    padding: 16px 18px;
    border: 1px solid var(--ws-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--ws-shadow-soft);
    color: var(--ws-ink-soft);
    font-size: 0.86rem;
    font-weight: 730;
    line-height: 1.45;
}

.ws-floating-note strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ws-rose-dark);
    font-size: 1.05rem;
}

.ws-trust-strip {
    border-block: 1px solid var(--ws-border);
    background: var(--ws-white);
}

.ws-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ws-trust-item {
    min-height: 115px;
    display: grid;
    place-items: center;
    padding: 24px;
    border-right: 1px solid var(--ws-border);
    color: var(--ws-ink-soft);
    text-align: center;
}

.ws-trust-item:last-child {
    border-right: 0;
}

.ws-trust-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ws-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.ws-grid-3,
.ws-grid-4,
.ws-feature-grid,
.ws-blog-grid {
    display: grid;
    gap: 22px;
}

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

.ws-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ws-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
}

.ws-card {
    min-width: 0;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    background: var(--ws-white);
    box-shadow: var(--ws-shadow-soft);
}

.ws-card-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--ws-rose-dark);
    background: var(--ws-rose-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.ws-card-title {
    margin-bottom: 10px;
    font-size: 1.55rem;
    line-height: 1.15;
}

.ws-card p {
    margin: 0;
    color: var(--ws-muted);
}

.ws-icon-card {
    position: relative;
    overflow: hidden;
}

.ws-icon-card::after {
    position: absolute;
    top: -36px;
    right: -36px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    content: "";
    background: rgba(158, 98, 107, 0.07);
}

.ws-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 14px;
    color: var(--ws-rose-dark);
    background: var(--ws-rose-soft);
    font-size: 1.25rem;
    font-weight: 900;
}

.ws-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: clamp(44px, 7vw, 92px);
    align-items: center;
}

.ws-split-reverse > :first-child {
    order: 2;
}

.ws-media-frame {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    border-radius: var(--ws-radius-large);
    background: var(--ws-rose-soft);
    box-shadow: var(--ws-shadow);
}

.ws-media-frame img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    display: block;
    object-fit: cover;
}

.ws-media-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    color: var(--ws-ink-soft);
    font-size: 0.88rem;
}

.ws-media-caption strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ws-ink);
    font-size: 1rem;
}

.ws-tick-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.ws-tick-list li {
    position: relative;
    padding-left: 34px;
    color: var(--ws-ink-soft);
}

.ws-tick-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    content: "✓";
    color: var(--ws-success);
    background: rgba(46, 109, 80, 0.12);
    font-size: 0.78rem;
    font-weight: 900;
}

.ws-quote-panel {
    padding: clamp(32px, 6vw, 72px);
    border-radius: var(--ws-radius-large);
    color: #fff;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(255, 255, 255, 0.16),
            transparent 35%
        ),
        var(--ws-ink);
}

.ws-quote-panel blockquote {
    max-width: 920px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4.6vw, 3.8rem);
    line-height: 1.18;
}

.ws-quote-panel p {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.ws-price-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    gap: clamp(38px, 7vw, 88px);
    align-items: center;
}

.ws-price-card {
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(158, 98, 107, 0.26);
    border-radius: var(--ws-radius-large);
    background:
        linear-gradient(145deg, #fff 0%, #fbf0f2 100%);
    box-shadow: var(--ws-shadow);
}

.ws-price {
    margin: 6px 0 14px;
    color: var(--ws-rose-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.3rem, 8vw, 6.8rem);
    line-height: 1;
}

.ws-price sup {
    font-family: inherit;
    font-size: 0.38em;
    vertical-align: top;
}

.ws-price-note {
    margin: 0 0 24px;
    color: var(--ws-muted);
}

.ws-price-list {
    display: grid;
    gap: 12px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.ws-price-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--ws-ink-soft);
}

.ws-price-list li::before {
    content: "✓";
    color: var(--ws-success);
    font-weight: 900;
}

.ws-faq-list {
    display: grid;
    gap: 14px;
    margin-top: 38px;
}

.ws-faq {
    overflow: hidden;
    border: 1px solid var(--ws-border);
    border-radius: 18px;
    background: var(--ws-white);
}

.ws-faq button {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 21px 22px;
    border: 0;
    color: var(--ws-ink);
    background: transparent;
    cursor: pointer;
    font-weight: 800;
    text-align: left;
}

.ws-faq button::after {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    content: "+";
    color: var(--ws-rose-dark);
    background: var(--ws-rose-soft);
    font-size: 1.2rem;
}

.ws-faq.is-open button::after {
    content: "−";
}

.ws-faq-answer {
    display: none;
    padding: 0 22px 22px;
    color: var(--ws-muted);
}

.ws-faq.is-open .ws-faq-answer {
    display: block;
}

.ws-faq-answer p:last-child {
    margin-bottom: 0;
}

.ws-page-hero {
    padding: clamp(66px, 9vw, 118px) 0;
    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(223, 179, 184, 0.38),
            transparent 30%
        ),
        var(--ws-blush);
    text-align: center;
}

.ws-page-hero .ws-heading,
.ws-page-hero .ws-lead {
    margin-inline: auto;
}

.ws-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--ws-muted);
    font-size: 0.82rem;
}

.ws-breadcrumbs a {
    color: var(--ws-rose-dark);
    text-decoration: none;
}

.ws-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
}

.ws-blog-card {
    overflow: hidden;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    background: #fff;
    box-shadow: var(--ws-shadow-soft);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.ws-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ws-shadow);
}

.ws-blog-image {
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    background: var(--ws-rose-soft);
}

.ws-blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ws-blog-card:hover .ws-blog-image img {
    transform: scale(1.035);
}

.ws-blog-content {
    padding: 24px;
}

.ws-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;
    margin-bottom: 13px;
    color: var(--ws-muted);
    font-size: 0.78rem;
    font-weight: 730;
}

.ws-blog-card h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.46rem;
    font-weight: 500;
    line-height: 1.22;
}

.ws-blog-card h2 a {
    text-decoration: none;
}

.ws-blog-card p {
    margin: 0 0 18px;
    color: var(--ws-muted);
}

.ws-text-link {
    color: var(--ws-rose-dark);
    font-weight: 820;
    text-decoration: none;
}

.ws-text-link:hover {
    text-decoration: underline;
}

.ws-article {
    padding: clamp(50px, 8vw, 96px) 0;
}

.ws-article-header {
    max-width: 900px;
    margin: 0 auto 44px;
    text-align: center;
}

.ws-article-title {
    margin-bottom: 20px;
    font-size: clamp(2.55rem, 7vw, 5.6rem);
    line-height: 1.02;
}

.ws-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    justify-content: center;
    color: var(--ws-muted);
    font-size: 0.86rem;
}

.ws-article-cover {
    width: min(calc(100% - 40px), 1080px);
    max-height: 620px;
    display: block;
    margin: 0 auto 48px;
    border-radius: var(--ws-radius-large);
    object-fit: cover;
    box-shadow: var(--ws-shadow);
}

.ws-article-body {
    width: min(calc(100% - 40px), 760px);
    margin-inline: auto;
    color: #3f3737;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(1.08rem, 2vw, 1.2rem);
    line-height: 1.82;
}

.ws-article-body h2,
.ws-article-body h3 {
    margin: 2.2em 0 0.7em;
    color: var(--ws-ink);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        sans-serif;
    line-height: 1.22;
}

.ws-article-body h2 {
    font-size: 1.85rem;
}

.ws-article-body h3 {
    font-size: 1.4rem;
}

.ws-article-body a {
    color: var(--ws-rose-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ws-article-body img {
    max-width: 100%;
    border-radius: 18px;
}

.ws-article-body blockquote {
    margin: 2em 0;
    padding: 22px 26px;
    border-left: 4px solid var(--ws-rose);
    border-radius: 0 16px 16px 0;
    background: var(--ws-blush);
    color: var(--ws-ink-soft);
}

.ws-article-cta {
    width: min(calc(100% - 40px), 820px);
    margin: 64px auto 0;
    padding: clamp(30px, 5vw, 52px);
    border-radius: var(--ws-radius-large);
    color: #fff;
    background: var(--ws-ink);
    text-align: center;
}

.ws-article-cta h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
}

.ws-article-cta p {
    max-width: 610px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
}

.ws-empty-state {
    padding: 56px 24px;
    border: 1px dashed var(--ws-border-strong);
    border-radius: var(--ws-radius);
    background: var(--ws-blush);
    color: var(--ws-muted);
    text-align: center;
}

.ws-cta {
    padding: clamp(68px, 9vw, 110px) 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(255, 255, 255, 0.14),
            transparent 30%
        ),
        var(--ws-rose-dark);
}

.ws-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
}

.ws-cta h2 {
    max-width: 820px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 5vw, 4.3rem);
    font-weight: 500;
    line-height: 1.06;
}

.ws-cta p {
    max-width: 700px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.ws-cta .ws-button-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ws-public-footer {
    padding: 64px 0 24px;
    color: rgba(255, 255, 255, 0.72);
    background: #241f1f;
}

.ws-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, 0.7fr));
    gap: 38px;
}

.ws-footer-brand img {
    width: auto;
    height: 50px;
    filter: brightness(0) invert(1);
}

.ws-footer-brand p {
    max-width: 390px;
    margin: 18px 0 0;
}

.ws-footer-column h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 0.83rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ws-footer-column a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.ws-footer-column a:hover {
    color: #fff;
}

.ws-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.ws-footer-bottom a {
    color: inherit;
}

.ws-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

@media (max-width: 1040px) {
    .ws-public-links {
        gap: 18px;
    }

    .ws-public-links > a:not(.ws-button) {
        font-size: 0.86rem;
    }

    .ws-hero-grid,
    .ws-split,
    .ws-price-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .ws-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-footer-grid {
        grid-template-columns: 1fr repeat(2, minmax(150px, 0.7fr));
    }

    .ws-footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 860px) {
    .ws-mobile-menu-button {
        display: grid;
    }

    .ws-public-links,
    .ws-public-actions {
        display: none;
    }

    .ws-public-links.is-open {
        position: fixed;
        z-index: 999;
        inset: 79px 0 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 24px 20px 40px;
        background: rgba(255, 255, 255, 0.98);
        overflow-y: auto;
    }

    .ws-public-links.is-open > a:not(.ws-button) {
        padding: 17px 4px;
        border-bottom: 1px solid var(--ws-border);
        font-size: 1.05rem;
    }

    .ws-public-links.is-open .ws-mobile-only {
        display: inline-flex;
        margin-top: 14px;
    }

    .ws-hero-grid,
    .ws-split,
    .ws-price-wrap {
        grid-template-columns: 1fr;
    }

    .ws-split-reverse > :first-child {
        order: initial;
    }

    .ws-product-stage {
        min-height: 510px;
        margin-top: 20px;
    }

    .ws-grid-3,
    .ws-feature-grid,
    .ws-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-trust-item:nth-child(2) {
        border-right: 0;
    }

    .ws-trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--ws-border);
    }

    .ws-cta-grid {
        grid-template-columns: 1fr;
    }

    .ws-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ws-footer-brand {
        grid-column: 1 / 3;
    }

    .ws-footer-column:last-child {
        grid-column: auto;
    }
}

@media (min-width: 861px) {
    .ws-mobile-only {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .ws-shell,
    .ws-narrow,
    .ws-article-body,
    .ws-article-cover,
    .ws-article-cta {
        width: min(calc(100% - 28px), var(--ws-shell));
    }

    .ws-public-nav {
        min-height: 70px;
    }

    .ws-public-brand img {
        height: 40px;
    }

    .ws-public-links.is-open {
        inset: 71px 0 0;
    }

    .ws-hero {
        padding-top: 58px;
    }

    .ws-display {
        font-size: clamp(2.8rem, 15vw, 4.4rem);
    }

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

    .ws-button {
        width: 100%;
    }

    .ws-product-stage {
        min-height: 410px;
    }

    .ws-product-panel-main {
        inset: 18px 8px 48px 44px;
    }

    .ws-product-panel-secondary {
        width: 48%;
        height: 42%;
    }

    .ws-product-panel-tertiary {
        width: 42%;
        height: 34%;
    }

    .ws-floating-note {
        right: 0;
        bottom: 32px;
        max-width: 180px;
        padding: 12px 14px;
        font-size: 0.76rem;
    }

    .ws-grid-3,
    .ws-grid-4,
    .ws-feature-grid,
    .ws-blog-grid,
    .ws-trust-grid,
    .ws-footer-grid {
        grid-template-columns: 1fr;
    }

    .ws-trust-item,
    .ws-trust-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--ws-border);
    }

    .ws-trust-item:last-child {
        border-bottom: 0;
    }

    .ws-footer-brand,
    .ws-footer-column:last-child {
        grid-column: auto;
    }

    .ws-media-frame,
    .ws-media-frame img {
        min-height: 360px;
    }

    .ws-price-card {
        padding: 26px 22px;
    }

    .ws-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

/* ==========================================================
   Contact page
   ========================================================== */

.ws-contact-section {
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(245, 231, 233, 0.76),
            transparent 30%
        ),
        #ffffff;
}

.ws-contact-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(440px, 1.12fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: start;
}

.ws-contact-intro {
    position: sticky;
    top: 118px;
}

.ws-contact-support-list {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.ws-contact-support-list article {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 19px 0;
    border-bottom: 1px solid var(--ws-border);
}

.ws-contact-support-list article > span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--ws-rose-dark);
    background: var(--ws-rose-soft);
    font-family: Georgia, "Times New Roman", serif;
}

.ws-contact-support-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ws-ink);
}

.ws-contact-support-list p {
    margin: 0;
    color: var(--ws-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.ws-contact-card {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-large);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--ws-shadow);
}

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

.ws-form-field {
    display: grid;
    gap: 8px;
}

.ws-form-field label {
    color: var(--ws-ink);
    font-size: 0.88rem;
    font-weight: 820;
}

.ws-form-field input,
.ws-form-field textarea {
    width: 100%;
    border: 1px solid var(--ws-border-strong);
    border-radius: 14px;
    color: var(--ws-ink);
    background: #ffffff;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ws-form-field input {
    min-height: 54px;
    padding: 12px 15px;
}

.ws-form-field textarea {
    min-height: 180px;
    padding: 15px;
    resize: vertical;
    line-height: 1.6;
}

.ws-form-field input:focus,
.ws-form-field textarea:focus {
    border-color: var(--ws-rose);
    box-shadow: 0 0 0 4px rgba(158, 98, 107, 0.12);
}

.ws-field-help,
.ws-contact-response-note {
    color: var(--ws-muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.ws-contact-response-note {
    margin: -4px 0 0;
    text-align: center;
}

.ws-form-alert {
    display: grid;
    gap: 3px;
    margin-bottom: 22px;
    padding: 16px 18px;
    border: 1px solid;
    border-radius: 15px;
    font-size: 0.9rem;
}

.ws-form-alert strong {
    color: inherit;
}

.ws-form-alert-success {
    border-color: rgba(46, 109, 80, 0.24);
    color: #24583f;
    background: rgba(46, 109, 80, 0.09);
}

.ws-form-alert-error {
    border-color: rgba(145, 54, 61, 0.23);
    color: #79383d;
    background: rgba(145, 54, 61, 0.08);
}

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

@media (max-width: 860px) {
    .ws-contact-layout {
        grid-template-columns: 1fr;
    }

    .ws-contact-intro {
        position: static;
    }
}

@media (max-width: 600px) {
    .ws-contact-card {
        padding: 22px 17px;
        border-radius: 22px;
    }
}

/* ==========================================================
   SEO blog improvements
   ========================================================== */

.ws-blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 36px;
}

.ws-blog-categories a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--ws-border);
    border-radius: 999px;
    color: var(--ws-ink-soft);
    background: #fff;
    font-size: 0.85rem;
    font-weight: 780;
    text-decoration: none;
}

.ws-blog-categories a:hover,
.ws-blog-categories a.is-active {
    border-color: var(--ws-rose);
    color: var(--ws-rose-dark);
    background: var(--ws-rose-soft);
}

.ws-blog-categories span {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    padding-inline: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
}

.ws-blog-meta a {
    color: var(--ws-rose-dark);
    font-weight: 780;
    text-decoration: none;
}

.ws-pagination {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.ws-pagination a,
.ws-pagination span {
    padding: 11px 16px;
    border: 1px solid var(--ws-border);
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
}

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

.ws-pagination span {
    color: var(--ws-muted);
}

.ws-article-intro {
    width: min(calc(100% - 40px), 760px);
    margin: 0 auto 28px;
    color: var(--ws-ink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.22rem, 2.5vw, 1.48rem);
    line-height: 1.65;
}

.ws-related-posts {
    margin-top: 72px;
    padding: 72px 0;
    background: var(--ws-blush);
}

.ws-related-posts .ws-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

@media (max-width: 600px) {
    .ws-blog-categories {
        flex-wrap: nowrap;
        margin-inline: -14px;
        padding-inline: 14px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ws-blog-categories::-webkit-scrollbar {
        display: none;
    }

    .ws-blog-categories a {
        flex: 0 0 auto;
    }

    .ws-pagination {
        flex-wrap: wrap;
    }

    .ws-article-intro {
        width: min(calc(100% - 28px), 760px);
    }
}

/* ==========================================================
   WedSnap definitive blog image display fix
   ========================================================== */

.ws-blog-grid {
    display: grid !important;
    width: 100%;
    gap: 28px;
}

.ws-blog-card {
    position: relative;
    display: flex !important;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.ws-blog-image {
    position: relative;
    width: 100%;
    height: 240px;
    min-height: 240px;
    display: block !important;
    flex: 0 0 240px;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    background:
        linear-gradient(
            135deg,
            var(--ws-rose-soft),
            #f4e5e7
        );
}

@supports (aspect-ratio: 3 / 2) {
    .ws-blog-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 3 / 2;
        flex-basis: auto;
    }
}

.ws-blog-image img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-width: 100%;
    min-height: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: cover !important;
    object-position: center center;
}

.ws-blog-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.ws-blog-content .ws-text-link {
    margin-top: auto;
}

.ws-article-cover {
    width: min(calc(100% - 40px), 1080px) !important;
    height: clamp(280px, 52vw, 620px);
    min-height: 280px;
    max-height: 620px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 auto 48px;
    object-fit: cover !important;
    object-position: center center;
    background: var(--ws-rose-soft);
}

.ws-related-posts .ws-blog-image {
    height: 210px;
    min-height: 210px;
    flex-basis: 210px;
}

@supports (aspect-ratio: 3 / 2) {
    .ws-related-posts .ws-blog-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 3 / 2;
        flex-basis: auto;
    }
}

@media (max-width: 1050px) {
    .ws-blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 660px) {
    .ws-blog-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    .ws-blog-image {
        height: 220px;
        min-height: 220px;
        flex-basis: 220px;
    }

    @supports (aspect-ratio: 3 / 2) {
        .ws-blog-image {
            height: auto;
            min-height: 0;
            aspect-ratio: 3 / 2;
            flex-basis: auto;
        }
    }

    .ws-article-cover {
        width: calc(100% - 28px) !important;
        height: clamp(230px, 70vw, 420px);
        min-height: 230px;
        margin-bottom: 34px;
        border-radius: 20px;
    }
}

/* ==========================================================
   WedSnap article FAQ design
   ========================================================== */

.ws-article-faq {
    margin:
        clamp(42px, 7vw, 72px)
        0;
    padding:
        clamp(24px, 5vw, 44px);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-large);
    background:
        linear-gradient(
            145deg,
            rgba(166, 83, 98, 0.07),
            rgba(255, 255, 255, 0.96)
        );
}

.ws-article-faq > h2 {
    margin-top: 0;
}

.ws-article-faq-intro {
    max-width: 760px;
    margin:
        -8px
        0
        24px;
    color: var(--ws-muted);
}

.ws-faq-list {
    display: grid;
    gap: 12px;
}

.ws-faq-item {
    overflow: hidden;
    border: 1px solid var(--ws-border);
    border-radius: 16px;
    background: #fff;
}

.ws-faq-item summary {
    position: relative;
    display: block;
    padding:
        18px
        54px
        18px
        20px;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

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

.ws-faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    content: "+";
    color: var(--ws-rose);
    font-size: 1.45rem;
    font-weight: 500;
    transform: translateY(-50%);
}

.ws-faq-item[open] summary::after {
    content: "−";
}

.ws-faq-answer {
    padding:
        0
        20px
        20px;
    color: var(--ws-muted);
    line-height: 1.75;
}

.ws-faq-answer p {
    margin:
        0
        0
        12px;
}

.ws-faq-answer p:last-child {
    margin-bottom: 0;
}

.ws-article-callout {
    margin:
        30px
        0;
    padding: 22px 24px;
    border-left: 4px solid var(--ws-rose);
    border-radius: 0 16px 16px 0;
    background: var(--ws-rose-soft);
}

.ws-article-callout strong {
    display: block;
    margin-bottom: 7px;
}

.ws-article-body table {
    width: 100%;
    margin:
        28px
        0;
    border-collapse: collapse;
    border: 1px solid var(--ws-border);
    border-radius: 16px;
    overflow: hidden;
}

.ws-article-body th,
.ws-article-body td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--ws-border);
    text-align: left;
    vertical-align: top;
}

.ws-article-body th {
    background: var(--ws-cream);
}

.ws-article-body tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 650px) {
    .ws-article-faq {
        padding: 20px 16px;
    }

    .ws-faq-item summary {
        padding:
            16px
            48px
            16px
            16px;
    }

    .ws-faq-answer {
        padding:
            0
            16px
            16px;
    }

    .ws-article-body table {
        display: block;
        overflow-x: auto;
        white-space: normal;
    }
}

/* ==========================================================
   WedSnap definitive FAQ interaction fix
   ========================================================== */

.ws-article-faq,
.ws-faq-list,
.ws-faq-item,
.ws-faq-item > summary,
.ws-faq-answer {
    pointer-events: auto !important;
}

.ws-faq-item {
    position: relative;
    isolation: isolate;
}

.ws-faq-item > summary {
    position: relative;
    z-index: 3;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.ws-faq-item > summary::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
}

.ws-faq-item > summary:hover {
    background: rgba(166, 83, 98, 0.055);
}

.ws-faq-item > summary:focus-visible {
    outline: 3px solid rgba(166, 83, 98, 0.28);
    outline-offset: -3px;
}

.ws-faq-item[open] > summary {
    border-bottom: 1px solid var(--ws-border);
    background: rgba(166, 83, 98, 0.07);
}

.ws-faq-item:not([open]) > .ws-faq-answer {
    display: none;
}

.ws-faq-item[open] > .ws-faq-answer {
    display: block;
}

html.js .ws-faq-item > summary {
    cursor: pointer;
}

/* WedSnap SEO powerhouse category layer */

.ws-blog-category-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, .75fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    margin: 32px 0 48px;
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid rgba(158, 98, 107, .18);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, .98),
            rgba(249, 241, 242, .96)
        );
    box-shadow: 0 20px 55px rgba(74, 43, 48, .08);
}

.ws-blog-category-intro-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.15;
}

.ws-blog-category-intro-copy p {
    margin: 0 0 16px;
    color: var(--ws-muted, #63575a);
    line-height: 1.75;
}

.ws-blog-category-intro-copy p:last-child {
    margin-bottom: 0;
}

.ws-blog-category-intro-copy a {
    color: var(--ws-primary, #9e626b);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ws-blog-category-intro-action {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 36px rgba(74, 43, 48, .09);
}

.ws-blog-category-intro-action strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ws-blog-category-intro-action p {
    margin: 0 0 18px;
    color: var(--ws-muted, #63575a);
    line-height: 1.65;
}

.ws-home-guides {
    background:
        linear-gradient(
            180deg,
            rgba(249, 241, 242, .7),
            rgba(255, 255, 255, 1)
        );
}

.ws-home-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.ws-home-guide-grid > a {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(158, 98, 107, .18);
    border-radius: 22px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(74, 43, 48, .06);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.ws-home-guide-grid > a:hover {
    transform: translateY(-3px);
    border-color: rgba(158, 98, 107, .42);
    box-shadow: 0 20px 44px rgba(74, 43, 48, .11);
}

.ws-home-guide-grid strong {
    font-size: 1.08rem;
    line-height: 1.35;
}

.ws-home-guide-grid span {
    color: var(--ws-muted, #63575a);
    line-height: 1.6;
}

.ws-centred-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.ws-footer-grid-expanded {
    grid-template-columns:
        minmax(240px, 1.45fr)
        repeat(4, minmax(135px, .8fr));
}

.ws-footer-button {
    display: inline-flex;
    margin-top: 10px;
}

@media (max-width: 1050px) {
    .ws-footer-grid-expanded {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 850px) {
    .ws-blog-category-intro {
        grid-template-columns: 1fr;
    }

    .ws-home-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ws-home-guide-grid,
    .ws-footer-grid-expanded {
        grid-template-columns: 1fr;
    }

    .ws-footer-brand {
        grid-column: auto;
    }

    .ws-blog-category-intro {
        padding: 22px;
        border-radius: 22px;
    }
}

/* WedSnap legal and trust layer */

.ws-legal-hero {
    padding: clamp(72px, 10vw, 130px) 0 clamp(42px, 7vw, 78px);
    background:
        radial-gradient(
            circle at top right,
            rgba(158, 98, 107, .15),
            transparent 36%
        ),
        linear-gradient(
            180deg,
            rgba(249, 241, 242, .96),
            rgba(255, 255, 255, 1)
        );
}

.ws-legal-shell {
    max-width: 920px;
}

.ws-legal-updated {
    margin: 24px 0 0;
    color: var(--ws-muted, #63575a);
    font-size: .94rem;
}

.ws-legal-section {
    padding-top: 48px;
}

.ws-legal-layout {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.ws-legal-nav {
    position: sticky;
    top: 100px;
    padding: 22px;
    border: 1px solid rgba(158, 98, 107, .16);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(74, 43, 48, .06);
}

.ws-legal-nav strong {
    display: block;
    margin-bottom: 13px;
    font-size: 1rem;
}

.ws-legal-nav nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ws-legal-nav a {
    padding: 7px 0;
    color: var(--ws-muted, #63575a);
    font-size: .92rem;
    line-height: 1.35;
    text-decoration: none;
}

.ws-legal-nav a:hover {
    color: var(--ws-primary, #9e626b);
}

.ws-legal-content {
    min-width: 0;
}

.ws-legal-card {
    scroll-margin-top: 110px;
    margin-bottom: 22px;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(158, 98, 107, .14);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(74, 43, 48, .055);
}

.ws-legal-card h2 {
    margin: 0 0 18px;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    line-height: 1.2;
}

.ws-legal-card h3 {
    margin: 28px 0 12px;
}

.ws-legal-card p,
.ws-legal-card li {
    color: var(--ws-muted, #63575a);
    line-height: 1.78;
}

.ws-legal-card p {
    margin: 0 0 16px;
}

.ws-legal-card p:last-child {
    margin-bottom: 0;
}

.ws-legal-card ul,
.ws-legal-card ol {
    margin: 16px 0 20px;
    padding-left: 24px;
}

.ws-legal-card li + li {
    margin-top: 8px;
}

.ws-legal-card a {
    color: var(--ws-primary, #9e626b);
    font-weight: 700;
    text-underline-offset: 3px;
}

.ws-legal-help {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    margin-top: 36px;
    padding: clamp(25px, 4vw, 40px);
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(158, 98, 107, .14),
            rgba(249, 241, 242, .92)
        );
}

.ws-legal-help h2 {
    margin: 3px 0 10px;
}

.ws-legal-help p {
    max-width: 620px;
    margin: 0;
    color: var(--ws-muted, #63575a);
    line-height: 1.65;
}

.ws-footer-grid-expanded {
    grid-template-columns:
        minmax(240px, 1.4fr)
        repeat(5, minmax(125px, .72fr));
}

@media (max-width: 1180px) {
    .ws-footer-grid-expanded {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ws-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 850px) {
    .ws-legal-layout {
        grid-template-columns: 1fr;
    }

    .ws-legal-nav {
        position: static;
    }

    .ws-legal-nav nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 18px;
    }
}

@media (max-width: 650px) {
    .ws-legal-nav nav,
    .ws-footer-grid-expanded {
        grid-template-columns: 1fr;
    }

    .ws-footer-brand {
        grid-column: auto;
    }

    .ws-legal-help {
        align-items: flex-start;
        flex-direction: column;
    }

    .ws-legal-card {
        padding: 23px;
        border-radius: 21px;
    }
}
