:root {
    --bg: #070514;
    --panel: #120a25;
    --panel-2: #1e1038;
    --violet: #7b3ff2;
    --magenta: #e84dce;
    --cyan: #20d8ff;
    --gold: #f1c76b;
    --ink: #f8f3ff;
    --muted: #c7b9da;
    --line: rgba(255, 255, 255, .14);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 10%, rgba(123, 63, 242, .2), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(232, 77, 206, .18), transparent 25%),
        #070514;
    font-family: "Segoe UI", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.top-strip {
    height: 44px;
    display: flex;
    align-items: center;
    background: rgba(10, 6, 24, .82);
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    backdrop-filter: blur(14px);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 34px;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.socials {
    display: flex;
    align-items: center;
    gap: 23px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
}

.social-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: var(--rose, #a76561);
}

.instagram-icon {
    border: 2px solid currentColor;
    border-radius: 9px;
}

.instagram-icon span {
    width: 9px;
    height: 9px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.instagram-icon::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 5px;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

.site-nav {
    min-height: 88px;
    background: rgba(7, 5, 20, .76);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(241, 199, 107, .65);
    border-radius: 50%;
    color: var(--gold);
    font-size: 26px;
    background: radial-gradient(circle, rgba(232, 77, 206, .22), rgba(32, 216, 255, .08));
    box-shadow: 0 0 28px rgba(123, 63, 242, .35);
}

.brand strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -.01em;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.nav-link {
    color: #e8def4;
    font-size: 14px;
    font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
    color: var(--cyan);
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 13px 28px;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-rose {
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 16px 35px rgba(123, 63, 242, .36);
}

.btn-rose:hover {
    background: linear-gradient(135deg, #8e59ff, #ff65de);
    color: #fff;
}

.btn-outline-warm {
    color: #fff;
    border: 1px solid rgba(32, 216, 255, .45);
    background: rgba(255, 255, 255, .06);
}

.btn-outline-warm:hover {
    background: rgba(32, 216, 255, .16);
    color: #fff;
}

.nav-cta {
    padding-inline: 31px;
}

.btn-small {
    padding: 10px 24px;
    font-size: 12px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    background:
        radial-gradient(circle at 72% 42%, rgba(32, 216, 255, .18), transparent 24%),
        radial-gradient(circle at 70% 38%, rgba(232, 77, 206, .2), transparent 34%),
        linear-gradient(135deg, #090516 0%, #17082f 46%, #2c0b3d 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .78) 1px, transparent 1.6px),
        linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, .08) 42.2%, transparent 43%);
    background-size: 90px 90px, 100% 100%;
    opacity: .42;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: 12%;
    left: auto;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(32, 216, 255, .25);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(123, 63, 242, .36), inset 0 0 70px rgba(232, 77, 206, .18);
}

.min-vh-hero {
    min-height: 650px;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-star {
    position: absolute;
    color: #fff;
    z-index: 2;
}

.hero-star-one {
    left: 8%;
    top: 18%;
    font-size: 18px;
}

.hero-star-two {
    left: 48%;
    top: 16%;
    font-size: 34px;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 6vw, 78px);
    line-height: .98;
    margin: 14px 0 24px;
    letter-spacing: -.04em;
    font-weight: 800;
}

.hero p {
    max-width: 650px;
    color: #ded2ec;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-lead {
    color: #c8bad7 !important;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.cosmic-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    right: 8%;
    top: 22%;
    width: 430px;
    height: 430px;
}

.orbit-two {
    right: 14%;
    top: 31%;
    width: 260px;
    height: 260px;
}

.energy-panel {
    position: relative;
    z-index: 2;
    padding: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
    backdrop-filter: blur(16px);
}

.energy-aura {
    width: 170px;
    height: 170px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle, #fff 0 4%, #79efff 5% 12%, #8c55ff 13% 28%, rgba(232, 77, 206, .38) 29% 45%, transparent 46%),
        conic-gradient(from 120deg, #20d8ff, #e84dce, #f1c76b, #20d8ff);
    box-shadow: 0 0 55px rgba(32, 216, 255, .42);
}

.energy-core {
    position: absolute;
    right: 34px;
    top: 26px;
    color: var(--gold);
    font-size: 26px;
}

.energy-panel h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

.energy-panel ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #e9ddf4;
}

.energy-panel li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--cyan);
    font-weight: 800;
}

.section {
    position: relative;
    padding: 84px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 28px;
}

.section-title span {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.section-title h2,
.about-band h2,
.contact-panel h2 {
    position: relative;
    font-size: clamp(32px, 4vw, 52px);
    margin: 6px 0 0;
    font-weight: 800;
    letter-spacing: -.03em;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 74px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--gold));
    border-radius: 999px;
}

.service-card {
    height: 100%;
    min-height: 250px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
        rgba(18, 10, 37, .85);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .24);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 0 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32, 216, 255, .22), rgba(232, 77, 206, .18));
    color: #fff;
    font-size: 27px;
    box-shadow: 0 0 35px rgba(123, 63, 242, .28);
}

