:root {
    --bg: #f4f0e7;
    --bg-soft: #ebe4d6;
    --ink: #18201f;
    --muted: #5f6764;
    --subtle: #7c817b;
    --panel: #fffaf0;
    --panel-strong: #ffffff;
    --charcoal: #111715;
    --line: rgba(36, 42, 38, 0.16);
    --line-strong: rgba(143, 106, 42, 0.34);
    --accent: #8f6a2a;
    --accent-strong: #6f4f17;
    --green: #2f6f63;
    --green-soft: rgba(47, 111, 99, 0.12);
    --shadow: 0 18px 52px rgba(37, 31, 20, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100%;
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(17, 23, 21, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17, 23, 21, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 10% 10%, rgba(143, 106, 42, 0.12), transparent 30%),
        linear-gradient(180deg, var(--bg) 0%, #f8f5ee 58%, #efe8db 100%);
    background-size: 42px 42px, 42px 42px, auto, auto;
    font-family: Inter, Segoe UI, Arial, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(1180px, calc(100% - 40px));
    min-height: 76px;
    margin: 18px auto 0;
    padding: 12px 14px 12px 16px;
    border: 1px solid rgba(242, 210, 139, 0.16);
    border-radius: 8px;
    background: rgba(17, 23, 21, 0.94);
    box-shadow: 0 18px 48px rgba(17, 23, 21, 0.22);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 172px;
    color: #fffaf0;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 142px;
    max-width: 100%;
    height: auto;
}

.brand strong {
    display: block;
    color: #fffaf0;
    font-size: 1.08rem;
}

.site-footer strong {
    display: block;
    color: var(--ink);
    font-size: 1.08rem;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: #c6cfc8;
    font-size: 0.76rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    color: #d6ded8;
    font-weight: 750;
    text-decoration: none;
}

.site-nav a:hover {
    color: #f2d28b;
    background: rgba(255, 250, 240, 0.08);
}

.page-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0 74px;
}

.page-shell.narrow {
    width: min(920px, calc(100% - 40px));
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 24px;
    align-items: stretch;
    min-height: 480px;
    padding: 24px 0 42px;
}

.hero-copy,
.page-hero,
.content-card,
.domain-card,
.product-highlight,
.section-grid article,
.identity-panel,
.contact-grid article,
.legal-copy {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.82);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: clamp(32px, 5vw, 58px);
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(240, 231, 213, 0.86));
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.page-hero {
    padding: clamp(32px, 5vw, 54px);
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(235, 228, 214, 0.88));
}

.page-hero h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-strong);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

.lead {
    max-width: 780px;
    margin: 20px 0 0;
    color: #26302d;
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    line-height: 1.25;
    font-weight: 780;
}

p {
    color: var(--muted);
    line-height: 1.72;
}

.hero-copy > p:not(.eyebrow):not(.lead),
.page-hero > p {
    max-width: 780px;
    font-size: 1.04rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-weight: 850;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.68);
}

.button.primary {
    border-color: transparent;
    color: #fffaf0;
    background: linear-gradient(135deg, var(--green), var(--accent-strong));
    box-shadow: 0 16px 34px rgba(47, 111, 99, 0.2);
}

.domain-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    background: #17201d;
}

.domain-card > span,
.section-grid span,
.contact-grid span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.domain-card dl,
.info-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
}

.domain-card dl div,
.info-list div {
    display: grid;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(143, 106, 42, 0.24);
}

dt {
    color: var(--subtle);
    font-weight: 850;
}

.domain-card dt {
    color: #b9c2bd;
}

dd {
    margin: 0;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.domain-card dd {
    color: #fffaf0;
}

.product-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 5vw, 46px);
    margin-bottom: 22px;
}

.product-highlight.standalone {
    margin-bottom: 28px;
}

.product-highlight h2,
.identity-panel h2,
.content-card h2,
.legal-copy h2 {
    margin: 6px 0 12px;
    color: var(--ink);
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1.06;
}

.product-logo-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: #111715;
}

.product-logo-card img {
    display: block;
    width: 100%;
    height: auto;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 22px 0;
}

.section-grid article {
    padding: 24px;
    box-shadow: none;
}

.section-grid h2 {
    margin: 12px 0 8px;
    color: var(--ink);
    font-size: 1.25rem;
}

.section-grid a,
.legal-copy a,
.content-card a,
.page-hero a {
    color: var(--green);
    font-weight: 850;
    text-decoration: none;
}

.section-grid a:hover,
.legal-copy a:hover,
.content-card a:hover,
.page-hero a:hover {
    text-decoration: underline;
}

.identity-panel {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    margin-top: 22px;
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(47, 111, 99, 0.08));
}

.content-card,
.legal-copy {
    padding: 30px;
    margin-bottom: 20px;
}

.legal-copy h2 {
    margin-top: 32px;
    font-size: 1.45rem;
}

.legal-copy h2:first-child {
    margin-top: 0;
}

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

.contact-grid article {
    display: grid;
    gap: 12px;
    padding: 24px;
    box-shadow: none;
}

.contact-grid a {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 850;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #111715;
    color: #ebe4d6;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(140px, 0.7fr));
    gap: 34px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0 34px;
}

.site-footer strong,
.site-footer h2 {
    color: #fffaf0;
}

.site-footer p {
    max-width: 420px;
    margin: 10px 0 0;
    color: #c6cfc8;
}

.footer-logo {
    display: block;
    width: 154px;
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
    filter: brightness(1.08);
}

.site-footer nav {
    display: grid;
    align-content: start;
    gap: 10px;
}

.site-footer h2 {
    margin: 0 0 4px;
    font-size: 0.9rem;
}

.site-footer a {
    color: #c6cfc8;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a.active {
    color: #f2d28b;
}

.footer-preferences {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 18px;
    color: #c6cfc8;
}

.footer-preferences span:first-child {
    color: #fffaf0;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: space-between;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 30px;
    border-top: 1px solid rgba(255, 250, 240, 0.14);
    color: #b7c0ba;
    font-size: 0.9rem;
}

@media (max-width: 920px) {
    .site-header,
    .hero-shell,
    .product-highlight,
    .identity-panel {
        grid-template-columns: 1fr;
    }

    .site-header,
    .identity-panel {
        display: grid;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .section-grid,
    .contact-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .page-shell,
    .page-shell.narrow {
        width: min(100% - 28px, 1180px);
        padding-top: 48px;
    }

    .hero-shell {
        min-height: 0;
        padding-top: 0;
    }
}

@media (max-width: 560px) {
    .site-header {
        width: min(100% - 20px, 1180px);
        margin-top: 10px;
    }

    .brand {
        min-width: 0;
    }

    .site-nav a {
        min-height: 34px;
        padding: 0 9px;
    }

    .hero-copy,
    .page-hero,
    .product-highlight,
    .content-card,
    .legal-copy {
        padding: 22px;
    }
}
