/* ════════════════════════════════════════════════════════════
   Design tokens  —  default palette: Classic Cream
   Theme files override these variables in their own :root block.
   ════════════════════════════════════════════════════════════ */
:root {
    /* Primary palette */
    --swlw-primary:            #b85c38;
    --swlw-primary-dark:       #8b3e22;
    --swlw-primary-light:      #d4855e;
    --swlw-accent:             #e2c391;
    --swlw-accent-hover:       #d4a86a;

    /* Page surfaces */
    --swlw-background:         #ffffff;
    --swlw-section-background: #faf6f1;
    --swlw-surface:            #faf6f1;

    /* Typography */
    --swlw-text:               #2d2a26;
    --swlw-heading:            #2d2a26;
    --swlw-muted:              #6b6357;
    --swlw-border:             #ddd7cf;

    /* Navbar */
    --swlw-navbar-bg:          #faf6f1;
    --swlw-navbar-text:        #2d2a26;
    --swlw-navbar-hover:       #b85c38;
    --swlw-navbar-border:      rgba(0, 0, 0, .07);

    /* Footer */
    --swlw-footer-bg:          #2d2a26;
    --swlw-footer-text:        #c8c2b8;
    --swlw-footer-bright:      #ffffff;

    /* Buttons */
    --swlw-button-bg:          #b85c38;
    --swlw-button-hover:       #8b3e22;
    --swlw-button-text:        #ffffff;

    /* Hero gradient */
    --swlw-hero-bg:            linear-gradient(135deg, #faf6f1 0%, #f5e9d8 100%);

    /* Cards */
    --swlw-card-shadow:        0 .5rem 1.5rem rgba(0, 0, 0, .07);

    /* ── Legacy aliases — consumed by older rules below; do not remove ── */
    --swlw-cream:              var(--swlw-section-background);
    --swlw-warm:               var(--swlw-primary);
    --swlw-warm-dark:          var(--swlw-primary-dark);
    --swlw-deep:               var(--swlw-text);
    --swlw-nav-bg:             var(--swlw-navbar-bg);
    --swlw-nav-border:         var(--swlw-navbar-border);
    --swlw-nav-link-color:     var(--swlw-navbar-text);
    --swlw-nav-link-hover:     var(--swlw-navbar-hover);
    --swlw-btn-text:           var(--swlw-button-text);
}


/* ── Base ── */
html { font-size: 15px; position: relative; min-height: 100%; }
@media (min-width: 768px) { html { font-size: 16px; } }

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--swlw-text);
    background: var(--swlw-background);
}

h1, h2, h3, h4, .brand-script {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--swlw-heading);
}

a { color: var(--swlw-primary); text-decoration: none; }
a:hover { color: var(--swlw-primary-dark); text-decoration: underline; }


/* ── Utilities ── */
.bg-cream { background-color: var(--swlw-section-background) !important; }
.bg-warm  { background-color: var(--swlw-primary) !important; color: var(--swlw-button-text); }


/* ── Buttons ── */
.btn-primary {
    background-color: var(--swlw-button-bg);
    border-color:     var(--swlw-button-bg);
    color:            var(--swlw-button-text);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--swlw-button-hover);
    border-color:     var(--swlw-button-hover);
    color:            var(--swlw-button-text);
}
.btn-outline-primary {
    color:        var(--swlw-primary);
    border-color: var(--swlw-primary);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--swlw-primary);
    border-color:     var(--swlw-primary);
    color:            var(--swlw-button-text);
}

/* Focus rings */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem var(--swlw-background), 0 0 0 0.25rem var(--swlw-primary);
}


/* ── Brand ── */
.brand-script { font-weight: 700; font-size: 1.4rem; }
.brand-script span { color: var(--swlw-primary); }


/* ── Navbar ── */
.navbar {
    background: var(--swlw-navbar-bg);
    border-bottom: 1px solid var(--swlw-navbar-border);
}
.navbar .navbar-brand,
.navbar .nav-link {
    color:       var(--swlw-navbar-text) !important;
    font-weight: 500;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--swlw-navbar-hover) !important; }

/* Dropdown */
.navbar .dropdown-menu {
    background-color: var(--swlw-background);
    border:           1px solid var(--swlw-border);
    box-shadow:       var(--swlw-card-shadow);
}
.navbar .dropdown-item             { color: var(--swlw-text); }
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus       { background-color: var(--swlw-section-background); color: var(--swlw-primary); }
.navbar .dropdown-divider          { border-color: var(--swlw-border); }

/* Collapsed mobile nav — dropdown items sit inside the dark/coloured navbar */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        background-color: transparent;
        border:           none;
        box-shadow:       none;
        padding-left:     1rem;
    }
    .navbar .dropdown-item {
        color: var(--swlw-navbar-text);
        opacity: .85;
    }
    .navbar .dropdown-item:hover { opacity: 1; color: var(--swlw-navbar-hover); background: transparent; }
}

/* Logo */
.navbar-brand { padding-top: .25rem; padding-bottom: .25rem; }
.site-logo    { height: auto; width: auto; object-fit: contain; display: block; }
@media (max-width: 576px) { .site-logo { height: 46px; } }


