/* ====================================================
   HYDE PARK LUMBER & DESIGN CENTER — v2 Redesign
   Elegant · Modern · Responsive · Blazor Server
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Tokens ─────────────────────────────────────── */
:root {
    /* Brand */
    --ink: #0f1c2a;
    --ink-mid: #2b3f54;
    --ink-soft: #4e6275;
    --sky: #d8e8f5;
    --sky-pale: #eef5fb;
    --blue: #147dbb;
    --blue-dk: #147dbb;
    --blue-lt: #67A8CF;
    --gold: #009e01;
    --gold-lt: #70C471;
    --cream: #f9f6f2;
    /* Surfaces */
    --surface: #ffffff;
    --surface-2: #f4f8fc;
    --surface-3: #edf3fa;
    --border: rgba(16,89,160,0.12);
    --border-md: rgba(16,89,160,0.22);
    /* Type */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 7rem);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10,40,75,0.07);
    --shadow-md: 0 8px 32px rgba(10,40,75,0.10);
    --shadow-lg: 0 20px 60px rgba(10,40,75,0.14);
    /* Nav height for offset */
    --nav-h: 112px;
}

/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    background: transparent;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
    background-clip: border-box;
    height: 100%;
    overflow: hidden;
}

html, body {
    scrollbar-color: rgba(15, 28, 42, 0.24) transparent;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-track-piece,
body::-webkit-scrollbar-track-piece,
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
    background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: rgba(15, 28, 42, 0.24);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.app-layout {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: rgba(15, 28, 42, 0.24) transparent;
}

.app-layout::-webkit-scrollbar {
    width: 12px;
}

.app-layout::-webkit-scrollbar-track,
.app-layout::-webkit-scrollbar-track-piece,
.app-layout::-webkit-scrollbar-corner {
    background: transparent;
}

.app-layout::-webkit-scrollbar-thumb {
    background: rgba(15, 28, 42, 0.24);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.app-layout > main {
    flex: 1 0 auto;
}

.app-layout > .site-footer {
    margin-top: auto;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.12;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    line-height: 1.78;
    color: var(--ink-soft);
}

strong {
    font-weight: 600;
    color: var(--ink-mid);
}

/* Serif italic accent */
em.serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

/* ── Layout Helpers ──────────────────────────────── */
.container {
    width: min(1240px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.container--narrow {
    width: min(860px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.section {
    padding: var(--section-pad) 0;
}

.section-sm {
    padding: clamp(2rem,5vw,4rem) 0;
}

/* ── Scroll Reveal ───────────────────────────────── */
.reveal {
    opacity: 1;
    transform: none;
}

html.js .reveal,
html.js .reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.45s;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.82rem 1.6rem;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn:active {
        transform: translateY(0);
    }

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 6px 24px rgba(16,89,160,0.3);
}

    .btn-primary:hover {
        background: var(--blue-dk);
        box-shadow: 0 10px 32px rgba(16,89,160,0.4);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.8);
    }

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--border-md);
}

    .btn-outline:hover {
        background: var(--surface-3);
        border-color: var(--blue);
    }

.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 6px 24px rgba(184,146,74,0.35);
}

    .btn-gold:hover {
        background: #a07a38;
        box-shadow: 0 10px 32px rgba(184,146,74,0.45);
    }

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── Top Bar ─────────────────────────────────────── */
.top-bar {
    background: var(--blue-dk);
    color: rgba(255,255,255,0.82);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 0.5rem 0;
}

.top-bar__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .top-bar__item a {
        color: rgba(255,255,255,0.9);
        transition: color 0.15s;
    }

        .top-bar__item a:hover {
            color: #fff;
        }

    .top-bar__item svg {
        width: 13px;
        height: 13px;
        opacity: 0.7;
    }

.top-bar__item--lang {
    margin-left: 0.25rem;
}

.site-alert-banner {
    padding: 0.65rem 0;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.site-alert-banner--blue { background: #0b4f8a; }
.site-alert-banner--green { background: #2f6f3e; }
.site-alert-banner--red { background: #9a2f2f; }
.site-alert-banner--orange { background: #b55a1f; }
.site-alert-banner--gray { background: #525a64; }

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.lang-switcher__label {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.lang-switcher__select {
    background: rgba(255,255,255,0.13);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.76rem;
    line-height: 1.1;
}

.lang-switcher__select option {
    color: #0f1c2a;
}

/* ── Navigation ──────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

    .site-nav.scrolled {
        box-shadow: var(--shadow-md);
    }

.nav-inner {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 100%;
    padding: 0 !important;
    margin: 0;
    line-height: 0;
}

.nav-logo__img {
    height: calc(var(--nav-h) - 28px) !important;
    max-height: none !important;
    width: auto;
    display: block;
    filter: contrast(1.16) saturate(1.06);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-wrap: nowrap;
}

.nav-group {
    position: relative;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-mid);
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius-sm);
    transition: color 0.18s, background 0.18s;
    white-space: nowrap;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0.7rem;
        right: 0.7rem;
        height: 1.5px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
        border-radius: 2px;
    }

    .nav-link:hover {
        color: var(--blue);
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

    .nav-link.active {
        color: var(--blue);
    }

.nav-link--group {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@media (max-width: 1400px) {
    .nav-inner {
        gap: 0.6rem;
    }

    .nav-links {
        gap: 0.05rem;
    }

    .nav-link {
        font-size: 0.82rem;
        padding: 0.45rem 0.52rem;
    }
}

.nav-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.72;
    transform: translateY(1px);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #dce6f0;
    border-radius: 0.55rem;
    box-shadow: 0 12px 30px rgba(20, 41, 69, 0.12);
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    z-index: 220;
}

.nav-group:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__link {
    display: block;
    padding: 0.5rem 0.6rem;
    border-radius: 0.42rem;
    color: #1f3347;
    font-size: 0.85rem;
    text-decoration: none;
    line-height: 1.3;
    white-space: nowrap;
}

.nav-dropdown__link:hover,
.nav-dropdown__link.active {
    background: #eef5fb;
    color: var(--blue);
}

.nav-dropdown--products {
    width: min(920px, 78vw);
    min-width: 760px;
    max-height: 72vh;
    overflow: auto;
    padding: 0.55rem;
}

.nav-dropdown__link--heading {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.nav-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.nav-product-tile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2eaf2;
    border-radius: 0.46rem;
    background: #fff;
    padding: 0.36rem 0.4rem;
    text-decoration: none;
    color: #1f3347;
    min-height: 52px;
}

.nav-product-tile img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 34px;
}

.nav-product-tile span {
    font-size: 0.79rem;
    line-height: 1.2;
}

.nav-product-tile:hover {
    background: #eef5fb;
    border-color: #c7daed;
    color: var(--blue);
}

.nav-dropdown__link--expand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.nav-subcaret {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    opacity: 0.72;
}

.nav-subgroup {
    position: relative;
}

.nav-submenu {
    position: absolute;
    left: calc(100% + 0.35rem);
    top: -0.3rem;
    min-width: 196px;
    background: #fff;
    border: 1px solid #dce6f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 28px rgba(20, 41, 69, 0.14);
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    z-index: 230;
}

.nav-subgroup:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-submenu__link {
    display: block;
    color: #1f3347;
    text-decoration: none;
    padding: 0.46rem 0.58rem;
    border-radius: 0.38rem;
    font-size: 0.82rem;
    white-space: nowrap;
}

.nav-submenu__link:hover,
.nav-submenu__link:focus-visible {
    background: #eef5fb;
    color: var(--blue);
}

.nav-cta {
    margin-left: 0.5rem;
}

    .nav-cta .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid var(--border-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background 0.18s;
}

    .nav-hamburger:hover {
        background: var(--surface-3);
    }

    .nav-hamburger span {
        display: block;
        width: 100%;
        height: 1.5px;
        background: var(--ink-mid);
        border-radius: 2px;
        transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
        transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

/* Mobile Drawer */
.nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 190;
    pointer-events: none;
}

.nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,30,55,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-drawer__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(340px, 92vw);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-drawer.open {
    pointer-events: all;
}

    .nav-drawer.open .nav-drawer__backdrop {
        opacity: 1;
        pointer-events: all;
    }

    .nav-drawer.open .nav-drawer__panel {
        transform: translateX(0);
    }

.nav-drawer__link {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink-mid);
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s, color 0.15s;
}

    .nav-drawer__link:hover {
        background: var(--surface-3);
        color: var(--blue);
    }

.nav-drawer__close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-soft);
    padding: 0.4rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}

.nav-drawer__close svg {
    display: block;
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

    .nav-drawer__close:hover {
        background: var(--surface-3);
    }

.nav-drawer__phone {
    margin-top: auto;
    padding-top: 1.5rem;
}

.nav-drawer__lang {
    margin-top: 1rem;
    padding-top: 0.4rem;
}

.lang-switcher--drawer {
    width: 100%;
    justify-content: space-between;
}

.lang-switcher--drawer .lang-switcher__label {
    color: var(--ink-soft);
}

.lang-switcher--drawer .lang-switcher__select {
    color: var(--ink-mid);
    border-color: var(--border);
    background: #fff;
}

    .nav-drawer__phone a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 600;
        color: var(--blue);
        font-size: 1.05rem;
    }

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: clamp(580px, 90vh, 900px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    animation: heroZoom 18s ease-in-out infinite alternate, heroFade 18s linear infinite;
    opacity: 0;
}

.hero__bg--1 {
    background-image: url('/img/viatera-muse.jpg');
    animation-delay: 0s;
}

.hero__bg--2 {
    background-image: url('/img/viatera-viccaco.jpg');
    animation-delay: 6s;
}

.hero__bg--3 {
    background-image: url('/img/viatera-white-pearl.jpg');
    animation-delay: 12s;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

@keyframes heroFade {
    0% {
        opacity: 0;
    }

    6% {
        opacity: 1;
    }

    27% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 115deg, rgba(8,32,62,0.88) 0%, rgba(12,50,95,0.72) 40%, rgba(8,32,62,0.35) 100% );
}

.hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 780px;
    padding: 2rem 0;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.4rem;
}

    .hero__eyebrow::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--gold-lt);
    }

.hero h1 {
    color: #fff;
    font-weight: 300;
    line-height: 1.06;
    margin-bottom: 1.4rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold-lt);
        font-weight: 300;
    }

