:root {
    --bg: #edf2df;
    --bg-2: #f7f8f0;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --text: #22331a;
    --muted: #607056;
    --line: rgba(37, 68, 18, 0.12);
    --shadow: 0 22px 60px rgba(36, 61, 23, 0.14);
    --shadow-strong: 0 30px 90px rgba(36, 61, 23, 0.2);
    --primary: #2f5a14;
    --primary-2: #4f7b1a;
    --accent: #b1ca62;
    --accent-2: #e7edd2;
    --gold: #d8b765;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(177, 202, 98, 0.24), transparent 24%),
        radial-gradient(circle at 90% 0%, rgba(79, 123, 26, 0.18), transparent 20%),
        linear-gradient(180deg, #f3f6ea 0%, #edf2df 36%, #e7edd2 100%);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.top-strip {
    background: linear-gradient(180deg, #144f22 0%, #0f401b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip-inner {
    min-height: 0;
}

.top-contacts,
.top-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.header-info {
    background: rgba(236, 243, 226, 0.95);
    border-bottom: 1px solid rgba(36, 61, 23, 0.08);
}

.header-info-inner {
    min-height: 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
}

.top-contacts a:hover,
.top-social a:hover {
    color: #d7f0bc;
}

.top-social a,
.social-links a {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-social a svg,
.social-links a svg {
    width: 20px;
    height: 20px;
    display: block;
}

.top-social a {
    background: rgba(47, 90, 20, 0.08);
    border: 1px solid rgba(36, 61, 23, 0.12);
    color: var(--primary);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(16, 65, 29, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #f4f8ea;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo {
    width: 220px;
    height: auto;
    flex: 0 0 auto;
}

.brand-copy {
    display: none;
}

.brand-copy strong,
h1, h2, h3, h4 {
    font-family: "Fraunces", Georgia, serif;
    letter-spacing: -0.02em;
}

.brand-copy strong {
    font-size: 1.15rem;
    line-height: 1.1;
}

.brand-copy small {
    color: rgba(244, 248, 234, 0.75);
    font-size: 0.84rem;
}

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

.site-nav a {
    color: rgba(244, 248, 234, 0.88);
    font-weight: 800;
    letter-spacing: 0.01em;
    padding: 12px 14px;
    border-radius: 12px;
    transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font: inherit;
    font-weight: 800;
    padding: 12px 16px;
}

main {
    overflow: hidden;
}

.hero {
    padding: 36px 0 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
}

.hero-copy {
    padding: 26px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(47, 90, 20, 0.09);
    border: 1px solid rgba(47, 90, 20, 0.12);
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: 0.95;
    max-width: 11ch;
}

.hero p {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.03rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #f7fbef;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(36, 61, 23, 0.14);
    color: var(--primary);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.trust-chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(36, 61, 23, 0.1);
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-mosaic {
    height: 100%;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    grid-template-rows: 1fr 220px;
    gap: 16px;
}

.mosaic-main,
.mosaic-card,
.visual-card,
.feature-card,
.stat-card,
.contact-card,
.form-card,
.panel {
    background: var(--surface);
    border: 1px solid rgba(36, 61, 23, 0.1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.mosaic-main {
    grid-row: 1 / span 2;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.mosaic-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 20, 4, 0.08), rgba(8, 20, 4, 0));
    pointer-events: none;
}

.mosaic-caption {
    position: absolute;
    left: 22px;
    bottom: 22px;
    right: 22px;
    z-index: 1;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(23, 41, 8, 0.74);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mosaic-caption strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.mosaic-caption span {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
}

.mosaic-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.mosaic-card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-tag {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    position: absolute;
    left: -2px;
    bottom: -18px;
    width: min(510px, 88%);
}

.stat-card {
    border-radius: 22px;
    padding: 18px 18px 16px;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    font-family: "Fraunces", Georgia, serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: 46px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 22px;
}

.section-head h2,
.section-head h1 {
    margin: 10px 0 0;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.02;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 54ch;
    line-height: 1.75;
}

.section-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(47, 90, 20, 0.08);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.range-card,
.feature-card,
.info-card,
.contact-card,
.form-card,
.panel {
    border-radius: 28px;
}

.range-card,
.feature-card,
.info-card {
    padding: 22px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.range-card:hover,
.feature-card:hover,
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.range-image {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 18px;
    position: relative;
}

.range-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.range-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.range-card h3,
.feature-card h3,
.info-card h3,
.contact-card h3,
.form-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.range-card p,
.feature-card p,
.info-card p,
.contact-card p,
.form-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.card-meta {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(47, 90, 20, 0.08);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.82rem;
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: start;
}

.visual-card {
    padding: 18px;
    border-radius: 30px;
    overflow: hidden;
}

.visual-card figure {
    margin: 0;
}

.visual-card img {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
}

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

.gallery-grid .feature-card,
.gallery-grid .visual-card {
    min-height: 100%;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.9;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(36, 61, 23, 0.08);
}

.timeline-item strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    flex: 0 0 auto;
    font-family: "Fraunces", Georgia, serif;
}

.timeline-item span {
    color: var(--muted);
    line-height: 1.7;
}

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

.product-card {
    border-radius: 28px;
    overflow: hidden;
    background: var(--surface-strong);
    border: 1px solid rgba(36, 61, 23, 0.1);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.product-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #dde7cc;
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-photo .range-badge {
    top: 14px;
    left: 14px;
}

.product-body {
    padding: 18px 18px 20px;
}

.product-body h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.product-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.product-link {
    display: inline-flex;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 20px;
    align-items: start;
}

.form-card,
.contact-card {
    overflow: hidden;
}

.form-card,
.contact-card .contact-inner {
    padding: 24px;
}

.contact-card .contact-banner {
    aspect-ratio: 16 / 9;
}

.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.field label {
    font-weight: 800;
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(36, 61, 23, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    padding: 14px 16px;
    font: inherit;
}

.field textarea {
    min-height: 170px;
    resize: vertical;
}

.notice {
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(36, 61, 23, 0.12);
    background: rgba(255, 255, 255, 0.76);
}

.notice.success {
    background: rgba(140, 178, 82, 0.15);
}

.notice.error {
    background: rgba(191, 73, 73, 0.14);
}

.map-frame {
    display: block;
    border: 0;
    width: 100%;
    min-height: 320px;
    border-radius: 0 0 28px 28px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 61, 23, 0.1);
    color: var(--primary);
}

.site-footer {
    margin-top: 24px;
    padding: 34px 0 18px;
    background: linear-gradient(180deg, rgba(43, 72, 18, 0.98), rgba(31, 51, 13, 0.98));
    color: #f3f6e7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}

.footer-grid p {
    color: rgba(243, 246, 231, 0.82);
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(243, 246, 231, 0.72);
}

.section-cta {
    padding: 22px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(177, 202, 98, 0.26), transparent 28%),
        linear-gradient(135deg, rgba(47, 90, 20, 0.98), rgba(64, 103, 24, 0.98));
    color: #f5f9ea;
    box-shadow: var(--shadow-strong);
}

.section-cta p {
    color: rgba(245, 249, 234, 0.82);
}

.clean-hero {
    padding: 34px 0 18px;
}

.clean-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
}

.clean-hero-copy h1 {
    margin: 14px 0 14px;
    font-size: clamp(2.8rem, 5vw, 5.1rem);
    line-height: 0.98;
    max-width: 11ch;
}

.clean-hero-copy p {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.03rem;
}

.clean-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.clean-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(47, 90, 20, 0.08);
    border: 1px solid rgba(47, 90, 20, 0.1);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.92rem;
}

.clean-hero-visual {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    background: #dce7c8;
}

.clean-hero-visual img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.clean-head h2 {
    max-width: 14ch;
}

.clean-statements .statement-card {
    min-height: 220px;
    color: #f4f8ea;
}

.clean-statements .statement-card h3 {
    font-size: 1.75rem;
}

.about-band {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: stretch;
}

.about-band-copy,
.about-band-image {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.about-band-copy {
    padding: 28px;
    display: grid;
    align-content: center;
}

.about-band-copy h2 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.05;
}

.about-band-copy p {
    margin: 0;
    line-height: 1.85;
    color: var(--muted);
}

.about-band-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.profile-hero {
    padding: 28px 0 18px;
}

.profile-shell {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 24px;
    align-items: center;
}

.profile-copy {
    padding: 10px 0;
}

.profile-title {
    margin: 14px 0 16px;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.94;
    max-width: 8.5ch;
}

.profile-summary {
    margin: 0;
    max-width: 64ch;
    font-size: 1.04rem;
    line-height: 1.9;
    color: var(--muted);
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.profile-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 61, 23, 0.1);
    color: var(--muted);
    font-weight: 700;
}

.profile-visual {
    position: relative;
    padding: 16px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(36, 61, 23, 0.08);
    box-shadow: var(--shadow-strong);
}

.profile-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    object-fit: cover;
}

.profile-visual-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(18, 33, 11, 0.62);
    color: #f7f9f0;
    backdrop-filter: blur(12px);
}

.profile-visual-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.3rem;
}

.profile-visual-card span {
    color: rgba(247, 249, 240, 0.82);
    line-height: 1.7;
}

.profile-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile-story {
    min-height: 100%;
}

.profile-story p + p {
    margin-top: 14px;
}

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

.stat-card-large {
    min-height: 100%;
    padding: 20px;
    border-radius: 24px;
}

.stat-card-large strong {
    font-size: 2.3rem;
}

.stat-card-large span {
    display: block;
    line-height: 1.6;
}

.profile-statements .statement-card {
    min-height: 280px;
}

.profile-statements .statement-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.05rem;
}

