:root {
    --navy: #263f68;
    --navy-dark: #172d4e;
    --green: #5e8f45;
    --green-dark: #3f702f;
    --green-light: #edf4e8;
    --gold: #d5a23c;
    --cream: #f8f7f1;
    --white: #ffffff;
    --ink: #24324a;
    --muted: #657083;
    --line: #dfe4da;
    --shadow: 0 18px 50px rgba(28, 52, 82, 0.12);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 780px; }
.centered { text-align: center; margin-inline: auto; }

.skip-link {
    position: fixed; left: 16px; top: -80px; z-index: 1000;
    padding: 10px 16px; background: var(--navy); color: white; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(248, 247, 241, 0.94);
    border-bottom: 1px solid rgba(38, 63, 104, 0.10);
    backdrop-filter: blur(16px);
}
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 184px; height: 76px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
    text-decoration: none; font-weight: 700; color: var(--navy); padding: 11px 18px; border-radius: 999px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover { background: var(--green-light); transform: translateY(-1px); }
.main-nav a.active { background: var(--navy); color: white; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 12px; background: var(--navy); padding: 12px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: white; }

.hero {
    position: relative; overflow: hidden; padding: 82px 0 96px;
    background:
      radial-gradient(circle at 12% 25%, rgba(94,143,69,.16), transparent 34%),
      radial-gradient(circle at 92% 14%, rgba(213,162,60,.16), transparent 28%),
      linear-gradient(145deg, #fff 0%, #f7f7ef 58%, #edf3e9 100%);
}
.hero::after {
    content: ""; position: absolute; left: -5%; right: -5%; bottom: -80px; height: 160px;
    background: linear-gradient(90deg, var(--navy), #31547e 42%, var(--green) 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    opacity: .98;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 12px; color: var(--green-dark); font-size: .82rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.75rem, 5.5vw, 5.3rem); letter-spacing: -.055em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); letter-spacing: -.035em; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
.hero-lead { max-width: 690px; font-size: 1.18rem; color: #4f5c6e; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 28px; }
.button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px;
    border-radius: 999px; text-decoration: none; font-weight: 800; border: 2px solid transparent; transition: .2s ease;
}
.button-primary { background: var(--navy); color: white; box-shadow: 0 12px 26px rgba(38,63,104,.20); }
.button-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.button-ghost { color: var(--navy); border-color: rgba(38,63,104,.25); background: rgba(255,255,255,.65); }
.button-ghost:hover { border-color: var(--green); color: var(--green-dark); }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px; }
.hero-points span { padding: 8px 13px; border: 1px solid rgba(94,143,69,.3); border-radius: 999px; background: rgba(255,255,255,.75); color: var(--green-dark); font-size: .88rem; font-weight: 750; }
.hero-visual { position: relative; min-height: 500px; }
.hero-photo {
    position: absolute; inset: 28px 0 32px 50px; border-radius: 52% 48% 34% 66% / 38% 42% 58% 62%;
    background: linear-gradient(rgba(23,45,78,.08), rgba(23,45,78,.16)), url('../images/hero-wheat.jpg') center / cover no-repeat;
    box-shadow: var(--shadow); border: 10px solid rgba(255,255,255,.85); transform: rotate(2deg) scale(1.04);
}
.hero-visual::before { content: ""; position: absolute; width: 300px; height: 300px; right: -50px; top: -35px; border: 2px solid rgba(213,162,60,.35); border-radius: 50%; }
.hero-badge {
    position: absolute; left: 0; bottom: 30px; width: 190px; height: 190px; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; border-radius: 50%; color: white; background: var(--navy); border: 8px solid white; box-shadow: var(--shadow);
}
.hero-badge strong { font-size: 4rem; line-height: .9; }
.hero-badge span { font-size: .95rem; font-weight: 750; }

.section { padding: 92px 0; }
.section-soft { background: #f0f4eb; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.section-copy p { color: #566273; font-size: 1.08rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 10px; color: var(--green-dark); font-weight: 850; text-decoration: none; }
.photo-card { margin: 0; overflow: hidden; border-radius: var(--radius); background: white; box-shadow: var(--shadow); border: 1px solid rgba(38,63,104,.08); }
.photo-card img { width: 100%; min-height: 280px; object-fit: cover; }
.photo-card figcaption { padding: 18px 22px; color: var(--navy); font-weight: 750; }
.tall-photo img { min-height: 390px; }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { padding: 30px 26px; background: white; border: 1px solid rgba(38,63,104,.08); border-radius: 20px; box-shadow: 0 12px 30px rgba(38,63,104,.06); }
.feature-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); font-size: 1.55rem; font-weight: 900; }
.feature-card p { margin-bottom: 0; color: var(--muted); }

.product-grid { display: grid; gap: 24px; }
.product-grid-three { grid-template-columns: repeat(3, 1fr); }
.product-card { overflow: hidden; background: white; border: 1px solid rgba(38,63,104,.10); border-radius: var(--radius); box-shadow: 0 16px 36px rgba(38,63,104,.08); }
.product-card.compact img { width: 100%; height: 230px; object-fit: cover; }
.product-card.compact > div { padding: 24px; }
.product-number { color: var(--gold); font-weight: 900; letter-spacing: .12em; }
.product-card h3, .product-card h2 { margin: 6px 0 8px; }
.product-card p { color: var(--muted); }
.section-action { margin-top: 38px; }

.quality-banner { padding: 62px 0; color: white; background: linear-gradient(110deg, var(--navy-dark), var(--navy) 58%, #355e75); }
.quality-inner { display: grid; grid-template-columns: 120px 1fr; gap: 34px; align-items: center; }
.quality-banner h2, .quality-banner .eyebrow { color: white; }
.quality-banner p { margin-bottom: 0; color: rgba(255,255,255,.82); }
.quality-mark { display: grid; place-items: center; width: 106px; height: 106px; border: 3px solid var(--gold); border-radius: 28px; color: var(--gold); font-size: 3.2rem; font-weight: 900; transform: rotate(-4deg); }

.page-hero { position: relative; overflow: hidden; padding: 96px 0 86px; background: linear-gradient(145deg, #fff, #eef3e9); }
.page-hero::before { content: ""; position: absolute; inset: auto 0 0; height: 8px; background: linear-gradient(90deg, var(--navy), var(--green), var(--gold)); }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.page-hero p:not(.eyebrow) { font-size: 1.2rem; color: var(--muted); }
.page-hero-offer { background: linear-gradient(110deg, rgba(255,255,255,.95), rgba(248,247,241,.90)), url('../images/hero-wheat.jpg') center / cover; }
.page-hero-contact { background: radial-gradient(circle at 85% 10%, rgba(213,162,60,.18), transparent 28%), linear-gradient(145deg, #fff, #edf4e8); }
.about-grid { align-items: stretch; }
.two-column-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.info-panel { position: relative; padding: 42px; border-radius: var(--radius); background: white; box-shadow: 0 12px 34px rgba(38,63,104,.06); }
.panel-number { color: var(--gold); font-size: 1.05rem; font-weight: 900; letter-spacing: .16em; }
.info-panel p { color: var(--muted); }
.quality-detail { display: grid; grid-template-columns: 150px 1fr; gap: 44px; align-items: center; max-width: 960px; }
.quality-symbol { display: grid; place-items: center; width: 140px; height: 140px; border-radius: 50%; background: var(--green-light); border: 3px solid var(--green); color: var(--green-dark); font-size: 4.2rem; font-weight: 900; }

.product-list { display: grid; gap: 34px; }
.product-card.detailed { display: grid; grid-template-columns: 330px 1fr; align-items: stretch; }
.product-card.detailed.reverse { grid-template-columns: 1fr 330px; }
.product-card.detailed.reverse img { grid-column: 2; grid-row: 1; }
.product-card.detailed.reverse .product-body { grid-column: 1; grid-row: 1; }
.product-card.detailed img { width: 100%; height: 100%; min-height: 350px; object-fit: cover; }
.product-body { padding: 48px; }
.product-tagline { color: var(--green-dark) !important; font-size: 1.22rem; font-weight: 800; }
.spring-offer { background: var(--green-light); }
.spring-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: center; }
.spring-grid img { width: 100%; min-height: 260px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.order-section { background: white; }


.product-meta {
    margin: 0 0 8px;
    color: #7a8492 !important;
    font-size: .92rem;
    font-weight: 700;
}
.product-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--green-dark);
    font-weight: 850;
    text-decoration: none;
    border-bottom: 2px solid rgba(94,143,69,.22);
    padding-bottom: 3px;
    transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.product-more:hover { color: var(--navy); border-color: var(--gold); gap: 12px; }
.detail-back {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}
.detail-back:hover { color: var(--navy); }
.detail-hero h1 { margin-bottom: 12px; }
.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 72px;
    align-items: center;
}
.product-detail-copy h2 { margin-top: 10px; }
.product-benefits {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}
.product-benefits li {
    position: relative;
    padding: 13px 16px 13px 44px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(38,63,104,.08);
    color: #566273;
}
.product-benefits li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 12px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: .76rem;
    font-weight: 900;
}
.detail-photo {
    margin: 0;
    padding: 12px;
    border-radius: 48% 48% 44% 44% / 34% 34% 66% 66%;
    background: white;
    border: 1px solid rgba(38,63,104,.10);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.detail-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 48% 48% 44% 44% / 34% 34% 66% 66%;
}
.detail-data-section { padding-top: 76px; }
.detail-tables {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}
.detail-table-card {
    padding: 34px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid rgba(38,63,104,.08);
    box-shadow: 0 12px 34px rgba(38,63,104,.06);
}
.detail-table-card h2 { font-size: 1.55rem; margin-bottom: 22px; }
.detail-table-card-wide { grid-column: 1 / -1; }
.spec-list { margin: 0; }
.spec-list > div {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(120px, .65fr);
    gap: 16px;
    padding: 11px 0;
    border-top: 1px solid var(--line);
}
.spec-list > div:first-child { border-top: 0; }
.spec-list dt { color: var(--muted); font-weight: 650; }
.spec-list dd { margin: 0; color: var(--navy); font-weight: 850; text-align: right; }
.spec-list-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 34px; }
.source-note {
    margin-top: 24px;
    padding: 16px 18px;
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: #fffaf0;
    color: #6d6658;
    font-size: .92rem;
}

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; }
.contact-card { padding: 46px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); border: 1px solid rgba(38,63,104,.08); }
.primary-contact { background: linear-gradient(145deg, var(--navy-dark), var(--navy)); color: white; }
.primary-contact h2, .primary-contact .eyebrow { color: white; }
.primary-contact address { font-style: normal; font-size: 1.25rem; margin: 24px 0; }
.primary-contact .button-primary { background: var(--gold); color: var(--navy-dark); box-shadow: none; }
.contact-list { margin: 0 0 28px; }
.contact-list div { display: grid; grid-template-columns: 90px 1fr; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.16); }
.contact-list dt { font-weight: 800; color: rgba(255,255,255,.65); }
.contact-list dd { margin: 0; font-weight: 800; }
.contact-list a { color: white; }
.contact-note { display: flex; flex-direction: column; justify-content: center; }
.contact-icon { color: var(--gold); font-size: 3rem; }
.small-note { margin-top: 24px; padding: 16px; border-radius: 14px; background: var(--green-light); color: var(--muted); font-size: .92rem; }
code { font-family: Consolas, monospace; color: var(--green-dark); }