/* ── Hero ── */
.hero {
    background: var(--swlw-hero-bg);
    padding: 5rem 0;
}
.hero h1 { font-size: 3rem; line-height: 1.1; }
@media (min-width: 992px) { .hero h1 { font-size: 4rem; } }


/* ── Sections ── */
.section       { padding: 4rem 0; }
.section-cream { background-color: var(--swlw-section-background); }


/* ── Service cards ── */
.card-service {
    border:       0;
    border-radius: 1rem;
    background:   var(--swlw-surface);
    transition:   transform .2s ease, box-shadow .2s ease;
}
.card-service:hover {
    transform:  translateY(-4px);
    box-shadow: var(--swlw-card-shadow);
}
.card-service .icon {
    width:           56px;
    height:          56px;
    border-radius:   50%;
    background:      var(--swlw-accent);
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    font-size:       1.4rem;
    margin-bottom:   1rem;
}


/* ── Gallery ── */
.gallery-tile {
    aspect-ratio:        1 / 1;
    background-color:    var(--swlw-section-background);
    background-size:     cover;
    background-position: center;
    border-radius:       .75rem;
}
.gallery-placeholder {
    background-color:  var(--swlw-surface);
    background-image:  repeating-linear-gradient(
        45deg,
        transparent 0,
        transparent 10px,
        var(--swlw-accent) 10px,
        var(--swlw-accent) 11px
    );
    opacity: .55;
}


/* ── Testimonials ── */
.testimonial-card {
    border-left:   4px solid var(--swlw-primary);
    background:    var(--swlw-background);
    border-radius: .5rem;
    padding:       1.5rem;
    height:        100%;
    box-shadow:    var(--swlw-card-shadow);
}

.testimonial-card--image {
    border-left: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.testimonial-image-wrap {
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-primary) 8%, var(--swlw-background)) 0%,
            color-mix(in srgb, var(--swlw-primary) 14%, var(--swlw-section-background)) 100%);
    border-radius: .5rem .5rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
    width: 100%;
}

.testimonial-image {
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.testimonial-card-body {
    border-left: 4px solid var(--swlw-primary);
    flex: 1 1 auto;
    padding: 1.5rem;
}


/* Contact page */
.contact-form-card,
.contact-info-card {
    background: var(--swlw-background);
    border: 1px solid var(--swlw-border);
    border-radius: 1rem;
    box-shadow: var(--swlw-card-shadow);
}

.contact-form-card {
    padding: 2rem;
}

.contact-info-card {
    position: sticky;
    top: 1.5rem;
}

.contact-detail-list {
    display: grid;
    gap: 1rem;
}

.contact-detail-item {
    display: grid;
    gap: .15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--swlw-border) 75%, transparent);
}

