:root {
    --washi-bg: #efeeea;
    --washi-surface: #fffdfa;
    --washi-surface-soft: #f7f3ec;
    --washi-accent: #fe7743;
    --washi-accent-strong: #e6612f;
    --washi-highlight: #273f4f;
    --washi-text: #273f4f;
    --washi-muted: #5f6d76;
    --washi-border: rgba(39, 63, 79, 0.18);
    --washi-card: rgba(255, 255, 255, 0.92);
    --washi-shadow: 0 14px 36px rgba(39, 63, 79, 0.12);
    --washi-icon-size: 1.34rem;
    --washi-icon-size-lg: 1.56rem;
    --washi-focus-ring: 0 0 0 0.2rem rgba(254, 119, 67, 0.22);
    --washi-radius: 1.1rem;
    --washi-transition: 0.35s ease;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--washi-text);
    background:
        radial-gradient(circle at 0% 10%, rgba(254, 119, 67, 0.16), transparent 38%),
        radial-gradient(circle at 85% 0%, rgba(39, 63, 79, 0.1), transparent 32%),
        var(--washi-bg);
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.65;
}

::selection {
    background: rgba(254, 119, 67, 0.24);
    color: var(--washi-text);
}

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

a {
    color: var(--washi-accent-strong);
    text-decoration: none;
    transition: color var(--washi-transition), opacity var(--washi-transition);
}

a:hover,
a:focus {
    color: var(--washi-accent);
}

.site-shell {
    overflow: hidden;
}

.section-space {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
}

.section-light {
    background: linear-gradient(160deg, var(--washi-surface), var(--washi-surface-soft));
}

.section-dark {
    background:
        linear-gradient(120deg, rgba(39, 63, 79, 0.06), rgba(39, 63, 79, 0.02)),
        linear-gradient(180deg, var(--washi-surface-soft), var(--washi-bg));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.77rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--washi-accent-strong);
    font-weight: 600;
}

.eyebrow::before {
    content: '';
    width: 1.6rem;
    height: 1px;
    background: currentColor;
}

.section-title {
    margin: 0.85rem 0 1rem;
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    line-height: 1.15;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 3.5rem;
    height: 0.22rem;
    margin-top: 0.95rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--washi-accent), rgba(254, 119, 67, 0.1));
}

.text-center .section-title::after,
.section-head.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle,
.section-text {
    margin: 0;
    color: var(--washi-muted);
    max-width: 64ch;
}

.section-head {
    max-width: 760px;
    margin: 0 auto;
}

.icon-16,
.icon-18 {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 2.2;
}

.icon-18 {
    width: var(--washi-icon-size-lg);
    height: var(--washi-icon-size-lg);
}

.lucide,
[data-lucide] {
    width: var(--washi-icon-size);
    height: var(--washi-icon-size);
    color: var(--washi-accent-strong);
    vertical-align: middle;
    transform-origin: center;
    animation: icon-bob 2.8s ease-in-out infinite;
    animation-delay: var(--icon-delay, 0s);
    transition: transform var(--washi-transition), color var(--washi-transition), filter var(--washi-transition);
}

a .lucide,
button .lucide,
summary .lucide {
    cursor: inherit;
}

.icon-float {
    animation: icon-pop 1.85s ease-in-out infinite;
}

a:hover .lucide,
button:hover .lucide,
summary:hover .lucide,
a:focus-visible .lucide,
button:focus-visible .lucide,
summary:focus-visible .lucide {
    transform: translateY(-2px) scale(1.08);
    filter: saturate(1.1);
}

@keyframes icon-bob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px) scale(1.04);
    }
}

@keyframes icon-pop {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.09);
    }
}

.washi-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    backdrop-filter: blur(14px);
    transition: box-shadow var(--washi-transition), background-color var(--washi-transition);
}

.washi-header.is-scrolled {
    box-shadow: 0 12px 24px rgba(39, 63, 79, 0.14);
}

.header-top {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(39, 63, 79, 0.12);
}

.header-top a,
.header-top span {
    color: rgba(39, 63, 79, 0.86);
}

.navbar {
    background: rgba(239, 238, 234, 0.96);
    border-bottom: 1px solid rgba(39, 63, 79, 0.1);
    padding: 0.8rem 0;
}

.brand-logo {
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.2rem 0.45rem;
}

.navbar .nav-link {
    color: rgba(39, 63, 79, 0.84);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 999px;
    background: var(--washi-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--washi-transition);
}

.navbar .nav-link.active,
.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
    color: var(--washi-accent-strong);
}

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

.navbar .dropdown-menu {
    background: #ffffff;
    border-color: rgba(39, 63, 79, 0.14);
    border-radius: 0.9rem;
    padding: 0.7rem;
}