.hero h1::before,
.hero h1::after {
    content: none !important;
    display: none !important;
}

.hero__lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin-bottom: 2.2rem;
    line-height: 1.72;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: scrollBob 2.2s ease-in-out infinite;
}

    .hero__scroll span {
        display: block;
        width: 1px;
        height: 36px;
        background: rgba(255,255,255,0.35);
        border-radius: 2px;
    }

@keyframes scrollBob {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ── Quick Access Panel Strip ────────────────────── */
.quick-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.quick-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 1.5rem;
    text-decoration: none;
    color: var(--ink-mid);
    border-right: 1px solid var(--border);
    transition: background 0.22s, color 0.22s;
    position: relative;
    overflow: hidden;
}

    .quick-card:last-child {
        border-right: none;
    }

    .quick-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2.5px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    }

    .quick-card:hover {
        background: var(--surface-3);
        color: var(--blue);
    }

        .quick-card:hover::after {
            transform: scaleX(1);
        }

.quick-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s;
}

.quick-card:hover .quick-card__icon {
    background: rgba(16,89,160,0.1);
}

.quick-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}

.quick-card__text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.quick-card__text span {
    font-size: 0.8rem;
    color: var(--ink-soft);
}

/* ── Section Label ───────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

    .section-label::before {
        content: '';
        display: block;
        width: 24px;
        height: 1.5px;
        background: var(--gold);
        border-radius: 2px;
    }

/* ── Feature Grid (3 col) ────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card {
    background: var(--surface);
    padding: 2.2rem 2rem;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 360px;
    justify-content: flex-end;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.22s;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    .feature-card:hover {
        background: var(--surface);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(13, 43, 72, 0.12);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.34;
        transform: scale(1.02);
        transition: opacity 0.3s ease, transform 0.45s ease;
        z-index: 0;
    }

    .feature-card:hover::before {
        opacity: 0.44;
        transform: scale(1);
    }

.feature-card--kitchen::before {
    background-image: url('/img/Products/kitchen-and-baths.png');
    background-position: center 44%;
}

.feature-card--exteriors::before {
    background-image: url('/img/Products/exterior.png');
    background-position: center 48%;
}

.feature-card--interiors::before {
    background-image: url('/img/Products/interior.png');
    background-position: center 42%;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.22) 34%, rgba(255,255,255,0.85) 62%, rgba(255,255,255,0.96) 100%);
    z-index: 0;
    pointer-events: none;
}

.feature-card__num {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--ink);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
}

.feature-card__arrow {
    margin-top: auto;
    padding-top: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    opacity: 0.9;
    transform: none;
    transition: color 0.18s ease, gap 0.18s ease, opacity 0.18s ease;
}

.feature-card__arrow svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    display: block;
    stroke-width: 2;
}

.feature-card:hover .feature-card__arrow {
    color: var(--blue-dk);
    gap: 0.58rem;
    opacity: 1;
}

.owner-portal-link {
    color: rgba(255,255,255,0.08);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.owner-portal-link:hover,
.owner-portal-link:focus-visible {
    color: rgba(255,255,255,0.65);
    outline: none;
}

.catalog-group-title {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--blue);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1rem;
    align-items: stretch;
}

.catalog-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 0.95rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
    overflow: hidden;
}

.catalog-card h4 {
    font-size: 1.05rem;
    margin: 0.7rem 0 0.15rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.catalog-card p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--ink-soft);
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.catalog-meta {
    margin-bottom: 0.35rem !important;
}

.catalog-thumb-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f1f5fa;
}

.catalog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-thumb--empty {
    display: grid;
    place-items: center;
    color: #6c8097;
    font-size: 0.8rem;
}

@media (max-width: 767px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .catalog-card {
        padding: 0.85rem;
    }
}

.admin-shell {
    background: linear-gradient(180deg, #f4f8fc 0%, #f8fbff 70%, #f5f8fc 100%);
}

.loading-block {
    min-height: 180px;
    display: grid;
    place-items: center;
    gap: 0.6rem;
    text-align: center;
}

.loading-spinner {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 3px solid rgba(20, 125, 187, 0.2);
    border-top-color: var(--blue);
    animation: spin 0.85s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.admin-shell .container {
    position: relative;
}

.admin-loading-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: rgba(244, 248, 252, 0.78);
    backdrop-filter: blur(2px);
    display: grid;
    place-items: center;
    gap: 0.7rem;
    border-radius: 16px;
    text-align: center;
    padding: 1rem;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.admin-subtitle {
    margin-top: 0.45rem;
    max-width: 760px;
}

.admin-topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-md);
    background: #fff;
    color: var(--ink-mid);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.36rem 0.7rem;
}

.admin-status {
    margin-bottom: 1rem;
    border: 1px solid rgba(20, 125, 187, 0.24);
    background: rgba(20, 125, 187, 0.08);
    color: #0f4b72;
    border-radius: 12px;
    padding: 0.72rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-workspace {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.6fr);
    gap: 1.1rem;
    align-items: start;
}

.admin-workspace > * {
    min-width: 0;
}

.admin-panel {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(10,40,75,0.08);
    padding: 1.15rem;
}

.admin-panel__head {
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
    margin-bottom: 0.9rem;
}

.admin-panel__head h3 {
    font-size: 1.45rem;
    color: var(--ink);
}

.admin-panel__head p {
    margin-top: 0.28rem;
    font-size: 0.9rem;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.admin-form-grid > * {
    min-width: 0;
}

.admin-form-grid--single {
    grid-template-columns: 1fr;
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-field--full {
    grid-column: 1 / -1;
}

.admin-field label {
    font-size: 0.79rem;
    color: var(--ink-soft);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid rgba(16,89,160,0.22);
    border-radius: 11px;
    padding: 0.67rem 0.75rem;
    font: inherit;
    background: #fbfdff;
    color: var(--ink);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-field select[size] {
    min-height: 220px;
    padding: 0.35rem;
}

.admin-product-list {
    min-height: 220px;
    max-height: 320px;
    overflow: auto;
    border: 1px solid rgba(16,89,160,0.22);
    border-radius: 11px;
    background: #fbfdff;
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.admin-product-option {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #ffffff;
    color: var(--ink);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.6rem;
    align-items: center;
    text-align: left;
    padding: 0.38rem 0.45rem;
    cursor: pointer;
}

.admin-product-option:hover {
    border-color: rgba(20,125,187,0.35);
}

.admin-product-option.is-selected {
    border-color: rgba(20,125,187,0.62);
    box-shadow: 0 0 0 2px rgba(20,125,187,0.12);
    background: #f4faff;
}

.admin-product-option:focus-visible {
    outline: none;
    border-color: rgba(20,125,187,0.62);
    box-shadow: 0 0 0 3px rgba(20,125,187,0.12);
}

.admin-product-option__thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(16,89,160,0.22);
}

.admin-product-option__thumb--fallback,
.admin-product-option__thumb--empty {
    display: grid;
    place-items: center;
    font-size: 0.62rem;
    line-height: 1.1;
    color: var(--ink-soft);
    background: #f2f7fb;
}

.admin-product-option__meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-product-option__title {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-product-option__subtitle {
    font-size: 0.79rem;
    color: var(--ink-soft);
}

.admin-btn-danger {
    background: #b21f2d;
    border-color: #b21f2d;
    color: #fff;
}

.admin-btn-danger:hover {
    background: #8f1924;
    border-color: #8f1924;
    color: #fff;
}

.admin-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 220;
    background: rgba(10, 24, 44, 0.5);
    display: grid;
    place-items: center;
    padding: 1rem;
}

.admin-modal {
    width: min(480px, 100%);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(10, 24, 44, 0.25);
    padding: 1rem 1rem 0.95rem;
}

.admin-modal h4 {
    margin: 0;
    font-size: 1.2rem;
}

.admin-modal p {
    margin: 0.7rem 0 0;
    color: var(--ink-soft);
}

.admin-modal-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
}

.admin-side-nav {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.admin-side-nav__item {
    width: 100%;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fbfdff;
    color: var(--ink);
    font-weight: 600;
    padding: 0.65rem 0.75rem;
    cursor: pointer;
}

.admin-side-nav__item.is-active {
    border-color: rgba(20,125,187,0.62);
    box-shadow: 0 0 0 2px rgba(20,125,187,0.12);
    background: #f4faff;
}

.admin-user-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.admin-user-grid__head,
.admin-user-grid__cell {
    padding: 0.6rem 0.65rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.admin-user-grid__head {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: #f6f9fc;
}

.admin-user-grid__cell:nth-last-child(-n + 4) {
    border-bottom: 0;
}

.admin-user-grid__head:nth-child(4),
.admin-user-grid__cell:nth-child(4n) {
    border-right: 0;
}

.admin-user-grid__actions {
    display: flex;
    gap: 0.45rem;
}

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

    .admin-user-grid__head {
        display: none;
    }

    .admin-user-grid__cell {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .admin-user-grid__cell:nth-child(4n) {
        padding-bottom: 0.95rem;
    }
}

.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
    outline: none;
    border-color: rgba(20,125,187,0.62);
    box-shadow: 0 0 0 3px rgba(20,125,187,0.12);
}

.admin-field textarea {
    min-height: 96px;
    resize: vertical;
}

.admin-field small {
    color: var(--ink-soft);
    font-size: 0.74rem;
}

.admin-checkline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fbfdff;
}

.admin-checkline input {
    width: 16px;
    height: 16px;
    accent-color: var(--blue);
}

.admin-file-input {
    border: 1px dashed rgba(16,89,160,0.3);
    border-radius: 12px;
    padding: 0.8rem;
    background: #f7fbff;
}

.admin-actions-row {
    margin-top: 0.9rem;
    display: flex;
    justify-content: flex-start;
}

.admin-shell button:disabled {
    opacity: 0.62;
    cursor: not-allowed;
}

.admin-editor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 0.9rem;
}

.admin-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem;
    background: #fcfdff;
}

.admin-card h4 {
    font-size: 1.06rem;
    margin-bottom: 0.65rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--ink-mid);
}

.admin-image-list {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.8rem;
}

.admin-image-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 0.7rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.48rem;
    background: #fff;
}

.admin-image-row img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.admin-image-meta {
    min-width: 0;
}

.admin-image-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink-mid);
}

.admin-image-dims {
    font-size: 0.78rem;
    color: var(--ink-soft);
}

@media (max-width: 1100px) {
    .admin-workspace {
        grid-template-columns: 1fr;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1101px) and (max-width: 1420px) {
    .admin-workspace {
        grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.35fr);
    }
}

@media (max-width: 720px) {
    .admin-topbar {
        flex-direction: column;
    }

    .admin-topbar__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-image-row {
        grid-template-columns: 52px 1fr;
    }

    .admin-image-row .btn {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

/* ── Split Layout ────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split--reverse {
    direction: rtl;
}

    .split--reverse > * {
        direction: ltr;
    }

.split--wide {
    grid-template-columns: 1.2fr 1fr;
}

.split--photo {
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.split__image {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.split__image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-pale) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.split__body {
    padding: 3rem 3.5rem;
}

    .split__body h2 {
        margin-bottom: 1rem;
    }

    .split__body p {
        margin-bottom: 1.4rem;
    }

/* ── Stats Row ───────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.stat {
    padding: 1.5rem 1rem 0;
    border-right: 1px solid var(--border);
}

    .stat:last-child {
        border-right: none;
    }

.stat__num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat__label {
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.4;
}

/* ── Testimonials ────────────────────────────────── */
.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.28s, transform 0.28s;
}

    .quote-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.quote-card__mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 0.7;
    color: var(--gold-lt);
    margin-bottom: 1rem;
}