.contact-detail-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-detail-label {
    color: var(--swlw-muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.contact-social-links a {
    border: 1px solid var(--swlw-primary);
    border-radius: 999px;
    color: var(--swlw-primary);
    font-size: .9rem;
    font-weight: 700;
    padding: .45rem .8rem;
}

.contact-social-links a:hover,
.contact-social-links a:focus {
    background: var(--swlw-primary);
    color: var(--swlw-button-text);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .contact-info-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .contact-form-card {
        padding: 1.25rem;
    }
}


/* ── CTA band ── */
.cta-band {
    background:    var(--swlw-button-bg);
    color:         var(--swlw-button-text);
    border-radius: 1rem;
    padding:       3rem;
}
.cta-band h2,
.cta-band h3 { color: var(--swlw-button-text); }
.cta-band .opacity-75 { color: var(--swlw-button-text); }


/* ── Footer ── */
.site-footer                      { background-color: var(--swlw-footer-bg); color: var(--swlw-footer-text); }
.site-footer h5,
.site-footer h6                   { color: var(--swlw-footer-bright); font-family: 'Playfair Display', Georgia, serif; }
.site-footer a                    { color: var(--swlw-footer-text); }
.site-footer a:hover              { color: var(--swlw-footer-bright); text-decoration: none; }
.site-footer .text-muted          { color: var(--swlw-footer-text) !important; }


/* ── Forms ── */
.form-control,
.form-select {
    background-color: var(--swlw-background);
    border-color:     var(--swlw-border);
    color:            var(--swlw-text);
}
.form-control:focus,
.form-select:focus {
    background-color: var(--swlw-background);
    border-color:     var(--swlw-primary);
    color:            var(--swlw-text);
}
.form-control::placeholder { color: var(--swlw-muted); opacity: 1; }
.form-label { color: var(--swlw-text); }


/* ── Admin (intentionally hardcoded — admin is not public-facing) ── */
.admin-shell  { background: #f6f7f9; }

.admin-layout {
    min-height:            100vh;
    display:               grid;
    grid-template-columns: 260px 1fr;
}

.admin-sidebar {
    background: #252a31;
    color:      #fff;
    padding:    1.25rem;
}

.admin-brand {
    display:       block;
    color:         #fff;
    font-weight:   700;
    font-size:     1.15rem;
    margin-bottom: 1rem;
}

.admin-sidebar .nav-link {
    color:         #d9dee5;
    border-radius: .4rem;
    padding:       .55rem .7rem;
}
.admin-sidebar .nav-link:hover {
    background:     rgba(255,255,255,.1);
    color:          #fff;
    text-decoration: none;
}

.admin-main { min-width: 0; }

.admin-topbar {
    background:      #fff;
    border-bottom:   1px solid #e1e5ea;
    padding:         1rem 1.5rem;
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    gap:             1rem;
}
.admin-topbar h1 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size:   1.35rem;
    margin:      0;
}

.admin-content { padding: 1.5rem; }

.admin-card {
    background:    #fff;
    border:        1px solid #e1e5ea;
    border-radius: .5rem;
    padding:       1rem;
}

.admin-table {
    background: #fff;
    border:     1px solid #e1e5ea;
}

@media (max-width: 900px) {
    .admin-layout  { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; }
}

/* Admin polish */
.admin-shell {
    --admin-bg: #f7f4fb;
    --admin-surface: #ffffff;
    --admin-sidebar-bg: #21102d;
    --admin-sidebar-bg-2: #3a0a4a;
    --admin-sidebar-text: #f8efff;
    --admin-sidebar-muted: #cdb9dc;
    --admin-accent: #d6a84f;
    --admin-accent-soft: rgba(214, 168, 79, .15);
    --admin-border: #e8dff0;
    --admin-muted: #766482;
    --admin-shadow: 0 .75rem 2rem rgba(55, 19, 78, .09);
    background:
        radial-gradient(circle at top right, rgba(214, 168, 79, .12), transparent 28rem),
        var(--admin-bg);
}

.admin-layout {
    grid-template-columns: 292px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 1.15rem;
    background:
        linear-gradient(180deg, var(--admin-sidebar-bg-2) 0%, var(--admin-sidebar-bg) 52%, #16091f 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, .08);
}

.admin-brand-block {
    padding: .35rem .5rem 1rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.admin-brand {
    margin-bottom: .15rem;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.15;
}

.admin-brand:hover {
    color: #fff;
    text-decoration: none;
}

.admin-brand-block span {
    color: var(--admin-sidebar-muted);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-nav {
    display: grid;
    gap: 1rem;
    padding: .25rem 0 1rem;
}

.admin-nav-section {
    display: grid;
    gap: .2rem;
}

.admin-nav-label {
    padding: .65rem .6rem .25rem;
    color: var(--admin-accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.admin-sidebar .nav-link {
    display: flex;
    align-items: center;
    min-height: 2.35rem;
    padding: .55rem .7rem;
    border: 1px solid transparent;
    border-radius: .65rem;
    color: var(--admin-sidebar-text);
    font-size: .94rem;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link:focus {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.admin-sidebar .nav-link.active {
    border-color: rgba(214, 168, 79, .45);
    background: var(--admin-accent-soft);
    color: #fff;
    box-shadow: inset 3px 0 0 var(--admin-accent);
}

.admin-sidebar-footer {
    position: sticky;
    bottom: 0;
    padding-top: 1rem;
    background: linear-gradient(180deg, transparent 0%, #16091f 32%);
}

.admin-main {
    background: transparent;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 88px;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--admin-border);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
}

.admin-topbar h1 {
    color: #21102d;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    font-weight: 800;
}

.admin-page-kicker {
    margin-bottom: .25rem;
    color: var(--admin-muted);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-userbar {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .45rem .65rem;
    border: 1px solid var(--admin-border);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 .35rem 1.1rem rgba(55, 19, 78, .06);
}

.admin-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b0f5c, #800080);
    color: #fff;
    font-weight: 800;
}

.admin-user-meta {
    display: grid;
    gap: .1rem;
    font-size: .9rem;
    line-height: 1.15;
}

.admin-user-meta span {
    max-width: 240px;
    overflow: hidden;
    color: #21102d;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-logout {
    padding: 0;
    color: var(--admin-muted);
    font-size: .82rem;
    text-align: left;
    text-decoration: none;
}

.admin-logout:hover {
    color: #800080;
}

.admin-content {
    max-width: 1680px;
    padding: 1.6rem;
}

.admin-card,
.admin-table {
    border: 1px solid var(--admin-border);
    border-radius: .9rem;
    background: var(--admin-surface);
    box-shadow: 0 .45rem 1.35rem rgba(55, 19, 78, .045);
}

.admin-card {
    padding: 1.25rem;
}

.admin-table {
    overflow: hidden;
}

.admin-content table {
    margin-bottom: 0;
}

.admin-content thead th {
    border-bottom: 1px solid var(--admin-border);
    background: #fbf8fd;
    color: #4b3859;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-content tbody tr:hover {
    background: #fcf9ff;
}

.admin-content .form-control,
.admin-content .form-select {
    border-radius: .65rem;
}

.admin-dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.4rem;
    border: 1px solid rgba(75, 15, 92, .14);
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(75, 15, 92, .08) 0%, rgba(214, 168, 79, .14) 100%),
        #fff;
    box-shadow: var(--admin-shadow);
}

.admin-dashboard-hero h2 {
    margin-bottom: .35rem;
    color: #21102d;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 800;
}

.admin-dashboard-hero p:last-child {
    margin-bottom: 0;
    color: var(--admin-muted);
}

.admin-metric-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .95rem;
}

.admin-metric-card {
    display: grid;
    min-height: 128px;
    padding: 1rem;
    border: 1px solid var(--admin-border);
    border-radius: .95rem;
    background: #fff;
    color: #21102d;
    box-shadow: 0 .45rem 1.2rem rgba(55, 19, 78, .045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.admin-metric-card:hover {
    transform: translateY(-3px);
    border-color: rgba(128, 0, 128, .28);
    color: #21102d;
    text-decoration: none;
    box-shadow: var(--admin-shadow);
}

.admin-metric-card span {
    color: var(--admin-muted);
    font-size: .82rem;
    font-weight: 700;
}

.admin-metric-card strong {
    align-self: center;
    color: #21102d;
    font-size: 2.2rem;
    line-height: 1;
}

.admin-metric-card small {
    color: var(--admin-muted);
}

.admin-metric-card.is-warning {
    border-color: rgba(214, 168, 79, .65);
    background: linear-gradient(135deg, #fff 0%, rgba(214, 168, 79, .15) 100%);
}

.admin-shortcut-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}

.admin-shortcut {
    display: grid;
    gap: .35rem;
    padding: 1rem;
    border: 1px solid var(--admin-border);
    border-radius: .85rem;
    background: #fbf8fd;
    color: #21102d;
}

.admin-shortcut:hover {
    border-color: rgba(128, 0, 128, .28);
    background: #fff;
    color: #21102d;
    text-decoration: none;
}

.admin-shortcut span {
    color: var(--admin-muted);
    font-size: .9rem;
    line-height: 1.45;
}

@media (max-width: 1199.98px) {
    .admin-metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

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

    .admin-sidebar-footer {
        position: static;
        background: transparent;
    }
}

@media (max-width: 767.98px) {
    .admin-topbar,
    .admin-dashboard-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-content {
        padding: 1rem;
    }

    .admin-metric-grid,
    .admin-shortcut-grid,
    .admin-nav {
        grid-template-columns: 1fr;
    }

    .admin-userbar {
        width: 100%;
        border-radius: .9rem;
    }
}


/* About page */
.about-page {
    background: var(--swlw-background);
}

.about-intro,
.about-section {
    padding: 3.5rem 0;
}

.about-intro {
    padding-top: 4rem;
}

.about-copy {
    max-width: 68ch;
    font-size: 1rem;
    line-height: 1.75;
}

.about-copy-feature {
    max-width: 70ch;
}

.about-copy-narrow {
    max-width: 760px;
    margin: 0 auto;
}

.about-copy h2,
.about-cta h2 {
    color: var(--swlw-heading);
    margin-bottom: 1rem;
}

.about-copy p {
    margin-bottom: 1.1rem;
}

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

.about-profile-image,
.about-section-image,
.about-profile-placeholder {
    display: block;
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--swlw-card-shadow);
}

.about-profile-image,
.about-section-image {
    object-fit: cover;
    object-position: center top;
}

.about-profile-image,
.about-profile-placeholder {
    aspect-ratio: 4 / 5;
    max-height: 560px;
}

.about-section-image {
    aspect-ratio: 4 / 3;
    max-height: 430px;
}

.about-cta {
    max-width: 920px;
    margin: 0 auto;
    padding: 2.5rem;
    border: 1px solid color-mix(in srgb, var(--swlw-heading) 14%, transparent);
    border-radius: 1rem;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-heading) 8%, var(--swlw-background)) 0%,
            color-mix(in srgb, var(--swlw-primary) 12%, var(--swlw-section-background)) 100%);
    box-shadow: var(--swlw-card-shadow);
}

.about-cta .about-copy {
    max-width: 760px;
}

@media (min-width: 1200px) {
    .about-intro .container,
    .about-section .container {
        max-width: 1120px;
    }
}

@media (max-width: 767.98px) {
    .about-intro,
    .about-section {
        padding: 2.5rem 0;
    }

    .about-profile-image,
    .about-profile-placeholder {
        max-height: 460px;
    }

    .about-cta {
        padding: 1.75rem;
    }
}


/* Home CMS sections */
.home-cms-section {
    padding: 3.5rem 0;
}

.hero + .home-cms-section {
    padding-top: 4rem;
}

.home-cms-copy {
    max-width: 68ch;
    font-size: 1rem;
    line-height: 1.75;
}

.home-cms-copy h2,
.home-cms-cta h2 {
    color: var(--swlw-heading);
    margin-bottom: 1rem;
}

.home-cms-copy p {
    margin-bottom: 1.1rem;
}

.home-cms-copy p:last-child {
    margin-bottom: 0;
}

.home-cms-copy-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.home-cms-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 430px;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    box-shadow: var(--swlw-card-shadow);
}

.home-cms-cta {
    max-width: 920px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 1rem;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-heading) 8%, var(--swlw-background)) 0%,
            color-mix(in srgb, var(--swlw-primary) 12%, var(--swlw-section-background)) 100%);
    box-shadow: var(--swlw-card-shadow);
}

