:root {
    --color-primary: #4f6f3a;
    --color-primary-dark: #2f4520;
    --color-secondary: #d5b895;
    --color-surface: #ffffff;
    --color-muted: #6b7280;
    --color-background: #f3eee6;
    --color-border: rgba(79, 111, 58, 0.15);
    --shadow-soft: 0 20px 70px rgba(36, 52, 24, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --max-width: 1100px;
    --transition: all 0.25s ease;
    --font-headings: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: #1f2933;
    background: var(--color-background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover,
a:focus-visible {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

button {
    font: inherit;
}

.container {
    width: min(100% - 2.5rem, var(--max-width));
    margin: 0 auto;
}

.site-header {
    background: linear-gradient(145deg, #2c3a1f, #43562d);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem clamp(1rem, 3vw, 2.5rem);
    padding: 1rem 0.5rem;
}

.brand {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-family: var(--font-headings);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: inherit;
    flex-shrink: 0;
}

.brand img {
    width: clamp(58px, 11vw, 82px);
    height: auto;
    border-radius: 0;
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    max-width: clamp(9.5rem, 18vw, 11.5rem);
}

.brand span strong {
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    letter-spacing: 0.04em;
}

.brand span small {
    font-size: clamp(0.68rem, 1.5vw, 0.8rem);
    color: rgba(255, 255, 255, 0.8);
}

.nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: inherit;
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
}

.nav-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.site-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    flex: 1 1 auto;
    justify-content: flex-end;
    margin-left: clamp(1.5rem, 4vw, 3.5rem);
    flex-wrap: wrap;
    z-index: 2;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    letter-spacing: 0.015em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    text-decoration: none;
}

.site-nav a.is-active {
    background: rgba(213, 184, 149, 0.2);
    color: #ffffff;
    border: 1px solid rgba(213, 184, 149, 0.35);
    box-shadow: inset 0 0 0 1px rgba(213, 184, 149, 0.15);
}

.hero {
    position: relative;
    color: #ffffff;
    overflow: hidden;
    min-height: clamp(320px, 52vh, 460px);
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 25, 14, 0.6), rgba(26, 37, 19, 0.9));
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("wood7.JPG") center / cover no-repeat;
    transform: scale(1.05);
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    display: grid;
    gap: 1.5rem;
    max-width: 640px;
}

.hero h1 {
    font-family: var(--font-headings);
    font-size: clamp(2.1rem, 4vw, 3rem);
    margin: 0;
    letter-spacing: -0.01em;
}

.hero p {
    margin: 0;
    font-size: clamp(1.05rem, 2.6vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--color-secondary);
    color: #2c1b07;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(100, 74, 40, 0.25);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(100, 74, 40, 0.28);
    text-decoration: none;
}

.button.is-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: none;
}

.button.is-secondary:hover,
.button.is-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.22);
}

main {
    flex: 1;
}

.content {
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.65rem;
}

.section-header {
    display: grid;
    gap: 0.75rem;
    max-width: 640px;
}

.section-header h2 {
    margin: 0;
    font-family: var(--font-headings);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    letter-spacing: -0.01em;
}

.section-header p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

.card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-family: var(--font-headings);
}

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

.card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #374151;
    display: grid;
    gap: 0.35rem;
}

.card ul li {
    line-height: 1.5;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.content-card {
    background: var(--color-surface);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    line-height: 1.6;
    color: #374151;
    display: grid;
    gap: 1rem;
    border: 1px solid var(--color-border);
}

.content-card h2,
.content-card h3 {
    margin: 0;
    font-family: var(--font-headings);
}

.content-card h2 {
    font-size: clamp(1.55rem, 2.6vw, 1.95rem);
}

.content-card h3 {
    font-size: 1.25rem;
    color: #2d3a1f;
}

.content-card ul {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.4rem;
}

.highlight {
    background: linear-gradient(135deg, rgba(213, 184, 149, 0.25), rgba(223, 204, 180, 0.35));
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border-left: 4px solid rgba(47, 69, 32, 0.6);
}

.stat {
    display: grid;
    gap: 0.35rem;
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.stat strong {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    color: var(--color-primary);
}

.product-grid {
    display: grid;
    gap: 1.5rem;
}

.product-grid section {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1rem;
}

.product-grid h3 {
    margin: 0;
    font-family: var(--font-headings);
    font-size: 1.35rem;
}

.product-grid .tagline {
    margin: 0;
    color: var(--color-muted);
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(79, 111, 58, 0.08);
    color: #1f2933;
    font-size: 0.95rem;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.98rem;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

thead {
    background: rgba(79, 111, 58, 0.08);
    color: #2d3a1f;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

th,
td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(79, 111, 58, 0.08);
}

tbody tr:hover {
    background: rgba(79, 111, 58, 0.05);
}

.contact-card {
    display: grid;
    gap: 0.85rem;
    background: var(--color-surface);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.contact-card a {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.map {
    border: none;
    width: 100%;
    height: 320px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.15);
}

.converter {
    display: grid;
    gap: 1.5rem;
    background: var(--color-surface);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.converter form {
    display: grid;
    gap: 1rem;
}

.converter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.input-group {
    display: grid;
    gap: 0.35rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

input[type="number"],
select,
input[type="text"] {
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(31, 41, 51, 0.12);
    background: rgba(255, 255, 255, 0.92);
    transition: var(--transition);
    font: inherit;
}

input:focus-visible,
select:focus-visible {
    outline: none;
    border-color: rgba(79, 111, 58, 0.6);
    box-shadow: 0 0 0 3px rgba(79, 111, 58, 0.18);
}

.converter-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.site-footer {
    background: #1c2414;
    color: rgba(255, 255, 255, 0.78);
    padding: 2.5rem 0;
    margin-top: auto;
}

.footer-inner {
    display: grid;
    gap: 1.2rem;
    justify-items: center;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav a {
    color: inherit;
    font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: #ffffff;
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.page-hero {
    background: linear-gradient(135deg, rgba(79, 111, 58, 0.12), rgba(213, 184, 149, 0.2));
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
    margin: 0;
    font-family: var(--font-headings);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    letter-spacing: -0.01em;
}

.page-hero p {
    margin: 0.75rem 0 0;
    max-width: 640px;
    color: #374151;
    font-size: 1.05rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(79, 111, 58, 0.12);
    color: #1f2933;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.callout {
    display: grid;
    gap: 0.75rem;
    background: rgba(47, 69, 32, 0.08);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border-left: 4px solid rgba(47, 69, 32, 0.45);
}

.callout strong {
    font-family: var(--font-headings);
    font-size: 1.05rem;
}

.responsive-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(17, 24, 39, 0.15);
}

iframe,
video {
    max-width: 100%;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
}

@media (max-width: 960px) {
    .site-nav {
        position: absolute;
        inset: 100% auto auto 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: rgba(28, 36, 20, 0.96);
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.75rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        margin-left: 0;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        width: 100%;
    }
}

@media (min-width: 961px) {
    .nav-toggle {
        display: none;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero::after {
        filter: brightness(0.8);
    }
}
