:root {
    --brand:          #67A6AA;
    --brand-dk:       #4d8a8e;
    --brand-pale:     #e4f0f1;

    --text:           #1a1a1a;
    --text-mid:       #3d3d3d;
    --text-muted:     #6b6b6b;

    --bg:             #fafaf8;
    --bg-tint:        #f2ede6;
    --white:          #fff;
    --border:         #e6e1da;

    --shadow-sm:      0 1px 4px rgba(0,0,0,0.05), 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md:      0 4px 24px rgba(0,0,0,0.09);

    --header-h:       116px;
    --container-w:    1160px;
    --section-py:     clamp(56px, 7vw, 104px);
    --radius:         2px;
    --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.72;
    color: var(--text);
    background-color: var(--bg);
    padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
}

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

a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Fraunces', Georgia, serif;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.015em;
    color: var(--text);
}

.eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.75rem;
}

.container {
    width: 100%;
    max-width: var(--container-w);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
    padding-block: var(--section-py);
}

.bg-tint {
    background-color: var(--bg-tint);
}


.btn {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.18s var(--ease),
                border-color    0.18s var(--ease),
                color           0.18s var(--ease),
                transform       0.18s var(--ease),
                opacity         0.18s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background-color: var(--brand);
    border-color:     var(--brand);
    color:            var(--white);
}
.btn-primary:hover {
    background-color: var(--brand-dk);
    border-color:     var(--brand-dk);
}

.btn-outline-light {
    background-color: transparent;
    border-color:     rgba(255,255,255,0.55);
    color:            var(--white);
}
.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.12);
    border-color:     rgba(255,255,255,0.85);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background-color: var(--bg-tint);
    border-color: var(--brand);
    color: var(--text);
}

.btn.disabled,
.btn[aria-disabled="true"] {
    opacity: 0.52;
    pointer-events: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--brand);
    color: var(--white);
    font-size: 0.875rem;
    border-radius: var(--radius);
    text-decoration: none;
}
.skip-link:focus { top: 0.75rem; }

.site-header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 200;
    background-color: rgba(250, 250, 248, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 44px;
}

.site-logo__mark {
    display: block;
    width: 22px;
    height: 22px;
    background-color: var(--brand);
    border-radius: 2px;
    flex-shrink: 0;
}

.site-logo__name {
    font-family: 'Playfair Display', 'Fraunces', Georgia, serif;
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
    color: var(--text);
    line-height: 1;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.15s;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    inset-block-end: -3px;
    inset-inline-start: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand);
    transition: width 0.22s var(--ease);
}

.site-nav a:hover         { color: var(--text); }
.site-nav a:hover::after  { width: 100%; }

.site-status-bar {
    border-top: 1px solid rgba(0,0,0,0.04);
    background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(242,237,230,0.88) 100%);
}

.site-status-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 44px;
    padding-block: 0.55rem;
    text-align: center;
}

.site-status-bar__text {
    font-size: 0.8125rem;
    color: var(--text-mid);
    line-height: 1.4;
}

.business-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.36rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.business-status__dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background-color: currentColor;
    flex-shrink: 0;
}

.business-status--open {
    background-color: #eaf6ee;
    color: #237a4d;
}

.business-status--closing-soon {
    background-color: #fff2de;
    color: #a85d11;
}

.business-status--opening-soon {
    background-color: #eaf2fb;
    color: #1d5f99;
}

.business-status--closed {
    background-color: #f1efeb;
    color: #6b645a;
}

