:root {
    --page-bg: #f5efe2;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #fffaf0;
    --surface-border: rgba(22, 39, 63, 0.12);
    --text: #16273f;
    --muted: #5f6f84;
    --accent: #c7642d;
    --accent-dark: #9d4520;
    --accent-soft: rgba(199, 100, 45, 0.12);
    --shadow: 0 24px 60px rgba(22, 39, 63, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(199, 100, 45, 0.18), transparent 32%),
        linear-gradient(180deg, #fff7ea 0%, var(--page-bg) 58%, #efe3ce 100%);
}

a {
    color: inherit;
}

.site-shell {
    width: min(calc(100% - 32px), var(--shell-width));
    margin: 0 auto;
    padding: 28px 0 72px;
}

.hero,
.section,
.site-footer-inner {
    backdrop-filter: blur(18px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 28px;
    align-items: stretch;
    padding: 32px;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.info-card,
.product-card {
    position: relative;
}

.eyebrow,
.panel-label,
.product-tag {
    margin: 0 0 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

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

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    max-width: 10ch;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.hero-text,
.panel-text,
.info-card p,
.product-card p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--muted);
}

.hero-actions,
.product-card-actions,
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button,
.text-link,
.contact-link,
.footer-nav a {
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(199, 100, 45, 0.24);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    background: var(--accent-dark);
}

.button-secondary {
    background: transparent;
    color: var(--text);
    border-color: rgba(22, 39, 63, 0.18);
    box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(22, 39, 63, 0.34);
    background: rgba(255, 255, 255, 0.54);
}

.hero-panel,
.info-card,
.product-card,
.section {
    border: 1px solid var(--surface-border);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 26px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 234, 0.94)),
        var(--surface);
}

.product-logo {
    width: min(100%, 320px);
    height: auto;
    margin-bottom: 18px;
}

.text-link,
.contact-link {
    font-weight: 700;
    color: var(--accent-dark);
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--accent);
}

.section {
    margin-top: 24px;
    padding: 28px;
    border-radius: var(--radius-xl);
}

.section-heading {
    margin-bottom: 22px;
}

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

.info-card,
.product-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
}

.product-card {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) auto;
    gap: 24px;
    align-items: center;
}

.section-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.info-card-large {
    min-height: 100%;
}

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

.site-footer-inner {
    width: min(100%, var(--shell-width));
    margin: 0 auto;
    padding: 18px 22px;
    border: 1px solid var(--surface-border);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.86);
    box-shadow: 0 18px 40px rgba(22, 39, 63, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
}

.footer-nav a[aria-disabled="true"] {
    opacity: 0.72;
}

@media (max-width: 980px) {
    .hero,
    .product-card,
    .section-split,
    .card-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: 13ch;
    }

    .site-footer-inner {
        border-radius: 28px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--shell-width));
        padding-top: 10px;
        padding-bottom: 48px;
    }

    .hero,
    .section,
    .info-card,
    .product-card {
        padding: 20px;
    }

    h1 {
        font-size: clamp(2.15rem, 13vw, 3.4rem);
    }

    .button,
    .button-secondary {
        width: 100%;
    }
}