.navbar .dropdown-item {
    color: rgba(39, 63, 79, 0.85);
    border-radius: 0.6rem;
    font-size: 0.9rem;
    padding: 0.55rem 0.75rem;
}

.navbar .dropdown-item:hover {
    background: rgba(254, 119, 67, 0.14);
}

.navbar-toggler {
    border-color: rgba(39, 63, 79, 0.32);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(254, 119, 67, 0.2);
}

.btn-premium {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--washi-accent), var(--washi-accent-strong));
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 14px 30px rgba(254, 119, 67, 0.28);
    transition: transform var(--washi-transition), box-shadow var(--washi-transition), filter var(--washi-transition);
    padding: 0.78rem 1.45rem;
}

.btn-premium:hover,
.btn-premium:focus {
    transform: translateY(-2px);
    color: #ffffff;
    filter: brightness(1.06);
    box-shadow: 0 18px 36px rgba(254, 119, 67, 0.35);
}

.btn-outline-light {
    border-radius: 999px;
    border: 1px solid rgba(39, 63, 79, 0.36);
    color: rgba(39, 63, 79, 0.9);
    padding: 0.7rem 1.3rem;
}

.btn-outline-light:hover {
    background: rgba(39, 63, 79, 0.08);
    color: var(--washi-text);
    border-color: rgba(39, 63, 79, 0.45);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
summary:focus-visible {
    outline: none;
    box-shadow: var(--washi-focus-ring);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: min(88vh, 780px);
    display: flex;
    align-items: center;
    padding: clamp(5rem, 8vw, 7rem) 0;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero::before {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.hero::after {
    z-index: -1;
    background:
        linear-gradient(110deg, rgba(239, 238, 234, 0.94), rgba(239, 238, 234, 0.6) 58%, rgba(254, 119, 67, 0.2)),
        radial-gradient(circle at 12% 18%, rgba(39, 63, 79, 0.12), transparent 36%);
}

.hero-home::before {
    background-image: url('../images/_smarty/slide/slide1.jpg');
}

.hero-page {
    min-height: min(64vh, 560px);
}

.hero-content {
    max-width: 760px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44));
    border: 1px solid rgba(39, 63, 79, 0.12);
    border-radius: 1.35rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    box-shadow: 0 16px 36px rgba(39, 63, 79, 0.13);
    backdrop-filter: blur(4px);
}

.hero-kicker {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(254, 119, 67, 0.14);
    border: 1px solid rgba(254, 119, 67, 0.24);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2rem, 2.4vw, 4rem);
    line-height: 1.03;
    font-weight: 500;
    margin: 1.25rem 0;
}

.hero p {
    font-size: clamp(1.04rem, 2vw, 1.24rem);
    color: rgba(39, 63, 79, 0.85);
    margin: 0;
    max-width: 60ch;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-cta .btn {
    min-width: min(100%, 240px);
    justify-content: center;
}

.hero-metrics {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(39, 63, 79, 0.15);
    border-radius: var(--washi-radius);
    padding: 1rem 1.1rem;
}

.metric-card strong {
    font-size: 1.4rem;
    display: block;
    color: var(--washi-text);
}

.metric-card span {
    color: var(--washi-muted);
    font-size: 0.87rem;
}

.highlight-strip {
    margin-top: -2.5rem;
    position: relative;
    z-index: 5;
}

.highlight-panel {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 236, 0.95));
    border: 1px solid rgba(39, 63, 79, 0.12);
    border-radius: 1.3rem;
    box-shadow: var(--washi-shadow);
    padding: 1.3rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.highlight-item i,
.highlight-item .lucide {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--washi-accent-strong);
    margin-top: 0.15rem;
}

.highlight-item p {
    margin: 0;
    color: rgba(39, 63, 79, 0.82);
    font-size: 0.93rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    border-radius: var(--washi-radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.95));
    border: 1px solid var(--washi-border);
    padding: 1.2rem;
    box-shadow: 0 10px 28px rgba(39, 63, 79, 0.12);
    transition: transform var(--washi-transition), border-color var(--washi-transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(254, 119, 67, 0.45);
}

.stat-number {
    margin: 0;
    font-size: clamp(1.9rem, 4.2vw, 2.7rem);
    font-weight: 700;
    color: var(--washi-text);
}

.stat-label {
    margin: 0;
    color: var(--washi-muted);
    font-size: 0.92rem;
}

.product-card {
    border-radius: var(--washi-radius);
    overflow: hidden;
    border: 1px solid var(--washi-border);
    background: var(--washi-card);
    backdrop-filter: blur(7px);
    transition: transform var(--washi-transition), border-color var(--washi-transition), box-shadow var(--washi-transition);
    box-shadow: 0 12px 30px rgba(39, 63, 79, 0.1);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 119, 67, 0.42);
    box-shadow: 0 16px 34px rgba(39, 63, 79, 0.16);
}