.hero {
    position: relative;
    min-height: clamp(540px, calc(100svh - var(--header-h)), 760px);
    min-height: clamp(540px, calc(100vh - var(--header-h)), 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    outline: none;
}

.slider-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.slide.is-active {
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .slide {
        transition: opacity 1s ease;
    }
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
}

.slide-bg--1 {
    background-image:
        linear-gradient(180deg, rgba(16, 19, 21, 0.32) 0%, rgba(16, 19, 21, 0.52) 100%),
        url('/assets/img/image-1.webp');
}

.slide-bg--2 {
    background-image:
        linear-gradient(180deg, rgba(16, 19, 21, 0.32) 0%, rgba(16, 19, 21, 0.52) 100%),
        url('/assets/img/image-2.webp');
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    opacity: 0.35;
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: clamp(3rem, 6vw, 5rem);
}

.hero-text {
    max-width: 640px;
    padding: clamp(1.25rem, 2.4vw, 1.9rem);
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(103,166,170,0.26) 0%, rgba(103,166,170,0.42) 100%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 4px;
}

.hero-text--landing {
    max-width: 760px;
}

.hero-eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.125rem, 5vw, 4.25rem);
    color: rgba(255,255,255,0.98);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 18px rgba(0,0,0,0.22);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255,255,255,0.84);
    line-height: 1.65;
    max-width: 44ch;
    margin-bottom: 2.25rem;
    text-shadow: 0 1px 12px rgba(0,0,0,0.18);
}

.hero-note,
.hero-region {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    max-width: 58ch;
    text-shadow: 0 1px 12px rgba(0,0,0,0.18);
}

