:root {
    --ink: #07111b;
    --coal: #171d21;
    --green: #62b826;
    --green-dark: #438d17;
    --tomato: #d73a1f;
    --gold: #f0ba32;
    --paper: #ffffff;
    --soft: #f5f7f3;
    --muted: #667085;
    --line: #d8dfd0;
    --shadow: 0 18px 45px rgba(7, 17, 27, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 88px;
    padding: 18px clamp(18px, 4vw, 56px);
    background: var(--coal);
    color: var(--paper);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    min-width: 0;
}

.brand img {
    width: 205px;
    height: auto;
}

.brand span {
    display: grid;
    place-items: center;
    min-width: 44px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--green);
    color: var(--coal);
    font-weight: 800;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1 1 auto;
    margin-right: auto;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    white-space: nowrap;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    content: "";
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ghost-link,
.order-link,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ghost-link {
    color: var(--paper);
}

.order-link,
.primary-button {
    background: var(--green);
    color: #10200d;
    box-shadow: 0 12px 26px rgba(98, 184, 38, 0.28);
}

.secondary-button {
    background: var(--ink);
    color: var(--paper);
}

.ghost-link:hover,
.order-link:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.lucide {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.social-icon {
    display: inline-block;
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    object-fit: contain;
}

.social-icon-large {
    width: 28px;
    height: 28px;
}

.primary-button .social-icon,
.secondary-button .social-icon,
.order-link .social-icon {
    width: 19px;
    height: 19px;
    max-width: 19px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: transparent;
    color: var(--paper);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(20px, 4vw, 72px);
    min-height: min(690px, calc(100vh - 108px));
    overflow: hidden;
    padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 76px) 72px;
    background: var(--soft);
}

.hero-shape {
    position: absolute;
    inset: 0 0 auto 0;
    height: 86%;
    background: var(--green);
    clip-path: polygon(0 0, 59% 0, 100% 76%, 100% 100%, 0 71%);
}

.hero::after {
    position: absolute;
    right: -3vw;
    bottom: 0;
    width: 53vw;
    height: 34vh;
    border-top: 3px solid rgba(67, 141, 23, 0.68);
    transform: skewY(4deg);
    content: "";
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #18340d;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 660px;
    margin: 0;
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.95;
}

.hero-copy {
    max-width: 540px;
    margin: 24px 0 0;
    color: #1a3015;
    font-size: clamp(18px, 2.1vw, 24px);
    font-weight: 700;
}

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

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-meta span,
.feature-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: #17310d;
    font-weight: 800;
}

.hero-visual {
    align-self: center;
    justify-self: center;
    width: min(100%, 520px);
}

.plate {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.plate img {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    right: -18px;
    bottom: 34px;
    display: grid;
    gap: 2px;
    min-width: 142px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: var(--coal);
    color: var(--paper);
    box-shadow: var(--shadow);
}

.price-badge strong {
    color: var(--green);
    font-size: 26px;
}

.quick-strip {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(1120px, calc(100% - 36px));
    margin: -34px auto 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: var(--shadow);
}

.quick-strip a {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 14px;
    min-height: 92px;
    padding: 20px;
    background: var(--paper);
}

.quick-strip .lucide {
    grid-row: span 2;
    align-self: center;
    width: 26px;
    height: 26px;
    color: var(--green-dark);
}

.quick-strip span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.quick-strip strong {
    font-size: clamp(16px, 1.7vw, 22px);
}

.menu-section,
.order-panel,
.about-section,
.contact-section {
    padding: clamp(68px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.section-heading {
    display: grid;
    gap: 8px;
    max-width: 760px;
    margin-bottom: 26px;
}

.section-heading h2,
.order-copy h2,
.about-copy h2,
.contact-card h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
}

.section-heading p:not(.eyebrow),
.order-copy p,
.about-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.menu-tools {
    position: sticky;
    top: 88px;
    z-index: 10;
    display: grid;
    gap: 16px;
    padding: 16px 0 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(440px, 100%);
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
}

.category-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.category-tabs button {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.category-tabs button.is-active {
    border-color: var(--coal);
    background: var(--coal);
    color: var(--paper);
    box-shadow: inset 0 0 0 3px rgba(98, 184, 38, 0.35);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 22px;
}

.product-card {
    display: grid;
    grid-template-rows: 190px auto;
    overflow: hidden;
    border: 1px solid #edf0e7;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 13px 32px rgba(7, 17, 27, 0.08);
}

.product-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 190px;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf5 100%);
}

.product-media img {
    width: min(210px, 92%);
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(7, 17, 27, 0.12));
}