.quote-card p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-mid);
    margin-bottom: 1.5rem;
}

.quote-card__author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
}

.quote-card__rule {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    margin-bottom: 0.5rem;
    border-radius: 2px;
}

/* ── Page Banner ─────────────────────────────────── */
.page-banner {
    background: linear-gradient(118deg, var(--blue-dk) 0%, var(--blue) 100%);
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

    .page-banner::after {
        content: '';
        position: absolute;
        right: -8%;
        top: -30%;
        width: 50%;
        aspect-ratio: 1;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
        pointer-events: none;
    }

    .page-banner h1 {
        color: #fff;
        margin-bottom: 0;
    }

    .page-banner .crumb {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        color: rgba(255,255,255,0.6);
        margin-bottom: 0.7rem;
    }

        .page-banner .crumb a {
            color: rgba(255,255,255,0.75);
            transition: color 0.15s;
        }

            .page-banner .crumb a:hover {
                color: #fff;
            }

/* ── Products Grid ───────────────────────────────── */
.products-search {
    width: 100%;
    margin: 0 0 1.1rem;
}

.products-search__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4a6279;
    margin-bottom: 0.45rem;
}

.products-search__input {
    width: 100%;
    max-width: 680px;
    height: 48px;
    border: 1px solid #c8d7e6;
    border-radius: 0.65rem;
    background: #fff;
    padding: 0 0.9rem;
    font-size: 1rem;
    line-height: 1.2;
    color: #1f3448;
}