.hero-note {
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

@media (min-width: 1400px) {
    .hero {
        min-height: clamp(600px, calc(100svh - var(--header-h)), 820px);
        min-height: clamp(600px, calc(100vh - var(--header-h)), 820px);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: clamp(480px, calc(100svh - var(--header-h)), 640px);
        min-height: clamp(480px, calc(100vh - var(--header-h)), 640px);
    }

    .slide-bg {
        background-position: center center;
    }

    .hero-text {
        padding: 1.1rem 1rem 1.2rem;
        background: linear-gradient(180deg, rgba(103,166,170,0.26) 0%, rgba(103,166,170,0.42) 100%);
    }
}

.slider-dots {
    position: absolute;
    inset-block-end: 2rem;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s, transform 0.2s;
}

.slider-dot.is-active,
.slider-dot:hover {
    background-color: var(--white);
}

.slider-dot.is-active {
    transform: scale(1.4);
}

.intro {
    padding-block: var(--section-py);
}

.intro-grid {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.intro-grid--landing {
    align-items: start;
}

.intro-body h2 {
    font-size: clamp(1.625rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.intro-body p {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 52ch;
    margin-bottom: 2rem;
}

.intro-body p:last-child {
    margin-bottom: 0;
}

.intro-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 380px;
    margin-inline: auto;
}

.intro-visual::before {
    content: '';
    position: absolute;
    inset: 0 12% 12% 0;
    background: var(--bg-tint);
    border: 1px solid var(--border);
}

.intro-visual::after {
    content: '';
    position: absolute;
    inset: 12% 0 0 12%;
    background: var(--brand-pale);
    border: 1.5px solid var(--brand);
    opacity: 0.7;
}

.insight-card,
.showroom-panel,
.trust-card,
.conversion-card,
.info-gap-card,
.assortment-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.insight-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    background: var(--bg-tint);
    border-left: 3px solid var(--brand);
    box-shadow: var(--shadow-md);
}

.insight-card h3,
.showroom-panel h3,
.trust-card h3,
.assortment-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.assortment-grid,
.trust-grid {
    display: grid;
    gap: 1.25rem;
}

.assortment-card {
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.assortment-card p,
.showroom-copy p,
.trust-card p,
.conversion-copy p {
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.72;
}

.assortment-card p {
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-list li,
.conversion-list li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.feature-list li::before,
.conversion-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--brand);
    transform: translateY(-50%);
}

.showroom-grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.showroom-copy h2 {
    font-size: clamp(1.625rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.showroom-copy p {
    max-width: 58ch;
    margin-bottom: 1rem;
}

.showroom-panel {
    padding: clamp(1.4rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
}

.showroom-local {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text);
}

.info-gap-card {
    padding: 1.15rem 1.2rem;
    background: linear-gradient(135deg, var(--brand-pale) 0%, rgba(103,166,170,0.08) 100%);
    margin-top: 1.5rem;
}

.info-gap-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
    color: var(--text);
}

.info-gap-card p {
    margin-bottom: 0;
    max-width: 54ch;
}

.trust-card {
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.trust-card p {
    margin-bottom: 0;
}

.conversion-card {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-md);
}

.conversion-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.conversion-copy p {
    max-width: 64ch;
    margin-bottom: 1rem;
}

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

.conversion-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-block: 2rem 1.75rem;
}

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

.categories {
    padding-block: var(--section-py);
}

.section-header {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.section-header h2 {
    font-size: clamp(1.5rem, 2.75vw, 2.25rem);
    margin-top: 0.25rem;
}

.section-header.center {
    text-align: center;
}

.section-header.split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.link-all {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
    flex-shrink: 0;
    transition: color 0.15s;
}
.link-all:hover { color: var(--brand-dk); }

.category-grid {
    display: grid;
    gap: 1.25rem;
}

.category-card {
    display: block;
    padding: 2rem 1.75rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 2.5px solid var(--brand);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card__number {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    color: var(--brand);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.category-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand);
    letter-spacing: 0.01em;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.18s var(--ease);
}

.assortment-card:hover .link-arrow::after,
.category-card:hover .link-arrow::after {
    transform: translateX(4px);
}

.blog-preview {
    padding-block: var(--section-py);
}

.post-grid {
    display: grid;
    gap: 1.5rem;
}

.post-card {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.post-card__date {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.post-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.post-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.15s;
}
.post-card h3 a:hover { color: var(--brand); }

.post-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.01em;
}
.post-card__link:hover { color: var(--brand-dk); }

.blog-preview__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.contact-cta {
    padding-block: var(--section-py);
}

.contact-cta__inner {
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
}

.contact-cta__inner h2 {
    font-size: clamp(1.625rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.contact-cta__inner p {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 48ch;
    margin-inline: auto;
    margin-bottom: 2rem;
}

.site-footer {
    background-color: #1c2424;
    color: rgba(255,255,255,0.55);
    padding-block: clamp(2.5rem, 5vw, 4rem);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__inner {
    display: grid;
    gap: 2rem;
}

.site-footer__brand .site-footer__name {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.4rem;
}

.site-footer__brand p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.5rem;
}

.site-footer__nav a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.15s;
}
.site-footer__nav a:hover { color: rgba(255,255,255,0.9); }

.site-footer__social {
    display: flex;
    align-items: center;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: opacity 0.18s ease;
}

.site-footer__social a:hover {
    opacity: 0.8;
}

.site-footer__social a:hover svg {
    filter: brightness(1.15) saturate(1.2);
}

.site-footer__social svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: filter 0.18s ease;
    will-change: filter;
}

.site-footer__copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.floating-call-button {
    position: fixed;
    right: clamp(1rem, 3vw, 1.5rem);
    bottom: clamp(1rem, 3vw, 1.5rem);
    z-index: 250;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    background: linear-gradient(180deg, #31b55c 0%, #1f9546 100%);
    color: #fff;
    box-shadow: 0 16px 40px rgba(23, 97, 47, 0.32);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), opacity 0.18s var(--ease);
}

.floating-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(23, 97, 47, 0.38);
}

.floating-call-button svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.product-grid {
    display: grid;
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.product-card__body {
    padding: 1.25rem;
}

.product-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.4rem;
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-list-header {
    padding-block: clamp(2.5rem, 4vw, 4rem) 0;
}

.post-detail {
    padding-block: var(--section-py);
}

.post-detail__title {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    margin-bottom: 1.25rem;
}

.post-detail__meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
}

.post-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 68ch;
}

.post-body h2 {
    font-size: 1.375rem;
    margin-block: 2rem 0.75rem;
}

.post-body p  { margin-bottom: 1.25rem; }
.post-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }

.contact-form-grid {
    display: grid;
    gap: 2.5rem;
}

.form-field { margin-bottom: 1.25rem; }

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
    display: block;
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(103,166,170,0.15);
}

.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

.post-detail {
    padding-block: clamp(2rem, 4vw, 3.5rem);
}

.post-back {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.15s;
}

.post-back:hover {
    color: var(--brand);
}

.post-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.post-detail__excerpt {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 62ch;
}

.post-body h3 {
    font-size: 1.125rem;
    margin-block: 1.75rem 0.6rem;
}

.post-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.post-body li {
    margin-bottom: 0.4rem;
}

.post-body a {
    color: var(--brand);
    text-decoration: underline;
}

.post-body a:hover {
    color: var(--brand-dk);
}