.product-media::after {
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 54px;
    height: 6px;
    border-radius: 999px;
    background: var(--green);
    content: "";
}

.product-body {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.product-kicker {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card h3 {
    min-height: 54px;
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
}

.product-card p {
    min-height: 42px;
    margin: 0;
    color: var(--muted);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 4px;
}

.price {
    color: #030712;
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
}

.product-card .order-mini {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--green);
    border-radius: 999px;
    color: var(--green-dark);
}

.product-card .detail-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #10161a 0%, #2c353c 100%);
    color: var(--paper);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(7, 17, 27, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-card .detail-mini:hover,
.product-card .order-mini:hover {
    transform: translateY(-2px);
}

.product-card .detail-mini .lucide {
    width: 16px;
    height: 16px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    background: var(--soft);
    font-weight: 700;
}

.order-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: start;
    background: var(--coal);
    color: var(--paper);
}

.order-copy .eyebrow {
    color: var(--green);
}

.order-copy p {
    color: #d7ded1;
}

.callout-grid {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    width: min(540px, 100%);
}

.callout {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.callout .lucide,
.callout .social-icon {
    width: 28px;
    height: 28px;
    color: var(--green);
}

.callout span {
    display: block;
    color: #c8d0c0;
    font-size: 14px;
}

.callout a {
    font-size: 26px;
    font-weight: 900;
}

.order-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: clamp(18px, 3vw, 28px);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
}

.order-form label {
    display: grid;
    gap: 8px;
    color: #23313d;
    font-weight: 800;
}

.order-form input,
.order-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    outline: 0;
    resize: vertical;
}

.order-form input:focus,
.order-form textarea:focus {
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(98, 184, 38, 0.16);
}

.wide {
    grid-column: 1 / -1;
}

.about-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(26px, 5vw, 72px);
    align-items: center;
    background: var(--soft);
}

.about-image {
    display: grid;
    place-items: center;
    min-height: 360px;
    border-radius: var(--radius);
    background: var(--green);
    overflow: hidden;
}

.about-image img {
    width: min(360px, 82%);
    filter: drop-shadow(0 18px 24px rgba(7, 17, 27, 0.2));
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
    gap: 24px;
    background: var(--paper);
}

.contact-card {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: var(--radius);
    background: var(--coal);
    color: var(--paper);
}

.contact-card .eyebrow {
    color: var(--green);
}

address {
    color: #d7ded1;
    font-style: normal;
    font-size: 18px;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    color: #eef5e9;
    font-weight: 800;
}

.contact-list .lucide {
    flex: 0 0 auto;
    color: var(--green);
}

.map-wrap {
    min-height: 410px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 410px;
    border: 0;
}

.subpage-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: clamp(22px, 4vw, 52px);
    align-items: center;
    overflow: hidden;
    min-height: 430px;
    padding: clamp(48px, 6vw, 76px) clamp(18px, 5vw, 76px);
    background: var(--green);
}

.subpage-hero::after {
    position: absolute;
    right: -16vw;
    bottom: -22vh;
    width: 58vw;
    height: 42vh;
    background: var(--paper);
    transform: rotate(-12deg);
    content: "";
}

.subpage-hero > * {
    position: relative;
    z-index: 1;
}

.subpage-hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
}

.subpage-hero p:not(.eyebrow) {
    max-width: 680px;
    margin: 22px 0 0;
    color: #1a3015;
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 700;
}

.subpage-hero > img {
    width: min(360px, 100%);
    aspect-ratio: 1 / 1;
    justify-self: center;
    border-radius: var(--radius);
    background: var(--paper);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.subpage-hero .policy-hero-icon {
    width: min(190px, 50vw);
    aspect-ratio: 1;
    padding: 24px;
    object-fit: contain;
}

.subpage-content,
.contact-page-section {
    padding: clamp(68px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.story-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.story-panel h2,
.contact-map-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
}

.story-panel p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 18px;
}

.info-card-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 164px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 13px 32px rgba(7, 17, 27, 0.08);
}

.info-card .lucide,
.info-card .social-icon {
    width: 28px;
    height: 28px;
    color: var(--green-dark);
}

.info-card h2,
.info-card h3 {
    margin: 0;
    font-size: 22px;
}