.service-card h3,
.blog-card h3 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.service-card p,
.blog-card p,
.about-band p,
.contact-panel p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.about-band,
.blog-band {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background:
        radial-gradient(circle at 12% 30%, rgba(232, 77, 206, .16), transparent 28%),
        linear-gradient(135deg, #10071f, #1a0b32 62%, #090516);
}

.about-band .container {
    position: relative;
}

.therapy-card {
    padding: 34px;
    min-height: 360px;
    display: grid;
    align-content: end;
    background:
        radial-gradient(circle at 55% 24%, rgba(255, 255, 255, .9) 0 2%, rgba(32, 216, 255, .36) 3% 12%, rgba(123, 63, 242, .3) 13% 34%, transparent 35%),
        linear-gradient(145deg, rgba(232, 77, 206, .18), rgba(32, 216, 255, .09));
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.therapy-card span {
    font-size: 46px;
    margin-bottom: 22px;
}

.therapy-card h2 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.about-list {
    display: grid;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-list span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-right: 14px;
    border-radius: 50%;
    background: rgba(32, 216, 255, .12);
    color: var(--cyan);
    border: 1px solid rgba(32, 216, 255, .25);
}

.testimonial-card {
    height: 100%;
    min-height: 180px;
    padding: 30px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
}

.quote {
    color: var(--gold);
    font-size: 42px;
    line-height: 1;
}

.stars {
    color: var(--gold);
    margin: 5px 0;
    letter-spacing: 2px;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.blog-symbol {
    display: grid;
    place-items: center;
    height: 120px;
    color: var(--cyan);
    font-size: 34px;
    background:
        radial-gradient(circle, rgba(32, 216, 255, .3), transparent 30%),
        linear-gradient(135deg, rgba(123, 63, 242, .35), rgba(232, 77, 206, .2));
}

.image-blog-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.blog-card div {
    padding: 24px;
}

.blog-card span,
.blog-card a {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
}

.blog-cta-card {
    display: grid;
    align-content: center;
    justify-items: center;
    height: 100%;
    min-height: 100%;
    padding: 28px;
    text-align: center;
    background: linear-gradient(135deg, rgba(123, 63, 242, .85), rgba(232, 77, 206, .62));
    border: 1px solid var(--line);
    border-radius: 24px;
}

.blog-cta-card span {
    color: #fff;
    font-size: 38px;
    margin-bottom: 14px;
}

.blog-cta-card h3 {
    font-size: 20px;
    line-height: 1.45;
}

.blog-cta-card p {
    color: #f1e8ff;
    font-size: 13px;
    line-height: 1.7;
}

.contact-section {
    padding: 86px 0 0;
    background: #070514;
}

.standalone-section {
    padding-top: 64px;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 70px;
    background:
        radial-gradient(circle at 78% 22%, rgba(32, 216, 255, .2), transparent 25%),
        radial-gradient(circle at 20% 18%, rgba(232, 77, 206, .18), transparent 24%),
        linear-gradient(135deg, #090516, #1c0b34 65%, #070514);
    border-bottom: 1px solid var(--line);
}

.inner-hero::after {
    content: "";
    position: absolute;
    right: 10%;
    top: 28%;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(32, 216, 255, .22);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(123, 63, 242, .28);
}

.inner-hero h1 {
    max-width: 860px;
    margin: 14px 0 16px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    font-weight: 850;
    letter-spacing: -.05em;
}

.inner-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.single-contact {
    grid-template-columns: 1.2fr .8fr;
    border-radius: 28px;
}

.blog-detail {
    padding: 90px 0;
}

.blog-detail h1 {
    max-width: 900px;
    margin: 14px 0 18px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1;
    font-weight: 850;
    letter-spacing: -.05em;
}

.blog-detail-summary {
    max-width: 760px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.blog-detail-image {
    width: min(760px, 100%);
    max-height: 760px;
    object-fit: contain;
    display: block;
    margin: 34px 0;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.blog-detail-content {
    max-width: 760px;
    margin-bottom: 30px;
    color: #e4d9ef;
    font-size: 18px;
    line-height: 1.85;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr;
    gap: 34px;
    padding: 34px 44px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04)),
        #120a25;
    border: 1px solid var(--line);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .25);
}

.ajax-form {
    display: grid;
    gap: 12px;
}

.form-control,
.form-select {
    min-height: 46px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .16);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .55);
}

.site-footer {
    padding: 18px 0;
    background: linear-gradient(90deg, #120a25, #2a0f41);
    color: #fff8ef;
    font-size: 13px;
    border-top: 1px solid var(--line);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 16px 36px rgba(37, 211, 102, .35);
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-brand .brand-mark {
    width: 42px;
    height: 42px;
    color: #f6d28a;
    border-color: #f6d28a;
}

.footer-brand strong {
    font-size: 20px;
}

.footer-brand small {
    color: #ffe8dc;
}

.admin-body {
    min-height: 100vh;
    background: #f8efe5;
    font-family: Arial, sans-serif;
}

.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(214, 169, 85, .16), transparent 26%),
        linear-gradient(135deg, #fff8ee, #efd8cf);
}

.login-card {
    width: min(430px, 100%);
    padding: 34px;
    background: #fffdfa;
    border: 1px solid #eadccc;
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(82, 47, 31, .14);
    font-family: Arial, sans-serif;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 270px;
    overflow-y: auto;
    padding: 24px 18px;
    background: #3f2922;
    color: #fff6eb;
}

.admin-logo {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.admin-sidebar a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    color: #f5dfce;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255, 255, 255, .11);
    color: #fff;
}

.admin-sidebar-divider {
    height: 1px;
    margin: 14px 8px;
    background: rgba(255, 255, 255, .14);
}

.admin-main {
    margin-left: 270px;
    padding: 32px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
}

.admin-header span {
    color: var(--rose);
    font-weight: 700;
}

.admin-header h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
}

.admin-card,
.stat-card {
    padding: 22px;
    background: #fffdfa;
    border: 1px solid #eadccc;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(78, 43, 27, .08);
}

.stat-card span {
    color: var(--muted);
}

.stat-card strong {
    display: block;
    color: var(--rose);
    font-size: 42px;
}

.stat-card.analytics-stat strong {
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.admin-main > .row.g-4 .col-md-3:nth-child(6) .stat-card strong {
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.dashboard-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.dashboard-card-head h2,
.dashboard-checks h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.dashboard-card-head a,
.dashboard-checks a {
    color: #a76561;
    font-weight: 800;
}

.dashboard-list article {
    padding: 14px 0;
    border-top: 1px solid rgba(78, 43, 27, .1);
}

.dashboard-list article span {
    display: inline-block;
    margin-bottom: 6px;
    color: #a76561;
    font-size: 12px;
    font-weight: 800;
}

.dashboard-list article strong {
    display: block;
    overflow-wrap: anywhere;
}

.dashboard-list article p,
.admin-muted {
    margin: 4px 0 0;
    color: #766961;
}

.dashboard-checks {
    display: grid;
    gap: 13px;
}

.dashboard-checks a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    color: #3f2922;
    background: #fff7ef;
    border: 1px solid rgba(78, 43, 27, .1);
    border-radius: 12px;
}

.dashboard-checks a strong {
    color: #a76561;
    font-size: 24px;
}

.upload-preview,
.table-thumb {
    display: none;
    width: 150px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eadccc;
}

.table-thumb {
    display: block;
    width: 88px;
    height: 56px;
}

/* Reference visual theme */
:root {
    --cream: #fbf2e7;
    --paper: #fffaf5;
    --sand: #ead8c2;
    --latte: #bf8d62;
    --rose: #a86160;
    --rose-dark: #94504f;
    --rose-soft: #efd8d2;
    --gold: #d7a757;
    --ink: #3d2921;
    --muted: #77645b;
    --line: #eadbca;
}

body {
    color: var(--ink);
    background: #fffaf4;
    font-family: "Segoe UI", Arial, sans-serif;
}

.top-strip {
    height: 48px;
    background: linear-gradient(90deg, #f0d7bd 0%, #fff4e4 50%, #f0d7bd 100%);
    color: #764d39;
    border-bottom: 0;
}

.socials {
    color: #b55f4a;
}

.site-nav {
    min-height: 100px;
    background: rgba(255, 253, 250, .96);
    border-bottom: 1px solid #eee0d1;
}

.brand {
    color: var(--ink);
}

.brand-mark {
    width: 64px;
    height: 64px;
    border: 1px solid #d9a964;
    color: var(--gold);
    background: transparent;
    box-shadow: none;
    font-size: 36px;
}

.brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.brand small {
    color: var(--muted);
    font-size: 15px;
}

.nav-link {
    color: #402a22;
}

.nav-link.active,
.nav-link:hover {
    color: var(--rose);
}

.btn-rose {
    background: var(--rose);
    color: #fff;
    border: 1px solid var(--rose);
    box-shadow: none;
}

.btn-rose:hover {
    background: var(--rose-dark);
    color: #fff;
}

.btn-outline-warm {
    color: var(--rose);
    border: 1px solid #bf835f;
    background: rgba(255, 250, 244, .72);
}

.btn-outline-warm:hover {
    background: var(--rose-soft);
    color: var(--ink);
}

.hero {
    min-height: 445px;
    background: linear-gradient(90deg, #fffaf4 0%, #fffaf4 49%, #f1dfca 49%, #d4a985 100%);
}

.hero::before {
    background:
        radial-gradient(circle at 8% 30%, rgba(216, 172, 94, .12), transparent 18%),
        radial-gradient(circle at 40% 20%, rgba(167, 97, 96, .07), transparent 16%);
    opacity: 1;
}

.hero::after {
    left: -9%;
    right: auto;
    bottom: -112px;
    width: 64%;
    height: 220px;
    border-top: 2px solid rgba(214, 169, 85, .82);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 50%;
    box-shadow: none;
}

.min-vh-hero {
    min-height: 445px;
}

.hero-star {
    color: var(--gold);
}

.hero-star-one {
    left: 22px;
    top: 94px;
    font-size: 14px;
}

.hero-star-two {
    left: 43%;
    top: 72px;
    font-size: 37px;
}

.hero h1 {
    max-width: 560px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 4.4vw, 55px);
    line-height: 1.08;
    margin: 0 0 28px;
    letter-spacing: -.01em;
    font-weight: 600;
}

.hero p {
    max-width: 520px;
    color: #4e4039;
    font-size: 15px;
    line-height: 1.85;
}

.hero-lead {
    color: #6f5e55 !important;
}

.hero-media-wrap {
    align-self: stretch;
}

.hero-media {
    position: relative;
    height: 100%;
    min-height: 445px;
    margin-right: calc((100vw - 1140px) / -2);
    overflow: hidden;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -12%;
    z-index: 1;
    width: 38%;
    background: linear-gradient(90deg, #fffaf4 5%, rgba(255, 250, 244, .8), rgba(255, 250, 244, 0));
    border-radius: 0 45% 45% 0;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 445px;
    object-fit: cover;
    display: block;
    filter: saturate(.98) sepia(.08);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 555px;
    margin-top: 38px;
    color: #4d3a32;
    font-size: 13px;
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding-right: 18px;
    border-right: 1px solid #dfc5aa;
}

.trust-row i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #cf8b5f;
    border: 1px solid #ead2bd;
    border-radius: 50%;
    font-style: normal;
}

.section {
    padding: 48px 0 70px;
}

.section-title span,
.eyebrow {
    color: #c09570;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.section-title h2,
.about-band h2,
.contact-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0;
}

.section-title h2::after {
    content: "◆";
    display: block;
    width: auto;
    height: auto;
    margin-top: 8px;
    color: var(--gold);
    background: none;
    font-size: 12px;
}

.service-card {
    min-height: 174px;
    padding: 20px 18px 22px;
    text-align: center;
    background: rgba(255, 252, 248, .9);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(89, 54, 35, .06);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 17px;
    background: #f2dfda;
    color: #b86860;
    box-shadow: none;
}

.service-card h3,
.blog-card h3 {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.service-card p,
.blog-card p,
.about-band p,
.contact-panel p {
    color: var(--muted);
    font-size: 13px;
}

.about-band,
.blog-band {
    padding: 62px 0;
    background: linear-gradient(90deg, #f8eadc 0%, #fff7ed 58%, #f6e5d7 100%);
}

.mandala-bg {
    position: absolute;
    left: -8px;
    top: 12px;
    color: rgba(214, 169, 85, .22);
    font-size: 210px;
    line-height: .8;
}

.about-image {
    position: relative;
    z-index: 1;
    width: min(300px, 100%);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 24px 55px rgba(77, 44, 29, .1);
}

.about-list {
    display: grid;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0 0 0 32px;
    border-left: 1px solid #e5cfb9;
}

.about-list span {
    background: #f5e2cd;
    color: var(--gold);
    border: 0;
}

.testimonial-card {
    min-height: 140px;
    padding: 22px 34px;
    background: #fffdfa;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 13px 32px rgba(80, 48, 32, .04);
}

.quote,
.stars {
    color: var(--gold);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #f7e6d4;
    color: #c48659;
    font-size: 24px;
}

.arrow-left {
    left: 6%;
}

.arrow-right {
    right: 6%;
}

.blog-card {
    background: #fffdfa;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.image-blog-card img {
    width: 100%;
    height: 104px;
    aspect-ratio: auto;
    object-fit: cover;
}

.blog-symbol {
    height: 104px;
    color: var(--rose);
    background: #f4e3d9;
}

.blog-card div {
    padding: 15px;
}

.blog-card span,
.blog-card a {
    color: var(--rose);
}

.blog-cta-card {
    min-height: 100%;
    padding: 28px;
    color: var(--ink);
    background: linear-gradient(135deg, #f3d8d1, #efd4cc);
    border: 0;
    border-radius: 8px;
}

.blog-cta-card span {
    color: var(--rose);
}

.blog-cta-card p {
    color: #6f5a50;
}

.inner-hero {
    background: linear-gradient(135deg, #fffaf4, #f4dfcf);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.inner-hero::after {
    border-color: rgba(214, 169, 85, .34);
    box-shadow: none;
}

.inner-hero h1,
.blog-detail h1 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
}

.inner-hero p,
.blog-detail-summary,
.blog-detail-content {
    color: var(--muted);
}

.contact-section {
    background: linear-gradient(180deg, #fff9f2, #fff3e7);
}

.contact-panel {
    background: #fffdf9;
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(80, 48, 32, .06);
}

.form-control,
.form-select {
    color: var(--ink);
    background: #fff;
    border-color: #e2cdb8;
}

.form-control::placeholder {
    color: #9d8b82;
}

.blog-detail-image {
    background: #fffdfa;
    border: 1px solid var(--line);
}

.blog-detail-v2 {
    position: relative;
    overflow: hidden;
    padding: 72px 0 92px;
    background:
        radial-gradient(circle at 18% 12%, rgba(214, 169, 85, .18), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(177, 99, 99, .12), transparent 30%),
        linear-gradient(180deg, #fffaf4 0%, #fff7ef 48%, #f9ebdc 100%);
}

.blog-detail-v2::before,
.blog-detail-v2::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(214, 169, 85, .28);
    border-radius: 999px;
}

.blog-detail-v2::before {
    width: 420px;
    height: 420px;
    right: -170px;
    top: 115px;
}

.blog-detail-v2::after {
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: 180px;
}

.article-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: #8e7567;
    font-size: 13px;
    font-weight: 800;
}

.article-breadcrumb a {
    color: var(--rose);
}

.article-breadcrumb strong {
    color: #7a6256;
    font-weight: 800;
}

.article-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .82fr);
    gap: 54px;
    align-items: center;
    padding: 34px;
    background: rgba(255, 253, 249, .78);
    border: 1px solid rgba(226, 205, 184, .84);
    border-radius: 28px;
    box-shadow: 0 28px 90px rgba(80, 48, 32, .09);
    backdrop-filter: blur(18px);
}

.article-hero-grid::before {
    content: "";
    position: absolute;
    inset: 14px;
    pointer-events: none;
    border: 1px solid rgba(214, 169, 85, .22);
    border-radius: 22px;
}

.article-hero-copy h1 {
    max-width: 820px;
    margin: 12px 0 20px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 84px);
    line-height: .96;
}

.article-meta-row,
.article-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.article-meta-row {
    margin-top: 24px;
}

.article-meta-row span {
    padding: 10px 14px;
    color: #765e52;
    background: #fff6ee;
    border: 1px solid #ead6c1;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.article-action-row {
    margin-top: 30px;
}

.btn-outline-warm {
    min-height: 44px;
    padding: 13px 24px;
    color: var(--rose);
    background: transparent;
    border: 1px solid #c99a72;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.btn-outline-warm:hover {
    color: #fff;
    background: var(--rose);
    border-color: var(--rose);
}

.article-hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
    padding: 20px;
    background:
        linear-gradient(145deg, rgba(89, 28, 68, .08), rgba(214, 169, 85, .12)),
        #fffdf9;
    border: 1px solid #ecd8c2;
    border-radius: 24px;
}

.article-hero-visual::before {
    content: "✦";
    position: absolute;
    right: 22px;
    top: 18px;
    color: var(--gold);
    font-size: 34px;
}

.article-hero-visual .blog-detail-image {
    width: 100%;
    max-height: 660px;
    margin: 0;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(80, 48, 32, .18);
}

.visual-note {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 2px;
    min-width: 190px;
    padding: 14px 16px;
    background: rgba(255, 253, 249, .88);
    border: 1px solid rgba(232, 206, 180, .92);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(80, 48, 32, .14);
    backdrop-filter: blur(14px);
}

.visual-note.top {
    left: -18px;
    top: 42px;
}

.visual-note.bottom {
    right: -18px;
    bottom: 42px;
}

.visual-note span {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1;
}

.visual-note strong {
    color: var(--ink);
    font-size: 14px;
}

.visual-note small {
    color: #826b60;
    font-size: 12px;
}

.article-symbol {
    display: grid;
    place-items: center;
    width: 180px;
    height: 180px;
    color: var(--gold);
    background: #fff6ec;
    border: 1px solid #e8ceb4;
    border-radius: 50%;
    font-size: 58px;
}

.article-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    margin-top: 34px;
}

.article-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.article-side-card,
.article-content-card,
.article-consult-card {
    background: rgba(255, 253, 249, .86);
    border: 1px solid rgba(226, 205, 184, .92);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(80, 48, 32, .07);
}

.article-side-card,
.article-content-card,
.article-consult-card,
.related-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.article-side-card:hover,
.article-content-card:hover,
.article-consult-card:hover,
.related-card:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 169, 85, .55);
    box-shadow: 0 24px 70px rgba(80, 48, 32, .11);
}

