:root {
    --bg: #09111a;
    --bg-deep: #050b12;
    --panel: #f5f0e8;
    --panel-strong: #fffdfa;
    --line: rgba(17, 27, 39, 0.1);
    --line-inverse: rgba(255, 255, 255, 0.14);
    --text: #13202d;
    --muted: #617081;
    --accent: #c56d35;
    --accent-soft: #f1d1bc;
    --accent-deep: #9f5427;
    --sand: #d8c0a5;
    --shadow: 0 22px 60px rgba(4, 10, 17, 0.1);
    --shadow-strong: 0 34px 90px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(197, 109, 53, 0.2), transparent 22%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 16%),
        linear-gradient(180deg, #071018 0%, #0a131c 44%, #0d1720 100%);
    font-family:
        Manrope,
        system-ui,
        sans-serif;
    line-height: 1.6;
}

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

p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

ul {
    margin: 0;
    padding-left: 1.1rem;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px clamp(20px, 4vw, 48px);
    background: rgba(7, 16, 24, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family:
        "Space Grotesk",
        sans-serif;
    font-weight: 700;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9458 100%);
    box-shadow: 0 10px 20px rgba(232, 111, 45, 0.28);
}

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

.logo-text {
    font-size: 1.1rem;
    letter-spacing: -0.04em;
    color: #f6f0e8;
}

.logo-subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.1;
}