.home-cms-cta .home-cms-copy {
    max-width: 760px;
}

@media (max-width: 767.98px) {
    .home-cms-section {
        padding: 2.5rem 0;
    }

    .home-cms-cta {
        padding: 1.75rem;
    }
}


/* Portfolio page */
.portfolio-container {
    max-width: 1480px;
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
}

.portfolio-hero-copy {
    max-width: 860px;
}

.portfolio-hero-copy p:not(.lead) {
    max-width: 76ch;
    font-size: 1rem;
    line-height: 1.75;
}

.portfolio-page {
    padding-top: 3rem;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 2rem;
}

.portfolio-filter-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: .45rem .9rem;
    border: 1px solid color-mix(in srgb, var(--swlw-heading) 18%, transparent);
    border-radius: 999px;
    background: var(--swlw-background);
    color: var(--swlw-heading);
    font-size: .92rem;
    font-weight: 600;
}

.portfolio-filter-pill:hover,
.portfolio-filter-pill:focus {
    border-color: var(--swlw-primary);
    color: var(--swlw-primary-dark);
    text-decoration: none;
}

.portfolio-filter-pill.active {
    border-color: var(--swlw-button-bg);
    background: var(--swlw-button-bg);
    color: var(--swlw-button-text);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1320px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.portfolio-card {
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--swlw-border) 80%, transparent);
    border-radius: 1rem;
    background: var(--swlw-background);
    box-shadow: var(--swlw-card-shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--swlw-primary) 35%, var(--swlw-border));
    box-shadow: 0 .8rem 2rem rgba(75, 15, 92, .13);
}