.article-side-card {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.article-side-card a {
    color: var(--ink);
    font-weight: 800;
}

.article-side-card a:hover {
    color: var(--rose);
}

.side-label {
    color: var(--rose);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-side-card.accent {
    background: linear-gradient(145deg, #fff8ef, #f4dcd4);
}

.article-side-card.accent strong {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.article-side-card.accent p {
    margin: 0;
    color: #746056;
    line-height: 1.65;
}

.article-side-card.accent a {
    width: fit-content;
    color: #fff;
    background: var(--rose);
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 13px;
}

.article-main {
    display: grid;
    gap: 24px;
}

.article-content-card {
    padding: clamp(26px, 4vw, 52px);
}

.article-lead {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ead6c1;
}

.article-lead span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--gold);
    background: #fff5eb;
    border: 1px solid #e8ceb4;
    border-radius: 50%;
    font-size: 26px;
}

.article-lead p {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.25;
}

.article-highlight {
    position: relative;
    margin: 0 0 28px;
    padding: 26px 30px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(94, 38, 76, .94), rgba(153, 80, 96, .92)),
        #5b274f;
    border-radius: 20px;
    box-shadow: 0 22px 55px rgba(94, 38, 76, .18);
}

.article-highlight::after {
    content: "✦";
    position: absolute;
    right: 24px;
    bottom: 10px;
    color: rgba(255, 229, 186, .32);
    font-size: 74px;
}

.article-highlight span {
    display: block;
    margin-bottom: 10px;
    color: #f3c98e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-highlight strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #fffaf4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
    line-height: 1.28;
}

.blog-detail-v2 .blog-detail-content {
    max-width: none;
    margin: 0;
    color: #6f5a50;
    font-size: 19px;
    line-height: 1.9;
}

.blog-detail-v2 .blog-detail-content p {
    margin-bottom: 20px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #ead6c1;
}

.article-tags span {
    padding: 10px 14px;
    color: #7b4c4c;
    background: #fff5eb;
    border: 1px solid #e8ceb4;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
}

.article-consult-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(177, 99, 99, .11), rgba(214, 169, 85, .13)),
        #fffdfa;
}

.article-consult-card h2 {
    margin: 8px 0 10px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
}

.article-consult-card p {
    max-width: 720px;
    margin: 0;
    color: #746056;
    line-height: 1.75;
}

.consult-actions {
    display: grid;
    gap: 12px;
    min-width: 180px;
}

.related-posts {
    position: relative;
    z-index: 1;
    margin-top: 64px;
}

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

.section-heading.compact h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.related-card {
    height: 100%;
    background: #fffdf9;
}

.related-card img {
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.site-footer {
    background: linear-gradient(90deg, #a35c5d, #b36b62);
    color: #fff8ef;
    border-top: 0;
}

.footer-brand small {
    color: #ffe8dc;
}

@media (max-width: 991px) {
    .top-strip .container,
    .trust-row,
    .contact-panel,
    .single-contact,
    .article-hero-grid,
    .article-shell,
    .article-consult-card {
        grid-template-columns: 1fr;
    }

    .top-strip .container {
        display: grid !important;
        gap: 8px;
    }

    .hero-image {
        min-height: 300px;
        margin-top: 30px;
        border-radius: 80px 0 0 80px;
    }

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

    .admin-main {
        margin-left: 0;
        padding: 20px;
    }

    .blog-detail-v2 {
        padding: 34px 0 64px;
    }

    .article-hero-grid {
        gap: 26px;
        padding: 20px;
        border-radius: 22px;
    }

    .article-hero-grid::before {
        inset: 10px;
        border-radius: 18px;
    }

    .article-hero-copy h1 {
        font-size: clamp(38px, 11vw, 58px);
    }

    .article-hero-visual {
        min-height: auto;
        padding: 14px;
    }

    .article-hero-visual .blog-detail-image {
        max-height: 560px;
    }

    .visual-note {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 12px;
    }

    .article-sidebar {
        position: static;
        order: 2;
    }

    .article-main {
        order: 1;
    }

    .article-content-card,
    .article-consult-card {
        padding: 24px;
        border-radius: 18px;
    }

    .article-lead {
        grid-template-columns: 1fr;
    }

    .article-highlight {
        padding: 22px;
    }

    .consult-actions {
        min-width: 0;
    }
}

@media (max-width: 575px) {
    .article-meta-row span,
    .article-action-row .btn,
    .consult-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .article-hero-copy h1 {
        line-height: 1.02;
    }

    .blog-detail-v2 .blog-detail-content {
        font-size: 17px;
    }
}

/* Minimal 2026 redesign */
:root {
    --bg: #f7f3ee;
    --paper: #fffdf9;
    --ink: #231f1b;
    --muted: #756b62;
    --accent: #8d6b56;
    --accent-2: #b79076;
    --sage: #69786f;
    --line: #e7ddd2;
    --soft: #eee4da;
    --shadow-soft: 0 18px 60px rgba(45, 33, 24, .07);
    --shadow-card: 0 10px 34px rgba(45, 33, 24, .06);
}

body {
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.top-strip {
    height: 42px;
    color: var(--muted);
    background: #f1e8df;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.site-nav {
    min-height: 86px;
    background: rgba(255, 253, 249, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    gap: 13px;
}

.brand-monogram {
    width: 58px;
    height: 58px;
    color: #fff;
    background: #2b2520;
    border: 0;
    border-radius: 18px;
    box-shadow: none;
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .08em;
}

.brand-monogram::before,
.brand-monogram::after {
    display: none;
}

.brand strong {
    color: var(--ink);
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 850;
    letter-spacing: -.03em;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0;
}

.nav-link {
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
}

.nav-link::after {
    background: var(--accent);
}

.nav-link.active,
.nav-link:hover {
    color: var(--accent);
}

.btn {
    min-height: 44px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .02em;
}

.btn-rose,
.btn-outline-warm:hover {
    color: #fff;
    background: #2b2520;
    border-color: #2b2520;
    box-shadow: none;
}

.btn-rose:hover {
    color: #fff;
    background: var(--accent);
}

.btn-outline-warm {
    color: var(--ink);
    background: transparent;
    border: 1px solid #cdbfb2;
}

.hero {
    min-height: 650px;
    background: linear-gradient(180deg, #fbf7f2, #f3ebe3);
}

.hero::before,
.hero::after,
.hero-star,
.mandala-bg {
    display: none;
}

.min-vh-hero {
    min-height: 650px;
}

.hero-copy h1,
.section-title h2,
.about-band h2,
.signature-card h2,
.inner-hero h1,
.contact-copy-card h2,
.contact-form-card h2,
.article-hero-copy h1,
.article-consult-card h2 {
    color: var(--ink);
    font-family: Inter, "Segoe UI", sans-serif;
    font-weight: 850;
    letter-spacing: -.055em;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(46px, 6vw, 86px);
    line-height: .94;
}

.hero-copy p,
.hero-lead,
.inner-hero p,
.blog-detail-summary {
    color: var(--muted);
}

.hero-buttons {
    margin-top: 26px;
}

.hero-media {
    min-height: 510px;
    padding: 14px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
}

.hero-media::before {
    display: none;
}

.hero-image {
    min-height: 480px;
    border-radius: 24px;
    box-shadow: none;
}

.hero-floating-card {
    border-radius: 16px;
    border-color: var(--line);
    box-shadow: var(--shadow-card);
}

.experience-strip {
    margin-top: 0;
    padding: 34px 0 28px;
}

.experience-grid > div,
.service-card,
.testimonial-card,
.blog-card,
.blog-cta-card,
.inner-hero-card,
.article-hero-grid,
.article-side-card,
.article-content-card,
.article-consult-card,
.contact-copy-card,
.contact-form-card,
.premium-info,
.signature-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    backdrop-filter: none;
}

.experience-grid > div {
    transform: none !important;
}

.experience-grid span,
.eyebrow,
.section-title span,
.blog-card span,
.side-label,
.inner-hero-card span,
.premium-info h3 {
    color: var(--accent);
}

.services-section,
.section,
.blog-band,
.standalone-section {
    padding-block: 74px;
}

.section-title {
    margin-bottom: 36px;
}

.service-card {
    min-height: 220px;
    padding: 28px 22px;
}

.service-icon {
    color: var(--sage);
    background: #edf1ed;
}

.about-band {
    background: #ebe1d7;
}

.about-image {
    max-width: 280px;
    filter: none;
}

.about-list li {
    border-bottom-color: rgba(35, 31, 27, .1);
}

.signature-section {
    padding: 76px 0;
}

.signature-card {
    color: var(--ink);
    background: #2b2520;
    border: 0;
}

.signature-card h2,
.signature-card p {
    color: #fffdf9;
}

.signature-points span {
    color: #fffdf9;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .12);
}

.testimonial-card .quote {
    color: var(--accent);
}

.image-blog-card img {
    height: 255px;
    filter: saturate(.92);
}

.blog-cta-card {
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ink);
    background: #ede4dc;
}

.inner-hero {
    padding: 86px 0;
    background: #f3ebe3;
    border-bottom: 1px solid var(--line);
}

.inner-hero::after {
    display: none;
}

.inner-hero h1 {
    max-width: 820px;
    font-size: clamp(42px, 7vw, 78px);
}

.blog-filter-bar span,
.contact-mini-list span,
.process-mini span,
.article-tags span,
.article-meta-row span {
    color: var(--ink);
    background: #f4eee8;
    border-color: var(--line);
}

.blog-detail-v2 {
    background: #f7f3ee;
}

.blog-detail-v2::before,
.blog-detail-v2::after,
.article-hero-grid::before {
    display: none;
}

.visual-note {
    border-color: var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.article-highlight {
    background: #2b2520;
    box-shadow: none;
}

.article-highlight span {
    color: #d9c1aa;
}

.contact-section {
    background: #f7f3ee;
}

.contact-copy-card {
    color: var(--ink);
    background: #2b2520;
    border: 0;
}

.contact-copy-card h2,
.contact-copy-card p {
    color: #fffdf9;
}

.form-control,
.form-select {
    min-height: 54px;
    background: #fff;
    border-color: var(--line);
    border-radius: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 .22rem rgba(141, 107, 86, .13);
}

.site-footer {
    background: #2b2520;
}

.site-footer .brand-monogram {
    color: #2b2520;
    background: #fffdf9;
}

.whatsapp-float {
    background: #1f8f55;
    box-shadow: 0 16px 45px rgba(31, 143, 85, .22);
}

@media (max-width: 991px) {
    .hero,
    .min-vh-hero {
        min-height: auto;
    }

    .hero {
        padding: 54px 0;
    }

    .hero-media {
        margin-top: 26px;
        min-height: auto;
    }

    .hero-image {
        min-height: 320px;
    }
}

@media (max-width: 575px) {
    .brand-monogram {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        font-size: 12px;
    }

    .hero-copy h1,
    .inner-hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }
}

/* Olivia theme integration */
:root {
    --olivia-bg: #ffffff;
    --olivia-fg: #27272a;
    --olivia-muted: #71717a;
    --olivia-card: #f4f4f5;
    --olivia-card-hover: #e9e9eb;
    --olivia-soft: rgba(250, 204, 21, .26);
    --olivia-accent: #7c3aed;
    --olivia-accent-2: #fb923c;
    --olivia-radius: 18px;
}

html.olivia-dark,
html.olivia-dark body {
    background: #09090b;
}

html.olivia-dark {
    --olivia-bg: #09090b;
    --olivia-fg: #fafafa;
    --olivia-muted: #a1a1aa;
    --olivia-card: #18181b;
    --olivia-card-hover: #27272a;
    --olivia-soft: rgba(113, 63, 18, .55);
    --olivia-accent: #a78bfa;
    --olivia-accent-2: #f59e0b;
}

.olivia-page {
    min-width: 320px;
    min-height: 100vh;
    color: var(--olivia-fg);
    background: var(--olivia-bg);
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    transition: background .2s ease, color .2s ease;
}

.olivia-header {
    width: min(100% - 32px, 1152px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
}

.olivia-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--olivia-fg);
}

.olivia-logo span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--olivia-fg);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

html.olivia-dark .olivia-logo span {
    color: #111;
    background: #fff;
}

.olivia-logo strong {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: .12em;
}

.olivia-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 26px);
}