.products-search__input::placeholder {
    color: #7a8da1;
}

.products-search__input:focus {
    outline: none;
    border-color: #4f83b9;
    box-shadow: 0 0 0 3px rgba(79, 131, 185, 0.14);
}

.products-search__empty {
    margin: 0.3rem 0 1rem;
    color: #4b6178;
    font-size: 0.95rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.product-tile {
    background: #fff;
    border: 1px solid #d6e1ec;
    border-radius: 0.7rem;
    overflow: hidden;
    text-decoration: none;
    color: #21384f;
    display: block;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.product-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 24px rgba(12, 26, 42, 0.08);
    border-color: #b7cde2;
}

.product-tile__image-wrap {
    aspect-ratio: 16 / 10;
    background: #fff;
    overflow: hidden;
}

.product-tile__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.28s ease;
}

.product-tile:hover .product-tile__image {
    transform: none;
}

.product-tile__meta {
    padding: 0.85rem 0.9rem 0.95rem;
}

.product-tile__name {
    display: block;
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.3;
    margin-bottom: 0.45rem;
    color: #1f3448;
}

.product-tile__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: #4b6178;
}

.product-tile__cta svg {
    width: 14px;
    height: 14px;
    opacity: 0.85;
    transition: transform 0.16s ease;
}

.product-tile:hover .product-tile__cta {
    color: var(--blue);
}