.contact-form-card h2 { margin-bottom: 10px; }
.form-intro { margin: 0 0 26px; color: var(--muted); }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; gap: 18px; }
.form-row-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { display: grid; gap: 8px; }
.form-field label { color: var(--navy); font-weight: 800; font-size: .94rem; }
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid #cfd7ca;
    border-radius: 13px;
    background: #fbfcf8;
    color: var(--ink);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form-field input,
.form-field select { min-height: 50px; padding: 0 14px; }
.form-field textarea { min-height: 165px; padding: 13px 14px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--green);
    background: white;
    box-shadow: 0 0 0 4px rgba(94,143,69,.13);
}
.form-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: #566273;
    font-size: .94rem;
    cursor: pointer;
}
.form-check input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--green-dark); }
.form-check a { color: var(--green-dark); font-weight: 800; }
.form-check-privacy {
    margin-top: 2px;
    padding: 16px;
    border-radius: 14px;
    background: var(--green-light);
    border: 1px solid rgba(94,143,69,.18);
}
.form-submit { border: 0; cursor: pointer; justify-self: start; }
.form-required { margin: -10px 0 0; color: var(--muted); font-size: .82rem; }
.form-message { margin: 0 0 24px; padding: 16px 18px; border-radius: 14px; }
.form-message strong { display: block; margin-bottom: 3px; }
.form-message span { display: block; margin-top: 4px; }
.form-message ul { margin: 8px 0 0; padding-left: 20px; }
.form-message-success { background: #eef8e9; border: 1px solid #bcd8ae; color: #315d27; }
.form-message-error { background: #fff2ef; border: 1px solid #efc3b8; color: #843a2a; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.privacy-content { max-width: 900px; display: grid; gap: 22px; }
.privacy-card {
    padding: 34px 38px;
    background: white;
    border: 1px solid rgba(38,63,104,.08);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(38,63,104,.05);
}
.privacy-card h2 { margin-bottom: 14px; font-size: 1.45rem; }
.privacy-card p { margin: 10px 0 0; color: #566273; }
.privacy-card a { color: var(--green-dark); font-weight: 800; }
.privacy-date { font-weight: 800; color: var(--navy) !important; }

.site-footer { padding: 72px 0 22px; color: rgba(255,255,255,.82); background: var(--navy-dark); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 70px; }
.footer-brand img { width: 210px; height: 118px; object-fit: contain; object-position: left center; background: rgba(255,255,255,.96); border-radius: 16px; padding: 8px 12px; }
.site-footer h2 { color: white; font-size: 1rem; letter-spacing: .10em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; font-weight: 800; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

@media (max-width: 960px) {
    .hero-grid, .split-layout, .contact-grid, .spring-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 410px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid-three { grid-template-columns: 1fr; }
    .product-card.compact { display: grid; grid-template-columns: 220px 1fr; }
    .product-card.compact img { height: 100%; }
    .product-card.detailed, .product-card.detailed.reverse { grid-template-columns: 260px 1fr; }
    .product-card.detailed.reverse img { grid-column: 1; }
    .product-card.detailed.reverse .product-body { grid-column: 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 78px; }
    .brand { width: 150px; height: 64px; }
    .nav-toggle { display: block; }
    .main-nav { position: absolute; top: 78px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 16px; border-radius: 18px; background: white; box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .main-nav a { text-align: center; }
    .hero { padding-top: 54px; }
    .hero-grid { gap: 36px; }
    .hero-visual { min-height: 330px; }
    .hero-photo { inset: 15px 0 25px 20px; }
    .hero-badge { width: 145px; height: 145px; }
    .hero-badge strong { font-size: 3rem; }
    .section { padding: 68px 0; }
    .feature-grid, .two-column-cards { grid-template-columns: 1fr; }
    .quality-inner, .quality-detail { grid-template-columns: 1fr; text-align: center; }
    .quality-mark, .quality-symbol { margin-inline: auto; }
    .product-card.compact, .product-card.detailed, .product-card.detailed.reverse { display: block; }
    .product-card.compact img, .product-card.detailed img { height: 250px; min-height: 0; }
    .product-body { padding: 28px; }
    .spring-grid { gap: 28px; }
    .contact-card { padding: 30px 24px; }
    .form-row-two { grid-template-columns: 1fr; }
    .form-submit { width: 100%; }
    .privacy-card { padding: 26px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .footer-legal { justify-content: flex-start; }
}


@media (max-width: 960px) {
    .product-detail-layout { grid-template-columns: 1fr 300px; gap: 42px; }
}

@media (max-width: 720px) {
    .product-detail-layout { grid-template-columns: 1fr; }
    .detail-photo { width: min(100%, 360px); margin-inline: auto; }
    .detail-tables { grid-template-columns: 1fr; }
    .detail-table-card-wide { grid-column: auto; }
    .spec-list-columns { grid-template-columns: 1fr; }
    .detail-table-card { padding: 26px 22px; }
    .spec-list > div { grid-template-columns: 1fr; gap: 3px; }
    .spec-list dd { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