.olivia-nav a,
.olivia-mode {
    color: var(--olivia-fg);
    background: transparent;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-underline-offset: 8px;
}

.olivia-nav a:hover {
    color: var(--olivia-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.olivia-pill {
    padding: 10px 16px;
    border: 1px solid color-mix(in srgb, var(--olivia-fg) 14%, transparent);
    border-radius: 999px;
}

.olivia-mode {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: .75;
}

.olivia-mode:hover {
    opacity: 1;
}

.olivia-grid {
    width: min(100% - 32px, 1152px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 32px;
}

.olivia-photo-card,
.olivia-intro-card,
.olivia-stat-card,
.olivia-project-card,
.olivia-wide-card,
.olivia-testimonials,
.olivia-blog-card,
.olivia-contact-card,
.olivia-article-card,
.olivia-section-title,
.olivia-footer {
    border-radius: var(--olivia-radius);
}

.olivia-photo-card {
    grid-column: span 5;
    overflow: hidden;
    background: var(--olivia-card);
}

.olivia-photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.olivia-intro-card {
    position: relative;
    grid-column: span 7;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(32px, 5vw, 56px);
    background:
        radial-gradient(circle at 5% 0%, rgba(234, 179, 8, .9), transparent 22%),
        radial-gradient(circle at 92% 8%, rgba(251, 146, 60, .7), transparent 28%),
        linear-gradient(135deg, rgba(254, 240, 138, .6), rgba(254, 249, 195, .65)),
        var(--olivia-card);
}

html.olivia-dark .olivia-intro-card {
    background:
        radial-gradient(circle at 5% 0%, rgba(113, 63, 18, .9), transparent 22%),
        radial-gradient(circle at 92% 8%, rgba(124, 58, 237, .55), transparent 28%),
        linear-gradient(135deg, rgba(113, 63, 18, .7), rgba(88, 28, 135, .45)),
        var(--olivia-card);
}

.olivia-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    color: color-mix(in srgb, var(--olivia-fg) 72%, transparent);
    font-size: 13px;
    font-weight: 700;
}

.olivia-intro-card h1,
.olivia-wide-card h2,
.olivia-testimonials h2,
.olivia-section-title h2,
.olivia-contact-card h2,
.olivia-article-hero h1 {
    margin: 0;
    color: var(--olivia-fg);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.02;
}

.olivia-intro-card p,
.olivia-wide-card p,
.olivia-stat-card p,
.olivia-project-card p,
.olivia-blog-card p,
.olivia-contact-card p,
.olivia-article-content {
    color: var(--olivia-muted);
    line-height: 1.75;
}

.olivia-actions,
.olivia-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.olivia-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    color: var(--olivia-fg);
    background: color-mix(in srgb, var(--olivia-bg) 70%, white 30%);
    border: 1px solid color-mix(in srgb, var(--olivia-fg) 10%, transparent);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.olivia-button.primary {
    color: #fff;
    background: var(--olivia-accent);
    border-color: var(--olivia-accent);
}

.olivia-button:hover,
.olivia-project-card:hover,
.olivia-blog-card:hover {
    transform: translateY(-2px);
}

.olivia-stat-card {
    grid-column: span 4;
    min-height: 180px;
    padding: 28px;
    background: var(--olivia-card);
}

.olivia-stat-card span,
.olivia-section-title span,
.olivia-blog-card span,
.olivia-article-meta span {
    color: var(--olivia-accent);
    font-size: 13px;
    font-weight: 800;
}

.olivia-stat-card h2,
.olivia-project-card h3,
.olivia-blog-card h3 {
    margin: 12px 0 8px;
    color: var(--olivia-fg);
    font-size: 20px;
    font-weight: 700;
}

.olivia-section-title {
    grid-column: span 12;
    padding: 18px 0 4px;
}

.olivia-section-title.inside {
    padding: 0;
}

.olivia-section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.olivia-project-card {
    position: relative;
    grid-column: span 4;
    min-height: 260px;
    overflow: hidden;
    padding: 28px;
    color: var(--olivia-fg);
    background: var(--olivia-card);
    transition: transform .18s ease, background .18s ease;
}

.olivia-project-card:hover {
    background: var(--olivia-card-hover);
}

.olivia-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: 0;
    transform: scale(.8);
    transition: opacity .18s ease, transform .18s ease;
}

.olivia-project-card:hover .olivia-arrow {
    opacity: 1;
    transform: scale(1);
}

.olivia-service-orb {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / .7;
    margin-top: 28px;
    color: var(--olivia-accent);
    background:
        radial-gradient(circle at 40% 30%, rgba(168, 85, 247, .28), transparent 23%),
        radial-gradient(circle at 70% 70%, rgba(251, 146, 60, .24), transparent 28%),
        color-mix(in srgb, var(--olivia-bg) 72%, var(--olivia-card));
    border-radius: 16px;
    font-size: clamp(46px, 7vw, 82px);
    transition: transform .18s ease;
}

.olivia-project-card:hover .olivia-service-orb {
    transform: scale(1.04);
}

.olivia-wide-card,
.olivia-testimonials,
.olivia-contact-card,
.olivia-article-card {
    grid-column: span 12;
    padding: clamp(30px, 5vw, 56px);
    background: var(--olivia-card);
}

.olivia-wide-card {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
}

.olivia-wide-card > div {
    max-width: 740px;
}

.olivia-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.olivia-testimonial-grid article {
    padding: 24px;
    background: var(--olivia-bg);
    border-radius: 14px;
}

.olivia-testimonial-grid p {
    color: var(--olivia-muted);
}

.olivia-testimonial-grid strong {
    color: var(--olivia-fg);
}

.olivia-blog-card {
    grid-column: span 3;
    overflow: hidden;
    color: var(--olivia-fg);
    background: var(--olivia-card);
    transition: transform .18s ease, background .18s ease;
}

.olivia-blog-card:hover {
    background: var(--olivia-card-hover);
}

.olivia-blog-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.olivia-blog-card div {
    padding: 22px;
}

.olivia-contact-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(280px, 1fr);
    gap: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(244, 114, 182, .36), transparent 22%),
        radial-gradient(circle at 100% 0%, rgba(196, 181, 253, .44), transparent 25%),
        linear-gradient(135deg, rgba(243, 232, 255, .72), rgba(245, 243, 255, .72)),
        var(--olivia-card);
}

html.olivia-dark .olivia-contact-card {
    background:
        radial-gradient(circle at 0% 0%, rgba(157, 23, 77, .35), transparent 22%),
        radial-gradient(circle at 100% 0%, rgba(91, 33, 182, .5), transparent 25%),
        linear-gradient(135deg, rgba(88, 28, 135, .5), rgba(49, 46, 129, .35)),
        var(--olivia-card);
}

.olivia-contact-copy strong {
    display: block;
    margin-top: 12px;
    color: var(--olivia-fg);
    font-size: 22px;
}

.olivia-form {
    display: grid;
    gap: 16px;
}

.olivia-form .form-control {
    min-height: 52px;
    color: var(--olivia-fg);
    background: var(--olivia-bg);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 16px;
}

.olivia-form textarea.form-control {
    min-height: 140px;
}

.olivia-blog-hero {
    grid-column: span 8;
}

.olivia-blog-count {
    grid-column: span 4;
    min-height: auto;
}

.olivia-article-hero {
    grid-column: span 7;
}

.olivia-article-image {
    grid-column: span 5;
}

.olivia-article-card {
    background: var(--olivia-card);
}

.olivia-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.olivia-article-meta span {
    padding: 9px 12px;
    background: var(--olivia-bg);
    border-radius: 999px;
}

.olivia-article-content {
    max-width: 820px;
    font-size: 18px;
}

.olivia-footer {
    grid-column: span 12;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 0;
    color: var(--olivia-muted);
    font-size: 14px;
}

.olivia-footer nav {
    display: flex;
    gap: 18px;
}

.olivia-footer a {
    color: var(--olivia-muted);
}

.olivia-footer a:hover {
    color: var(--olivia-fg);
}

.olivia-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: white;
    background: #22c55e;
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(34, 197, 94, .35);
    font-size: 24px;
}

@media (max-width: 900px) {
    .olivia-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .olivia-nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .olivia-grid {
        gap: 18px;
    }

    .olivia-photo-card,
    .olivia-intro-card,
    .olivia-stat-card,
    .olivia-project-card,
    .olivia-blog-card,
    .olivia-blog-hero,
    .olivia-blog-count,
    .olivia-article-hero,
    .olivia-article-image {
        grid-column: span 12;
    }

    .olivia-photo-card img {
        min-height: 320px;
    }

    .olivia-intro-card {
        min-height: 360px;
    }

    .olivia-wide-card,
    .olivia-contact-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .olivia-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .olivia-header,
    .olivia-grid {
        width: min(100% - 24px, 1152px);
    }

    .olivia-logo strong {
        font-size: 17px;
        letter-spacing: .04em;
    }

    .olivia-nav {
        gap: 10px;
    }

    .olivia-nav a,
    .olivia-mode {
        font-size: 13px;
    }

    .olivia-intro-card,
    .olivia-wide-card,
    .olivia-testimonials,
    .olivia-contact-card,
    .olivia-article-card {
        padding: 28px;
    }
}