.product-tile:hover .product-tile__cta svg {
    transform: translateX(2px);
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .products-search__input {
        max-width: 100%;
        height: 46px;
        font-size: 0.97rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .product-tile__meta {
        padding: 0.78rem 0.8rem 0.86rem;
    }
}

/* ── Info Cards ──────────────────────────────────── */
.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

    .info-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.9rem;
        color: var(--blue-dk);
    }

    .info-card p {
        margin-bottom: 0.7rem;
    }

        .info-card p:last-child {
            margin-bottom: 0;
        }

    .info-card a {
        color: var(--blue);
        border-bottom: 1px solid var(--border-md);
        transition: border-color 0.15s;
    }

        .info-card a:hover {
            border-color: var(--blue);
        }

.info-card__icon {
    width: 42px;
    height: 42px;
    background: var(--surface-3);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .info-card__icon svg {
        width: 20px;
        height: 20px;
        color: var(--blue);
    }

/* ── Location Layout ─────────────────────────────── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.location-photo {
    grid-column: 1 / -1;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 66, 112, 0.24), rgba(7, 66, 112, 0.08)),
        url('/img/hpdc-larger.jpg') center/cover no-repeat,
        linear-gradient(135deg, var(--sky) 0%, var(--sky-pale) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.embed-frame {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--surface-3);
    grid-column: 1 / -1;
    height: 360px;
}

    .embed-frame iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

.location-info-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

/* ── Contact ─────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-md);
}

.contact-alert {
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    font-size: 0.88rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.contact-alert--success {
    background: rgba(33, 136, 56, 0.1);
    border-color: rgba(33, 136, 56, 0.3);
    color: #1f6f35;
}

.contact-alert--error {
    background: rgba(180, 42, 42, 0.1);
    border-color: rgba(180, 42, 42, 0.3);
    color: #8f1f1f;
}

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        font-size: 0.84rem;
        font-weight: 600;
        color: var(--ink-mid);
        margin-bottom: 0.4rem;
        letter-spacing: 0.02em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 0.78rem 1rem;
        border: 1.5px solid var(--border-md);
        border-radius: var(--radius-sm);
        font-family: var(--font-sans);
        font-size: 0.95rem;
        color: var(--ink);
        background: var(--surface);
        transition: border-color 0.18s, box-shadow 0.18s;
        outline: none;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 4px rgba(16,89,160,0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 130px;
    }

    .form-group .validation-message,
    .form-group .validation-errors,
    .form-group .field-validation-error {
        color: #a12323;
        font-size: 0.78rem;
        margin-top: 0.28rem;
        display: block;
    }

.contact-form button:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.contact-btn-spinner {
    width: 16px;
    height: 16px;
    border-width: 2px;
    border-top-color: #fff;
    border-color: rgba(255,255,255,0.5);
    border-top-color: #fff;
}

/* ── Forms/Applications List ─────────────────────── */
.forms-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--ink-mid);
    font-weight: 500;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}

    .form-link:hover {
        background: var(--surface-3);
        color: var(--blue);
        transform: translateX(4px);
        box-shadow: var(--shadow-md);
    }

    .form-link svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