.portfolio-card-image,
.portfolio-card-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.portfolio-card-image {
    transition: transform .25s ease;
}

.portfolio-card:hover .portfolio-card-image {
    transform: scale(1.035);
}

.portfolio-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-heading) 8%, var(--swlw-background)) 0%,
            color-mix(in srgb, var(--swlw-primary) 14%, var(--swlw-section-background)) 100%);
    color: var(--swlw-heading);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

.portfolio-card-body {
    padding: 1.25rem;
}

.portfolio-card-body h2 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
}

.portfolio-card-body p {
    margin-bottom: 0;
    color: var(--swlw-muted);
    line-height: 1.65;
}

.portfolio-category-label {
    margin-bottom: .45rem;
    color: var(--swlw-primary-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-cta {
    max-width: 1040px;
    margin: 0 auto;
    padding: 2.75rem;
    border-radius: 1rem;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-heading) 8%, var(--swlw-background)) 0%,
            color-mix(in srgb, var(--swlw-primary) 12%, var(--swlw-section-background)) 100%);
    box-shadow: var(--swlw-card-shadow);
}

.portfolio-cta p {
    max-width: 58ch;
    margin-bottom: 1.5rem;
    color: var(--swlw-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .portfolio-page {
        padding-top: 2.5rem;
    }

    .portfolio-filters {
        gap: .5rem;
    }

    .portfolio-filter-pill {
        font-size: .88rem;
    }

    .portfolio-cta {
        padding: 1.75rem;
    }
}


/* Fashion Club page */
.fashion-club-container {
    max-width: 1240px;
}

.fashion-club-hero {
    overflow: hidden;
}

.fashion-club-kicker {
    color: var(--swlw-primary-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: .75rem;
    text-transform: uppercase;
}

.fashion-club-hero .lead {
    color: var(--swlw-heading);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.55;
    max-width: 42rem;
}

.fashion-club-hero-body,
.fashion-club-section-copy {
    color: var(--swlw-muted);
    font-size: 1.06rem;
    line-height: 1.75;
    max-width: 44rem;
}

.fashion-club-hero-visual {
    position: relative;
}

.fashion-club-hero-visual::before {
    background: color-mix(in srgb, var(--swlw-primary) 14%, transparent);
    border-radius: 2rem;
    content: "";
    inset: 1.25rem -1.25rem -1.25rem 1.25rem;
    position: absolute;
}

.fashion-club-hero-image,
.fashion-club-hero-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 1.25rem;
    box-shadow: var(--swlw-card-shadow);
    position: relative;
    width: 100%;
}

.fashion-club-hero-image {
    display: block;
    object-fit: cover;
    object-position: center;
}

.fashion-club-image-placeholder {
    align-items: center;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-primary) 10%, var(--swlw-background)) 0%,
            color-mix(in srgb, var(--swlw-primary) 20%, var(--swlw-section-background)) 100%);
    color: var(--swlw-heading);
    display: flex;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    justify-content: center;
    min-height: 100%;
    padding: 1.5rem;
    text-align: center;
}

.fashion-club-section-heading {
    margin: 0 auto 2.5rem;
    max-width: 680px;
}

