:root {
    --green-950: #10271a;
    --green-900: #173524;
    --green-800: #214730;
    --green-700: #2d6141;
    --green-600: #3e7d53;
    --green-100: #dfeee3;
    --green-50: #eff7f1;
    --gold-500: #d8b500;
    --gold-400: #efd51a;
    --ink: #183126;
    --muted: #617267;
    --cream: #f8f7f0;
    --surface: #ffffff;
    --line: #dbe5de;
    --danger: #a43333;
    --success: #24653c;
    --shadow-sm: 0 5px 18px rgba(21, 55, 35, .08);
    --shadow-md: 0 18px 55px rgba(21, 55, 35, .12);
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    --container: min(1180px, calc(100% - 40px));
    --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font: 400 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--green-950); letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(3rem, 6.5vw, 6rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); margin-bottom: 22px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
p { margin-bottom: 20px; }
address { font-style: normal; }
.container { width: var(--container); margin-inline: auto; }
.container--narrow { max-width: 780px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 15px;
    color: white; background: var(--green-950); border-radius: 8px; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px;
    color: var(--green-700); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 3px; content: ""; background: var(--gold-500); border-radius: 2px; }
.eyebrow--light { color: #dcebe0; }
.lead { max-width: 690px; color: #52685a; font-size: clamp(1.12rem, 1.8vw, 1.35rem); line-height: 1.65; }
.lead-small { color: #435c4c; font-size: 1.14rem; line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 13px 24px;
    border: 1px solid var(--green-700); border-radius: 99px; color: white; background: var(--green-700);
    box-shadow: 0 8px 22px rgba(45, 97, 65, .18); font-size: .93rem; font-weight: 800; letter-spacing: .01em;
    transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s;
}
.button:hover { background: var(--green-800); box-shadow: 0 12px 30px rgba(45, 97, 65, .25); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 9px 18px !important; color: white !important; }
.button--outline { color: var(--green-800); background: transparent; box-shadow: none; }
.button--outline:hover { color: white; }
.button--light { color: var(--green-950); background: white; border-color: white; }
.button--light:hover { color: white; background: transparent; }
.button--ghost-light { color: white; background: transparent; border-color: rgba(255,255,255,.45); box-shadow: none; }
.button--ghost-light:hover { color: var(--green-950); background: white; }
.button--disabled { color: #6f756f; background: #e5e8e5; border-color: #e5e8e5; box-shadow: none; cursor: not-allowed; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--green-700); font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link--dark { color: var(--green-900); }
.card-link { display: inline-flex; gap: 10px; align-items: center; margin-top: auto; color: var(--green-700); font-size: .92rem; font-weight: 800; }
.card-link b { transition: transform .2s; }
a:hover .card-link b, .card-link:hover b { transform: translateX(4px); }

.announcement { position: relative; z-index: 40; color: white; background: var(--green-900); font-size: .88rem; }
.announcement__inner { display: flex; justify-content: center; gap: 18px; padding: 8px 0; text-align: center; }
.announcement a { color: var(--gold-400); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.site-header {
    position: sticky; z-index: 35; top: 0; border-bottom: 1px solid rgba(29, 61, 41, .08);
    background: rgba(255, 255, 255, .91); backdrop-filter: blur(18px); transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 210px; }
.brand img { width: 210px; max-height: 66px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav > a, .nav-group > button {
    padding: 12px 14px; border: 0; color: #314d3b; background: transparent; font-size: .91rem; font-weight: 750;
}
.primary-nav > a:hover, .primary-nav > a[aria-current="page"], .nav-group > button:hover { color: var(--green-700); }
.nav-group { position: relative; }
.nav-group > button { display: flex; gap: 6px; align-items: center; }
.nav-dropdown {
    position: absolute; top: calc(100% + 10px); left: 0; display: grid; min-width: 225px; padding: 10px;
    border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s var(--ease);
}
.nav-dropdown a { padding: 10px 12px; border-radius: 9px; color: #3d5847; font-size: .9rem; font-weight: 700; }
.nav-dropdown a:hover { color: var(--green-800); background: var(--green-50); }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown, .nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 50%; background: var(--green-50); }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--green-900); transition: .2s; }

.hero {
    position: relative; min-height: 720px; overflow: hidden;
    background: linear-gradient(135deg, #f5f8f1 0%, #fff 50%, #f3f6e3 100%);
}
.hero::after {
    position: absolute; right: -8%; bottom: -20%; width: 48vw; height: 48vw; content: "";
    border: 1px solid rgba(59, 113, 75, .12); border-radius: 50%;
}
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; min-height: 720px; align-items: center; gap: 70px; padding-block: 70px; }
.hero__content .lead { max-width: 630px; margin-bottom: 30px; }
.hero__content h1 { max-width: 710px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 24px 34px; margin-top: 40px; padding-top: 27px; border-top: 1px solid var(--line); }
.hero__facts > div { display: flex; align-items: center; gap: 12px; }
.hero__facts span:last-child { display: grid; color: var(--muted); font-size: .82rem; }
.hero__facts strong { color: var(--ink); font-size: .86rem; }
.icon-chip { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--green-800); background: var(--green-100); font-weight: 800; }
.hero__visual { position: relative; min-height: 570px; }
.hero__image-wrap {
    position: absolute; inset: 10px 25px 0 50px; overflow: hidden; border-radius: 48% 48% 26px 26px;
    background: var(--green-100); box-shadow: var(--shadow-md);
}
.hero__image-wrap::after { position: absolute; inset: 0; content: ""; box-shadow: inset 0 -80px 100px rgba(17, 54, 31, .13); pointer-events: none; }
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
    position: absolute; z-index: 2; display: flex; gap: 13px; align-items: center; width: min(260px, 70%); padding: 15px;
    border: 1px solid rgba(255,255,255,.8); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(8px);
}
.floating-card--top { top: 56px; right: -16px; }
.floating-card--bottom { bottom: 38px; left: 0; }
.floating-card div { display: grid; }
.floating-card strong { color: var(--green-900); font-size: .86rem; }
.floating-card span:last-child { color: var(--muted); font-size: .75rem; }
.metric-icon { display: grid; flex: 0 0 40px; height: 40px; place-items: center; border-radius: 12px; color: var(--green-900); background: var(--gold-400); font-weight: 900; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero__orb--one { top: 7%; right: 39%; width: 130px; height: 130px; background: rgba(239, 213, 26, .12); }
.hero__orb--two { bottom: 8%; left: -4%; width: 250px; height: 250px; border: 1px solid rgba(45, 97, 65, .1); }
.trust-strip { border-block: 1px solid var(--line); background: white; }
.trust-strip__grid { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 20px; }
.trust-strip span { color: var(--muted); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trust-strip strong { color: var(--green-800); font-size: .9rem; }
.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); }

.section { padding-block: clamp(80px, 10vw, 130px); }
.section--tight { padding-top: 44px; }
.section--tint { background: var(--green-50); }
.section--dark { color: white; background: var(--green-950); }
.section--dark h2, .section--dark h3 { color: white; }
.section-heading { max-width: 750px; margin-bottom: 52px; }
.section-heading--split { display: grid; grid-template-columns: 1.2fr .8fr; max-width: none; align-items: end; gap: 80px; }
.section-heading--split h2 { margin-bottom: 0; }
.section-heading--split p { color: var(--muted); }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { max-width: 680px; margin-inline: auto; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
    position: relative; display: flex; min-height: 325px; flex-direction: column; padding: 34px; overflow: hidden;
    border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.service-card:hover { border-color: #bbd1c1; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.service-card--feature { grid-row: span 2; display: grid; grid-template-columns: 1fr; min-height: 672px; padding: 0; }
.service-card__media { min-height: 355px; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform .6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.035); }
.service-card__body { display: flex; flex-direction: column; padding: 34px; }
.service-card h3 { font-size: 1.65rem; }
.service-card p { max-width: 490px; color: var(--muted); }
.service-card__icon { display: grid; width: 58px; height: 58px; margin-bottom: 45px; place-items: center; border-radius: 17px; color: var(--green-900); background: var(--green-100); font-size: 1.06rem; font-weight: 900; box-shadow: 0 9px 22px rgba(45, 97, 65, .11); }
.card-kicker { margin-bottom: 8px; color: var(--green-600); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.split-feature { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(55px, 8vw, 105px); }
.split-feature__media { position: relative; min-height: 620px; }
.image-panel { position: absolute; inset: 0 45px 55px 0; overflow: hidden; border-radius: var(--radius-lg); background: #dbe7dd; box-shadow: var(--shadow-md); }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.image-panel--fit3d img { object-position: center; }
.material-note { position: absolute; right: 0; bottom: 0; display: grid; max-width: 280px; padding: 20px; border-radius: 16px; color: white; background: var(--green-800); box-shadow: var(--shadow-md); }
.material-note span { color: #d1e2d5; font-size: .82rem; }
.split-feature__content .lead-small { margin-bottom: 28px; }
.steps { display: grid; gap: 0; padding: 0; margin: 0 0 34px; list-style: none; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 19px 0; border-top: 1px solid #cfe0d3; }
.steps li > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--green-800); background: white; font-size: .77rem; font-weight: 900; }
.steps h3 { margin-bottom: 6px; font-size: 1.07rem; }
.steps p { margin: 0; color: var(--muted); font-size: .9rem; }

.food-feature { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.food-feature--reverse { grid-template-columns: 1.1fr .9fr; }
.food-feature__content p { max-width: 590px; color: var(--muted); }
.food-feature__media { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.food-feature__media img { width: 100%; min-height: 420px; object-fit: cover; }
.food-feature__media::after { position: absolute; inset: 0; content: ""; border: 12px solid rgba(255,255,255,.26); border-radius: inherit; pointer-events: none; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0; }
.check-grid span { display: flex; align-items: center; gap: 10px; color: var(--green-900); font-size: .91rem; font-weight: 750; }
.check-grid b { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: var(--green-900); background: var(--gold-400); font-size: .73rem; }
.quick-contact { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.quick-contact p { max-width: 520px; color: #bcd0c2; }
.contact-cards { display: grid; gap: 12px; }
.contact-cards a { display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.05); transition: background .2s, transform .2s; }
.contact-cards a:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.contact-cards a > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; color: var(--green-950); background: var(--gold-400); }
.contact-cards a div { display: grid; }
.contact-cards small { color: #a9c0af; }

.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-50), white); }
.page-hero::after { position: absolute; right: -8%; bottom: -40%; width: 500px; height: 500px; content: ""; border: 70px solid rgba(216,181,0,.06); border-radius: 50%; }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; min-height: 650px; align-items: center; gap: 80px; padding-block: 70px; }
.page-hero__grid--reverse { grid-template-columns: .85fr 1.15fr; }
.page-hero__grid--reverse .page-hero__image { order: -1; }
.page-hero h1 { font-size: clamp(3.3rem, 6vw, 5.6rem); }
.page-hero__image { align-self: stretch; max-height: 560px; overflow: hidden; border-radius: 42% 42% 28px 28px; box-shadow: var(--shadow-md); }
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__image--contain { padding: 28px; border-radius: var(--radius-lg); background: #dae5da; }
.page-hero__image--contain img { object-fit: contain; }
.page-hero--soft { background: #f3f7ee; }
.page-hero--kitchen .page-hero__image { align-self: center; max-height: 440px; border-radius: var(--radius-lg); }
.page-intro { padding: 105px 0 58px; background: linear-gradient(135deg, var(--green-50), #fff); text-align: center; }
.page-intro .eyebrow { justify-content: center; }
.page-intro h1 { max-width: 980px; margin-inline: auto; }
.page-intro .lead { margin-inline: auto; }
.page-intro .button-row { justify-content: center; }

.process-grid, .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-grid article, .values-grid article { padding: 30px; background: white; border-right: 1px solid var(--line); }
.process-grid article:last-child, .values-grid article:last-child { border: 0; }
.process-grid article > span, .values-grid article > span { display: block; margin-bottom: 52px; color: var(--green-600); font-size: .76rem; font-weight: 900; }
.process-grid p, .values-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.two-column { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 9vw, 120px); }
.two-column--balanced { grid-template-columns: 1fr 1fr; align-items: center; }
.stack-list { display: grid; border-top: 1px solid #cbdacf; }
.stack-list > * { display: grid; gap: 3px; padding: 20px 8px; border-bottom: 1px solid #cbdacf; transition: padding .2s, background .2s; }
.stack-list a:hover { padding-left: 16px; background: rgba(255,255,255,.5); }
.stack-list span { color: var(--green-900); font-weight: 850; }
.stack-list b { color: var(--muted); font-size: .88rem; font-weight: 500; }
.notice-card { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: clamp(32px, 5vw, 60px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); }
.notice-card h2 { max-width: 700px; }
.notice-card p { max-width: 720px; color: var(--muted); }
.notice-card--dark { border-color: rgba(255,255,255,.14); background: #1c3c29; }
.notice-card--dark p { color: #c2d3c6; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-grid article { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.info-grid article > span { display: grid; width: 56px; height: 56px; margin-bottom: 45px; place-items: center; border-radius: 18px; color: var(--green-900); background: var(--green-100); font-size: 1.25rem; font-weight: 900; }
.info-grid p { margin: 0; color: var(--muted); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.accordion { border-top: 1px solid #cbdacf; }
.accordion details { border-bottom: 1px solid #cbdacf; }
.accordion summary { position: relative; padding: 22px 44px 22px 0; color: var(--green-950); font-weight: 850; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; top: 19px; right: 4px; display: grid; width: 30px; height: 30px; place-items: center; content: "+"; border-radius: 50%; background: white; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { padding-right: 40px; color: var(--muted); }
.material-list { display: grid; gap: 12px; }
.material-list > div { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; padding: 22px; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.material-list b { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: var(--green-900); background: var(--gold-400); font-size: .8rem; }
.material-list span { display: grid; color: var(--muted); }
.material-list strong { color: var(--green-950); }
.location-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 55px; border-radius: var(--radius-lg); background: var(--green-50); }
.map-placeholder { display: grid; min-height: 330px; place-content: center; border-radius: var(--radius); color: white; background: radial-gradient(circle at 65% 20%, #477c58, var(--green-900)); text-align: center; box-shadow: var(--shadow-md); }
.map-placeholder > span { font-size: 3rem; }
.map-placeholder strong { font-size: 1.35rem; }
.map-placeholder small { color: #c7d9cb; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 30px; align-items: start; }
.contact-info { display: grid; gap: 12px; padding: 28px; border-radius: var(--radius); color: white; background: var(--green-900); box-shadow: var(--shadow-md); }
.contact-info > a:not(.button), .contact-info > div { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 12px; background: rgba(255,255,255,.06); }
.contact-info > a:not(.button):hover { background: rgba(255,255,255,.11); }
.contact-info > * > span { display: grid; flex: 0 0 38px; height: 38px; place-items: center; border-radius: 11px; color: var(--green-950); background: var(--gold-400); }
.contact-info > * > div { display: grid; }
.contact-info small { color: #bcd0c2; }
.contact-info strong { font-size: .92rem; }
.contact-info .button { margin-top: 10px; color: var(--green-950); background: white; }
.form-card { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--green-950); font-size: .84rem; font-weight: 800; }
label > span { color: var(--danger); }
input, textarea, select {
    width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #c7d6cb; border-radius: 11px;
    color: var(--ink); background: white; outline: 0; transition: border-color .2s, box-shadow .2s;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(62, 125, 83, .12); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-footer p { max-width: 430px; margin: 0; color: var(--muted); font-size: .75rem; }
.honeypot { position: absolute !important; left: -10000px !important; }
.alert { margin-bottom: 24px; padding: 14px 16px; border-radius: 11px; font-size: .9rem; }
.alert ul { margin-bottom: 0; padding-left: 20px; }
.alert--success { color: #194b2d; background: #e1f3e7; border: 1px solid #b8dfc4; }
.alert--error { color: #782525; background: #fff0f0; border: 1px solid #efcaca; }
.financing-card { display: grid; grid-template-columns: 240px 1fr; align-items: center; gap: 55px; padding: 55px; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.financing-mark { display: grid; width: 200px; height: 150px; place-content: center; border-radius: 20px; color: white; background: linear-gradient(135deg, #33745c, #173524); font-size: 1.6rem; line-height: .9; text-align: center; box-shadow: var(--shadow-md); }
.financing-mark strong { color: var(--gold-400); font-size: 2rem; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { display: flex; min-height: 320px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.post-card > span, .article__header span { margin-bottom: 22px; color: var(--green-600); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.post-card h2 { font-size: 1.5rem; }
.post-card p { color: var(--muted); }
.empty-state { max-width: 700px; margin: 0 auto; padding: 60px; border: 1px dashed #b6cbbd; border-radius: var(--radius); background: var(--green-50); text-align: center; }
.empty-state > span { font-size: 2rem; }
.article__header { padding: 85px 0 55px; background: var(--green-50); }
.article__header h1 { font-size: clamp(2.8rem, 5.5vw, 4.9rem); }
.back-link { display: inline-block; margin-bottom: 32px; color: var(--green-700); font-weight: 800; }
.prose { padding-block: 70px; color: #334b3c; font-size: 1.06rem; }
.prose h2 { margin: 2em 0 .7em; font-size: 2rem; }
.prose h3 { margin: 1.7em 0 .6em; }
.prose a { color: var(--green-700); font-weight: 750; text-decoration: underline; }
.prose img { margin-block: 30px; border-radius: 18px; }
.prose blockquote { margin: 30px 0; padding: 10px 26px; border-left: 4px solid var(--gold-500); color: #506557; }

.cta-band { color: white; background: var(--green-700); }
.cta-band__inner { display: flex; min-height: 270px; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 700px; margin: 0; color: white; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.site-footer { padding-top: 70px; color: #bcd0c2; background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; padding-bottom: 60px; }
.footer-brand img { width: 215px; height: 90px; margin-bottom: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 320px; }
.footer-grid h2 { margin-bottom: 18px; color: white; font-size: .81rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid a { font-size: .88rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-grid address, .footer-grid p { margin: 0; font-size: .88rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
    :root { --container: min(100% - 32px, 900px); }
    .menu-toggle { display: block; }
    .primary-nav {
        position: fixed; inset: 84px 0 auto; display: flex; max-height: calc(100vh - 84px); flex-direction: column; align-items: stretch;
        gap: 2px; padding: 18px 24px 30px; overflow-y: auto; border-top: 1px solid var(--line); background: white;
        opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s var(--ease);
    }
    .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .primary-nav > a, .nav-group > button { width: 100%; justify-content: space-between; padding: 13px 8px; text-align: left; }
    .primary-nav .button { margin-top: 8px; text-align: center; }
    .nav-dropdown { position: static; display: none; padding: 2px 0 8px 15px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .nav-group.is-open .nav-dropdown { display: grid; }
    .nav-group:hover .nav-dropdown:not(.nav-group.is-open .nav-dropdown) { display: none; }
    .hero__grid, .page-hero__grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .hero__visual { min-height: 510px; }
    .hero__image-wrap { left: 0; }
    .floating-card--top { right: 0; }
    .section-heading--split { gap: 40px; }
    .split-feature { gap: 50px; }
    .split-feature__media { min-height: 540px; }
    .quick-contact { gap: 40px; }
    .process-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid article:nth-child(2), .values-grid article:nth-child(2) { border-right: 0; }
    .process-grid article:nth-child(-n+2), .values-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .faq-layout { gap: 50px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
    :root { --container: min(100% - 28px, 640px); --radius-lg: 25px; }
    h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
    h2 { font-size: clamp(2rem, 10vw, 3rem); }
    .brand { flex-basis: 170px; }
    .brand img { width: 170px; }
    .header__inner { min-height: 76px; }
    .primary-nav { top: 76px; max-height: calc(100vh - 76px); }
    .announcement__inner { flex-direction: column; gap: 0; }
    .hero { min-height: auto; }
    .hero__grid, .page-hero__grid, .page-hero__grid--reverse { grid-template-columns: 1fr; min-height: auto; gap: 45px; padding-block: 60px; }
    .hero__content { text-align: left; }
    .hero__content h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
    .hero__visual { min-height: 490px; }
    .hero__image-wrap { inset: 0 14px 0 24px; }
    .floating-card--top { top: 26px; }
    .floating-card--bottom { bottom: 24px; }
    .hero__facts { gap: 18px; }
    .trust-strip__grid { flex-wrap: wrap; justify-content: center; gap: 10px 18px; padding-block: 20px; }
    .trust-strip__grid > span { width: 100%; text-align: center; }
    .section { padding-block: 78px; }
    .section--tight { padding-top: 28px; }
    .section-heading--split { grid-template-columns: 1fr; gap: 18px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card--feature { grid-row: auto; min-height: 0; }
    .service-card { min-height: 290px; padding: 28px; }
    .service-card--feature { padding: 0; }
    .service-card__media { min-height: 290px; }
    .service-card__body { padding: 28px; }
    .split-feature, .food-feature, .food-feature--reverse, .quick-contact, .two-column, .two-column--balanced, .faq-layout, .location-panel, .contact-layout, .financing-card { grid-template-columns: 1fr; }
    .split-feature__media { min-height: 500px; }
    .food-feature__media { order: -1; }
    .food-feature--reverse .food-feature__media { order: 0; }
    .food-feature__media img { min-height: 300px; }
    .check-grid { grid-template-columns: 1fr; }
    .quick-contact { gap: 28px; }
    .page-hero__grid--reverse .page-hero__image { order: 0; }
    .page-hero__image { min-height: 420px; max-height: 500px; }
    .page-hero--kitchen .page-hero__image { min-height: 290px; }
    .page-intro { padding-top: 72px; }
    .process-grid, .values-grid, .info-grid, .post-grid { grid-template-columns: 1fr; }
    .process-grid article, .values-grid article, .process-grid article:nth-child(2), .values-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
    .process-grid article:last-child, .values-grid article:last-child { border-bottom: 0; }
    .process-grid article > span, .values-grid article > span { margin-bottom: 28px; }
    .notice-card { align-items: flex-start; flex-direction: column; }
    .location-panel { padding: 30px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .form-footer .button { width: 100%; }
    .financing-card { gap: 30px; padding: 32px; }
    .financing-mark { width: 100%; }
    .empty-state { padding: 40px 24px; }
    .cta-band__inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 55px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 460px) {
    .button-row { align-items: stretch; flex-direction: column; }
    .button-row .button { width: 100%; }
    .button-row .text-link { justify-content: center; min-height: 48px; }
    .hero__visual { min-height: 430px; }
    .floating-card { width: 76%; padding: 11px; }
    .floating-card--top { top: 18px; }
    .floating-card--bottom { left: 4px; bottom: 18px; }
    .hero__facts { display: grid; }
    .page-hero__image { min-height: 380px; }
    .split-feature__media { min-height: 430px; }
    .image-panel { right: 20px; bottom: 40px; }
    .material-note { max-width: 245px; padding: 15px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