.post-body strong {
    color: var(--text);
    font-weight: 600;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.post-card h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.15s;
}

.post-card h2 a:hover {
    color: var(--brand);
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 3rem;
    font-size: 0.9rem;
}

.pagination-btn {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

.pagination-btn:hover {
    color: var(--brand-dk);
}

.pagination-info {
    color: var(--text-muted);
}

.page-intro {
    padding-block: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 2.5vw, 2.5rem);
}

.page-intro__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.page-intro__lead {
    font-size: 1.0625rem;
    color: var(--text-mid);
    max-width: 54ch;
    line-height: 1.7;
}

.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding-block: 0;
    position: sticky;
    top: var(--header-h);
    z-index: 100;
}

.filter-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-block: 0.75rem;
}

.filter-btn {
    padding: 0.4rem 1.1rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.filter-btn.is-active {
    background-color: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.products-grid-section {
    padding-block-start: clamp(1.75rem, 3vw, 2.5rem);
}

.products-empty {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.products-empty a {
    color: var(--brand);
    text-decoration: underline;
}

.sr-count {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.products-grid {
    display: grid;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card[hidden] {
    display: none;
}

.product-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--bg-tint);
    flex-shrink: 0;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease);
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tint) 0%, var(--brand-pale) 100%);
}

.product-card__image-placeholder span {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.5rem;
    color: var(--brand);
    opacity: 0.45;
    font-weight: normal;
}

.product-card__body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__category {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.product-card__name {
    font-size: 1.125rem;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.product-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}

.product-card__cta {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.01em;
    margin-top: auto;
    transition: color 0.15s;
}

.product-card__cta:hover {
    color: var(--brand-dk);
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.form-alert--success {
    background: #edf7f0;
    border-left: 3px solid #52a878;
    color: #1e5c38;
}

.form-alert--error {
    background: #fdf2f2;
    border-left: 3px solid #c0392b;
    color: #7b241c;
}

.form-field .optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.75rem;
}

.form-field input.is-error,
.form-field textarea.is-error {
    border-color: #c0392b;
}

.form-error {
    display: block;
    font-size: 0.8125rem;
    color: #c0392b;
    margin-top: 0.35rem;
}

.contact-form-wrap {
    max-width: 500px;
}

.contact-info {
    padding-top: 1rem;
}

.contact-info__block {
    margin-bottom: 2rem;
}

.contact-info__block:last-child {
    margin-bottom: 0;
}

.contact-info__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-weight: normal;
}

.contact-info__block p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-map {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn-map:hover {
    background: var(--bg-tint);
    border-color: var(--brand);
    color: var(--text);
}

.contact-status-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.1rem;
    background: var(--bg-tint);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-status-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
}

.contact-status-card small {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.hours-list {
    display: grid;
    gap: 0.6rem;
}

.hours-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-mid);
}

.hours-list li strong {
    color: var(--text);
    font-size: 0.9rem;
    text-align: right;
}

.hours-list li.is-today {
    color: var(--brand-dk);
    font-weight: 500;
}