/* Fullscreen slider theme */
:root {
    --fs-dark: #16110f;
    --fs-ink: #2a201d;
    --fs-muted: #766961;
    --fs-cream: #f8f1ea;
    --fs-paper: #fffaf5;
    --fs-rose: #a76561;
    --fs-gold: #d5a85d;
    --fs-line: rgba(42, 32, 29, .12);
}

.fs-header {
    position: fixed;
    z-index: 1000;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    color: #fff;
    background: rgba(22, 17, 15, .46);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    backdrop-filter: blur(18px);
}

.fs-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.fs-brand span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--fs-dark);
    background: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.fs-brand strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.fs-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.fs-nav a {
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 750;
}

.fs-nav a:hover {
    color: #fff;
}

.fs-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.fs-lang-switch a {
    min-width: 34px;
    padding: 6px 9px;
    text-align: center;
    border-radius: 999px;
    font-size: 11px;
}

.fs-lang-switch a.active {
    color: var(--fs-dark);
    background: #fff;
}

.fs-nav-cta {
    padding: 11px 17px;
    color: var(--fs-dark) !important;
    background: #fff;
    border-radius: 999px;
}

.fs-site {
    color: var(--fs-ink);
    background: var(--fs-cream);
}

.fs-hero,
.fs-slide,
.fs-slide .carousel-item {
    min-height: 100vh;
}

.fs-hero .carousel,
.fs-hero .carousel-inner {
    min-height: 100vh;
}

.fs-slide {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.fs-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.fs-blog-slide {
    background:
        radial-gradient(circle at 72% 32%, rgba(213, 168, 93, .24), transparent 23%),
        radial-gradient(circle at 86% 80%, rgba(167, 101, 97, .26), transparent 28%),
        linear-gradient(135deg, #211412 0%, #5b303c 48%, #9a6650 100%);
}

.fs-blog-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 250, 245, .07) 0 1px, transparent 1px 90px),
        radial-gradient(circle at 78% 42%, rgba(255, 250, 245, .2), transparent 2px),
        radial-gradient(circle at 66% 24%, rgba(255, 250, 245, .16), transparent 2px),
        radial-gradient(circle at 90% 64%, rgba(255, 250, 245, .14), transparent 2px);
    opacity: .68;
}

.fs-blog-slide-eft {
    background:
        radial-gradient(circle at 74% 36%, rgba(214, 144, 204, .28), transparent 24%),
        radial-gradient(circle at 88% 76%, rgba(213, 168, 93, .2), transparent 28%),
        linear-gradient(135deg, #1b0d19 0%, #4b183c 48%, #8b5163 100%);
}

.fs-blog-slide-tarot {
    background:
        radial-gradient(circle at 72% 34%, rgba(213, 168, 93, .28), transparent 24%),
        radial-gradient(circle at 88% 74%, rgba(117, 87, 161, .28), transparent 30%),
        linear-gradient(135deg, #11142b 0%, #382753 52%, #8f5e55 100%);
}

.fs-blog-slide-kahve-telvesi {
    background:
        radial-gradient(circle at 76% 34%, rgba(224, 184, 122, .3), transparent 24%),
        radial-gradient(circle at 86% 78%, rgba(167, 101, 97, .24), transparent 30%),
        linear-gradient(135deg, #21150f 0%, #5a3328 52%, #ad7459 100%);
}

.fs-blog-slide-enerji {
    background:
        radial-gradient(circle at 76% 34%, rgba(130, 93, 196, .28), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(213, 168, 93, .24), transparent 30%),
        linear-gradient(135deg, #101329 0%, #31295d 50%, #7f5363 100%);
}

.fs-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 10, 9, .78) 0%, rgba(13, 10, 9, .46) 48%, rgba(13, 10, 9, .14) 100%),
        radial-gradient(circle at 20% 40%, rgba(213, 168, 93, .22), transparent 28%);
}

.fs-blog-slide .fs-slide-overlay {
    background: linear-gradient(90deg, rgba(13, 10, 9, .54) 0%, rgba(13, 10, 9, .2) 58%, rgba(13, 10, 9, .05) 100%);
}

.fs-slide-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 110px;
    color: #fff;
}

.fs-slide-content span,
.fs-kicker,
.fs-section-heading span {
    color: var(--fs-gold);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.fs-slide-content h1 {
    max-width: 830px;
    margin: 16px 0 20px;
    font-size: clamp(46px, 7vw, 104px);
    font-weight: 850;
    letter-spacing: -.065em;
    line-height: .92;
}

.fs-slide-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.75;
}

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

.fs-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.fs-button.primary {
    color: var(--fs-dark);
    background: #fff;
    border-color: #fff;
}

.fs-button:hover {
    color: var(--fs-dark);
    background: #fff;
}

.fs-hero .carousel-indicators {
    bottom: 34px;
}

.fs-hero .carousel-indicators [data-bs-target] {
    width: 42px;
    height: 4px;
    border-radius: 999px;
}

.fs-section {
    padding: 96px 0;
}

.fs-section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.fs-section-heading h2,
.fs-about h2,
.fs-contact-panel h2 {
    margin: 10px 0 14px;
    color: var(--fs-ink);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: 1;
}

.fs-section-heading p,
.fs-about p,
.fs-contact-panel p {
    color: var(--fs-muted);
    line-height: 1.8;
}

.fs-service-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: -70px 0 24px;
}

.fs-scroll-btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--fs-line);
    border-radius: 50%;
    color: var(--fs-ink);
    background: var(--fs-paper);
    box-shadow: 0 12px 34px rgba(42, 32, 29, .08);
    font-size: 28px;
    line-height: 1;
}

.fs-scroll-btn:hover {
    color: #fff;
    background: var(--fs-rose);
}

.fs-service-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 4px 30px;
    scroll-padding: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.fs-service-slide {
    flex: 0 0 clamp(286px, 31vw, 390px);
    scroll-snap-align: start;
}

.fs-service-horizontal {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.fs-service-card,
.fs-blog-card,
.fs-testimonial {
    height: 100%;
    overflow: hidden;
    background: var(--fs-paper);
    border: 1px solid var(--fs-line);
    border-radius: 28px;
    box-shadow: 0 20px 70px rgba(42, 32, 29, .08);
    transition: transform .22s ease, box-shadow .22s ease;
}

.fs-service-card:hover,
.fs-blog-card:hover,
.fs-testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(42, 32, 29, .12);
}

.fs-service-card img,
.fs-blog-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.fs-service-card img {
    height: 180px;
}

.fs-service-card > div,
.fs-blog-card > div,
.fs-testimonial {
    padding: 26px;
}

.fs-service-card span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    color: #fff;
    background: var(--fs-rose);
    border-radius: 50%;
}

.fs-service-card h3,
.fs-blog-card h3 {
    color: var(--fs-ink);
    font-size: 22px;
    font-weight: 850;
}

.fs-service-horizontal .fs-service-card {
    border-radius: 22px;
    box-shadow: 0 18px 58px rgba(42, 32, 29, .075);
}

.fs-service-horizontal .fs-service-card > div {
    padding: 20px;
}

.fs-service-horizontal .fs-service-card h3 {
    font-size: 18px;
    line-height: 1.15;
}

.fs-service-horizontal .fs-service-card p {
    font-size: 13px;
    line-height: 1.55;
}

.service-guide {
    padding: 38px 0 100px;
    background: var(--fs-cream);
}

.service-guide-panel {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
    color: #fffaf5;
    background:
        radial-gradient(circle at 88% 18%, rgba(213, 168, 93, .24), transparent 28%),
        linear-gradient(135deg, #402338 0%, #8c4d58 54%, #b87961 100%);
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(78, 44, 31, .14);
}

.service-guide-intro h2 {
    margin: 10px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 66px);
    line-height: .98;
}

.service-guide-intro p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 250, 245, .82);
    line-height: 1.75;
}

.service-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-guide-grid a {
    min-height: 190px;
    padding: 22px;
    color: #fffaf5;
    background: rgba(255, 250, 245, .12);
    border: 1px solid rgba(255, 250, 245, .18);
    border-radius: 22px;
    transition: transform .22s ease, background .22s ease;
}

.service-guide-grid a:hover {
    transform: translateY(-4px);
    background: rgba(255, 250, 245, .18);
}

.service-guide-grid span {
    color: var(--fs-gold);
    font-weight: 950;
}

.service-guide-grid h3 {
    margin: 18px 0 10px;
    font-size: 22px;
    font-weight: 900;
}

.service-guide-grid p {
    margin: 0;
    color: rgba(255, 250, 245, .8);
    line-height: 1.6;
}

.fs-service-card p,
.fs-blog-card p,
.fs-testimonial p {
    color: var(--fs-muted);
    line-height: 1.7;
}

.fs-service-card a,
.fs-blog-card a {
    color: var(--fs-rose);
    font-size: 13px;
    font-weight: 850;
}

.fs-about {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(213, 168, 93, .16), transparent 24%),
        linear-gradient(180deg, #fffaf5 0%, #f5e7d9 100%);
}

.fs-about::before {
    content: "";
    position: absolute;
    right: -140px;
    top: 80px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(213, 168, 93, .24);
    border-radius: 50%;
}

.fs-about-grid {
    position: relative;
    z-index: 1;
}

.fs-about-visual {
    position: relative;
    min-height: 560px;
    padding: 18px;
    background: rgba(255, 250, 245, .72);
    border: 1px solid rgba(42, 32, 29, .10);
    border-radius: 42px;
    box-shadow: 0 34px 110px rgba(42, 32, 29, .12);
}

.fs-about-image {
    width: 100%;
    height: 100%;
    min-height: 524px;
    max-height: 560px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: none;
    filter: saturate(.95) contrast(.98);
}

.fs-about-note {
    position: absolute;
    right: -18px;
    bottom: 48px;
    min-width: 210px;
    padding: 18px 20px;
    color: var(--fs-ink);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(42, 32, 29, .10);
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(42, 32, 29, .13);
    backdrop-filter: blur(14px);
}

.fs-about-note span {
    display: block;
    color: var(--fs-rose);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fs-about-note strong {
    display: block;
    margin-top: 4px;
    font-size: 24px;
    line-height: 1;
}

.fs-about-copy {
    padding-left: clamp(12px, 4vw, 56px);
}

.fs-about-copy h2 {
    max-width: 780px;
    font-size: clamp(38px, 5.2vw, 72px);
    line-height: .98;
    text-wrap: balance;
}

.fs-about-copy p {
    max-width: 760px;
    font-size: 18px;
}

.fs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.fs-badges span {
    padding: 10px 14px;
    color: var(--fs-ink);
    background: var(--fs-cream);
    border: 1px solid var(--fs-line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.fs-testimonial strong {
    color: var(--fs-ink);
}

.fs-blog-section {
    background: #fffaf5;
}

.fs-blog-card span {
    color: var(--fs-rose);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.fs-contact-cta {
    padding: 90px 0;
}

.fs-contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(32px, 5vw, 58px);
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(213, 168, 93, .25), transparent 28%),
        linear-gradient(135deg, #251915, #7d4441);
    border-radius: 34px;
}

.fs-contact-panel h2,
.fs-contact-panel p {
    color: #fff;
}

.fs-footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, .76);
    background: var(--fs-dark);
}

.fs-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
}