.product-thumb {
    display: block;
    position: relative;
    overflow: hidden;
}

.product-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, transparent 52%, rgba(239, 238, 234, 0.72));
}

.product-thumb img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.08);
}

.product-body {
    padding: 1.2rem;
}

.product-body h3 {
    margin: 0;
    font-size: 1.14rem;
}

.product-body p {
    margin: 0.65rem 0 0.95rem;
    color: var(--washi-muted);
    font-size: 0.92rem;
}

.btn-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.btn-link-premium i,
.btn-link-premium .lucide {
    transition: transform var(--washi-transition);
}

.product-card:hover .btn-link-premium i,
.product-card:hover .btn-link-premium .lucide {
    transform: translate(4px, -2px);
}

.section-break {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-break::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(39, 63, 79, 0.1);
    border-bottom: 1px solid rgba(39, 63, 79, 0.1);
    background: linear-gradient(160deg, rgba(239, 238, 234, 0.76), rgba(239, 238, 234, 0.9));
}

.section-break .container {
    position: relative;
    z-index: 1;
}

.page-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(4rem, 7vw, 6rem) 0;
    margin-bottom: 0;
}

.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero::before {
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
    transform: scale(1.02);
}

.page-hero::after {
    background: linear-gradient(120deg, rgba(239, 238, 234, 0.9), rgba(239, 238, 234, 0.64));
}

.page-hero h1 {
    margin: 0.7rem 0 0.9rem;
    font-size: clamp(2rem, 4.4vw, 3.45rem);
    line-height: 1.08;
}

.page-hero p {
    margin: 0;
    color: rgba(39, 63, 79, 0.82);
    max-width: 58ch;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: rgba(39, 63, 79, 0.4);
    margin: 0;
}

.breadcrumb a,
.breadcrumb-item.active {
    color: rgba(39, 63, 79, 0.78);
    font-size: 0.86rem;
}

.tag-list {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.tag-list span {
    border-radius: 999px;
    border: 1px solid rgba(39, 63, 79, 0.22);
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    padding: 0.36rem 0.75rem;
}

.content-card {
    border-radius: 1.05rem;
    border: 1px solid var(--washi-border);
    background: rgba(255, 255, 255, 0.88);
    padding: clamp(1.2rem, 3vw, 1.8rem);
    box-shadow: 0 12px 30px rgba(39, 63, 79, 0.14);
    height: 100%;
    transition: transform var(--washi-transition), border-color var(--washi-transition), box-shadow var(--washi-transition);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 119, 67, 0.38);
    box-shadow: 0 16px 34px rgba(39, 63, 79, 0.18);
}

.content-card h3,
.content-card h4 {
    margin-top: 0;
}

.feature-list,
.clean-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.feature-list li,
.clean-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--washi-muted);
}

.feature-list li i,
.feature-list li .lucide,
.clean-list li i,
.clean-list li .lucide,
.contact-list li i,
.contact-list li .lucide {
    flex: 0 0 auto;
    width: 1.58rem;
    height: 1.58rem;
    margin-top: 0.05rem;
    padding: 0.22rem;
    border-radius: 0.55rem;
    color: var(--washi-accent-strong);
    background: rgba(254, 119, 67, 0.14);
    box-shadow: inset 0 0 0 1px rgba(254, 119, 67, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.8rem;
}

.pricing-box {
    border: 1px solid var(--washi-border);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.76);
    padding: 0.9rem;
    transition: transform var(--washi-transition), border-color var(--washi-transition);
}

.pricing-box:hover {
    transform: translateY(-3px);
    border-color: rgba(254, 119, 67, 0.45);
    box-shadow: 0 10px 24px rgba(39, 63, 79, 0.14);
}

.pricing-box strong {
    display: block;
    font-size: 1.1rem;
}

.product-gallery .gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--washi-border);
    box-shadow: 0 10px 26px rgba(39, 63, 79, 0.14);
    position: relative;
}

.product-gallery .gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.65s ease;
}

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

.product-gallery .gallery-item span {
    position: absolute;
    left: 0.9rem;
    bottom: 0.8rem;
    font-size: 0.82rem;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    background: rgba(39, 63, 79, 0.74);
    color: #ffffff;
}

.table-premium {
    --bs-table-bg: transparent;
    --bs-table-color: var(--washi-text);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--washi-border);
}

.table-premium th {
    background: rgba(254, 119, 67, 0.16);
    color: var(--washi-text);
    font-weight: 600;
    border-color: rgba(39, 63, 79, 0.14);
}

.table-premium td {
    color: var(--washi-muted);
    border-color: rgba(39, 63, 79, 0.1);
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--washi-border);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.85rem 1rem;
    transition: border-color var(--washi-transition), box-shadow var(--washi-transition);
}