.contact-map-card {
    margin-top: 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-map-card__body {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-map-card__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.contact-map-card__body p {
    max-width: 58ch;
    color: var(--text-mid);
}

.contact-map-embed {
    border-top: 1px solid var(--border);
    min-height: 380px;
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 0;
}

.contact-thanks-card {
    max-width: 760px;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-thanks-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.85rem;
}

.contact-thanks-card p {
    color: var(--text-mid);
    max-width: 58ch;
}

@media (min-width: 640px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .post-grid     { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .assortment-grid,
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    :root {
        --header-h: 104px;
    }

    .intro-grid {
        grid-template-columns: 1fr 380px;
    }

    .intro-grid--landing {
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    }

    .intro-visual {
        margin-inline: 0;
    }

    .site-status-bar__inner {
        justify-content: flex-end;
        text-align: right;
    }

    .showroom-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    }
}

@media (min-width: 1024px) {
    .category-grid         { grid-template-columns: repeat(3, 1fr); }
    .post-grid             { grid-template-columns: repeat(3, 1fr); }
    .contact-form-grid     { grid-template-columns: 1fr 360px; }
    .products-grid         { grid-template-columns: repeat(3, 1fr); }
    .site-footer__inner    { grid-template-columns: 1fr auto auto auto; align-items: start; }
    .assortment-grid       { grid-template-columns: repeat(3, 1fr); }
    .trust-grid            { grid-template-columns: repeat(3, 1fr); }
    .conversion-list       { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hours-list li {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .floating-call-button {
        padding: 0.95rem;
    }

    .floating-call-button span {
        display: none;
    }

    .hero-actions .btn,
    .conversion-actions .btn,
    .insight-card .btn {
        width: 100%;
        text-align: center;
        white-space: normal;
    }
}

@media (prefers-color-scheme: dark) {

    :root {
        --brand:      #67A6AA;
        --brand-dk:   #7dbec2;
        --brand-pale: #1a3336;

        --text:       #ede9e3;
        --text-mid:   #b8b2a8;
        --text-muted: #7a7570;

        --bg:         #161412;
        --bg-tint:    #1d1a17;
        --white:      #fff;
        --border:     #2e2a26;

        --shadow-sm:  0 1px 4px rgba(0,0,0,0.35), 0 2px 10px rgba(0,0,0,0.25);
        --shadow-md:  0 4px 24px rgba(0,0,0,0.5);
    }

    .site-header {
        background-color: rgba(22, 20, 18, 0.92);
    }

    .site-status-bar {
        background: linear-gradient(180deg, rgba(35,31,28,0.72) 0%, rgba(29,26,23,0.9) 100%);
        border-top-color: rgba(255,255,255,0.04);
    }

    .business-status--open {
        background-color: rgba(35,122,77,0.18);
        color: #8dd5ad;
    }

    .business-status--closing-soon {
        background-color: rgba(168,93,17,0.18);
        color: #f4bf7d;
    }

    .business-status--opening-soon {
        background-color: rgba(29,95,153,0.2);
        color: #9bc7ef;
    }

    .business-status--closed {
        background-color: rgba(123,117,112,0.18);
        color: #c7beb2;
    }

    .site-footer {
        background-color: #110f0d;
        border-top-color: rgba(255,255,255,0.04);
    }

    .floating-call-button {
        background: linear-gradient(180deg, #1f9d52 0%, #15723c 100%);
        box-shadow: 0 18px 44px rgba(0,0,0,0.45);
    }

    .floating-call-button:hover {
        box-shadow: 0 24px 56px rgba(0,0,0,0.52);
    }

    .form-field input,
    .form-field textarea {
        background-color: #1a1714;
        color: var(--text);
    }

    .intro-visual::before {
        background: var(--bg-tint);
        border-color: var(--border);
    }

    .intro-visual::after {
        background: var(--brand-pale);
        border-color: var(--brand);
        opacity: 0.5;
    }

    .category-card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    }

    .post-card:hover,
    .product-card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    }

    .product-card__image-placeholder {
        background: linear-gradient(135deg, #1d1a17 0%, #1a3336 100%);
    }

    .filter-bar {
        background: var(--white);
    }

    .showroom-panel,
    .trust-card,
    .conversion-card,
    .assortment-card {
        background: #231f1b;
    }

    .insight-card {
        background: linear-gradient(135deg, #1e2e2f 0%, #1d1a17 100%);
        border-left-color: var(--brand);
        box-shadow: 0 2px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
    }

    .info-gap-card {
        background: linear-gradient(135deg, var(--brand-pale) 0%, rgba(103,166,170,0.06) 100%);
    }

    .contact-status-card,
    .contact-map-card,
    .contact-thanks-card {
        background: #231f1b;
    }

    .form-field input,
    .form-field textarea {
        border-color: #3a342e;
    }

    .form-alert--success {
        background: rgba(52, 168, 120, 0.12);
        color: #8dd5ad;
        border-left-color: #4a9e70;
    }

    .form-alert--error {
        background: rgba(192, 57, 43, 0.12);
        color: #f0a69e;
        border-left-color: #c96b62;
    }

    .form-error {
        color: #f0a69e;
    }

    .form-field input.is-error,
    .form-field textarea.is-error {
        border-color: #c96b62;
    }

    .contact-map-embed iframe {
        filter: grayscale(0.5) opacity(0.8);
    }
}
