:root {
    --bg: #faf4e4;
    --bg-soft: #f4e3a6;
    --bg-strong: #e7c45b;
    --panel: #fffaf0;
    --panel-soft: #fff3d0;
    --panel-alt: #f8e7b2;
    --line: #d8bb67;
    --line-strong: #b98e21;
    --text: #38290e;
    --muted: #715b29;
    --white: #ffffff;
    --success: #2d6e38;
    --danger: #9b4124;
    --radius-2xl: 42px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1200px;
    --font-display: "Cormorant Garamond", serif;
    --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 300;
    padding: 10px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--panel);
}

.skip-link:focus {
    top: 16px;
}

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

.topbar {
    background: #2d2d2d;
}

.topbar-row {
    min-height: 14px;
    padding: 0;
}

.topbar-row p,
.topbar-links {
    display: none;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
}

.nav-shell {
    width: min(calc(100% - 72px), 1800px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 12px 0 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: padding 0.25s ease, width 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.is-compact .nav-shell {
    width: min(calc(100% - 20px), var(--container));
    padding: 12px 18px;
    border: 1px solid rgba(185, 142, 33, 0.42);
    border-radius: 18px;
    background: rgba(255, 248, 234, 0.96);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-header .brand {
    gap: 0;
}

.brand-logo-image {
    display: block;
    width: auto;
    object-fit: contain;
}

.brand-logo-image-header {
    max-width: min(240px, 30vw);
    height: 54px;
}

.brand-name {
    display: inline-flex;
    align-items: baseline;
    font-size: clamp(2rem, 2.2vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.brand-name span {
    color: #ef4779;
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: var(--bg-soft);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    overflow: hidden;
}

.brand-logo-image-mark {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    min-width: 0;
}

.site-nav a {
    font-size: 0.98rem;
    font-weight: 700;
    color: #111111;
    transition: color 0.2s ease;
}

.site-nav a:first-child,
.site-nav a:hover {
    color: #ef4779;
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 260;
    flex-direction: column;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(185, 142, 33, 0.32);
    border-radius: 16px;
    background: rgba(255, 249, 238, 0.96);
    color: #111111;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.header-tools {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.header-cta-link.header-cta-link-nav {
    display: none;
}

.header-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.header-cta-link:hover {
    background: #2d2d2d;
    transform: translateY(-1px);
}

.tool-link {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #111111;
}

.tool-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.tool-badge {
    position: absolute;
    top: 2px;
    right: 0;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ef4779;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
}

.button,
.nav-cta,
.control-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover,
.nav-cta:hover,
.control-button:hover {
    transform: translateY(-2px);
}

.nav-cta,
.button-primary {
    background: var(--bg-strong);
}

.button-secondary,
.control-button {
    background: var(--panel);
}

.button-tertiary {
    background: transparent;
}

.button-full {
    width: 100%;
}

.hero {
    padding: 0 0 28px;
    background: #f2efea;
}

.hero > .container {
    width: 100%;
    max-width: none;
}

.hero-shell {
    border: none;
    border-radius: 0;
    background: #f4ece8;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-track {
    display: flex;
    transition: transform 0.7s ease;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(380px, 50vh, 520px);
    padding: clamp(44px, 3vw, 58px) clamp(42px, 5vw, 92px) 18px;
    background: #f4ece8;
    overflow: hidden;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(244, 236, 232, 0.98) 0%,
        rgba(244, 236, 232, 0.94) 38%,
        rgba(244, 236, 232, 0.7) 62%,
        rgba(244, 236, 232, 0.12) 100%
    );
}

.hero-copy h1,
.section-heading h2,
.cta-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.hero-copy h1 {
    max-width: 8ch;
    font-family: var(--font-body);
    font-size: clamp(2.1rem, 3.7vw, 3.5rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 800;
    color: #111111;
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(100%, 44%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--line-strong);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
}

.hero-description,
.section-heading p:last-child,
.cta-copy > p:last-of-type {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.03rem;
}

.hero-description {
    max-width: 34ch;
    color: #616161;
    font-size: 1.02rem;
}

.contact-stack,
.footer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 115%;
}

.hero-slide-image-only::after {
    background: linear-gradient(
        90deg,
        rgba(244, 236, 232, 0.12) 0%,
        rgba(244, 236, 232, 0.04) 36%,
        rgba(244, 236, 232, 0.02) 100%
    );
}

.hero-slide-image-only .hero-background {
    background-position: center center;
    background-size: cover;
}

.hero-controls {
    position: absolute;
    inset: 50% 0 auto;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
    background: transparent;
    z-index: 3;
    pointer-events: none;
}

.hero-dots {
    display: none;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.18);
}

.hero-dot.is-active {
    background: #111111;
}

.hero .button-primary {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.hero .eyebrow {
    padding: 6px 12px;
    background: #111111;
    color: #ffffff;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
}

.hero .eyebrow::before {
    display: none;
}

.hero .button-secondary {
    border-color: #111111;
    background: transparent;
    color: #111111;
}

.hero .control-button {
    min-height: auto;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(185, 142, 33, 0.55);
    background: rgba(255, 250, 240, 0.92);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(90, 66, 18, 0.12);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    color: #111111;
    pointer-events: auto;
}

.hero .control-button:hover {
    background: rgba(255, 250, 240, 1);
}

.hero .control-button:first-child {
    justify-self: start;
}

.hero .control-button:last-child {
    justify-self: end;
}

.hero-benefits-wrap {
    position: relative;
    z-index: 5;
    width: min(calc(100% - 40px), 1240px);
    margin: -34px auto 0;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(185, 142, 33, 0.18);
    background: #fffdf8;
}

.hero-benefit {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 22px 24px;
}

.hero-benefit + .hero-benefit {
    border-left: 1px solid rgba(185, 142, 33, 0.16);
}

.hero-benefit h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.hero-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-benefit-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #111111;
}

.hero-benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-grid,
.package-grid,
.testimonial-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}

.feature-card,
.package-card,
.testimonial-card,
.faq-item,
.lead-form {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--panel);
}

.package-badge {
    margin: 0 0 12px;
    color: var(--line-strong);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.mosaic-section {
    background: #fffdf8;
    padding-top: 22px;
    padding-bottom: 34px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(230px, 1fr));
    gap: 26px;
    margin-top: 0;
}

.mosaic-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    background: #f8eceb;
}