.about-image-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.about-image-tile {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 26px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.about-image-tile img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-product-grid .product-photo {
    aspect-ratio: 1 / 1.1;
}

.about-product-grid .product-body p {
    min-height: 5.2em;
}

.team-grid .feature-card {
    min-height: 100%;
}

.compact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clean-product-card img {
    aspect-ratio: 1 / 1.02;
}

.clean-product-card h3 {
    margin-top: 0;
}

.site-footer {
    margin-top: 24px;
    padding: 36px 0 18px;
    background: #050505;
    color: #f4f4f4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 18px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-top: 0;
}

.footer-grid p {
    color: rgba(244, 244, 244, 0.75);
    line-height: 1.8;
}

.footer-grid a {
    color: rgba(244, 244, 244, 0.82);
}

.footer-grid a:hover {
    color: #d7f0bc;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(244, 244, 244, 0.7);
}

.social-links a {
    background: rgba(255, 255, 255, 0.08);
    color: #f4f4f4;
}

.vision-showcase {
    background:
        radial-gradient(circle at 12% 10%, rgba(177, 202, 98, 0.2), transparent 24%),
        radial-gradient(circle at 88% 0%, rgba(79, 123, 26, 0.12), transparent 22%),
        linear-gradient(180deg, #edf2df 0%, #e7edd2 100%);
    padding: 16px 0 30px;
}

.vision-banner {
    overflow: hidden;
    background: transparent;
}

.vision-banner img {
    width: 100%;
    display: block;
}

.vision-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    background: transparent;
}

.vision-image-grid img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.vision-grid {
    margin-top: 18px;
    gap: 24px;
}

.vision-grid .statement-card {
    min-height: 560px;
    text-align: center;
    padding: 24px 26px 28px;
    box-shadow: none;
    display: grid;
    align-content: start;
    justify-items: center;
}

.vision-grid .statement-icon {
    width: 150px;
    height: 150px;
    margin-top: 8px;
    font-size: 4rem;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
    border: 0;
    box-shadow: 0 16px 30px rgba(0,0,0,.18);
}

.vision-grid .statement-card h3 {
    margin: 22px 0 18px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    letter-spacing: 0.04em;
}

.vision-grid .statement-card p {
    max-width: 16ch;
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    line-height: 1.35;
    color: rgba(33, 33, 33, 0.88);
}

.vision-grid .statement-vision,
.vision-grid .statement-mission,
.vision-grid .statement-strategy {
    border-radius: 0;
}

.vision-grid .statement-vision {
    background: linear-gradient(180deg, #e8f5e3, #e0efd9);
}

.vision-grid .statement-mission {
    background: linear-gradient(180deg, #77d3e1, #66c3d5);
}

.vision-grid .statement-strategy {
    background: linear-gradient(180deg, #c5dd18, #b0ca10);
}

.corporate-hero {
    padding: 34px 0 18px;
}

.corporate-shell {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 28px;
    align-items: center;
}

.corporate-intro {
    padding: 18px 0;
}

.corporate-intro .eyebrow {
    margin-bottom: 16px;
}

.corporate-intro h1 {
    margin: 0 0 18px;
    font-size: clamp(3rem, 6vw, 6.3rem);
    line-height: 0.94;
    max-width: 10ch;
}

.corporate-intro p {
    max-width: 60ch;
    color: var(--muted);
    line-height: 1.88;
    font-size: 1.03rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(36, 61, 23, 0.1);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.92rem;
}

.banner-panel {
    position: relative;
}

.banner-frame {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: 34px;
    box-shadow: var(--shadow-strong);
    background: linear-gradient(180deg, rgba(47, 90, 20, 0.94), rgba(38, 65, 14, 0.94));
}

.banner-frame img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    opacity: 0.9;
    filter: saturate(1.02) contrast(1.02);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 34, 10, 0.1), rgba(17, 34, 10, 0.44)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.13), transparent 22%);
}