.faq-item[open] {
    border-color: rgba(254, 119, 67, 0.5);
    box-shadow: 0 12px 26px rgba(39, 63, 79, 0.14);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-item p {
    margin: 0.75rem 0 0;
    color: var(--washi-muted);
}

.contact-card,
.contact-form,
.map-card,
.blog-card,
.article-shell {
    border: 1px solid var(--washi-border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(39, 63, 79, 0.13);
    transition: transform var(--washi-transition), border-color var(--washi-transition), box-shadow var(--washi-transition);
}

.contact-card {
    padding: 1.35rem;
}

.contact-card:hover,
.contact-form:hover,
.map-card:hover,
.article-shell:hover {
    transform: translateY(-4px);
    border-color: rgba(254, 119, 67, 0.36);
    box-shadow: 0 16px 34px rgba(39, 63, 79, 0.18);
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.contact-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.95rem;
}

.contact-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--washi-muted);
}

.contact-list a {
    color: inherit;
}

.contact-form {
    padding: clamp(1.3rem, 3vw, 1.8rem);
}

.form-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(39, 63, 79, 0.78);
    font-weight: 500;
}

.form-control {
    border-radius: 0.8rem;
    border: 1px solid rgba(39, 63, 79, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: var(--washi-text);
    padding: 0.74rem 0.86rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.18rem rgba(254, 119, 67, 0.2);
    border-color: rgba(254, 119, 67, 0.58);
    background: #ffffff;
    color: var(--washi-text);
}

.map-card {
    position: relative;
    overflow: hidden;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: clamp(300px, 52vw, 440px);
    border: 0;
}

.map-overlay {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
    max-width: 360px;
    padding: 1rem;
    border-radius: 0.8rem;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(39, 63, 79, 0.16);
}

.map-overlay h3 {
    margin: 0;
    font-size: 1rem;
}

.map-overlay p {
    margin: 0.4rem 0 0.9rem;
    color: var(--washi-muted);
    font-size: 0.9rem;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
}

.blog-card {
    overflow: hidden;
    transition: transform var(--washi-transition), border-color var(--washi-transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(254, 119, 67, 0.45);
    box-shadow: 0 16px 34px rgba(39, 63, 79, 0.17);
}

.blog-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-body {
    padding: 1.15rem;
}

.blog-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--washi-accent-strong);
    margin: 0 0 0.55rem;
}

.blog-title {
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.35;
}

.blog-excerpt,
.article-shell p,
.article-shell li {
    color: var(--washi-muted);
}

.article-shell {
    padding: clamp(1.2rem, 3.5vw, 2rem);
}

.article-cover {
    border-radius: 1rem;
    border: 1px solid var(--washi-border);
    overflow: hidden;
    margin-bottom: 1.6rem;
}

.article-cover img {
    width: 100%;
    height: clamp(260px, 45vw, 520px);
    object-fit: cover;
}

.article-shell h1,
.article-shell h2,
.article-shell h3,
.article-shell h4,
.article-shell h5 {
    color: var(--washi-text);
}

.article-shell ul,
.article-shell ol {
    padding-left: 1.2rem;
}

.washi-footer {
    background: linear-gradient(160deg, #f8f4ee, #efeeea);
    border-top: 1px solid rgba(39, 63, 79, 0.14);
    padding: clamp(3rem, 5vw, 4.4rem) 0 1.3rem;
}

.washi-footer h4 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--washi-text);
}

.washi-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.washi-footer a,
.washi-footer span {
    color: rgba(39, 63, 79, 0.74);
    font-size: 0.9rem;
}

.washi-footer a:hover,
.washi-footer a:focus {
    color: var(--washi-accent-strong);
}

.footer-bottom {
    border-top: 1px solid rgba(39, 63, 79, 0.14);
    padding-top: 1rem;
    color: rgba(39, 63, 79, 0.62);
    font-size: 0.82rem;
}

.back-top {
    font-size: 0.82rem;
}

.back-top i,
.back-top .lucide {
    width: 0.95rem;
    height: 0.95rem;
}

@media (max-width: 991.98px) {
    .navbar .btn-premium {
        width: 100%;
    }

    .hero {
        min-height: auto;
    }

    .highlight-strip {
        margin-top: -1.8rem;
    }

    .product-thumb img,
    .product-gallery .gallery-item img {
        height: 210px;
    }
}

@media (max-width: 767.98px) {
    .header-top {
        display: none;
    }

    .hero-content {
        padding: 1.15rem;
        border-radius: 1rem;
    }

    .hero h1 {
        font-size: clamp(1.95rem, 8vw, 2.9rem);
    }

    .hero p {
        font-size: 1rem;
    }

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

    .map-overlay {
        position: static;
        max-width: none;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .lucide,
    [data-lucide] {
        width: 1.2rem;
        height: 1.2rem;
    }

    .icon-18 {
        width: 1.36rem;
        height: 1.36rem;
    }
}

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