.mosaic-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.mosaic-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.mosaic-card-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 148px;
    padding: 12px 18px;
    border: 1px solid rgba(185, 142, 33, 0.18);
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    z-index: 2;
}

.mosaic-card-label strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1rem;
}

.mosaic-card-label span {
    color: #ef4779;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mosaic-order-button {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    width: calc(100% - 28px);
    max-width: 220px;
    min-height: 46px;
    padding: 0 18px;
    border-color: var(--line-strong);
    background: var(--line-strong);
    color: var(--white);
    transform: translateX(-50%);
    white-space: nowrap;
}

.mosaic-order-button:hover {
    border-color: #9c7618;
    background: #9c7618;
    transform: translateX(-50%) translateY(-2px);
}

.mosaic-card-one {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.mosaic-card-two {
    grid-column: 6 / 10;
    grid-row: 1;
}

.mosaic-card-three {
    grid-column: 10 / 13;
    grid-row: 1;
}

.mosaic-card-four {
    grid-column: 6 / 9;
    grid-row: 2;
}

.mosaic-card-five {
    grid-column: 9 / 13;
    grid-row: 2;
}

.brand-story-section {
    background: #fffdf8;
    padding-top: 22px;
}

.brand-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 36px;
    align-items: center;
}

.brand-story-copy h2 {
    margin: 0;
    max-width: 16ch;
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #314b72;
}

.brand-story-copy p:not(.eyebrow) {
    max-width: 62ch;
    margin: 20px 0 0;
    color: #6b7a93;
    font-size: 1.03rem;
    line-height: 1.85;
}

.brand-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.brand-story-section .button-primary {
    background: #d6ab28;
    border-color: #d6ab28;
    color: #ffffff;
}

.brand-story-section .button-secondary {
    border-color: #d6ab28;
    background: transparent;
    color: #8d6c12;
}

.brand-story-visual {
    display: flex;
    justify-content: center;
}

.brand-story-visual img {
    width: min(100%, 700px);
}

.section {
    padding: 86px 0;
}

.section-soft {
    background: #f7ebbe;
}

.section-cta {
    background: #efdb93;
}

.section-products {
    background: #fffdf8;
}

.section-heading {
    max-width: 760px;
}

.section-heading-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.section-heading-actions-centered {
    justify-content: center;
    margin-top: 36px;
}

.section-heading h2,
.cta-copy h2 {
    font-size: clamp(2.7rem, 5vw, 4.2rem);
}

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

.section-heading-center .eyebrow {
    justify-content: center;
}

.faq-layout,
.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.feature-card h3,
.package-card h3,
.testimonial-meta strong,
.site-footer h3,
.faq-item summary {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.12rem;
    line-height: 1.4;
}

.feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 16px;
    min-height: 280px;
    padding: 28px;
    background: rgba(255, 250, 239, 0.94);
}

.feature-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: 0 14px;
    border: 1px solid rgba(185, 142, 33, 0.28);
    border-radius: 20px;
    background: #fffdf6;
    color: #b68814;
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
}

.feature-label {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(185, 142, 33, 0.2);
    border-radius: 999px;
    background: rgba(240, 217, 132, 0.18);
    color: #8a6b15;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
}

.feature-card p,
.package-size,
.package-description,
.testimonial-quote,
.testimonial-meta span,
.faq-item p,
.footer-copy,
.form-status {
    margin: 0;
    color: var(--muted);
}

.feature-meta {
    display: block;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(185, 142, 33, 0.16);
    color: #8a6b15;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.6;
}

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

.package-card {
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    min-width: 0;
}

.package-section-heading {
    max-width: 620px;
}

.package-section-heading h2 {
    font-family: var(--font-body);
    font-size: clamp(2.1rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
    text-transform: lowercase;
}

.package-section-heading p {
    max-width: 42ch;
    margin-inline: auto;
}

.package-heading-accent {
    display: block;
    width: 90px;
    height: 2px;
    margin: 18px auto 0;
    background: #ea5378;
}

.package-media {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #f5f5f5;
    border: none;
    min-width: 0;
}

.package-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 0.82) 62%, rgba(245, 245, 245, 0.98) 100%);
    pointer-events: none;
}

.package-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.25;
    object-fit: contain;
    border: none;
    border-radius: 0;
    background: #f5f5f5;
}

.package-order-button {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    min-height: 48px;
    padding: 0 22px;
    border-color: var(--line-strong);
    background: var(--line-strong);
    color: var(--white);
    transform: translateX(-50%);
    white-space: nowrap;
}

.package-order-button:hover {
    border-color: #9c7618;
    background: #9c7618;
    transform: translateX(-50%) translateY(-2px);
}