.banner-copy {
    position: absolute;
    left: 26px;
    bottom: 26px;
    max-width: 460px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(16, 31, 10, 0.42);
    color: #f7f9f0;
    backdrop-filter: blur(12px);
}

.banner-copy small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(247, 249, 240, 0.82);
    font-weight: 800;
    margin-bottom: 8px;
}

.banner-copy strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    line-height: 1.02;
    margin-bottom: 10px;
}

.banner-copy span {
    display: block;
    color: rgba(247, 249, 240, 0.84);
    line-height: 1.7;
}

.corporate-head h2 {
    max-width: 14ch;
}

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

.statement-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 24px;
    color: #f4f8ea;
    box-shadow: var(--shadow);
    min-height: 260px;
}

.statement-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(0);
}

.statement-card h3 {
    margin: 18px 0 12px;
    font-size: 2rem;
}

.statement-card p {
    margin: 0;
    line-height: 1.8;
    color: rgba(244, 248, 234, 0.9);
}

.statement-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.statement-vision {
    background: linear-gradient(135deg, #4e7d1a 0%, #2f5a14 100%);
}

.statement-mission {
    background: linear-gradient(135deg, #2f6e86 0%, #2d9fc2 100%);
}

.statement-strategy {
    background: linear-gradient(135deg, #7a8f16 0%, #b1ca62 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: stretch;
}

.story-panel {
    display: grid;
    align-content: center;
    gap: 12px;
}

.story-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    max-width: 14ch;
}

.story-panel p {
    line-height: 1.85;
    color: var(--muted);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.mini-fact {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(36, 61, 23, 0.1);
    padding: 18px 16px;
}

.mini-fact strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--primary);
}

.mini-fact span {
    color: var(--muted);
    font-weight: 700;
}

.visual-panel {
    padding: 0;
    overflow: hidden;
}

.visual-panel img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

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

.pivot-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(36, 61, 23, 0.08);
    box-shadow: var(--shadow);
}