/* ── Virtual Showroom ────────────────────────────── */
.showroom-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
}

    .showroom-frame iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
    background: linear-gradient(118deg, var(--blue-dk), var(--blue));
    padding: clamp(3rem,6vw,5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

    .cta-banner .container {
        position: relative;
        z-index: 1;
    }

    .cta-banner h2 {
        color: #fff;
        margin-bottom: 0.75rem;
    }

    .cta-banner p {
        color: rgba(255,255,255,0.75);
        margin-bottom: 2rem;
        max-width: 520px;
        margin-inline: auto;
    }

.cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    padding: clamp(3rem,6vw,5rem) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand__name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: #fff;
    display: block;
    margin-bottom: 0.4rem;
}

.footer-brand__tagline {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-lt);
    display: block;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.7rem;
}

.footer-social__link {
    text-decoration: none;
}

.footer-social__badge {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.18s ease, background 0.18s ease;
}

.footer-social__link:hover .footer-social__badge,
.footer-social__link:focus-visible .footer-social__badge {
    transform: translateY(-1px);
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.55rem;
    transition: color 0.15s;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-col p {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.8rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ── Design Center Gallery ───────────────────────── */
.dc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.2rem;
}

.dc-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.dc-card--wide {
    grid-column: span 2;
}

.dc-card__img {
    aspect-ratio: 16/7;
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-pale) 100%);
    width: 100%;
    overflow: hidden;
}

.dc-card--wide .dc-card__img {
    aspect-ratio: 21/7;
}

.dc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.dc-card:hover .dc-card__img img {
    transform: scale(1.04);
}

.dc-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem 1.4rem 1.2rem;
    background: linear-gradient(to top, rgba(8,32,62,0.82) 0%, transparent 100%);
    color: #fff;
}

    .dc-card__label h3 {
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 0.1rem;
    }

    .dc-card__label p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.7);
        margin: 0;
    }