.fashion-club-section-heading p {
    color: var(--swlw-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.fashion-club-benefit-card,
.fashion-club-plan-card,
.fashion-club-testimonial-card,
.fashion-club-empty-plans {
    background: var(--swlw-background);
    border: 1px solid color-mix(in srgb, var(--swlw-border) 82%, transparent);
    border-radius: 1rem;
    box-shadow: var(--swlw-card-shadow);
}

.fashion-club-benefit-card {
    padding: 1.6rem;
}

.fashion-club-card-number {
    align-items: center;
    background: color-mix(in srgb, var(--swlw-primary) 13%, var(--swlw-section-background));
    border-radius: 999px;
    color: var(--swlw-primary-dark);
    display: inline-flex;
    font-weight: 800;
    height: 2.2rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 2.2rem;
}

.fashion-club-benefit-card h3 {
    font-size: 1.35rem;
}

.fashion-club-benefit-card p,
.fashion-club-plan-summary,
.fashion-club-testimonial-card p {
    color: var(--swlw-muted);
    line-height: 1.7;
}

.fashion-club-steps {
    display: grid;
    gap: .85rem;
}

.fashion-club-step {
    align-items: center;
    background: var(--swlw-background);
    border: 1px solid var(--swlw-border);
    border-radius: .9rem;
    display: flex;
    gap: 1rem;
    padding: 1rem 1.15rem;
}

.fashion-club-step span {
    align-items: center;
    background: var(--swlw-primary);
    border-radius: 50%;
    color: var(--swlw-button-text);
    display: inline-flex;
    flex: 0 0 2rem;
    font-weight: 800;
    height: 2rem;
    justify-content: center;
    width: 2rem;
}

.fashion-club-plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.6rem;
    position: relative;
}

.fashion-club-plan-image-wrap {
    aspect-ratio: 4 / 3;
    background: color-mix(in srgb, var(--swlw-primary) 10%, var(--swlw-section-background));
    border-radius: .85rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.fashion-club-plan-image {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.fashion-club-plan-card.is-featured {
    border-color: color-mix(in srgb, var(--swlw-primary) 52%, var(--swlw-border));
    box-shadow: 0 1rem 2.25rem rgba(75, 15, 92, .15);
    transform: translateY(-.35rem);
}

.fashion-club-featured-badge {
    align-self: flex-start;
    background: var(--swlw-primary);
    border-radius: 999px;
    color: var(--swlw-button-text);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    margin-bottom: 1rem;
    padding: .35rem .75rem;
    text-transform: uppercase;
}

.fashion-club-price-row {
    display: grid;
    gap: .35rem;
    margin: 1rem 0;
}

.fashion-club-price span {
    color: var(--swlw-heading);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
}

.fashion-club-price small {
    color: var(--swlw-muted);
    font-weight: 700;
}

.fashion-club-price-secondary span {
    font-size: 1.25rem;
}

.fashion-club-benefits-list {
    display: grid;
    gap: .55rem;
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.fashion-club-benefits-list li {
    color: var(--swlw-text);
    line-height: 1.55;
    padding-left: 1.55rem;
    position: relative;
}

.fashion-club-benefits-list li::before {
    color: var(--swlw-primary);
    content: "\2713";
    font-weight: 800;
    left: 0;
    position: absolute;
    top: 0;
}

.fashion-club-empty-plans {
    margin: 0 auto;
    max-width: 680px;
    padding: 2rem;
}

.fashion-club-moments-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .fashion-club-moments-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.fashion-club-moment-card {
    border-radius: 1rem;
    box-shadow: var(--swlw-card-shadow);
    overflow: hidden;
}

.fashion-club-moment-image,
.fashion-club-moment-card .fashion-club-image-placeholder {
    aspect-ratio: 4 / 3;
    width: 100%;
}

.fashion-club-moment-image {
    display: block;
    object-fit: cover;
    object-position: center;
}

.fashion-club-testimonial-card {
    padding: 1.5rem;
}

.fashion-club-faq-list {
    display: grid;
    gap: .85rem;
}

.fashion-club-faq-item {
    background: var(--swlw-background);
    border: 1px solid var(--swlw-border);
    border-radius: .9rem;
    box-shadow: 0 .35rem 1rem rgba(0, 0, 0, .04);
    padding: 1rem 1.15rem;
}

.fashion-club-faq-item summary {
    color: var(--swlw-heading);
    cursor: pointer;
    font-weight: 800;
}

.fashion-club-faq-item p {
    color: var(--swlw-muted);
    line-height: 1.7;
    margin: .85rem 0 0;
}

.fashion-club-final-cta {
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-heading) 9%, var(--swlw-background)) 0%,
            color-mix(in srgb, var(--swlw-primary) 16%, var(--swlw-section-background)) 100%);
    border-radius: 1.25rem;
    box-shadow: var(--swlw-card-shadow);
    padding: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
}

.fashion-club-final-cta p {
    color: var(--swlw-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0 auto 1.5rem;
    max-width: 48rem;
}

@media (max-width: 991.98px) {
    .fashion-club-hero {
        padding: 4rem 0;
    }

    .fashion-club-plan-card.is-featured {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .fashion-club-hero-visual::before {
        display: none;
    }

    .fashion-club-benefit-card,
    .fashion-club-plan-card,
    .fashion-club-testimonial-card {
        padding: 1.3rem;
    }
}

/* Fashion Club polish */
.fashion-club-hero {
    background:
        radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--swlw-primary) 18%, transparent) 0, transparent 28rem),
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-primary) 10%, var(--swlw-background)) 0%,
            color-mix(in srgb, var(--swlw-primary) 18%, var(--swlw-section-background)) 100%);
    padding: 5.75rem 0 5.25rem;
}