.pivot-card img {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
}

.pivot-body {
    padding: 18px;
}

.pivot-body span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pivot-body h3 {
    margin: 0 0 10px;
    font-size: 1.55rem;
}

.pivot-body p {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.corporate-cta {
    padding: 30px;
}

@media (max-width: 1024px) {
    .hero-grid,
    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-4,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual {
        min-height: 540px;
    }

    .header-info-inner,
    .clean-hero-grid,
    .about-band,
    .compact-grid {
        grid-template-columns: 1fr;
    }

    .profile-shell,
    .profile-overview,
    .about-product-grid,
    .about-image-strip {
        grid-template-columns: 1fr;
    }

    .profile-visual-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .profile-stats {
        grid-template-columns: 1fr 1fr;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 10px;
        right: 10px;
        top: 84px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border-radius: 20px;
        background: rgba(16, 65, 29, 0.98);
        box-shadow: var(--shadow-strong);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 14px 16px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .corporate-shell,
    .story-grid,
    .statement-grid,
    .product-pivot-grid {
        grid-template-columns: 1fr;
    }

    .banner-frame,
    .banner-frame img,
    .visual-panel img {
        min-height: 420px;
    }

    .corporate-head h2,
    .story-panel h2,
    .corporate-intro h1 {
        max-width: none;
    }

    .clean-hero-copy h1 {
        max-width: none;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-grid .statement-card {
        min-height: 0;
    }

    .vision-image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nav-wrap {
        min-height: 76px;
    }

    .brand-logo {
        width: 140px;
    }

    .grid-4,
    .grid-3,
    .product-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-cta {
        padding: 20px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .product-pivot-grid {
        gap: 14px;
    }

    .corporate-cta {
        padding: 22px;
    }

    .clean-hero {
        padding-top: 18px;
    }

    .clean-hero-copy h1 {
        font-size: 2.4rem;
    }

    .about-band-copy {
        padding: 22px;
    }

    .about-band-image img,
    .clean-hero-visual img {
        min-height: 280px;
    }

    .profile-title {
        max-width: none;
        font-size: 2.6rem;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .vision-grid .statement-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .vision-grid .statement-card p {
        max-width: 20ch;
    }
}