.fs-footer nav {
    display: flex;
    gap: 18px;
}

.fs-footer a {
    color: rgba(255, 255, 255, .76);
}

.fs-whatsapp {
    position: fixed;
    z-index: 1001;
    right: 22px;
    bottom: 22px;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    color: #fff;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 18px 44px rgba(34, 197, 94, .28);
    font-size: 24px;
}

@media (max-width: 991px) {
    .fs-header {
        position: absolute;
        top: 12px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 24px;
    }

    .fs-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .fs-lang-switch {
        order: 10;
    }

    .fs-service-toolbar {
        justify-content: flex-start;
        margin: -18px 0 20px;
    }

    .fs-service-slide {
        flex-basis: min(82vw, 360px);
    }

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

    .service-guide-panel {
        grid-template-columns: 1fr;
    }

    .fs-slide-content h1 {
        font-size: clamp(44px, 13vw, 76px);
    }

    .fs-contact-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .fs-about-visual {
        min-height: auto;
    }

    .fs-about-image {
        min-height: 360px;
    }

    .fs-about-note {
        right: 24px;
        bottom: 24px;
    }

    .fs-about-copy {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .fs-brand strong {
        font-size: 16px;
    }

    .fs-service-horizontal {
        grid-template-columns: 1fr;
    }

    .service-guide-grid {
        grid-template-columns: 1fr;
    }

    .fs-slide-content {
        padding-top: 180px;
    }

    .fs-section,
    .fs-about {
        padding: 68px 0;
    }
}

/* Premium public UI system */
:root {
    --bg: #fff8ef;
    --paper: #fffdf9;
    --cream: #f8eadb;
    --cream-2: #f3dcc9;
    --ink: #3c251f;
    --muted: #7b675d;
    --rose: #a76561;
    --rose-2: #c28b83;
    --plum: #5d284e;
    --gold: #d6a955;
    --line: #ead6c1;
    --shadow-soft: 0 24px 80px rgba(80, 48, 32, .09);
    --shadow-card: 0 16px 45px rgba(80, 48, 32, .08);
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at 9% 7%, rgba(214, 169, 85, .14), transparent 26%),
        radial-gradient(circle at 91% 12%, rgba(167, 101, 97, .12), transparent 24%),
        linear-gradient(180deg, #fffaf4, #f8eadb 68%, #fff8ef);
    font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.top-strip {
    height: 48px;
    color: #815f51;
    background: linear-gradient(90deg, #f3dcc9, #fff3e5 52%, #efd2bd);
    border-bottom: 1px solid rgba(214, 169, 85, .24);
}

.top-strip .socials {
    gap: 14px;
}

.top-strip .social-icon {
    color: var(--rose);
    transition: transform .2s ease, color .2s ease;
}

.top-strip .social-icon:hover {
    color: #7b4c4c;
    transform: translateY(-1px);
}

.site-nav {
    min-height: 92px;
    background: rgba(255, 253, 249, .9);
    border-bottom: 1px solid rgba(234, 214, 193, .88);
    backdrop-filter: blur(18px);
}

.brand {
    color: var(--ink);
}

.brand-mark {
    width: 66px;
    height: 66px;
    color: var(--gold);
    background:
        radial-gradient(circle at 50% 44%, #fff7e9 0 38%, transparent 39%),
        linear-gradient(135deg, #fffdf9, #f4dfcf);
    border: 1px solid rgba(214, 169, 85, .58);
    box-shadow: 0 16px 36px rgba(214, 169, 85, .16);
}

.brand-monogram {
    position: relative;
    overflow: hidden;
    width: 72px;
    height: 72px;
    color: #6a3b36;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .95) 0 38%, transparent 39%),
        conic-gradient(from 145deg, #f6dfb0, #c99145, #fff0c9, #d6a955, #f6dfb0);
    border: 1px solid rgba(198, 143, 69, .58);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .05em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

.brand-monogram::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(214, 169, 85, .45);
    border-radius: inherit;
}

.brand-monogram::after {
    content: "";
    position: absolute;
    width: 78px;
    height: 16px;
    top: 10px;
    left: -18px;
    background: rgba(255, 255, 255, .48);
    transform: rotate(-28deg);
}

.brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 31px);
    letter-spacing: 0;
}

.brand small {
    color: #8e7567;
    font-size: 13px;
}

.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(214, 169, 85, .18);
}

.nav-link {
    position: relative;
    color: var(--ink);
    font-size: 14px;
    font-weight: 750;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: .5rem;
    right: .5rem;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--rose);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-rose {
    background: linear-gradient(135deg, #a76561, #ba7870);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 16px 35px rgba(167, 101, 97, .22);
}

.btn-rose:hover {
    background: linear-gradient(135deg, #8f514f, #a76561);
    color: #fff;
    transform: translateY(-1px);
}

.hero {
    min-height: 690px;
    background:
        radial-gradient(circle at 45% 20%, rgba(214, 169, 85, .18), transparent 18%),
        linear-gradient(90deg, #fffaf4 0%, #fffaf4 48%, #f2dbc7 48%, #f2dbc7 100%);
}

.hero::before {
    background-image:
        radial-gradient(circle, rgba(214, 169, 85, .65) 1px, transparent 1.8px),
        linear-gradient(115deg, transparent 0 70%, rgba(214, 169, 85, .11) 70.2%, transparent 71%);
    opacity: .36;
}

.hero::after {
    border-color: rgba(214, 169, 85, .34);
    box-shadow: none;
}

.min-vh-hero {
    min-height: 690px;
}

.hero-copy h1,
.section-title h2,
.about-band h2,
.signature-card h2,
.inner-hero h1,
.contact-copy-card h2,
.contact-form-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(42px, 5.45vw, 74px);
    line-height: 1;
    text-wrap: balance;
}

.hero-copy p,
.hero-lead {
    max-width: 610px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.hero-media {
    position: relative;
    min-height: 520px;
    border-radius: 160px 0 0 160px;
    overflow: visible;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: -28px 0 -28px 42px;
    border: 1px solid rgba(214, 169, 85, .32);
    border-radius: 190px 0 0 190px;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 160px 0 0 160px;
    box-shadow: var(--shadow-soft);
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 3px;
    width: min(250px, 68%);
    padding: 16px 18px;
    color: var(--ink);
    background: rgba(255, 253, 249, .88);
    border: 1px solid rgba(232, 206, 180, .9);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(80, 48, 32, .14);
    backdrop-filter: blur(14px);
}

.hero-floating-card.top {
    top: 50px;
    left: -28px;
}

.hero-floating-card.bottom {
    right: 28px;
    bottom: 54px;
}

.hero-floating-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.hero-floating-card span {
    color: #80685e;
    font-size: 13px;
}

.trust-row span,
.service-card,
.testimonial-card,
.blog-card,
.blog-cta-card,
.experience-grid > div,
.signature-card,
.contact-copy-card,
.contact-form-card,
.premium-info,
.inner-hero-card {
    border: 1px solid rgba(232, 206, 180, .82);
    background: rgba(255, 253, 249, .88);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.experience-strip {
    position: relative;
    z-index: 2;
    margin-top: -58px;
    padding-bottom: 34px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.experience-grid > div {
    padding: 26px;
    border-radius: 24px;
}

.experience-grid > div:first-child {
    transform: translateY(-8px);
}

.experience-grid > div:nth-child(2) {
    transform: translateY(10px);
}

.experience-grid > div:nth-child(3) {
    transform: translateY(-2px);
}

.experience-grid span {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.experience-grid strong {
    display: block;
    margin: 8px 0;
    color: var(--ink);
    font-size: 18px;
}

.experience-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.section,
.services-section,
.blog-band,
.standalone-section {
    background: transparent;
}

.service-card,
.testimonial-card,
.blog-card {
    border-radius: 20px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card {
    min-height: 210px;
    display: grid;
    align-content: start;
}

.service-card:hover,
.testimonial-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 169, 85, .56);
    box-shadow: 0 28px 78px rgba(80, 48, 32, .13);
}

.service-icon {
    background: linear-gradient(135deg, #fff3e5, #f3d7cf);
    color: var(--rose);
}

.about-band {
    background:
        radial-gradient(circle at 13% 50%, rgba(214, 169, 85, .17), transparent 22%),
        linear-gradient(90deg, #fff7ed, #f4dfcf);
}

.about-image {
    filter: drop-shadow(0 22px 45px rgba(80, 48, 32, .14));
}

.signature-section {
    padding: 72px 0 28px;
}

.signature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .75fr);
    gap: 34px;
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(93, 40, 78, .95), rgba(167, 101, 97, .92)),
        var(--plum);
    color: #fffaf4;
}

.signature-card h2,
.signature-card p {
    color: #fffaf4;
}

.signature-card p {
    max-width: 760px;
    margin: 16px 0 0;
    line-height: 1.8;
}

.signature-card .eyebrow {
    color: #f3c98e;
}

.signature-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.signature-points span,
.blog-filter-bar span,
.contact-mini-list span,
.process-mini span {
    padding: 12px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
}

.signature-points span {
    color: #fff8ef;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    background:
        radial-gradient(circle at 86% 30%, rgba(214, 169, 85, .20), transparent 23%),
        linear-gradient(135deg, #fffaf4, #f2dcc8);
}

.inner-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 34px;
    align-items: end;
}

.inner-hero h1 {
    max-width: 880px;
    margin: 12px 0 16px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .98;
}

.inner-hero-card {
    padding: 28px;
    border-radius: 24px;
}

.inner-hero-card span {
    color: var(--rose);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.inner-hero-card strong {
    display: block;
    margin: 8px 0 10px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
}

.inner-hero-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.blog-filter-bar span,
.contact-mini-list span,
.process-mini span {
    color: #7b4c4c;
    background: #fff5eb;
    border: 1px solid #e8ceb4;
}

.image-blog-card {
    overflow: hidden;
}

.image-blog-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;
}

.blog-band .row {
    align-items: stretch;
}

.blog-card {
    height: 100%;
}

.blog-card h3 {
    line-height: 1.22;
}

.image-blog-card > div {
    padding: 22px;
}

.contact-section {
    padding: 72px 0 88px;
    background:
        radial-gradient(circle at 12% 18%, rgba(214, 169, 85, .13), transparent 26%),
        #fff8ef;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(320px, 1fr) minmax(260px, .78fr);
    gap: 22px;
    align-items: stretch;
}

.contact-copy-card,
.contact-form-card,
.premium-info {
    padding: clamp(24px, 3vw, 34px);
    border-radius: 26px;
}

.contact-copy-card {
    background:
        linear-gradient(145deg, rgba(93, 40, 78, .95), rgba(167, 101, 97, .92)),
        var(--plum);
    color: #fffaf4;
}

.contact-copy-card h2,
.contact-copy-card p {
    color: #fffaf4;
}

.contact-copy-card p {
    line-height: 1.8;
}

.contact-mini-list,
.process-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-copy-card .contact-mini-list span,
.contact-copy-card .process-mini span {
    color: #fff8ef;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
}

.contact-form-card h2 {
    margin-bottom: 20px;
    font-size: clamp(28px, 3vw, 42px);
}

.ajax-form {
    gap: 14px;
}

.form-control,
.form-select {
    min-height: 52px;
    color: var(--ink);
    background: #fffdf9;
    border: 1px solid #e4cdb6;
    border-radius: 16px;
    box-shadow: none;
}

textarea.form-control {
    min-height: 130px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .22rem rgba(214, 169, 85, .16);
}

.premium-info {
    display: grid;
    align-content: start;
    gap: 12px;
}

.premium-info h3 {
    margin: 10px 0 0;
    color: var(--rose);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.premium-info p {
    margin: 0;
    color: var(--ink);
    line-height: 1.65;
}

.site-footer {
    padding: 28px 0;
    background: linear-gradient(90deg, #9f5a5c, #b66b62);
}

.site-footer .brand-monogram {
    width: 56px;
    height: 56px;
    font-size: 14px;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 248, 239, .96) 0 39%, transparent 40%),
        conic-gradient(from 145deg, #ffe7ad, #d6a955, #fff4d1, #d6a955, #ffe7ad);
}

.site-footer nav a {
    color: #fff8ef;
    opacity: .92;
    font-size: 13px;
}

.site-footer nav a:hover {
    opacity: 1;
}

.whatsapp-float {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #26d366, #18b956);
    border-radius: 50%;
    box-shadow: 0 18px 44px rgba(24, 185, 86, .34);
}

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

    .premium-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    .site-nav .navbar-collapse {
        padding: 18px 0 8px;
    }

    .hero {
        background: linear-gradient(180deg, #fffaf4 0%, #f2dcc8 100%);
    }

    .hero-media {
        border-radius: 38px;
        min-height: auto;
    }

    .hero-media::before {
        inset: -12px;
        border-radius: 46px;
    }

    .hero-image {
        min-height: 340px;
        border-radius: 38px;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .experience-grid,
    .signature-card,
    .inner-hero-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .experience-grid > div {
        transform: none !important;
    }

    .experience-strip {
        margin-top: 0;
        padding-top: 34px;
    }

    .signature-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .brand-mark {
        width: 54px;
        height: 54px;
    }

    .brand-monogram {
        width: 56px;
        height: 56px;
        font-size: 14px;
    }

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

    .brand small {
        font-size: 11px;
    }

    .top-actions {
        gap: 12px;
        font-size: 12px;
    }

    .hero-copy h1,
    .inner-hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .contact-copy-card,
    .contact-form-card,
    .premium-info {
        border-radius: 20px;
    }
}

/* Professional blog redesign */
.blog-header {
    color: var(--fs-ink);
    background: rgba(255, 250, 245, .92);
    border-bottom: 1px solid rgba(112, 70, 58, .12);
    box-shadow: 0 18px 55px rgba(70, 43, 32, .08);
    backdrop-filter: blur(18px);
}

.blog-header .fs-brand,
.blog-header .fs-nav a {
    color: var(--fs-ink);
}

.blog-header .fs-brand span {
    color: #fffaf5;
    background: linear-gradient(135deg, var(--fs-rose), var(--fs-gold));
}

.blog-header .fs-nav a:hover {
    color: var(--fs-rose);
}

.blog-header .fs-lang-switch {
    border-color: rgba(42, 32, 29, .12);
    background: rgba(42, 32, 29, .04);
}

.blog-header .fs-lang-switch a.active {
    color: #fffaf5;
    background: var(--fs-rose);
}

.blog-header .fs-nav-cta {
    color: #fffaf5 !important;
    background: linear-gradient(135deg, var(--fs-rose), #8f5456);
    box-shadow: 0 14px 30px rgba(167, 101, 97, .2);
}

.blog-pro,
.article-pro {
    color: var(--fs-ink);
    background: linear-gradient(180deg, #fffaf5 0%, #f7eadc 46%, #fffaf5 100%);
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
}

.blog-pro-hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 132px 0 70px;
    background:
        radial-gradient(circle at 13% 22%, rgba(209, 164, 88, .16), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(167, 101, 97, .18), transparent 30%),
        #fffaf5;
}

.blog-pro-hero-grid,
.article-pro-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.blog-pro-copy h1,
.article-pro-copy h1 {
    max-width: 900px;
    margin: 14px 0 22px;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6.4vw, 96px);
    line-height: .92;
}

.blog-pro-copy p,
.article-pro-copy > p {
    max-width: 720px;
    margin: 0;
    color: var(--fs-muted);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.75;
}

.blog-category-pills,
.article-pro-meta,
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category-pills {
    margin-top: 28px;
}

.blog-category-pills button,
.article-pro-meta span,
.article-tags span {
    padding: 10px 14px;
    color: #7b4c4c;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(218, 190, 159, .78);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.blog-category-pills button {
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.blog-category-pills button:hover,
.blog-category-pills button.active {
    color: #fffaf5;
    background: linear-gradient(135deg, var(--fs-rose), #8f5456);
    border-color: transparent;
    transform: translateY(-1px);
}

.blog-pro-feature,
.editorial-post-card,
.article-pro-image,
.article-pro-content,
.article-side-card,
.blog-pro-cta-panel {
    overflow: hidden;
    color: inherit;
    background: rgba(255, 253, 249, .86);
    border: 1px solid rgba(226, 205, 184, .78);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(78, 44, 31, .1);
}

.editorial-post-card.is-hidden {
    display: none;
}

.blog-pro-feature {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-pro-feature:hover,
.editorial-post-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 92px rgba(78, 44, 31, .15);
}

.blog-pro-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-pro-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(36, 20, 17, .84) 100%);
}

.blog-pro-feature div {
    position: relative;
    z-index: 1;
    padding: 34px;
}

.blog-pro-feature span,
.editorial-post-card span {
    color: var(--fs-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-pro-feature h2 {
    margin: 10px 0;
    color: #fffaf5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.02;
}

.blog-pro-feature p {
    margin: 0;
    color: rgba(255, 250, 245, .84);
    line-height: 1.65;
}

.blog-pro-list,
.article-pro-body,
.article-pro-related {
    padding: 82px 0;
}

.blog-pro-section-title {
    max-width: 720px;
    margin-bottom: 32px;
}

.blog-pro-section-title span {
    color: var(--fs-rose);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.blog-pro-section-title h2 {
    margin: 8px 0 0;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 58px);
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

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

.editorial-post-card {
    display: grid;
    grid-template-rows: 280px 1fr;
    transition: transform .25s ease, box-shadow .25s ease;
}

.editorial-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-post-card div {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 26px;
}

.editorial-post-card h3 {
    margin: 0;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.06;
}

.editorial-post-card p {
    margin: 0;
    color: var(--fs-muted);
    line-height: 1.62;
}

.editorial-post-card strong {
    margin-top: 6px;
    color: var(--fs-rose);
    font-size: 13px;
    font-weight: 900;
}

.blog-pro-cta {
    padding: 18px 0 84px;
}

.blog-pro-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(28px, 5vw, 54px);
    background: linear-gradient(135deg, rgba(91, 47, 75, .94), rgba(168, 95, 90, .94)), #6b3e52;
}

.blog-pro-cta-panel h2,
.blog-pro-cta-panel p {
    color: #fffaf5;
}

.blog-pro-cta-panel h2 {
    max-width: 760px;
    margin: 8px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.04;
}

.blog-pro-cta-panel p {
    margin: 0;
    opacity: .86;
}

.article-pro-hero {
    padding: 140px 0 72px;
    background: linear-gradient(90deg, rgba(255, 250, 245, .96) 0%, rgba(255, 250, 245, .86) 50%, rgba(244, 222, 204, .7) 100%), #fffaf5;
}

.article-back {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    color: var(--fs-rose);
    font-size: 13px;
    font-weight: 900;
}

.article-pro-meta {
    margin: 28px 0;
}

.article-pro-image {
    padding: 14px;
    background: #fff;
    border-radius: 34px;
}

.article-pro-image img {
    display: block;
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    border-radius: 24px;
}

.article-pro-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.article-pro-content {
    padding: clamp(28px, 5vw, 58px);
}

.article-lead {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    margin-bottom: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(112, 70, 58, .14);
}

.article-lead span {
    color: var(--fs-rose);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-lead p {
    margin: 0;
    color: var(--fs-ink);
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.45;
}

.article-rich-text {
    color: #5f4f46;
    font-size: 19px;
    line-height: 1.9;
}

.article-rich-text p {
    margin-bottom: 22px;
}

.article-rich-text h2,
.article-rich-text h3 {
    margin: 34px 0 14px;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
}

.article-inline-cta {
    margin: 34px 0;
    padding: clamp(24px, 4vw, 38px);
    color: #fffaf5;
    background:
        radial-gradient(circle at 88% 20%, rgba(213, 168, 93, .24), transparent 26%),
        linear-gradient(135deg, #3f2237 0%, #8c4f59 58%, #b87961 100%);
    border-radius: 26px;
    box-shadow: 0 24px 72px rgba(78, 44, 31, .16);
}

.article-inline-cta span {
    color: var(--fs-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.article-inline-cta h2 {
    max-width: 720px;
    margin: 12px 0;
    color: #fffaf5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.article-inline-cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 250, 245, .82);
}

.article-tags {
    margin-top: 36px;
}

.article-pro-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 16px;
}

.article-side-card {
    padding: 24px;
}

.article-side-card.accent {
    display: grid;
    gap: 16px;
    background: linear-gradient(145deg, #fff8ef, #f2d8ce);
}

.article-side-card h2 {
    margin: 0;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.08;
}

.article-side-card strong {
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
}

.article-side-card p {
    margin: 0;
    color: var(--fs-muted);
    line-height: 1.65;
}

@media (max-width: 1199px) {
    .editorial-grid,
    .editorial-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-pro-shell {
        grid-template-columns: 1fr;
    }

    .article-pro-sidebar {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .blog-pro-hero-grid,
    .article-pro-hero-grid {
        grid-template-columns: 1fr;
    }

    .blog-pro-feature {
        min-height: 460px;
    }

    .blog-pro-cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-pro-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .blog-pro-hero,
    .article-pro-hero {
        min-height: auto;
        padding-top: 118px;
    }

    .blog-pro-copy h1,
    .article-pro-copy h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .editorial-grid,
    .editorial-grid.compact {
        grid-template-columns: 1fr;
    }

    .editorial-post-card {
        grid-template-rows: 240px 1fr;
    }

    .article-lead {
        grid-template-columns: 1fr;
    }
}

/* Contact page redesign */
.contact-pro {
    color: var(--fs-ink);
    background:
        linear-gradient(180deg, #fffaf5 0%, #f4e4d2 48%, #fffaf5 100%);
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
}

.contact-pro-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 138px 0 70px;
    background:
        radial-gradient(circle at 10% 18%, rgba(213, 168, 93, .18), transparent 30%),
        radial-gradient(circle at 90% 22%, rgba(167, 101, 97, .16), transparent 28%),
        #fffaf5;
}

.contact-pro-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(30px, 5vw, 74px);
    align-items: center;
}

.contact-pro-copy h1 {
    max-width: 860px;
    margin: 14px 0 22px;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 6.8vw, 104px);
    line-height: .91;
}

.contact-pro-copy p {
    max-width: 730px;
    margin: 0;
    color: var(--fs-muted);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.78;
}

.contact-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.contact-pro-signal,
.contact-pro-form-card,
.contact-pro-info article {
    overflow: hidden;
    background: rgba(255, 253, 249, .88);
    border: 1px solid rgba(226, 205, 184, .78);
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(78, 44, 31, .1);
}

.contact-pro-signal {
    position: relative;
    min-height: 430px;
    display: grid;
    align-content: end;
    gap: 14px;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(31, 20, 18, .08), rgba(31, 20, 18, .74)),
        url("/uploads/service-color-therapy.jpg") center / cover;
    color: #fffaf5;
}

.contact-pro-signal span {
    width: fit-content;
    padding: 9px 12px;
    color: #fffaf5;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-pro-signal h2 {
    margin: 0;
    color: #fffaf5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.02;
}

.contact-pro-signal p {
    margin: 0;
    color: rgba(255, 250, 245, .86);
    line-height: 1.65;
}

.contact-pro-signal div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.contact-pro-signal strong {
    padding: 9px 11px;
    color: #fffaf5;
    background: rgba(255, 255, 255, .13);
    border-radius: 999px;
    font-size: 12px;
}

.contact-pro-body {
    padding: 78px 0 92px;
}

.contact-pro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 26px;
    align-items: start;
}

.contact-pro-form-card {
    padding: clamp(28px, 5vw, 58px);
}

.contact-pro-form-card h2 {
    max-width: 650px;
    margin: 10px 0 28px;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.6vw, 68px);
    line-height: .98;
}

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

.contact-pro-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-pro-fields textarea {
    grid-column: 1 / -1;
}

.contact-pro-fields .contact-wide-field {
    grid-column: 1 / -1;
}

.contact-pro-form .form-control,
.contact-pro-form .form-select {
    min-height: 58px;
    color: var(--fs-ink);
    background: #fffaf5;
    border: 1px solid rgba(211, 184, 154, .9);
    border-radius: 18px;
}

.contact-pro-form textarea.form-control {
    min-height: 170px;
}

.contact-pro-form .form-control:focus,
.contact-pro-form .form-select:focus {
    border-color: var(--fs-gold);
    box-shadow: 0 0 0 .24rem rgba(213, 168, 93, .16);
}

.contact-pro-form button {
    width: fit-content;
    border: 0;
}

.contact-pro-info {
    display: grid;
    gap: 16px;
}

.contact-pro-info article {
    padding: 24px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.contact-pro-info article:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 82px rgba(78, 44, 31, .14);
}

.contact-pro-info span {
    color: var(--fs-gold);
    font-size: 13px;
    font-weight: 950;
}

.contact-pro-info h3 {
    margin: 8px 0 8px;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
}

.contact-pro-info a,
.contact-pro-info p {
    margin: 0;
    color: var(--fs-muted);
    line-height: 1.62;
}

.contact-pro-info a {
    font-weight: 850;
}

.contact-pro-info a:hover {
    color: var(--fs-rose);
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-social-link svg,
.footer-social-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-social-link svg {
    color: #fffaf5;
    padding: 7px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d 48%, #fcb045);
    border-radius: 14px;
    stroke-width: 1.7;
}

.footer-social-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 250, 245, .3);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .contact-pro-hero-grid,
    .contact-pro-layout {
        grid-template-columns: 1fr;
    }

    .contact-pro-signal {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .contact-pro-hero {
        min-height: auto;
        padding-top: 118px;
    }

    .contact-pro-copy h1 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .contact-pro-fields {
        grid-template-columns: 1fr;
    }

    .contact-pro-form button,
    .contact-pro-actions .fs-button {
        width: 100%;
        justify-content: center;
    }
}

/* Service detail SEO pages */
.service-pro {
    color: var(--fs-ink);
    background: linear-gradient(180deg, #fffaf5 0%, #f5e5d4 50%, #fffaf5 100%);
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
}

.service-pro-hero {
    padding: 138px 0 78px;
    background:
        radial-gradient(circle at 14% 20%, rgba(213, 168, 93, .18), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(167, 101, 97, .14), transparent 30%),
        #fffaf5;
}

.service-pro-grid,
.service-pro-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
}

.service-pro-copy h1 {
    max-width: 890px;
    margin: 14px 0 22px;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 7vw, 106px);
    line-height: .9;
}

.service-pro-copy p {
    max-width: 740px;
    margin: 0;
    color: var(--fs-muted);
    font-size: clamp(18px, 1.55vw, 22px);
    line-height: 1.75;
}

.service-pro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 30px;
}

.service-pro-tags span {
    padding: 10px 14px;
    color: #7b4c4c;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(218, 190, 159, .78);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.service-pro-image,
.service-pro-content,
.service-pro-aside article {
    overflow: hidden;
    background: rgba(255, 253, 249, .88);
    border: 1px solid rgba(226, 205, 184, .78);
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(78, 44, 31, .1);
}

.service-pro-image {
    padding: 14px;
    background: #fff;
}

.service-pro-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 22px;
}

.service-pro-body,
.service-pro-faq,
.service-pro-related {
    padding: 82px 0;
}

.service-pro-faq {
    background:
        radial-gradient(circle at 12% 16%, rgba(213, 168, 93, .13), transparent 26%),
        linear-gradient(180deg, #fffaf5 0%, #f5e7d9 100%);
}

.service-faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
}

.service-faq-list details {
    padding: 22px 24px;
    background: rgba(255, 253, 249, .86);
    border: 1px solid rgba(226, 205, 184, .8);
    border-radius: 22px;
    box-shadow: 0 18px 54px rgba(78, 44, 31, .08);
}

.service-faq-list summary {
    cursor: pointer;
    color: var(--fs-ink);
    font-weight: 900;
    list-style: none;
}

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

.service-faq-list summary::after {
    content: "+";
    float: right;
    color: var(--fs-rose);
    font-size: 22px;
    line-height: 1;
}

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

.service-faq-list p {
    margin: 14px 0 0;
    color: var(--fs-muted);
    line-height: 1.7;
}

.service-pro-content-grid {
    align-items: start;
}

.service-pro-content {
    padding: clamp(28px, 5vw, 58px);
}

.service-pro-content h2 {
    max-width: 760px;
    margin: 10px 0 26px;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.5vw, 66px);
    line-height: 1;
}

.service-pro-aside {
    display: grid;
    gap: 16px;
}

.service-pro-aside article {
    padding: 24px;
}

.service-pro-aside span {
    color: var(--fs-gold);
    font-size: 13px;
    font-weight: 950;
}

.service-pro-aside h3 {
    margin: 8px 0;
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.service-pro-aside p {
    margin: 0;
    color: var(--fs-muted);
    line-height: 1.65;
}

@media (max-width: 991px) {
    .service-pro-grid,
    .service-pro-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .service-pro-hero {
        padding-top: 118px;
    }

    .service-pro-copy h1 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .service-pro-copy .fs-actions .fs-button {
        width: 100%;
        justify-content: center;
    }
}

/* Local SEO landing */
.local-seo-band {
    padding: 72px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(213, 168, 93, .14), transparent 26%),
        linear-gradient(135deg, #fffaf5 0%, #f3dfcc 100%);
}

.local-seo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: clamp(28px, 4vw, 62px);
    align-items: center;
    padding: clamp(28px, 5vw, 54px);
    background: rgba(255, 253, 249, .78);
    border: 1px solid rgba(226, 205, 184, .76);
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(78, 44, 31, .08);
}

.local-seo-grid h2,
.local-landing-copy h1,
.local-landing-card h2,
.local-content-panel h2 {
    color: var(--fs-ink);
    font-family: Georgia, "Times New Roman", serif;
}

.local-seo-grid h2 {
    max-width: 760px;
    margin: 10px 0 18px;
    font-size: clamp(36px, 4.4vw, 68px);
    line-height: .98;
}

.local-seo-grid p {
    max-width: 820px;
    margin: 0;
    color: var(--fs-muted);
    font-size: 18px;
    line-height: 1.75;
}

.local-seo-links {
    display: grid;
    gap: 12px;
}

.local-seo-links a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    color: var(--fs-ink);
    text-decoration: none;
    background: #fffaf5;
    border: 1px solid rgba(226, 205, 184, .86);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(78, 44, 31, .06);
}

.local-seo-links a::after {
    content: "→";
    color: var(--fs-gold);
}

.local-landing {
    color: var(--fs-ink);
    background: linear-gradient(180deg, #fffaf5 0%, #f3dfcc 48%, #fffaf5 100%);
}

.local-landing-hero {
    padding: 146px 0 84px;
    background:
        radial-gradient(circle at 20% 18%, rgba(213, 168, 93, .18), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(132, 55, 85, .13), transparent 32%),
        #fffaf5;
}

.local-landing-grid,
.local-content-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: clamp(30px, 5vw, 76px);
    align-items: center;
}

.local-landing-copy h1 {
    max-width: 940px;
    margin: 14px 0 24px;
    font-size: clamp(52px, 6.4vw, 104px);
    line-height: .9;
}

.local-landing-copy p,
.local-landing-card p,
.local-content-panel p {
    color: var(--fs-muted);
    font-size: 18px;
    line-height: 1.75;
}

.local-landing-card {
    padding: clamp(28px, 4vw, 46px);
    background:
        linear-gradient(145deg, rgba(132, 55, 85, .94), rgba(177, 99, 91, .9)),
        #8e3e5d;
    border-radius: 34px;
    box-shadow: 0 32px 90px rgba(78, 44, 31, .18);
}

.local-landing-card span,
.local-landing-card h2,
.local-landing-card p,
.local-landing-card a {
    color: #fffaf5;
}

.local-landing-card span {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .72;
}

.local-landing-card h2 {
    margin: 12px 0 18px;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1;
}

.local-landing-card a {
    display: inline-flex;
    margin-top: 12px;
    font-weight: 900;
    text-decoration: none;
}

.local-landing-services,
.local-landing-content {
    padding: 84px 0;
}

.local-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.local-service-card {
    min-height: 260px;
    padding: 26px;
    color: var(--fs-ink);
    text-decoration: none;
    background: rgba(255, 253, 249, .86);
    border: 1px solid rgba(226, 205, 184, .78);
    border-radius: 28px;
    box-shadow: 0 22px 62px rgba(78, 44, 31, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.local-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(78, 44, 31, .13);
}

.local-service-card span {
    color: var(--fs-gold);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.local-service-card h3 {
    margin: 14px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.local-service-card p {
    color: var(--fs-muted);
    line-height: 1.65;
}

.local-service-card strong {
    color: var(--fs-rose);
    font-size: 13px;
}

.local-content-panel {
    align-items: start;
    padding: clamp(30px, 5vw, 58px);
    background: #fffaf5;
    border: 1px solid rgba(226, 205, 184, .8);
    border-radius: 34px;
    box-shadow: 0 28px 80px rgba(78, 44, 31, .08);
}

.local-content-panel h2 {
    margin: 12px 0 0;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: .98;
}

@media (max-width: 991px) {
    .local-seo-grid,
    .local-landing-grid,
    .local-content-panel {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .local-landing-hero {
        padding-top: 118px;
    }

    .local-landing-copy h1 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .local-service-grid {
        grid-template-columns: 1fr;
    }
}