.fashion-club-hero h1 {
    max-width: 11ch;
}

.fashion-club-hero .lead {
    font-size: 1.28rem;
    margin-bottom: 1rem;
}

.fashion-club-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.8rem;
}

.fashion-club-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.25rem;
}

.fashion-club-hero-highlights span {
    background: color-mix(in srgb, var(--swlw-background) 72%, transparent);
    border: 1px solid color-mix(in srgb, var(--swlw-primary) 20%, transparent);
    border-radius: 999px;
    color: var(--swlw-primary-dark);
    font-size: .9rem;
    font-weight: 700;
    padding: .42rem .75rem;
}

.fashion-club-hero-visual {
    padding: .75rem;
}

.fashion-club-hero-visual::before {
    inset: 2rem -.25rem -.25rem 2rem;
}

.fashion-club-hero-image,
.fashion-club-hero-placeholder {
    border: 8px solid color-mix(in srgb, var(--swlw-background) 78%, transparent);
    min-height: 360px;
}

.fashion-club-hero-note {
    align-items: flex-start;
    background: color-mix(in srgb, var(--swlw-heading) 88%, #000000);
    border-radius: .75rem;
    bottom: 1.5rem;
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .18);
    color: #fff;
    display: grid;
    gap: .2rem;
    left: 1.5rem;
    max-width: min(82%, 360px);
    padding: 1rem 1.15rem;
    position: absolute;
    z-index: 2;
}

.fashion-club-hero-note span {
    color: color-mix(in srgb, #ffffff 74%, var(--swlw-footer-text));
    font-size: .92rem;
    line-height: 1.45;
}

.fashion-club-benefit-card {
    border-top: 4px solid color-mix(in srgb, var(--swlw-primary) 68%, var(--swlw-border));
    transition: transform .18s ease, box-shadow .18s ease;
}

.fashion-club-benefit-card:hover {
    box-shadow: 0 .95rem 2rem rgba(75, 15, 92, .13);
    transform: translateY(-4px);
}

.fashion-club-benefit-icon {
    align-items: center;
    background:
        linear-gradient(135deg,
            var(--swlw-primary) 0%,
            color-mix(in srgb, var(--swlw-primary-dark) 82%, var(--swlw-heading)) 100%);
    border-radius: 50%;
    color: var(--swlw-button-text);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    height: 3.25rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    width: 3.25rem;
}

.fashion-club-card-number {
    display: none;
}

.fashion-club-steps {
    gap: 1rem;
}

@media (min-width: 768px) {
    .fashion-club-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.fashion-club-step {
    align-items: flex-start;
    box-shadow: 0 .45rem 1.1rem rgba(0, 0, 0, .04);
    min-height: 7.2rem;
}

.fashion-club-step strong,
.fashion-club-step small {
    display: block;
}

.fashion-club-step small {
    color: var(--swlw-muted);
    line-height: 1.55;
    margin-top: .25rem;
}

.fashion-club-plans-section {
    background:
        linear-gradient(180deg,
            var(--swlw-background) 0%,
            color-mix(in srgb, var(--swlw-primary) 6%, var(--swlw-background)) 100%);
}

.fashion-club-plan-card {
    overflow: hidden;
    padding: 1.35rem;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fashion-club-plan-card:hover {
    border-color: color-mix(in srgb, var(--swlw-primary) 42%, var(--swlw-border));
    box-shadow: 0 .95rem 2rem rgba(75, 15, 92, .12);
    transform: translateY(-4px);
}

.fashion-club-plan-card.is-featured {
    background:
        linear-gradient(180deg,
            color-mix(in srgb, var(--swlw-primary) 8%, var(--swlw-background)) 0%,
            var(--swlw-background) 42%);
    border: 2px solid color-mix(in srgb, var(--swlw-primary) 68%, var(--swlw-border));
}

.fashion-club-plan-card.is-featured:hover {
    transform: translateY(-8px);
}

.fashion-club-plan-image-wrap {
    border: 1px solid color-mix(in srgb, var(--swlw-border) 70%, transparent);
}

.fashion-club-featured-badge {
    box-shadow: 0 .35rem .85rem rgba(75, 15, 92, .18);
}

.fashion-club-plan-content h3 {
    font-size: 1.45rem;
    margin-bottom: .85rem;
}

.fashion-club-price-row {
    border-bottom: 1px solid color-mix(in srgb, var(--swlw-border) 72%, transparent);
    margin: .75rem 0 1rem;
    padding-bottom: 1rem;
}

.fashion-club-price {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
}

.fashion-club-price span {
    color: var(--swlw-primary-dark);
    font-size: 2.25rem;
    line-height: 1;
}

.fashion-club-price small {
    color: var(--swlw-heading);
    font-size: .95rem;
}

.fashion-club-price-secondary {
    background: color-mix(in srgb, var(--swlw-primary) 8%, var(--swlw-section-background));
    border-radius: 999px;
    justify-content: flex-start;
    margin-top: .45rem;
    padding: .4rem .7rem;
    width: fit-content;
}

.fashion-club-price-secondary span {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: .98rem;
    font-weight: 800;
}

.fashion-club-benefits-list {
    gap: .72rem;
}

.fashion-club-benefits-list li {
    border-bottom: 1px solid color-mix(in srgb, var(--swlw-border) 55%, transparent);
    padding-bottom: .65rem;
}

.fashion-club-benefits-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.fashion-club-faq-accordion {
    display: grid;
    gap: .85rem;
}

.fashion-club-faq-item {
    overflow: hidden;
    padding: 0;
}

.fashion-club-faq-item .accordion-button {
    background: var(--swlw-background);
    color: var(--swlw-heading);
    font-weight: 800;
    line-height: 1.35;
    padding: 1rem 1.15rem;
}

.fashion-club-faq-item .accordion-button:not(.collapsed) {
    background: color-mix(in srgb, var(--swlw-primary) 10%, var(--swlw-section-background));
    box-shadow: none;
    color: var(--swlw-primary-dark);
}

.fashion-club-faq-item .accordion-button:focus {
    box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--swlw-primary) 24%, transparent);
}

.fashion-club-faq-item .accordion-body {
    color: var(--swlw-muted);
    line-height: 1.7;
    padding: 1rem 1.15rem 1.2rem;
}

.fashion-club-final-cta {
    border: 1px solid color-mix(in srgb, var(--swlw-primary) 18%, transparent);
}

@media (max-width: 991.98px) {
    .fashion-club-hero h1 {
        max-width: 100%;
    }

    .fashion-club-hero-image,
    .fashion-club-hero-placeholder {
        min-height: 300px;
    }

    .fashion-club-plan-card.is-featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 575.98px) {
    .fashion-club-hero {
        padding: 3.5rem 0;
    }

    .fashion-club-hero .lead {
        font-size: 1.12rem;
    }

    .fashion-club-hero-actions .btn {
        width: 100%;
    }

    .fashion-club-hero-visual {
        padding: 0;
    }

    .fashion-club-hero-image,
    .fashion-club-hero-placeholder {
        border-width: 5px;
        min-height: 240px;
    }

    .fashion-club-hero-note {
        border-radius: .65rem;
        bottom: .85rem;
        left: .85rem;
        max-width: calc(100% - 1.7rem);
        padding: .8rem .9rem;
    }

    .fashion-club-hero-highlights span {
        font-size: .84rem;
    }

    .fashion-club-step {
        min-height: auto;
    }

    .fashion-club-price span {
        font-size: 2rem;
    }
}

.service-detail-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}


