:root {
    --burgundy: #6B2D3E;
    --burgundy-dark: #4F1F2D;
    --burgundy-light: #8F3D52;
    --bg: #f7f5f6;
    --surface: #ffffff;
    --text: #1f1a1c;
    --text-muted: #5c5256;
    --product: #1F3A5F;
    --product-hover: #152e4a;
    --border: #e8e0e3;
    --shadow: 0 12px 32px rgba(79, 31, 45, 0.1);
    --radius: 14px;
    --max-width: 1040px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

a {
    color: var(--product);
    text-decoration: none;
}

a:hover {
    color: var(--product-hover);
    text-decoration: underline;
}

.site-header {
    background: var(--burgundy);
    border-bottom: 1px solid var(--burgundy-dark);
    color: #fff;
}

.site-header-inner,
.site-footer-inner {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.5rem;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.brand:hover {
    color: #fff;
    opacity: 0.92;
    text-decoration: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff;
}

.site-main {
    flex: 1;
    width: 100%;
    padding: 0 0 3.5rem;
}

.site-main--page {
    padding-top: 2.5rem;
}

.hero-panel {
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.hero-panel-inner {
    width: 100%;
    margin: 0;
    padding: 2.5rem 1.75rem;
    box-sizing: border-box;
    background: var(--burgundy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-panel h1.hero-slogan,
.hero-slogan {
    margin: 0 0 1.25rem;
    max-width: none;
    font-size: clamp(1.15rem, 2.8vw, 1.85rem);
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .hero-panel h1.hero-slogan,
    .hero-slogan {
        white-space: normal;
    }
}

.hero-panel .lead {
    margin: 0;
    max-width: none;
    width: 100%;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-panel .lead a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.hero-panel .lead a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero-panel .tagline {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-main > section,
.site-main > article {
    max-width: var(--max-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

.section-title {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
}

.section-intro {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    max-width: 40rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.product-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    background: #e8eef5;
    color: var(--product);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--product);
}

.product-card p {
    margin: 0;
    color: var(--text-muted);
    flex: 1;
}

.product-features {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.product-features li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.35rem;
}

.product-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--burgundy-light);
}

.btn {
    display: inline-block;
    align-self: flex-start;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    background: var(--product);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
}

.btn:hover {
    background: var(--product-hover);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--product) !important;
    border: 1px solid var(--product);
}

.btn-secondary:hover {
    background: #eef3f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
}

.value-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    color: var(--burgundy);
}

.value-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.content-block {
    width: 100%;
    box-sizing: border-box;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem;
}

.company-slogan {
    margin: 0 0 1.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--burgundy);
}

.content-block h2 {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    color: var(--burgundy);
}

.content-block h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.story-prose p {
    margin: 0 0 1rem;
}

.story-prose p:last-child {
    margin-bottom: 0;
}

.content-block p,
.content-block li {
    color: var(--text-muted);
}

.content-block .company-slogan {
    color: var(--burgundy);
}

.content-block ul {
    margin: 0;
    padding-left: 1.25rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 0.65rem;
}

.contact-list strong {
    color: var(--text);
}

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 1.35rem 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.site-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--burgundy);
}

@media (max-width: 640px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .hero-panel {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-panel-inner {
        padding: 1.75rem 1.25rem;
    }
}