/* ── Prose Body ──────────────────────────────────── */
.prose-body h2 {
    margin-bottom: 1rem;
    color: var(--blue-dk);
}

.prose-body p {
    margin-bottom: 1.2rem;
}

    .prose-body p:last-child {
        margin-bottom: 0;
    }

/* ── Glass Card ──────────────────────────────────── */
.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: var(--radius-md);
    padding: 1.6rem 2rem;
    box-shadow: var(--shadow-sm);
}

/* ── Divider ─────────────────────────────────────── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-md), transparent);
    margin: 0;
}

/* ── Blazor Error UI ─────────────────────────────── */
#blazor-error-ui {
    background: #fff4d8;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .lang-switcher__label {
        display: none;
    }

    html:has(.nav-drawer.open),
    body:has(.nav-drawer.open) {
        overflow: hidden;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-drawer {
        display: block;
    }

    .quick-strip__grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-card:nth-child(2) {
        border-right: none;
    }

    .quick-card:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .split, .split--wide, .split--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .split__body {
        padding: 2rem;
    }

    .split--photo {
        border-radius: var(--radius-md);
    }

    .split__image, .split__image-placeholder {
        aspect-ratio: 16/9;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1.2rem 0;
    }

        .stat:last-child {
            border-bottom: none;
        }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .dc-grid {
        grid-template-columns: 1fr;
    }

    .dc-card--wide {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-info-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-h: 84px;
    }

    .top-bar {
        display: none;
    }

    .quick-strip__grid {
        grid-template-columns: 1fr;
    }

    .quick-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

        .quick-card:last-child {
            border-bottom: none;
        }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

        .hero__actions .btn {
            width: 100%;
            justify-content: center;
        }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }
}