.info-card p,
.info-card a {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.info-card a:hover {
    color: var(--green-dark);
}

.contact-page-section {
    display: grid;
    gap: 28px;
}

.contact-map-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
    gap: 24px;
    align-items: stretch;
}

.contact-map-panel > div:first-child {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: var(--radius);
    background: var(--coal);
    color: var(--paper);
}

.contact-map-panel .eyebrow {
    color: var(--green);
}

.contact-map-panel address {
    color: #d7ded1;
}

.policy-section {
    padding: clamp(68px, 8vw, 110px) clamp(18px, 5vw, 76px);
    background: var(--soft);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 26px;
}

.policy-card {
    display: grid;
    justify-items: center;
    align-content: space-between;
    gap: 18px;
    min-height: 410px;
    padding: 34px 28px;
    border: 1px solid #edf0e7;
    border-radius: var(--radius);
    background: var(--paper);
    text-align: center;
    box-shadow: 0 13px 32px rgba(7, 17, 27, 0.08);
}

.policy-card img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.policy-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
}

.policy-card p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.policy-card .primary-button {
    margin-top: 18px;
}

.policy-detail {
    display: grid;
    gap: 22px;
    padding: clamp(68px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.policy-detail-card {
    display: grid;
    gap: 18px;
    max-width: 980px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 13px 32px rgba(7, 17, 27, 0.08);
}

.policy-detail-card h2,
.policy-detail-card h3 {
    margin: 0;
}

.policy-detail-card p,
.policy-detail-card li {
    color: var(--muted);
    font-size: 18px;
}

.policy-detail-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
}

.product-detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    overflow: hidden;
    padding: clamp(46px, 6vw, 82px) clamp(18px, 5vw, 76px);
    background: var(--green);
}

.product-detail-hero::after {
    position: absolute;
    right: -12vw;
    bottom: -18vh;
    width: 58vw;
    height: 42vh;
    background: var(--paper);
    transform: rotate(-12deg);
    content: "";
}

.product-detail-copy,
.product-detail-media {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: #234313;
    font-size: 14px;
    font-weight: 900;
}

.breadcrumb a:hover {
    color: var(--paper);
}

.product-detail-copy h1 {
    max-width: 720px;
    font-size: clamp(44px, 7vw, 88px);
}

.product-lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: #1a3015;
    font-size: clamp(19px, 2.2vw, 25px);
    font-weight: 800;
}

.product-detail-media {
    justify-self: center;
    width: min(430px, 100%);
    padding: 24px;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.product-detail-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-detail-hero .primary-button {
    background: var(--paper);
    color: var(--ink);
}

.product-detail-hero .secondary-button {
    background: var(--coal);
}

.product-detail-section {
    padding: clamp(68px, 8vw, 110px) clamp(18px, 5vw, 76px);
    background: var(--soft);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 24px;
    align-items: start;
}

.product-info-panel,
.order-aside {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 13px 32px rgba(7, 17, 27, 0.08);
}

.product-info-panel h2,
.order-aside h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
}

.product-info-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    color: var(--muted);
    font-size: 17px;
    font-weight: 800;
}

.check-list .lucide {
    margin-top: 3px;
    color: var(--green-dark);
}

.order-aside {
    position: sticky;
    top: 112px;
    background: var(--coal);
    color: var(--paper);
}

.order-aside a:not(.primary-button) {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #edf5e8;
    font-weight: 900;
}

.order-aside address {
    margin: 0;
    color: #c8d0c0;
    font-style: normal;
}

.address-link {
    color: inherit;
    text-decoration: none;
}

.address-link:hover {
    color: var(--green);
}

.detail-catalog-section,
.seo-content-section,
.related-products-section {
    padding: clamp(68px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.detail-catalog-section,
.related-products-section {
    background: var(--soft);
}

.seo-content-section {
    background: var(--paper);
}

.seo-copy {
    display: grid;
    gap: 18px;
    max-width: 1120px;
}

.seo-copy h2,
.detail-catalog-section h2,
.related-products-section h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
}

.seo-copy p {
    max-width: 1120px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
}

.seo-copy strong {
    color: var(--ink);
}

.detail-category-tabs {
    margin-top: 24px;
}

.detail-related-grid {
    margin-top: 22px;
}

.product-card-compact {
    grid-template-rows: 180px auto;
}

.product-card-compact h3 {
    min-height: 48px;
    font-size: 20px;
}

.product-card-compact p {
    min-height: 60px;
}

.product-card-compact .product-media img {
    width: min(190px, 90%);
    max-height: 138px;
}

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

.related-product-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 13px 32px rgba(7, 17, 27, 0.08);
}