.nav {
    display: flex;
    gap: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.nav a:hover {
    color: white;
}

.hero {
    position: relative;
    overflow: clip;
    padding: 60px 0 36px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(197, 109, 53, 0.24), transparent 20%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 16%),
        linear-gradient(135deg, rgba(8, 15, 23, 0.98) 0%, rgba(11, 22, 32, 0.9) 45%, rgba(17, 28, 38, 0.88) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: stretch;
}

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

.hero-copy {
    padding: clamp(20px, 4vw, 36px) 0;
    color: #f5efe7;
}

.eyebrow,
.section-label,
.panel-label,
.price-kicker,
.install-kicker,
.contact-label,
.brand-name {
    font-family:
        "Space Grotesk",
        sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.eyebrow,
.section-label,
.brand-name,
.price-kicker,
.install-kicker,
.contact-label {
    color: #d6a67f;
}

h1 {
    max-width: 11ch;
    font-family:
        "Space Grotesk",
        sans-serif;
    font-size: clamp(3.1rem, 8vw, 6.1rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
    margin-bottom: 22px;
    overflow-wrap: anywhere;
}

h2 {
    font-family:
        "Space Grotesk",
        sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.lead,
.section-heading p,
.copy,
.brand-header p,
.install-price p,
.contact-panel p {
    color: var(--muted);
}

.lead {
    max-width: 58ch;
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    margin-bottom: 28px;
    color: rgba(245, 239, 231, 0.74);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9054 100%);
    box-shadow: 0 12px 24px rgba(232, 111, 45, 0.22);
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

.wide-button {
    width: 100%;
    margin-top: 16px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.hero-points li {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #f5efe7;
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-panel {
    padding: 22px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 32px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, #1a2633 100%);
    color: white;
    box-shadow: var(--shadow-strong);
    border-color: rgba(255, 255, 255, 0.08);
}

.panel-label {
    color: var(--sand);
}

.price-card {
    padding: 22px;
    border: 1px solid var(--line-inverse);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.price-card strong,
.install-price strong {
    display: block;
    font-family:
        "Space Grotesk",
        sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 12px;
}

.mini-grid {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.mini-grid article {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line-inverse);
    background: rgba(255, 255, 255, 0.04);
}

.mini-grid span,
.process-grid span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sand);
    font-family:
        "Space Grotesk",
        sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.mini-grid h2 {
    font-size: 1.3rem;
    line-height: 1.08;
    margin-bottom: 8px;
}

.mini-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.brand-strip {
    padding: 0 0 8px;
}

.brand-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.brand-row span {
    display: block;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family:
        "Space Grotesk",
        sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    color: #f4ede3;
}

.section {
    padding: clamp(72px, 10vw, 110px) 0;
}

.intro {
    padding-top: 56px;
}

.split,
.contact-card,
.install-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
}

.copy {
    font-size: 1.06rem;
    color: rgba(245, 239, 231, 0.78);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
    color: #f4ede3;
}

.intro h2,
.faq-section h2 {
    color: #f4ede3;
}

.section-heading.compact {
    max-width: 820px;
}

.catalog {
    display: grid;
    gap: 28px;
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.catalog-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
    color: #f4ede3;
}

.brand-block {
    padding: clamp(24px, 4vw, 34px);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(244, 239, 231, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.brand-header {
    max-width: 64ch;
    margin-bottom: 26px;
}

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

.product-card,
.process-grid article,
.faq-list article,
.install-price,
.install-includes,
.contact-panel {
    border-radius: 24px;
    background: var(--panel-strong);
    border: 1px solid rgba(15, 23, 32, 0.08);
    box-shadow: var(--shadow);
}

.product-card {
    padding: 22px;
}

.product-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 180px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 18%),
        linear-gradient(135deg, #2a3643 0%, #121c25 100%);
}

.product-image.has-image {
    background: linear-gradient(180deg, #fbfcfe 0%, #eef2f6 100%);
}

.product-image::before {
    content: "";
    width: min(220px, 80%);
    height: 78px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #e7edf2 100%);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.22),
        inset 0 -8px 16px rgba(22, 32, 43, 0.08);
}

.product-image.has-image::before,
.product-image.has-image::after {
    display: none;
}

.product-image::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 14px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.12);
}

.product-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.product-image img {
    position: relative;
    z-index: 1;
    max-width: 88%;
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.12));
}

.muted-card {
    background: linear-gradient(180deg, #fff6ef 0%, #fffdf9 100%);
}

.product-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.product-badge,
.product-price {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.product-badge {
    background: var(--accent-soft);
    color: var(--accent-deep);
}

.product-price {
    background: rgba(15, 23, 32, 0.06);
    color: var(--text);
}

.product-card p {
    color: var(--muted);
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.product-specs span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #e6ebef;
    color: #344454;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.product-details {
    display: grid;
    gap: 10px;
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f6efe6;
    border: 1px solid rgba(19, 32, 45, 0.08);
}

.product-detail-row {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    align-items: start;
}

.product-detail-label {
    color: #7b6a59;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.35;
    overflow-wrap: normal;
    margin: 0;
}

.product-detail-value {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.product-best-for {
    margin-bottom: 14px;
}

.product-best-for strong {
    color: var(--text);
}

.product-card li {
    margin-bottom: 8px;
    color: var(--text);
}

.product-actions {
    margin-top: 18px;
}

.small-button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.92rem;
}

.coming-soon-card {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    padding: clamp(22px, 4vw, 28px);
    border-radius: 24px;
    background: linear-gradient(135deg, #fff4ea 0%, #fffdfa 100%);
    border: 1px solid rgba(15, 23, 32, 0.08);
}

.install-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(197, 109, 53, 0.04) 100%);
}

.install-price,
.install-includes,
.contact-panel {
    padding: clamp(22px, 4vw, 30px);
}

.install-price {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #1a2633 100%);
    color: white;
    box-shadow: var(--shadow-strong);
}

.install-price p {
    color: rgba(255, 255, 255, 0.74);
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--panel);
    border: 1px solid rgba(15, 23, 32, 0.08);
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
}

.extras-table {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 253, 250, 0.96);
    box-shadow: var(--shadow);
}

.extras-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 22px;
    border-top: 1px solid rgba(15, 23, 32, 0.08);
}

.extras-row:first-child {
    border-top: 0;
}

.extras-head {
    background: #f5e4d4;
    font-family:
        "Space Grotesk",
        sans-serif;
    font-weight: 700;
}

.process-grid article {
    padding: 22px;
}

.process-grid p,
.faq-list p {
    color: var(--muted);
    margin-bottom: 0;
}

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

.faq-list article {
    padding: 22px;
}

.contact-card {
    padding: clamp(24px, 5vw, 38px);
    border-radius: 34px;
    background: linear-gradient(135deg, #171f29 0%, #0a121a 100%);
    color: white;
    box-shadow: var(--shadow-strong);
}

.contact-card .section-label,
.contact-card .contact-label {
    color: var(--sand);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.74);
}

.contact-panel {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.contact-panel a {
    color: white;
    font-weight: 800;
}

.site-footer {
    padding: 28px 0 42px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
}

@media (max-width: 1000px) {
    .hero-grid,
    .split,
    .contact-card,
    .install-layout {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .logo {
        align-items: center;
    }

    .product-detail-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .product-details {
        gap: 12px;
    }

    .coming-soon-card {
        flex-direction: column;
        align-items: start;
    }

    .brand-row,
    .product-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .extras-row {
        grid-template-columns: 1fr;
    }

    .footer-row {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    h1 {
        max-width: none;
        font-size: clamp(2.5rem, 12vw, 3.6rem);
        line-height: 1.02;
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .site-header {
        padding-inline: 18px;
    }

    .container {
        width: min(1180px, calc(100% - 28px));
    }

    .hero {
        padding-top: 34px;
    }
}