/*@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,300;9..144,500;9..144,700&display=swap');

:root {
    --bg: #f3f6fa;
    --surface: rgba(255, 255, 255, 0.88);
    --solid-surface: #ffffff;
    --text: #1c2f43;
    --muted: #5c7088;
    --line: rgba(94, 124, 152, 0.28);
    --brand: #0d6fb0;
    --brand-2: #0a4f85;
    --brand-3: #09375d;
    --gold: #d2a650;
    --radius: 16px;
    --shadow: 0 18px 40px rgba(9, 36, 61, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
    font-family: "Manrope", "Trebuchet MS", sans-serif;
    color: var(--text);
    background: linear-gradient(160deg, #f9fbff 0%, #eef4fb 48%, #e7edf5 100%);
}

h1, h2, h3, h4 {
    font-family: "Fraunces", "Georgia", serif;
    letter-spacing: -0.01em;
}

a { color: inherit; }

.site-shell { position: relative; overflow: hidden; }
.ambient {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.4;
}
.ambient-one {
    width: 34rem;
    height: 34rem;
    top: -10rem;
    right: -8rem;
    background: radial-gradient(circle at 50% 50%, #98c9f0, transparent 70%);
}
.ambient-two {
    width: 28rem;
    height: 28rem;
    bottom: 8rem;
    left: -8rem;
    background: radial-gradient(circle at 50% 50%, #d8e6f7, transparent 70%);
}

.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }

.top-contact-bar {
    background: rgba(247, 251, 255, 0.86);
    border-bottom: 1px solid var(--line);
}
.top-contact-inner {
    min-height: 44px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    font-size: 0.78rem;
    color: #4e6881;
}
.top-contact-inner p { margin: 0; }
.top-contact-inner a { text-decoration: underline; text-decoration-color: #86add0; text-underline-offset: 3px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.82);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    background: linear-gradient(145deg, #2da7eb, #0a5f9d);
    box-shadow: 0 10px 22px rgba(16, 93, 145, 0.35);
}
.brand-copy strong { display: block; color: #0f3d66; font-size: 1.1rem; }
.brand-copy small { display: block; text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.72rem; color: #7088a1; }

.site-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.35rem; }
.site-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2f4d6b;
    padding: 0.55rem 0.74rem;
    border-radius: 10px;
    transition: all .22s ease;
}
.site-nav a:hover, .site-nav a.active {
    background: #edf5ff;
    color: #0f5a90;
    transform: translateY(-1px);
}

.home-hero {
    min-height: 70vh;
    background:
        linear-gradient(125deg, rgba(8, 48, 83, 0.84), rgba(8, 48, 83, 0.35)),
        url('https://images.unsplash.com/photo-1600585154084-4e5fe7c39198?auto=format&fit=crop&w=2200&q=80') center/cover no-repeat;
}
.hero-image-overlay {
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.hero-content { max-width: 760px; color: #eef6ff; animation: floatIn .8s ease both; }
.label {
    margin: 0 0 .9rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .76rem;
    color: #c6def4;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.04; margin: 0 0 1rem; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.1; margin: 0 0 0.9rem; }
h3 { font-size: 1.35rem; margin: 0 0 0.5rem; }
p { margin: 0 0 1rem; line-height: 1.75; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .78rem 1.16rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s ease;
}
.btn-primary { background: #fff; color: #154e79; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { border: 1px solid #c0daee; color: #eaf5ff; }
.btn-secondary:hover { background: rgba(255,255,255,0.08); }

.section { padding: 4rem 0; }
.section-soft {
    background: linear-gradient(145deg, rgba(11,108,171,0.08), rgba(255,255,255,0.45));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-panels { display: grid; gap: 1rem; grid-template-columns: repeat(4, minmax(0,1fr)); }
.home-panels.three-up { grid-template-columns: repeat(3, minmax(0,1fr)); }

.panel-card, .info-card, .quote-card, .forms-list a, .content-glass {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
}
.panel-card {
    text-decoration: none;
    color: inherit;
    padding: 1.1rem;
    transition: transform .22s ease, box-shadow .22s ease;
}
.panel-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(9,36,61,.18); }
.panel-card p { color: var(--muted); margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1rem; }
.fact-grid { display: grid; gap: .82rem; }
.fact-grid > div {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 1rem;
}
.fact-grid strong { display: block; color: var(--brand-3); font-size: 1.14rem; margin-bottom: .18rem; }
.fact-grid span { color: var(--muted); }

.page-banner {
    padding: 3rem 0;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(14, 107, 170, .94), rgba(8, 67, 111, .92)),
        radial-gradient(circle at right, rgba(255,255,255,.2), transparent 40%);
}
.page-banner .crumb {
    font-size: .82rem;
    letter-spacing: .04em;
    color: #d5e9fa;
    margin: 0 0 .65rem;
}
.page-banner h1 { margin: 0; }

.prose { position: relative; }
.prose h2 { color: #0f5f98; }
.prose p { color: #50657d; max-width: 900px; }

.info-card { padding: 1.15rem; }
.info-card ul { margin: 0; padding-left: 1.1rem; color: #4e6379; line-height: 1.75; }

.quote-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.quote-card { padding: 1.2rem; position: relative; }
.quote-card::before {
    content: '"';
    position: absolute;
    top: .4rem;
    left: .85rem;
    font-family: "Fraunces", serif;
    font-size: 3rem;
    line-height: 1;
    color: rgba(12, 92, 145, 0.2);
}
.quote-card p { color: #4a6078; font-style: italic; margin-left: .35rem; }
.quote-card h4 { margin: 0; color: #0f4f83; font-size: 1rem; font-family: "Manrope", sans-serif; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1rem; }
.contact-form {
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--solid-surface);
    box-shadow: var(--shadow);
}
.contact-form label { display: block; font-weight: 700; margin: .5rem 0 .3rem; color: #2a4864; }
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid #c2d4e5;
    border-radius: 10px;
    padding: .72rem .78rem;
    font: inherit;
    color: var(--text);
    background: #fafdff;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #6fb2e2;
    box-shadow: 0 0 0 4px rgba(111, 178, 226, 0.2);
}
.contact-form button { margin-top: .95rem; border: 0; background: linear-gradient(145deg, var(--brand), var(--brand-2)); color: #fff; }

.embed-frame {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}
.embed-frame iframe { width: 100%; border: 0; min-height: 620px; }
.embed-frame.small iframe { min-height: 360px; }

.location-layout { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.location-photo {
    grid-column: 1 / -1;
    min-height: 340px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background:
        linear-gradient(130deg, rgba(6, 58, 94, 0.2), rgba(6,58,94,0.1)),
        url('/img/hpdc-larger.jpg') center/cover no-repeat,
        linear-gradient(135deg, var(--sky) 0%, var(--sky-pale) 100%);
}
.location-layout .embed-frame.small { grid-column: 1 / -1; }

.forms-list { max-width: 760px; display: grid; gap: .75rem; }
.forms-list a {
    text-decoration: none;
    padding: .95rem 1rem;
    font-weight: 700;
    color: #0d578e;
    transition: all .22s ease;
}
.forms-list a:hover { transform: translateX(4px); background: #f3f9ff; }

.site-footer {
    margin-top: 2rem;
    color: #d8ebfb;
    background: linear-gradient(130deg, #0c639d, #083e68 70%);
    padding: 2.2rem 0;
}
.footer-layout { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.site-footer h3 { margin: 0 0 .6rem; color: #fff; }
.site-footer p { margin: 0 0 .4rem; }
.site-footer a { color: #fff; }

.reveal { animation: fadeUp .9s ease both; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes floatIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
    .site-header { position: static; }
    .top-contact-inner { justify-content: flex-start; padding: .4rem 0; }
    .nav-wrap { padding: .8rem 0; align-items: flex-start; }
    .home-panels, .home-panels.three-up, .split, .quote-grid, .contact-layout, .location-layout, .footer-layout { grid-template-columns: 1fr; }
    .home-hero, .hero-image-overlay { min-height: 62vh; }
}

#blazor-error-ui {
    background: #fff4d8;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }
*/