.package-body {
    padding: 24px 8px 0;
    text-align: center;
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 14px;
    border: none;
    border-radius: 0;
    background: var(--package-badge-bg, #94c84f);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.package-price {
    margin: 10px 0 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #575757;
}

.package-body h3 {
    text-transform: uppercase;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.package-size {
    margin-top: 10px;
    color: #737373;
    font-size: 0.95rem;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.section-testimonials {
    position: relative;
    overflow: hidden;
    background: #ccb34b;
}

.testimonial-section-heading {
    max-width: 620px;
}

.testimonial-section-heading h2 {
    color: #fffdf8;
    font-family: var(--font-body);
    font-size: clamp(2.1rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
    text-transform: lowercase;
}

.testimonial-section-heading p {
    max-width: 40ch;
    margin-inline: auto;
    color: rgba(255, 253, 248, 0.84);
}

.testimonial-heading-accent {
    display: block;
    width: 90px;
    height: 2px;
    margin: 18px auto 0;
    background: #fff1c1;
}

.testimonial-shell {
    margin-top: 42px;
}

.testimonial-slider-window {
    overflow: hidden;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.65s ease;
}

.testimonial-slide {
    min-width: 100%;
}

.testimonial-slide-single .testimonial-pair {
    grid-template-columns: minmax(0, 1fr);
    max-width: 620px;
    margin-inline: auto;
}

.testimonial-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.testimonial-pair.is-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 620px;
    margin-inline: auto;
}

.testimonial-card {
    display: grid;
    gap: 34px;
    min-height: 288px;
    padding: 40px 42px;
    border: none;
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.98);
}

.testimonial-quote {
    margin: 0;
    color: #798093;
    font-size: 1.14rem;
    line-height: 1.85;
}

.testimonial-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 2px solid #b58a13;
    border-radius: 999px;
    background: #fff3c5;
    color: #7b5a0f;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.testimonial-meta {
    display: grid;
    gap: 4px;
}

.testimonial-meta strong {
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 700;
    color: #374968;
}

.testimonial-meta span {
    color: #97a0b3;
    font-size: 0.96rem;
}

.testimonial-stars {
    flex-shrink: 0;
    font-size: 0;
    color: transparent;
}

.testimonial-stars::before {
    content: "\2605 \2605 \2605 \2605 \2605";
    color: #f0ae16;
    font-size: 1.42rem;
    letter-spacing: 0.1em;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 34px;
}

.testimonial-control {
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #fffdf8;
    font-size: 1.02rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.testimonial-control:first-child {
    padding-left: 44px;
}

.testimonial-control:last-child {
    padding-right: 44px;
}

.testimonial-control:first-child::before,
.testimonial-control:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 28px;
    height: 2px;
    background: currentColor;
}

.testimonial-control:first-child::before {
    left: 0;
}

.testimonial-control:last-child::after {
    right: 0;
}

.testimonial-control:first-child::after,
.testimonial-control:last-child::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.testimonial-control:first-child::after {
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
}

.testimonial-control:last-child::before {
    right: 0;
    transform: translateY(-50%) rotate(45deg);
}

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

.faq-item {
    padding: 0 22px;
    background: #fff8e7;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
    font-weight: 800;
}

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

.faq-item p {
    padding: 0 0 20px;
}

.section-cta {
    background: #fffdf8;
}

.contact-overview {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: start;
}

.contact-info-list {
    display: grid;
    gap: 34px;
    padding-top: 6px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: center;
}

.contact-info-item p,
.contact-info-item strong,
.contact-info-item a {
    margin: 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #d2b13f;
    color: #ffffff;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-item p {
    margin-bottom: 6px;
    color: #9aa5b7;
    font-size: 0.98rem;
    font-weight: 700;
}

.contact-info-item strong,
.contact-info-item a {
    color: #2d456c;
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.45;
}

.contact-area-list {
    display: grid;
    gap: 18px;
}

.contact-area-item {
    display: grid;
    gap: 2px;
}

.contact-area-link,
.contact-area-title {
    color: #2d456c;
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.45;
}

.contact-area-link {
    width: fit-content;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-area-link:hover {
    color: #b68814;
    transform: translateX(2px);
}

.contact-area-line {
    color: #2d456c;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.45;
}

.contact-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-area-tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(185, 142, 33, 0.18);
    border-radius: 999px;
    background: rgba(246, 233, 186, 0.45);
    color: #2d456c;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
}

.contact-area-tag.is-link {
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-area-tag.is-link:hover {
    color: #b68814;
    border-color: rgba(182, 136, 20, 0.32);
    transform: translateY(-1px);
}

.contact-map-card {
    overflow: hidden;
    min-height: 365px;
    border: 1px solid #d9dfeb;
    border-radius: 18px;
    background: #f3f6fa;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 365px;
    border: 0;
}

.contact-map-stack {
    display: grid;
    gap: 22px;
}

.payment-card {
    padding: 24px 26px;
    border: 1px solid #d9dfeb;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffefb 0%, #fff8e7 100%);
    box-shadow: 0 12px 36px rgba(45, 69, 108, 0.06);
}

.payment-card-header p,
.payment-card-header strong,
.payment-owner,
.payment-note {
    margin: 0;
}

.payment-card-header p {
    color: #b28c20;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.payment-card-header strong {
    display: block;
    margin-top: 8px;
    color: #2d456c;
    font-size: 1.18rem;
    line-height: 1.45;
}

.payment-bank-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.payment-bank-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 16px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(178, 140, 32, 0.14);
}

.payment-bank-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.payment-bank-name {
    color: #8f6f17;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.payment-bank-number {
    color: #2d456c;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.5;
}

.payment-owner {
    margin-top: 18px;
    color: #2d456c;
    font-size: 1rem;
    font-weight: 800;
}

.payment-note {
    margin-top: 8px;
    color: #6f7f97;
    font-size: 0.98rem;
    line-height: 1.7;
}

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

.lead-form.lead-form-wide {
    gap: 24px;
    margin-top: 60px;
    padding: 0;
    border: none;
    background: transparent;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
}

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

.lead-form span {
    color: #2d456c;
    font-size: 1rem;
    font-weight: 800;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d9dfeb;
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
}

.lead-form input {
    min-height: 56px;
}

.lead-form textarea {
    min-height: 164px;
    resize: vertical;
}

.lead-form-full {
    grid-column: 1 / -1;
}

.lead-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lead-form-actions .button-primary {
    min-width: 220px;
    background: #d2b13f;
    border-color: #d2b13f;
    color: #1b1b1b;
}

.form-status {
    max-width: 48ch;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status.is-success {
    color: var(--success);
}

.form-status.is-error {
    color: var(--danger);
}

.site-footer {
    position: relative;
    padding: 34px 0 24px;
    border-top: 1px solid rgba(185, 142, 33, 0.28);
    background:
        radial-gradient(circle at top left, rgba(255, 248, 225, 0.96), transparent 34%),
        linear-gradient(180deg, #f0d986 0%, #e2c05b 100%);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08));
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.9fr));
    gap: 18px;
    align-items: stretch;
}

.brand-footer {
    margin-bottom: 14px;
    align-items: flex-start;
}

.brand-footer .brand-mark {
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex: 0 0 60px;
    aspect-ratio: 1 / 1;
}

.brand-footer .brand-logo-image-mark {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-card {
    background: linear-gradient(135deg, rgba(255, 252, 244, 0.95), rgba(255, 242, 204, 0.78));
}

.footer-copy {
    margin: 0;
    max-width: 38ch;
    color: rgba(56, 41, 14, 0.82);
    font-size: 0.96rem;
    line-height: 1.7;
}

.footer-card {
    padding: 22px 22px 20px;
    border: 1px solid rgba(185, 142, 33, 0.24);
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.78);
    box-shadow: 0 14px 34px rgba(96, 71, 18, 0.08);
    backdrop-filter: blur(8px);
}

.footer-card h3 {
    margin-bottom: 14px;
}

.footer-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.footer-service-list {
    grid-template-columns: 1fr;
    gap: 8px 14px;
}

.footer-service-list li {
    position: relative;
    padding-left: 14px;
}

.footer-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(185, 142, 33, 0.7);
}