.related-product-card img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    padding: 18px;
    object-fit: contain;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf5 100%);
}

.related-product-card div {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.related-product-card span {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.related-product-card h3 {
    min-height: 52px;
    margin: 0;
    font-size: 21px;
    line-height: 1.15;
}

.related-product-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--coal);
    color: var(--paper);
    font-weight: 900;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 25;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: var(--green);
    color: #10200d;
    box-shadow: var(--shadow);
}

.floating-whatsapp .lucide {
    width: 27px;
    height: 27px;
}

.site-footer {
    display: grid;
    gap: 0;
    background: #10161a;
    color: var(--paper);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(180px, 0.65fr) minmax(260px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 76px);
    border-top: 5px solid var(--green);
}

.footer-brand,
.footer-nav,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 14px;
}

.footer-brand img {
    width: min(230px, 100%);
}

.footer-brand p,
.footer-contact address {
    max-width: 420px;
    margin: 0;
    color: #c8d0c0;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--green);
}

.footer-nav h3,
.footer-contact h3 {
    margin: 0 0 6px;
    color: var(--paper);
    font-size: 18px;
}

.footer-nav a,
.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: #edf5e8;
    font-weight: 800;
}

.footer-contact a {
    overflow-wrap: anywhere;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-social a:hover,
.footer-bottom a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px clamp(18px, 5vw, 76px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b7c1ae;
    font-size: 14px;
    font-weight: 800;
}

.footer-bottom a {
    color: var(--paper);
}

@media (max-width: 1260px) {
    .site-header {
        gap: 18px;
    }

    .brand img {
        width: 190px;
    }

    .site-nav {
        gap: 18px;
    }

    .header-actions .ghost-link span {
        display: none;
    }
}

@media (max-width: 1040px) {
    .site-header {
        gap: 16px;
    }

    .header-actions .ghost-link span {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .subpage-hero,
    .product-detail-hero,
    .story-panel,
    .contact-map-panel,
    .product-detail-grid,
    .related-product-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

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

    .subpage-hero {
        min-height: auto;
    }

    .subpage-hero > img {
        justify-self: start;
        max-width: 320px;
    }

    .subpage-hero .policy-hero-icon {
        max-width: 180px;
    }

    .hero-visual {
        justify-self: start;
        max-width: 440px;
    }

    .product-detail-media {
        justify-self: start;
        max-width: 360px;
    }

    .order-aside {
        position: static;
    }

    .order-panel,
    .about-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .site-header {
        min-height: 76px;
        flex-wrap: wrap;
    }

    .brand {
        min-width: 0;
        margin-right: auto;
    }

    .brand img {
        width: 172px;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        display: none;
        order: 4;
        width: 100%;
        margin: 0;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-header.is-open .site-nav {
        display: grid;
        gap: 12px;
    }

    .header-actions {
        width: 100%;
        order: 5;
        display: none;
    }

    .site-header.is-open .header-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
        justify-items: start;
    }

    .hero {
        padding-top: 44px;
    }

    .hero-shape {
        height: 74%;
        clip-path: polygon(0 0, 100% 0, 100% 63%, 0 82%);
    }

    .quick-strip {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .menu-tools {
        top: 76px;
    }

    .order-form {
        grid-template-columns: 1fr;
    }

    .info-card-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 148px;
    }

    .brand span {
        min-width: 38px;
        height: 30px;
        font-size: 13px;
    }

    .header-actions {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .contact-actions {
        display: grid;
    }

    .subpage-hero {
        padding-top: 40px;
        padding-bottom: 54px;
    }

    .subpage-hero h1 {
        font-size: 36px;
    }

    .subpage-hero > img {
        max-width: 240px;
    }

    .product-detail-hero {
        padding-top: 40px;
        padding-bottom: 54px;
    }

    .product-detail-copy h1 {
        font-size: 42px;
    }

    .product-detail-media {
        max-width: 260px;
        padding: 18px;
    }

    .related-product-grid {
        grid-template-columns: 1fr;
    }

    .hero-meta span,
    .feature-list span,
    .primary-button,
    .secondary-button,
    .ghost-link,
    .order-link {
        width: 100%;
    }

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

    .product-card {
        grid-template-rows: 170px auto;
    }

    .product-card h3 {
        min-height: auto;
    }

    .price-badge {
        right: 14px;
        bottom: 14px;
    }
}