/* Identity auth pages */
.auth-page {
    padding: 4.5rem 0;
    background:
        radial-gradient(circle at top left,
            color-mix(in srgb, var(--swlw-primary) 16%, transparent) 0,
            transparent 34rem),
        var(--swlw-hero-bg);
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--swlw-heading) 12%, transparent);
    border-radius: 1.25rem;
    background: var(--swlw-background);
    box-shadow: 0 1.25rem 3rem rgba(75, 15, 92, .14);
}

.auth-card,
.auth-side-panel {
    padding: clamp(1.75rem, 4vw, 3rem);
}

.auth-card {
    background: var(--swlw-background);
}

.auth-card-header {
    max-width: 560px;
    margin-bottom: 2rem;
}

.auth-card-header h1,
.auth-side-panel h2 {
    margin-bottom: .75rem;
    color: var(--swlw-heading);
}

.auth-card-header p,
.auth-side-panel p {
    margin-bottom: 0;
    color: var(--swlw-muted);
    line-height: 1.7;
}

.auth-eyebrow {
    margin-bottom: .5rem !important;
    color: var(--swlw-primary-dark) !important;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.auth-form .form-floating > .form-control {
    min-height: 3.4rem;
    border-radius: .8rem;
}

.auth-form .form-check-input {
    border-color: color-mix(in srgb, var(--swlw-heading) 24%, var(--swlw-border));
}

.auth-subtle-link,
.auth-link-row a {
    font-weight: 600;
}

.auth-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.5rem;
    color: var(--swlw-muted);
    font-size: .95rem;
}

.auth-side-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--swlw-heading) 92%, #000000) 0%,
            color-mix(in srgb, var(--swlw-navbar-hover) 38%, var(--swlw-heading)) 100%);
    color: #fff;
}

.auth-side-panel h2,
.auth-side-panel .auth-eyebrow {
    color: var(--swlw-footer-bright) !important;
}

.auth-side-panel p,
.auth-feature-list span {
    color: color-mix(in srgb, #ffffff 78%, var(--swlw-footer-text));
}

.auth-feature-list {
    display: grid;
    gap: 1rem;
}

.auth-feature-list div {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: .9rem;
    background: rgba(255, 255, 255, .07);
}

.auth-feature-list strong,
.auth-feature-list span {
    display: block;
}

.auth-feature-list strong {
    margin-bottom: .25rem;
    color: #fff;
}

.auth-external {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.auth-external h3 {
    color: #fff;
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .auth-shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    }
}

@media (max-width: 767.98px) {
    .auth-page {
        padding: 2.5rem 0;
    }

    .auth-shell {
        border-radius: 1rem;
    }
}