.footer-service-list a,
.footer-service-list span {
    color: var(--text);
    font-weight: 800;
}

.footer-service-list a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-service-list a:hover {
    color: #111111;
    transform: translateX(3px);
}

.footer-empty {
    margin: 0;
    color: rgba(56, 41, 14, 0.68);
    font-size: 0.94rem;
    line-height: 1.7;
}

.footer-contact-list li {
    display: grid;
    gap: 4px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(185, 142, 33, 0.14);
}

.footer-contact-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.footer-contact-list span {
    color: rgba(56, 41, 14, 0.68);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-contact-list a,
.footer-contact-list strong,
.footer-nav-list a,
.footer-bottom-links a {
    color: var(--text);
    font-weight: 800;
}

.footer-nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-nav-list a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(185, 142, 33, 0.52);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-contact-list a:hover,
.footer-nav-list a:hover,
.footer-bottom-links a:hover {
    color: #111111;
}

.footer-nav-list a:hover {
    transform: translateX(3px);
}

.footer-nav-list a:hover::before {
    transform: scale(1.15);
    background: var(--line-strong);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 4px 0;
    color: rgba(56, 41, 14, 0.74);
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.button:focus,
.nav-cta:focus,
.nav-toggle:focus,
.hero-dot:focus,
.testimonial-control:focus,
.control-button:focus,
.lead-form input:focus,
.lead-form textarea:focus,
.faq-item summary:focus {
    outline: 2px solid var(--line-strong);
    outline-offset: 2px;
}

@media (max-width: 1100px) {
    .site-header {
        inset: 12px 0 auto;
    }

    .nav-shell {
        grid-template-columns: auto minmax(0, 1fr) auto;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .site-nav {
        display: flex;
        position: static;
        padding: 0;
        border: none;
        background: transparent;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
        min-width: 0;
    }

    .nav-cta {
        display: none;
    }

    .brand-story-layout,
    .faq-layout,
    .cta-grid {
        grid-template-columns: 1fr;
    }

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

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

    .article-page-hero {
        padding-top: 42px;
    }

    .article-page-hero-card {
        padding: 34px;
    }

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

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

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

    .comment-form-subject {
        grid-column: 1 / -1;
    }

    .mosaic-grid,
    .feature-grid,
    .package-grid,
    .testimonial-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-grid {
        gap: 28px;
    }

    .package-media {
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 14px;
    }

    .package-media::after {
        display: none;
    }

    .package-media img {
        aspect-ratio: 1 / 1.18;
    }

    .package-order-button {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 14px;
        transform: none;
        white-space: normal;
        text-align: center;
    }

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

    .package-badge {
        top: 12px;
        left: 12px;
        min-height: 0;
        max-width: calc(100% - 24px);
        padding: 8px 12px;
        font-size: 0.78rem;
        line-height: 1.2;
        text-align: center;
    }

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

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

    .hero-benefit:nth-child(3) {
        border-left: none;
    }

    .hero-benefit:nth-child(n + 3) {
        border-top: 1px solid rgba(185, 142, 33, 0.16);
    }

    .mosaic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .mosaic-card-one,
    .mosaic-card-two,
    .mosaic-card-three,
    .mosaic-card-four,
    .mosaic-card-five {
        grid-column: auto;
        grid-row: auto;
    }

    .mosaic-card-one {
        min-height: 420px;
    }

    .contact-overview {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .lead-form-full {
        grid-column: auto;
    }

    .lead-form-actions {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .hero-controls {
        inset: auto 0 18px;
        transform: none;
        grid-template-columns: 52px 1fr 52px;
        padding: 0 18px;
    }

    .brand-story-copy h2 {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .topbar {
        display: none;
    }

    .hero {
        padding-top: 0;
    }

    .nav-shell {
        width: min(calc(100% - 16px), var(--container));
        grid-template-columns: minmax(0, 1fr) auto;
        justify-content: space-between;
        gap: 12px;
        align-items: center;
        padding: 12px 0 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .site-header.is-compact .nav-shell {
        width: min(calc(100% - 16px), var(--container));
        padding: 12px 16px;
        border: 1px solid rgba(185, 142, 33, 0.42);
        border-radius: 24px;
        background: rgba(255, 248, 234, 0.96);
    }

    .brand {
        max-width: 100%;
    }

    .nav-toggle {
        display: inline-flex;
        grid-column: 2;
        justify-self: end;
    }

    .site-nav {
        position: fixed;
        top: 86px;
        right: 10px;
        bottom: 12px;
        z-index: 240;
        width: min(84vw, 340px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        max-height: calc(100dvh - 98px);
        padding: 22px 22px 24px;
        border: 1px solid rgba(185, 142, 33, 0.26);
        border-radius: 28px;
        background: rgba(255, 249, 240, 0.98);
        box-shadow: 0 24px 80px rgba(52, 37, 12, 0.18);
        overflow-y: auto;
        transform: translateX(calc(100% + 24px));
        opacity: 0;
        visibility: hidden;
        transition: transform 0.26s ease, opacity 0.26s ease, visibility 0.26s ease;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .site-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(185, 142, 33, 0.12);
        font-size: 1rem;
    }

    .site-nav a:first-child,
    .site-nav a:hover {
        color: #111111;
    }

    .header-tools {
        display: none;
    }

    .header-cta-link.header-cta-link-nav {
        display: inline-flex;
        margin-top: auto;
        border-bottom: none;
        width: 100%;
        min-height: 46px;
        padding: 0 18px;
        background: #111111;
        color: #ffffff;
        justify-content: center;
        text-align: center;
    }

    .site-nav .header-cta-link.header-cta-link-nav:hover {
        color: #ffffff;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 230;
        display: block;
        background: rgba(24, 17, 7, 0.34);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
    }

    .nav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .footer-card {
        padding: 20px;
        border-radius: 24px;
    }

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

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

    .article-page-hero {
        padding-top: 38px;
        padding-bottom: 12px;
    }

    .article-page-hero-card {
        padding: 26px 20px;
        border-radius: 26px;
    }

    .article-page-hero-card h1 {
        font-size: clamp(2.15rem, 9vw, 3.2rem);
    }

    .blog-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .blog-post-body,
    .article-detail-panel,
    .article-comments-panel {
        padding: 22px;
    }

    .article-code-frame {
        min-height: 460px;
        height: 72vh;
        border-radius: 20px;
    }

    .article-canvas-content {
        padding: 24px 18px;
    }

    .blog-post-image {
        min-height: 220px;
        max-height: 220px;
    }

    .package-order-button {
        min-height: 44px;
        padding: 0 18px;
        font-size: 0.9rem;
    }

    .article-detail-cover {
        margin-bottom: 22px;
        border-radius: 20px;
    }

    .blog-search-form,
    .comment-form-grid {
        grid-template-columns: 1fr;
    }

    .widget-post-item {
        grid-template-columns: 60px 1fr;
    }

    .widget-post-thumb {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .comment-item {
        grid-template-columns: 1fr;
    }

    .comment-avatar {
        width: 48px;
        height: 48px;
    }

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

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

    .header-tools .header-cta-link {
        min-height: 40px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .brand-logo-image-header {
        height: 40px;
        max-width: min(160px, 100%);
    }

    .brand-copy small {
        display: none;
    }

    .hero-slide {
        min-height: 320px;
        padding: 86px 20px 62px;
        align-items: flex-start;
    }

    .hero-slide-image-only {
        min-height: clamp(280px, 72vw, 420px);
        padding: 0 0 56px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-copy h1,
    .section-heading h2,
    .cta-copy h2 {
        font-size: clamp(2.3rem, 12vw, 3.5rem);
        line-height: 0.98;
    }

    .hero-copy h1 {
        font-size: clamp(1.65rem, 8.4vw, 2.45rem);
    }

    .hero-controls {
        inset: auto 0 16px;
        transform: none;
        grid-template-columns: 52px 1fr 52px;
        padding: 0 10px;
    }

    .hero .control-button {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .hero-background {
        background-position: right center;
        background-size: auto 68%;
    }

    .hero-slide-image-only .hero-background {
        background-position: center center;
        background-size: cover;
    }

    .hero-benefits-wrap {
        width: calc(100% - 20px);
        margin-top: -22px;
    }

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

    .hero-benefit + .hero-benefit {
        border-left: none;
        border-top: 1px solid rgba(185, 142, 33, 0.16);
    }

    .mosaic-grid,
    .feature-grid,
    .package-grid,
    .testimonial-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .package-grid {
        gap: 24px;
    }

    .section-heading-actions {
        flex-direction: column;
    }

    .section-heading-actions .button {
        width: 100%;
    }

    .article-heading-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .contact-info-icon {
        width: 36px;
        height: 36px;
    }

    .contact-map-card,
    .contact-map-card iframe {
        min-height: 280px;
    }

    .payment-card {
        padding: 20px;
    }

    .payment-card-header strong {
        font-size: 1.08rem;
    }

    .payment-bank-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .payment-bank-name {
        font-size: 0.88rem;
    }

    .payment-bank-number {
        font-size: 1rem;
        word-break: break-word;
    }

    .mosaic-card {
        min-height: 260px;
    }

    .feature-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .lead-form-actions {
        align-items: stretch;
    }

    .lead-form-actions .button-primary {
        width: 100%;
    }

    .testimonial-card {
        min-height: auto;
        padding: 30px 24px;
    }

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

    .testimonial-control {
        font-size: 0.9rem;
    }

    .section {
        padding: 70px 0;
    }

    .article-card-body,
    .article-detail-card,
    .article-empty {
        padding: 22px;
    }
}

.article-preview-section {
    position: relative;
}

.article-section-heading {
    max-width: none;
}

.article-heading-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.article-heading-bar h2 {
    margin: 0;
    max-width: 760px;
}

.article-heading-link {
    flex-shrink: 0;
    min-height: 48px;
    padding: 0 20px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.article-preview-carousel {
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

.article-carousel-window {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.article-carousel-window::-webkit-scrollbar {
    display: none;
}

.article-carousel-track {
    display: flex;
    gap: 24px;
}

.article-card-carousel {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
}

.article-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.article-carousel-control {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(185, 142, 33, 0.42);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.96);
    color: #111111;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(90, 66, 18, 0.08);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.article-carousel-control:hover:not(:disabled) {
    transform: translateY(-2px);
    background: #fffdf8;
}

.article-carousel-control:disabled {
    opacity: 0.35;
    cursor: default;
}

.article-card,
.article-detail-card,
.article-empty {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(185, 142, 33, 0.14);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(89, 66, 18, 0.08);
    overflow: hidden;
}

.article-card {
    display: block;
}

.article-card-image,
.article-detail-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.article-card-image {
    min-height: 220px;
    max-height: 220px;
}

.article-card-body,
.article-detail-card,
.article-empty {
    padding: 28px;
}

.article-meta {
    margin: 0 0 12px;
    color: #8d6b2a;
    font-size: 0.92rem;
    font-weight: 700;
}

.article-card h3,
.article-card h2,
.article-detail-card h1 {
    margin: 0 0 14px;
}

.article-card-simple {
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.article-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 90px rgba(89, 66, 18, 0.12);
}

.article-card-simple .article-card-body {
    padding: 22px 24px 24px;
}

.article-card-simple h3 {
    margin: 0;
}

.article-card p,
.article-detail-card p,
.article-empty p {
    color: rgba(61, 43, 14, 0.78);
}

.article-link {
    display: inline-flex;
    margin-top: 8px;
    color: #7c5a15;
    font-weight: 800;
}

.article-actions {
    margin-top: 30px;
}

.article-page .site-header {
    position: fixed;
    inset: 0 0 auto;
}

.article-hero {
    padding-top: 160px;
}

.article-heading-page {
    max-width: 760px;
}

.article-detail-card {
    max-width: 860px;
    margin: 0 auto;
}

.article-detail-image {
    max-height: 420px;
    border-radius: 22px;
    margin: 18px 0 26px;
}

.article-page {
    background:
        radial-gradient(circle at top left, rgba(231, 196, 91, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f1e3 0%, #fbf7ef 100%);
}

.article-page-hero {
    padding-top: 44px;
    padding-bottom: 18px;
}

.article-page-hero-card {
    display: grid;
    gap: 14px;
    padding: 42px 48px;
    border: 1px solid rgba(185, 142, 33, 0.16);
    border-radius: 34px;
    background: rgba(255, 252, 245, 0.9);
    box-shadow: 0 28px 90px rgba(89, 66, 18, 0.08);
}

.article-page-hero-card h1 {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(2.7rem, 5.4vw, 4.5rem);
    line-height: 0.98;
}

.article-page-hero-card-detail {
    gap: 10px;
    padding: 28px 34px;
}

.article-page-hero-card-detail h1 {
    max-width: none;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.04;
}

.article-page-hero-card p:last-child {
    margin: 0;
    max-width: 68ch;
    color: rgba(61, 43, 14, 0.8);
}

.article-page-hero-card-empty {
    max-width: 760px;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(61, 43, 14, 0.64);
    font-size: 0.92rem;
    font-weight: 700;
}

.article-breadcrumb a {
    color: #7c5a15;
}

.article-meta span {
    margin: 0 8px;
    color: rgba(124, 90, 21, 0.5);
}

.article-meta-hero {
    margin-top: 2px;
    max-width: none;
    color: #8d6b2a;
}

.article-blog-section {
    padding-top: 20px;
}

.blog-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
}

.blog-main {
    display: grid;
    gap: 28px;
}

.blog-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 108px;
}

.blog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid rgba(185, 142, 33, 0.16);
    border-radius: 22px;
    background: rgba(255, 251, 243, 0.86);
}

.blog-toolbar p,
.blog-toolbar a {
    margin: 0;
    color: rgba(61, 43, 14, 0.78);
}

.blog-toolbar a {
    color: #7c5a15;
    font-weight: 800;
}

.blog-post-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.blog-post-card {
    overflow: hidden;
    border: 1px solid rgba(185, 142, 33, 0.16);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 80px rgba(89, 66, 18, 0.08);
}

.blog-post-card-simple {
    display: grid;
    align-content: start;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-post-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 86px rgba(89, 66, 18, 0.12);
}

.blog-post-media {
    display: block;
}

.blog-post-image {
    width: 100%;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
}

.blog-post-image-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(231, 196, 91, 0.24), rgba(124, 90, 21, 0.16));
    color: #7c5a15;
    font-size: 2.4rem;
    font-weight: 800;
}

.blog-post-body {
    padding: 28px;
}

.blog-post-title {
    display: block;
    padding: 20px 22px 22px;
    color: var(--text);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.blog-post-body h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.08;
}

.blog-post-body h2 a {
    color: var(--text);
}

.blog-post-body p {
    color: rgba(61, 43, 14, 0.78);
    overflow-wrap: anywhere;
}

.blog-empty-state {
    padding: 38px;
}

.blog-widget {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(185, 142, 33, 0.16);
    border-radius: 28px;
    background: rgba(255, 251, 243, 0.86);
    box-shadow: 0 20px 60px rgba(89, 66, 18, 0.06);
}

.blog-widget-title {
    margin: 0;
    font-size: 1.2rem;
}

.blog-widget p {
    margin: 0;
    color: rgba(61, 43, 14, 0.76);
}

.blog-widget-highlight {
    background:
        radial-gradient(circle at top right, rgba(231, 196, 91, 0.2), transparent 36%),
        rgba(255, 249, 235, 0.96);
}

.blog-widget-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(185, 142, 33, 0.14);
}

.blog-search-form,
.comment-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.blog-search-form input,
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(185, 142, 33, 0.18);
    border-radius: 18px;
    background: #fffdf8;
    color: var(--text);
}

.blog-search-form button {
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: var(--bg-strong);
    font: inherit;
    font-weight: 800;
    color: var(--text);
}

.widget-post-list {
    display: grid;
    gap: 14px;
}

.widget-post-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
}

.widget-post-item span {
    display: grid;
    gap: 4px;
}

.widget-post-item strong {
    line-height: 1.4;
}

.widget-post-item small {
    color: rgba(61, 43, 14, 0.62);
}

.widget-post-thumb {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    border: 1px solid rgba(185, 142, 33, 0.14);
    object-fit: cover;
}

.widget-post-thumb-fallback {
    display: grid;
    place-items: center;
    background: rgba(231, 196, 91, 0.18);
    color: #7c5a15;
    font-size: 1.15rem;
    font-weight: 800;
}

.widget-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.widget-tag {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(185, 142, 33, 0.18);
    border-radius: 999px;
    background: rgba(255, 248, 231, 0.96);
    color: #6f5317;
    font-size: 0.92rem;
    font-weight: 800;
}

.widget-service-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget-service-list li {
    position: relative;
    padding-left: 16px;
    font-weight: 700;
}

.widget-service-list a,
.widget-service-list span {
    color: inherit;
}

.widget-service-list a {
    transition: color 0.2s ease;
}

.widget-service-list a:hover {
    color: #b68814;
}

.widget-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(185, 142, 33, 0.7);
}

.wa-fab {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 220;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px 0 14px;
    border: 1px solid rgba(24, 143, 74, 0.46);
    border-radius: 999px;
    background: linear-gradient(135deg, #2ec866, #1fa855);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(25, 111, 60, 0.2);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.wa-fab:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #26ba5d, #1a964b);
    box-shadow: 0 20px 46px rgba(25, 111, 60, 0.26);
}

.wa-fab-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: currentColor;
    flex-shrink: 0;
}

.wa-fab-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.wa-fab-text {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

.wa-fab-text strong {
    font-size: 0.96rem;
    font-weight: 800;
}

.wa-fab-text span {
    font-size: 0.74rem;
    font-weight: 700;
    opacity: 0.82;
}

.article-detail-panel,
.article-comments-panel {
    border: 1px solid rgba(185, 142, 33, 0.16);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 80px rgba(89, 66, 18, 0.08);
}

.article-detail-panel {
    padding: 34px;
}

.article-detail-head {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.article-meta-detail {
    margin-bottom: 0;
}

.article-detail-title {
    margin: 0;
    font-size: clamp(2.1rem, 4.3vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

.article-detail-excerpt {
    margin: 0;
    color: rgba(61, 43, 14, 0.76);
    font-size: 1.02rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.article-detail-cover {
    width: 100%;
    max-height: 520px;
    border-radius: 24px;
    object-fit: cover;
    margin-bottom: 28px;
}

.article-code-embed {
    margin-top: 4px;
}

.article-code-frame {
    width: 100%;
    min-height: 680px;
    height: clamp(560px, 76vh, 1100px);
    border: 1px solid rgba(185, 142, 33, 0.18);
    border-radius: 24px;
    background: #ffffff;
}

.article-code-frame-canvas {
    display: block;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    border: 0;
    border-radius: 0;
}

.article-code-frame-full-width {
    display: block;
    width: 100%;
    min-height: 640px;
    height: auto;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
}

.article-theme-full_width .article-full-width-root {
    padding-top: 96px;
}

@media (max-width: 760px) {
    .article-code-frame-full-width {
        min-height: 520px;
    }

    .article-theme-full_width .article-full-width-root {
        padding-top: 86px;
    }
}

.article-content,
.article-canvas-content {
    display: grid;
    gap: 18px;
    padding-top: 4px;
}

.article-content h2,
.article-content h3,
.article-canvas-content h2,
.article-canvas-content h3 {
    margin: 6px 0 0;
    color: #2f2412;
}

.article-content h2,
.article-canvas-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.article-content h3,
.article-canvas-content h3 {
    font-size: 1.18rem;
}

.article-content p,
.article-content li,
.article-canvas-content p,
.article-canvas-content li {
    margin: 0;
    color: rgba(61, 43, 14, 0.82);
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.article-content ul,
.article-canvas-content ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.article-content blockquote,
.article-canvas-content blockquote {
    margin: 0;
    padding: 18px 20px;
    border-left: 4px solid var(--line-strong);
    border-radius: 0 20px 20px 0;
    background: rgba(255, 244, 213, 0.86);
}

.article-content blockquote p,
.article-canvas-content blockquote p {
    color: var(--text);
    font-style: italic;
}

.article-local-box-wrap {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 24px 34px;
}

.article-local-box {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid rgba(122, 90, 30, 0.2);
    background: linear-gradient(145deg, rgba(255, 248, 230, 0.95), rgba(253, 242, 208, 0.88));
}

.article-local-box h2,
.article-local-box h3 {
    margin: 0;
}

.article-local-box p {
    margin: 0;
    color: rgba(61, 43, 14, 0.8);
}

.article-local-box ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.article-local-box li {
    color: rgba(61, 43, 14, 0.85);
}

.article-theme-full-canvas {
    background: #ffffff;
}

.article-theme-full-canvas #konten {
    min-height: 100vh;
}

.article-canvas-root {
    min-height: 100vh;
    width: 100%;
}

.article-full-width-root {
    width: 100%;
    min-height: 0;
    padding: 0;
}

.article-full-width-content {
    width: 100%;
    padding: 16px clamp(12px, 2.8vw, 42px) 34px;
}

.article-full-width-cover {
    display: block;
    width: 100%;
    max-height: 720px;
    object-fit: cover;
    margin-bottom: 22px;
}

.article-content-full-width {
    width: 100%;
}

.article-canvas-content {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 34px 24px;
}

.article-comments-panel {
    display: grid;
    gap: 22px;
    padding: 32px;
}

.article-comments-head h2,
.comment-form-card h3 {
    margin: 0 0 8px;
}

.article-comments-head p:last-child,
.comment-form-card p {
    margin: 0;
    color: rgba(61, 43, 14, 0.72);
}

.comment-flash-stack {
    display: grid;
    gap: 10px;
}

.comment-flash {
    padding: 14px 18px;
    border: 1px solid rgba(185, 142, 33, 0.16);
    border-radius: 18px;
    background: rgba(255, 250, 238, 0.92);
}

.comment-flash-success {
    color: #185a41;
    background: rgba(233, 250, 243, 0.95);
}

.comment-flash-error {
    color: #8c2f29;
    background: rgba(255, 240, 237, 0.95);
}

.comment-empty {
    padding: 20px 22px;
    border: 1px dashed rgba(185, 142, 33, 0.32);
    border-radius: 20px;
    background: rgba(255, 248, 231, 0.72);
}

.comment-empty p {
    margin: 0;
}

.comment-list {
    display: grid;
    gap: 18px;
}

.comment-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: start;
}

.comment-avatar {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f5ca56, #d79f21);
    color: #553b0b;
    font-size: 1.08rem;
    font-weight: 800;
}

.comment-card {
    padding: 18px 20px;
    border: 1px solid rgba(185, 142, 33, 0.14);
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.84);
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: baseline;
    margin-bottom: 10px;
}

.comment-meta strong {
    color: var(--text);
}

.comment-meta span {
    color: #8a6c34;
    font-size: 0.92rem;
}

.comment-card p {
    margin: 0;
    color: rgba(61, 43, 14, 0.8);
    line-height: 1.75;
}

.comment-subject {
    margin: 0 0 8px;
    color: #7c5a15;
    font-size: 0.95rem;
    font-weight: 800;
}

.comment-form-card {
    display: grid;
    gap: 14px;
}

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

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

.comment-form label {
    display: grid;
    gap: 8px;
}

.comment-form label span {
    color: #6f5317;
    font-size: 0.92rem;
    font-weight: 800;
}

.comment-form textarea {
    min-height: 170px;
    resize: vertical;
}

.article-related {
    display: grid;
    gap: 22px;
}

@media (max-width: 1100px) {
    .article-page-hero {
        padding-top: 42px;
    }

    .article-page-hero-card {
        padding: 34px;
    }

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

    .blog-sidebar {
        position: static;
        top: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .comment-form-subject {
        grid-column: 1 / -1;
    }

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

    .article-card-carousel {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 760px) {
    .article-page-hero {
        padding-top: 30px;
        padding-bottom: 12px;
    }

    .article-page-hero-card {
        padding: 26px 20px;
        border-radius: 26px;
    }

    .article-page-hero-card h1 {
        max-width: none;
        font-size: clamp(2.05rem, 10vw, 3.2rem);
    }

    .article-page-hero-card p:last-child {
        max-width: none;
    }

    .article-blog-section {
        padding-top: 16px;
    }

    .blog-shell {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-main {
        min-width: 0;
        gap: 18px;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-toolbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .blog-post-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-post-card {
        border-radius: 24px;
    }

    .blog-post-image {
        min-height: 220px;
        max-height: 220px;
    }

    .blog-post-body,
    .article-detail-panel,
    .article-comments-panel {
        padding: 22px;
    }

    .blog-post-title {
        padding: 18px 20px 20px;
        font-size: clamp(1.15rem, 5vw, 1.4rem);
    }

    .blog-widget {
        padding: 20px;
        border-radius: 24px;
    }

    .blog-search-form,
    .comment-form-grid {
        grid-template-columns: 1fr;
    }

    .widget-post-item {
        grid-template-columns: 60px 1fr;
    }

    .widget-post-thumb {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .comment-item {
        grid-template-columns: 1fr;
    }

    .comment-avatar {
        width: 48px;
        height: 48px;
    }

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

    .article-heading-link {
        align-self: center;
    }

    .article-preview-carousel {
        gap: 16px;
    }

    .article-carousel-track {
        gap: 16px;
    }

    .article-card-carousel {
        flex-basis: min(84vw, 320px);
    }

    .package-order-button {
        width: 100%;
        max-width: none;
        bottom: auto;
    }

    .article-carousel-controls {
        justify-content: center;
    }

    .article-card-body,
    .article-detail-card,
    .article-empty {
        padding: 22px;
    }

    .wa-fab {
        left: 50%;
        right: auto;
        bottom: 16px;
        width: 56px;
        min-width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        justify-content: center;
        transform: translateX(-50%);
    }

    .wa-fab:hover {
        transform: translateX(-50%) translateY(-2px);
    }

    .wa-fab-icon {
        width: 36px;
        height: 36px;
    }

    .wa-fab-text {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
