@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@500;600;650;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --ink: oklch(24% 0.035 158);
  --ink-soft: oklch(43% 0.035 158);
  --forest: oklch(31% 0.075 158);
  --forest-deep: oklch(24% 0.065 158);
  --leaf: oklch(43% 0.09 151);
  --gold: oklch(76% 0.12 82);
  --gold-deep: oklch(62% 0.115 78);
  --cream: oklch(96% 0.018 88);
  --paper: oklch(98% 0.01 88);
  --paper-green: oklch(94% 0.025 145);
  --line: oklch(85% 0.025 88);
  --line-dark: oklch(73% 0.04 145);
  --danger: oklch(42% 0.14 28);
  --danger-bg: oklch(94% 0.035 28);
  --success: oklch(34% 0.085 150);
  --success-bg: oklch(94% 0.035 145);
  --serif: "Bitter", Rockwell, Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow-header: 0 10px 28px oklch(19% 0.04 158 / .09);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; color: var(--ink); background: var(--cream); font: 400 1rem/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
select option { font-family: var(--sans); font-size: 1rem; }
button { cursor: pointer; }
p { max-width: 72ch; }
h1, h2, h3 { text-wrap: balance; }
::selection { color: var(--paper); background: var(--forest); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 200; padding: 12px 18px; color: var(--paper); background: var(--forest-deep); border-radius: var(--radius-sm); }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 48px), 1180px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.surface { background: var(--paper); border-block: 1px solid var(--line); }
.surface-dark { color: var(--paper); background: var(--forest-deep); }
.section-title { max-width: 18ch; margin: 0; font: 650 clamp(2rem, 4vw, 3.45rem)/1.1 var(--serif); letter-spacing: -.025em; }
.section-lede { max-width: 62ch; margin: 20px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.surface-dark .section-lede { color: oklch(85% 0.028 145); }
.section-label, .eyebrow { margin: 0 0 16px; color: var(--leaf); font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.surface-dark .section-label, .surface-dark .eyebrow { color: var(--gold); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, .65fr); gap: 64px; align-items: end; margin-bottom: 48px; }
.section-head .section-lede { margin: 0; }

.topbar { color: oklch(89% 0.025 145); background: var(--forest-deep); font-size: .82rem; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-list { display: flex; gap: 26px; }
.topbar a { text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 100; background: oklch(98% 0.01 88 / .97); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-header); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; }
.brand-mark { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-name { font: 700 1.22rem/1.1 var(--serif); letter-spacing: -.015em; }
.brand-tag { margin-top: 4px; color: var(--ink-soft); font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a:not(.button) { min-height: 44px; display: inline-flex; align-items: center; border-bottom: 2px solid transparent; font-size: .93rem; font-weight: 600; }
.main-nav a:not(.button):hover, .main-nav a.active:not(.button) { color: var(--forest); border-bottom-color: var(--gold-deep); }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; gap: 4px; padding: 0; color: var(--forest); background: transparent; border: 1px solid var(--line-dark); border-radius: var(--radius-sm); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { width: 20px; height: 2px; content: ""; background: currentColor; transition: transform .2s var(--ease-out), opacity .2s ease; }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; color: var(--ink); background: var(--gold); border: 1px solid var(--gold-deep); border-radius: var(--radius-sm); font-weight: 700; line-height: 1.1; transition: transform .2s var(--ease-out), background-color .2s ease, color .2s ease; }
.button:hover { background: oklch(81% 0.115 82); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button-ghost { color: var(--paper); background: transparent; border-color: oklch(90% 0.025 145 / .7); }
.button-ghost:hover { color: var(--forest-deep); background: var(--paper); }
.button-outline { color: var(--forest); background: transparent; border-color: var(--line-dark); }
.button-outline:hover { background: var(--paper-green); }
.button-whatsapp { color: var(--paper); background: #1f8f4e; border-color: #18743f; }
.button-whatsapp:hover { color: var(--paper); background: #18743f; }
.button-sm, .button-small { min-height: 42px; padding-inline: 17px; font-size: .9rem; }
.button-arrow::after { content: "\2192"; font-size: 1.1em; }

.hero { position: relative; min-height: 660px; display: grid; align-items: center; overflow: hidden; color: var(--paper); background: var(--forest-deep) url("../images/urbanfresh-hero.webp") 68% center/cover no-repeat; }
.real-hero { background-image: var(--hero-image); background-position: center; }
.hero::before { position: absolute; inset: 0; content: ""; background: oklch(20% 0.07 158 / .79); }
.hero-inner { position: relative; z-index: 1; padding-block: 96px 112px; }
.hero-content { max-width: 720px; padding-left: 28px; border-left: 1px solid oklch(88% 0.04 85 / .7); }
.hero-kicker { margin-bottom: 22px; color: var(--gold); font-size: .83rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { max-width: 12ch; margin: 0; font: 650 clamp(3rem, 6.8vw, 5.8rem)/1.01 var(--serif); letter-spacing: -.04em; }
.hero h1 span { color: var(--gold); }
.hero p { max-width: 59ch; margin: 26px 0 32px; color: oklch(89% 0.025 145); font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 30px; color: oklch(84% 0.03 145); font-size: .9rem; }
.hero-note span::before { margin-right: 8px; content: "✓"; color: var(--gold); font-weight: 700; }

.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { min-height: 112px; display: flex; align-items: center; gap: 16px; padding: 24px 30px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--forest); background: var(--paper-green); border: 1px solid var(--line-dark); border-radius: 50%; font: 700 .84rem/1 var(--serif); }
.trust-item strong { display: block; font: 650 1.04rem/1.25 var(--serif); }
.trust-item small { display: block; margin-top: 4px; color: var(--ink-soft); }

.intro-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 80px; align-items: center; }
.rice-art { position: relative; min-height: 500px; background: var(--paper-green) url("../images/urbanfresh-1121.webp") center/cover no-repeat; border: 1px solid var(--line); overflow: hidden; }
.rice-art::before { position: absolute; inset: auto 0 0; height: 42%; content: ""; background: oklch(20% 0.06 158 / .68); }
.rice-art-card { position: absolute; left: 32px; right: 32px; bottom: 28px; color: var(--paper); }
.rice-art-card strong { display: block; margin-bottom: 8px; color: var(--gold); font: 650 1.55rem/1.2 var(--serif); }
.rice-art-card span { display: block; max-width: 44ch; color: oklch(89% 0.025 145); }
.check-list { display: grid; gap: 14px; padding: 0; margin: 30px 0 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; color: var(--ink-soft); }
.check-list li::before { display: grid; place-items: center; width: 22px; height: 22px; content: "✓"; color: var(--forest); background: var(--paper-green); border: 1px solid var(--line-dark); border-radius: 50%; font-size: .72rem; font-weight: 700; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.product-card { display: grid; grid-template-columns: minmax(150px, .85fr) minmax(0, 1fr); grid-template-rows: auto auto 1fr auto; column-gap: 24px; padding: 24px 24px 24px 0; background: transparent; border-bottom: 1px solid var(--line); }
.product-card:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
.product-card:nth-child(even) { padding-left: 32px; }
.product-card:nth-child(5) { grid-column: 1 / -1; max-width: 650px; border-right: 0; }
.product-visual { grid-row: 1 / 5; width: 100%; min-height: 230px; background-color: var(--paper-green); background-position: center; background-size: cover; }
.product-grid .product-card:nth-child(1) .product-visual { background-image: url("../images/urbanfresh-1121.webp"); }
.product-grid .product-card:nth-child(2) .product-visual { background-image: url("../images/urbanfresh-1718.webp"); }
.product-grid .product-card:nth-child(3) .product-visual { background-image: url("../images/urbanfresh-1509.webp"); }
.product-grid .product-card:nth-child(4) .product-visual { background-image: url("../images/urbanfresh-1401.webp"); }
.product-grid .product-card:nth-child(5) .product-visual { background-image: url("../images/urbanfresh-hero.webp"); }
.product-tag { align-self: end; color: var(--leaf); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-card h3 { margin: 8px 0 10px; font: 650 1.45rem/1.18 var(--serif); }
.product-card p { margin: 0 0 18px; color: var(--ink-soft); font-size: .95rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; color: var(--forest); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold-deep); text-underline-offset: 4px; }
.text-link::after { content: "\2192"; transition: transform .2s var(--ease-out); }
.text-link:hover::after { transform: translateX(4px); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid oklch(80% 0.035 145 / .45); border-bottom: 1px solid oklch(80% 0.035 145 / .45); }
.process-step { padding: 30px 26px; border-right: 1px solid oklch(80% 0.035 145 / .45); }
.process-step:last-child { border-right: 0; }
.step-number { display: block; margin-bottom: 22px; color: var(--gold); font: 600 1.1rem/1 var(--serif); }
.process-step h3 { margin: 0 0 10px; font: 650 1.25rem/1.2 var(--serif); }
.process-step p { margin: 0; color: oklch(83% 0.03 145); font-size: .94rem; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 80px; align-items: center; }
.package-stack { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.package-card { position: relative; min-height: 170px; padding: 30px 26px 24px 54px; border-bottom: 1px solid var(--line); }
.package-card:nth-child(odd) { border-right: 1px solid var(--line); }
.package-card::before { position: absolute; left: 18px; top: 31px; content: "01"; color: var(--gold-deep); font: 600 .78rem/1 var(--serif); }
.package-card:nth-child(2)::before { content: "02"; }
.package-card:nth-child(3)::before { content: "03"; }
.package-card:nth-child(4)::before { content: "04"; }
.package-card strong { display: block; margin-bottom: 9px; font: 650 1.25rem/1.25 var(--serif); }
.package-card span { color: var(--ink-soft); font-size: .94rem; }

.quote-band { color: var(--paper); background: var(--forest); }
.quote-band-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 48px; }
.quote-band h2 { max-width: 19ch; margin: 0; font: 650 clamp(2rem, 4.1vw, 3.6rem)/1.08 var(--serif); letter-spacing: -.025em; }
.quote-band p { max-width: 66ch; margin: 16px 0 0; color: oklch(86% 0.028 145); }
.quote-band a:not(.button) { color: var(--gold); }

.page-hero { position: relative; padding: 84px 0 76px; color: var(--paper); background: var(--forest-deep) url("../images/urbanfresh-hero.webp") center/cover no-repeat; overflow: hidden; }
.page-hero::before { position: absolute; inset: 0; content: ""; background: oklch(20% 0.07 158 / .82); }
.breadcrumbs, .page-hero-content { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: oklch(82% 0.03 145); font-size: .85rem; }
.breadcrumbs span::before { margin-right: 8px; content: "/"; opacity: .65; }
.page-hero-content { max-width: 820px; padding-left: 24px; border-left: 1px solid oklch(88% 0.04 85 / .65); }
.page-hero h1 { max-width: 18ch; margin: 0; font: 650 clamp(2.7rem, 5.8vw, 5rem)/1.03 var(--serif); letter-spacing: -.035em; }
.page-hero p { max-width: 67ch; margin: 20px 0 0; color: oklch(88% 0.027 145); font-size: 1.08rem; }
.product-1121 .page-hero { background-image: url("../images/urbanfresh-1121.webp"); }
.product-1718 .page-hero { background-image: url("../images/urbanfresh-1718.webp"); }
.product-1509 .page-hero { background-image: url("../images/urbanfresh-1509.webp"); }
.product-1401 .page-hero { background-image: url("../images/urbanfresh-1401.webp"); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 72px; align-items: start; }
.prose { max-width: 75ch; }
.prose h2 { margin: 52px 0 14px; font: 650 2.05rem/1.18 var(--serif); letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 32px 0 10px; font: 650 1.35rem/1.25 var(--serif); }
.prose p, .prose ul { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose li + li { margin-top: 9px; }
.info-panel { position: sticky; top: 112px; padding: 30px; color: var(--paper); background: var(--forest-deep); border: 1px solid var(--forest); border-radius: var(--radius-md); }
.info-panel h2 { margin: 0 0 9px; font: 650 1.6rem/1.2 var(--serif); }
.info-panel p { margin: 0 0 22px; color: oklch(84% 0.03 145); font-size: .94rem; }
.info-panel .button { width: 100%; }
.spec-list { display: grid; margin: 28px 0; border-top: 1px solid oklch(82% 0.03 145 / .35); }
.spec-row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid oklch(82% 0.03 145 / .35); font-size: .88rem; }
.spec-row span:first-child { color: oklch(75% 0.035 145); }
.availability-note { margin-block: 28px; padding: 17px 18px; color: var(--ink); background: var(--paper-green); border: 1px solid var(--line-dark); border-radius: var(--radius-sm); font-size: .94rem; }

.custom-hero { background-image: var(--page-image); background-position: center; }
.fact-strip { color: var(--paper); background: var(--forest); border-block: 1px solid oklch(50% 0.07 158); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-grid > div { min-height: 118px; display: grid; align-content: center; padding: 22px 28px; border-right: 1px solid oklch(78% 0.04 145 / .35); }
.fact-grid > div:last-child { border-right: 0; }
.fact-grid strong { display: block; color: var(--gold); font: 650 1.8rem/1.1 var(--serif); }
.fact-grid span { margin-top: 7px; color: oklch(86% 0.028 145); font-size: .92rem; }
.photo-stack { position: relative; min-height: 560px; }
.photo-stack > img:first-child { width: 82%; height: 500px; object-fit: cover; border: 1px solid var(--line-dark); }
.photo-stack > img:last-child { position: absolute; right: 0; bottom: 0; width: 48%; height: 250px; object-fit: cover; border: 9px solid var(--cream); box-shadow: 0 18px 36px oklch(18% 0.03 150 / .16); }
.surface .photo-stack > img:last-child { border-color: var(--paper); }
.dark-photo img, .photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.dark-photo { min-height: 430px; border: 1px solid oklch(76% 0.04 145 / .4); }
.photo-frame { min-height: 480px; overflow: hidden; background: var(--paper-green); border: 1px solid var(--line); }
.compact-frame { min-height: 520px; }
.section-action { margin: 38px 0 0; text-align: center; }
.address-panel { padding: 34px; color: var(--paper); background: var(--forest-deep); border-top: 5px solid var(--gold-deep); }
.address-panel h2 { margin: 0; font: 650 2rem/1.2 var(--serif); }
.address-panel p:not(.section-label) { margin: 10px 0 26px; color: oklch(83% 0.03 145); }

.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.catalog-card { min-width: 0; background: var(--paper); border: 1px solid var(--line); }
.surface .catalog-card { background: var(--cream); }
.catalog-image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-green); }
.catalog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease-out); }
.catalog-card:hover .catalog-image img { transform: scale(1.035); }
.catalog-copy { padding: 24px; }
.catalog-copy > span { color: var(--leaf); font-size: .78rem; font-weight: 700; letter-spacing: .065em; text-transform: uppercase; }
.catalog-copy h3 { margin: 9px 0 10px; font: 650 1.45rem/1.2 var(--serif); }
.catalog-copy p { margin: 0 0 20px; color: var(--ink-soft); }
.catalog-card.compact .catalog-copy { padding: 20px; }
.catalog-card.compact .catalog-copy h3 { margin-bottom: 18px; }

.variant-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.variant-card { display: grid; grid-template-columns: minmax(180px, .9fr) minmax(0, 1.1fr); min-height: 280px; background: var(--cream); border: 1px solid var(--line); }
.variant-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; background: var(--paper-green); }
.variant-card > div { display: grid; align-content: center; padding: 26px; }
.variant-card span { color: var(--leaf); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.variant-card h3 { margin: 10px 0 20px; font: 650 1.35rem/1.25 var(--serif); }

.mill-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.mill-gallery figure { min-height: 290px; margin: 0; overflow: hidden; background: var(--paper-green); }
.mill-gallery figure:nth-child(1), .mill-gallery figure:nth-child(5) { grid-column: span 2; }
.mill-gallery img { width: 100%; height: 100%; min-height: 290px; object-fit: cover; }
.photo-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.photo-pair figure { margin: 0; border: 1px solid var(--line); background: var(--paper); }
.photo-pair img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-pair figcaption { padding: 16px 18px; color: var(--ink-soft); font-weight: 600; }
.photo-feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 64px; align-items: center; }
.photo-feature > img { width: 100%; min-height: 500px; object-fit: cover; border: 1px solid oklch(76% 0.04 145 / .4); }
.light-process { color: var(--ink); border-color: var(--line); }
.light-process .process-step { border-color: var(--line); }
.light-process .process-step p { color: var(--ink-soft); }
.light-process .step-number { color: var(--gold-deep); }

.certificate-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 60px; }
.certificate-card { margin: 0; background: var(--paper); border: 1px solid var(--line); }
.certificate-card a { display: block; aspect-ratio: 3 / 4; padding: 18px; overflow: hidden; background: #fff; }
.certificate-card img { width: 100%; height: 100%; object-fit: contain; }
.certificate-card figcaption { padding: 16px 18px; color: var(--ink-soft); border-top: 1px solid var(--line); font-weight: 600; }

.guide-feature { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 72px; align-items: center; }
.guide-feature-images { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 420px; border: 1px solid var(--line); overflow: hidden; }
.guide-feature-images img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.guide-feature-images img + img { border-left: 1px solid var(--line); }
.guide-callout { color: var(--ink); background: var(--paper-green); border-block: 1px solid var(--line-dark); }
.guide-callout-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: center; }
.guide-callout h2 { margin: 0; font: 650 clamp(1.8rem, 3.2vw, 2.7rem)/1.1 var(--serif); }
.guide-callout p:not(.section-label) { max-width: 68ch; margin: 12px 0 0; color: var(--ink-soft); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 84px; align-items: start; }
.buyer-article { min-width: 0; max-width: 820px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 26px; color: var(--leaf); font-size: .82rem; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.article-lead { margin: 0 0 28px; color: var(--ink); font: 500 clamp(1.3rem, 2.1vw, 1.72rem)/1.45 var(--serif); }
.buyer-article h2 { scroll-margin-top: 120px; margin: 58px 0 16px; font: 650 clamp(2rem, 3.6vw, 3rem)/1.1 var(--serif); letter-spacing: -.025em; }
.buyer-article h3 { margin: 0 0 10px; font: 650 1.35rem/1.2 var(--serif); }
.buyer-article p, .buyer-article li { color: var(--ink-soft); }
.quick-answer { margin: 32px 0 46px; padding: 24px 26px; color: var(--ink); background: var(--paper-green); border-left: 5px solid var(--gold-deep); font-size: 1.06rem; }
.comparison-visuals { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 34px 0 12px; background: var(--line); border: 1px solid var(--line); }
.comparison-visuals figure { min-width: 0; margin: 0; background: var(--paper); }
.comparison-visuals img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.comparison-visuals figcaption { display: grid; gap: 4px; padding: 15px; }
.comparison-visuals figcaption strong { font: 650 1.08rem/1.2 var(--serif); }
.comparison-visuals figcaption span, .image-note { color: var(--ink-soft); font-size: .84rem; }
.image-note { margin-top: 0; }
.table-scroll { width: 100%; margin: 26px 0 34px; border: 1px solid var(--line); overflow-x: auto; }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--paper); font-size: .92rem; }
.comparison-table caption { padding: 15px 18px; color: var(--ink-soft); background: var(--cream); text-align: left; font-weight: 700; }
.comparison-table th, .comparison-table td { padding: 17px 18px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table thead th { color: var(--paper); background: var(--forest); font-family: var(--serif); font-size: 1rem; }
.comparison-table tbody th { width: 21%; color: var(--forest); background: var(--paper-green); }
.product-price-link { display: inline-flex; margin-top: 18px; }
.price-table { min-width: 980px; }
.price-table th a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.price-update-soon td:nth-last-child(-n + 2) { color: var(--gold-deep); font-weight: 700; }
.price-explainer p { min-height: 0; }
.price-source-image { margin: 52px 0 0; border: 1px solid var(--line); background: var(--paper); }
.price-source-image a { display: block; }
.price-source-image img { display: block; width: 100%; height: auto; }
.price-source-image figcaption { padding: 14px 18px; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: .88rem; }
.numbered-checks { display: grid; gap: 0; padding: 0; margin: 28px 0; list-style: none; counter-reset: grain-check; border-top: 1px solid var(--line); }
.numbered-checks li { position: relative; display: grid; grid-template-columns: 180px 1fr; gap: 28px; padding: 22px 0 22px 58px; border-bottom: 1px solid var(--line); counter-increment: grain-check; }
.numbered-checks li::before { position: absolute; left: 0; top: 22px; content: counter(grain-check, decimal-leading-zero); color: var(--gold-deep); font: 650 1.12rem/1 var(--serif); }
.numbered-checks strong { color: var(--ink); }
.numbered-checks span { color: var(--ink-soft); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 0; border-block: 1px solid var(--line); }
.choice-grid article { padding: 26px 24px 28px 0; }
.choice-grid article + article { padding-left: 24px; border-left: 1px solid var(--line); }
.choice-grid p { min-height: 110px; }
.article-sources { margin-top: 58px; padding-top: 8px; border-top: 3px solid var(--forest); }
.article-sources h2 { margin-top: 30px; font-size: 1.7rem; }
.article-sources ul { padding-left: 1.2rem; }
.article-sources a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.article-aside { position: sticky; top: 112px; display: grid; gap: 28px; }
.article-aside > div { padding: 26px; border: 1px solid var(--line); }
.article-aside nav { display: grid; }
.article-aside nav a { padding: 11px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: .92rem; }
.article-aside nav a:hover { color: var(--forest); }
.article-quote { color: var(--paper); background: var(--forest-deep); border-color: var(--forest) !important; }
.article-quote h2 { margin: 0; font: 650 1.65rem/1.15 var(--serif); }
.article-quote p { margin: 12px 0 20px; color: oklch(84% 0.03 145); }
.article-quote .button { width: 100%; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--line); }
.benefit-card { padding: 28px 28px 28px 0; border-bottom: 1px solid var(--line); }
.benefit-card + .benefit-card { padding-left: 28px; border-left: 1px solid var(--line); }
.benefit-card .number { color: var(--gold-deep); font: 600 .84rem/1 var(--serif); }
.benefit-card h3 { margin: 18px 0 8px; font: 650 1.3rem/1.2 var(--serif); }
.benefit-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.faq-list { display: grid; max-width: 900px; border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 54px 22px 0; list-style: none; font-weight: 700; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; right: 8px; top: 18px; content: "+"; color: var(--leaf); font-size: 1.4rem; }
.faq[open] summary::after { content: "\2212"; }
.faq p { margin: 0; padding: 0 48px 22px 0; color: var(--ink-soft); }

.quote-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 64px; align-items: start; }
.quote-copy { position: sticky; top: 112px; padding: 34px; border-radius: var(--radius-md); }
.quote-copy .section-title { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.quote-form { scroll-margin-top: 90px; padding: 38px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .9rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 13px; color: var(--ink); background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-sm); }
.field textarea { min-height: 122px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: oklch(54% 0.025 158); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--leaf); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid oklch(76% 0.12 82 / .45); outline-offset: 1px; border-color: var(--forest); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.form-submit { width: 100%; }
.form-note { margin: 14px 0 0; color: var(--ink-soft); font-size: .84rem; }
.form-status { display: none; margin-top: 16px; padding: 15px 16px; border: 1px solid transparent; border-radius: var(--radius-sm); }
.form-status.show { display: block; }
.form-status.error { color: var(--danger); background: var(--danger-bg); border-color: oklch(72% 0.09 28); }
.form-status.success { color: var(--success); background: var(--success-bg); border-color: oklch(70% 0.07 150); }
.status-action { margin-top: 14px; }
.status-link { margin-top: 10px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-stack { display: grid; margin-top: 32px; border-top: 1px solid oklch(82% 0.03 145 / .35); }
.contact-card { padding: 18px 0; border-bottom: 1px solid oklch(82% 0.03 145 / .35); }
.contact-card small { display: block; color: oklch(75% 0.035 145); }
.contact-card strong { display: block; margin-top: 4px; color: var(--paper); }
.advice-row { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: 72px; align-items: center; }
.buyer-example { margin: 0; padding: 30px 0 30px 32px; color: var(--forest); border-left: 1px solid var(--gold-deep); font: 600 1.45rem/1.45 var(--serif); }
.buyer-example cite { display: block; margin-top: 15px; color: var(--ink-soft); font: 600 .82rem/1.4 var(--sans); text-transform: uppercase; letter-spacing: .06em; }

.thank-you-main { min-height: calc(100vh - 114px); display: grid; align-items: center; padding: 80px 0 96px; }
.thank-you-panel { max-width: 780px; padding: 52px; background: var(--paper); border: 1px solid var(--line); border-top: 5px solid var(--forest); }
.confirmation-mark { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 26px; color: var(--paper); background: var(--forest); border-radius: 50%; font-size: 1.45rem; font-weight: 700; }
.thank-you-panel h1 { max-width: 14ch; margin: 0; font: 650 clamp(2.6rem, 6vw, 4.7rem)/1.04 var(--serif); letter-spacing: -.035em; }
.thank-you-lede { max-width: 58ch; margin: 22px 0 0; color: var(--ink-soft); font-size: 1.12rem; }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.thank-you-note { max-width: 62ch; margin: 30px 0 0; padding-top: 24px; color: var(--ink-soft); border-top: 1px solid var(--line); }

.site-footer { color: oklch(84% 0.03 145); background: oklch(19% 0.055 158); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 48px; padding: 68px 0 50px; }
.footer-brand p { max-width: 360px; margin: 18px 0 0; color: oklch(73% 0.035 145); font-size: .92rem; }
.site-footer .brand-name { color: var(--paper); }
.site-footer .brand-tag { color: oklch(73% 0.035 145); }
.footer-title { margin: 0 0 18px; color: var(--paper); font: 650 1rem/1.3 var(--serif); }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links span { color: oklch(76% 0.035 145); font-size: .9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0 86px; border-top: 1px solid oklch(80% 0.03 145 / .25); color: oklch(67% 0.03 145); font-size: .82rem; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 90; min-height: 50px; display: inline-flex; align-items: center; gap: 9px; padding: 0 18px; color: var(--paper); background: oklch(49% 0.15 147); border: 1px solid oklch(39% 0.13 147); border-radius: var(--radius-sm); box-shadow: 0 12px 28px oklch(19% 0.04 158 / .16); font-weight: 700; }
.whatsapp-float::before { content: "WA"; font-size: .72rem; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; }
  .main-nav { position: fixed; inset: 114px 0 auto; display: none; max-height: calc(100vh - 114px); padding: 20px 24px 32px; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); overflow-y: auto; }
  .nav-open .main-nav { display: flex; }
  .main-nav a:not(.button) { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 16px; }
  .intro-grid, .split, .quote-layout, .content-grid { grid-template-columns: 1fr; }
  .intro-grid, .split { gap: 48px; }
  .quote-copy, .info-panel { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid oklch(80% 0.035 145 / .45); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .catalog-grid, .certificate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .variant-grid { grid-template-columns: 1fr; }
  .photo-feature { grid-template-columns: 1fr; }
  .guide-feature { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 48px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-grid article, .choice-grid article + article { padding: 22px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .choice-grid article:last-child { border-bottom: 0; }
  .choice-grid p { min-height: 0; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), 1180px); }
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .topbar { font-size: .9rem; }
  .topbar-inner { min-height: 38px; justify-content: center; }
  .topbar-list { display: none; }
  .nav-wrap { min-height: 70px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 1.08rem; }
  .brand-tag { display: none; }
  .main-nav { inset: 104px 0 auto; max-height: calc(100vh - 104px); }
  .main-nav .button { min-height: 44px; }
  .hero { min-height: 620px; background-position: 64% center; }
  .hero::before { background: oklch(18% 0.065 158 / .85); }
  .hero-inner { padding-block: 72px 92px; }
  .hero-content { padding-left: 18px; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 3.5rem); }
  .hero p { font-size: 1.06rem; }
  .hero-kicker, .section-label, .eyebrow, .breadcrumbs, .buyer-example cite { font-size: .9rem; }
  .hero-note { font-size: .98rem; }
  .hero-actions .button { width: 100%; }
  .hero-note { display: grid; gap: 7px; }
  .trust-grid, .product-grid, .process-grid, .benefit-grid, .footer-grid, .catalog-grid, .certificate-grid, .fact-grid, .photo-pair { grid-template-columns: 1fr; }
  .trust-item { min-height: 88px; padding: 20px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 34px; }
  .rice-art { min-height: 390px; }
  .rice-art-card { left: 20px; right: 20px; bottom: 20px; }
  .photo-stack { min-height: 430px; }
  .photo-stack > img:first-child { width: 92%; height: 390px; }
  .photo-stack > img:last-child { width: 52%; height: 190px; border-width: 6px; }
  .fact-grid > div { min-height: 90px; padding: 18px 8px; text-align: center; border-right: 0; border-bottom: 1px solid oklch(78% 0.04 145 / .35); }
  .fact-grid > div:last-child { border-bottom: 0; }
  .fact-grid strong { font-size: 1.55rem; }
  .catalog-copy { padding: 21px; }
  .catalog-copy h3 { font-size: 1.35rem; }
  .variant-card { grid-template-columns: 120px minmax(0, 1fr); min-height: 210px; }
  .variant-card img { min-height: 210px; }
  .variant-card > div { padding: 20px 18px; }
  .variant-card h3 { font-size: 1.2rem; }
  .mill-gallery { grid-template-columns: 1fr; }
  .mill-gallery figure:nth-child(1), .mill-gallery figure:nth-child(5) { grid-column: auto; }
  .mill-gallery figure, .mill-gallery img { min-height: 240px; }
  .photo-feature > img, .photo-frame { min-height: 340px; }
  .compact-frame { min-height: 400px; }
  .guide-feature { gap: 34px; }
  .guide-feature-images, .guide-feature-images img { min-height: 280px; }
  .guide-callout-grid, .article-layout { grid-template-columns: 1fr; gap: 26px; }
  .article-aside { position: static; }
  .article-aside > div:first-child { display: none; }
  .article-meta { margin-bottom: 20px; font-size: .76rem; }
  .article-lead { font-size: 1.24rem; }
  .buyer-article h2 { margin-top: 46px; font-size: 2rem; }
  .quick-answer { padding: 20px; }
  .comparison-visuals { grid-template-columns: 1fr; }
  .comparison-visuals img { aspect-ratio: 16 / 10; }
  .numbered-checks li { grid-template-columns: 1fr; gap: 6px; padding-left: 48px; }
  .product-card, .product-card:nth-child(odd), .product-card:nth-child(even), .product-card:nth-child(5) { grid-column: auto; grid-template-columns: 112px minmax(0, 1fr); column-gap: 18px; max-width: none; padding: 20px 0; border-right: 0; }
  .product-visual { min-height: 170px; }
  .product-card h3 { font-size: 1.25rem; }
  .product-tag { font-size: .88rem; }
  .number, .benefit-card .number { font-size: .9rem; }
  .product-card p { font-size: 1rem; }
  .product-card .text-link, .benefit-card .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .process-step, .process-step:nth-child(2), .process-step:nth-child(-n+2) { border-right: 0; border-bottom: 1px solid oklch(80% 0.035 145 / .45); }
  .process-step:last-child { border-bottom: 0; }
  .package-stack { grid-template-columns: 1fr; }
  .package-card:nth-child(odd) { border-right: 0; }
  .quote-band-grid, .advice-row { grid-template-columns: 1fr; gap: 32px; }
  .quote-band-grid .button { width: 100%; }
  .page-hero { padding: 66px 0 60px; }
  .page-hero-content { padding-left: 17px; }
  .page-hero h1 { font-size: 2.75rem; }
  .page-hero p, .section-lede { font-size: 1.06rem; }
  .breadcrumbs { min-height: 44px; align-items: center; }
  .breadcrumbs a { min-height: 44px; display: inline-flex; align-items: center; }
  .benefit-card, .benefit-card + .benefit-card { padding: 24px 0; border-left: 0; }
  .process-step p, .package-card span, .product-card p, .info-panel p, .availability-note, .benefit-card p { font-size: 1rem; }
  .spec-row { font-size: .98rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .quote-form { padding: 24px 18px; }
  .field label { font-size: 1rem; }
  .field input, .field select, .field textarea { min-height: 52px; font-size: 1rem; line-height: 1.5; }
  .field select option { font-size: 1rem; }
  .form-note { font-size: .96rem; line-height: 1.55; }
  .quote-copy { padding: 28px 22px; }
  .contact-card small { font-size: .9rem; }
  .buyer-example { padding: 24px 0 24px 20px; font-size: 1.2rem; }
  .thank-you-main { min-height: calc(100vh - 108px); padding: 42px 0 72px; align-items: start; }
  .thank-you-panel { padding: 34px 22px; }
  .thank-you-panel h1 { font-size: clamp(2.4rem, 12vw, 3.3rem); }
  .thank-you-lede { font-size: 1.06rem; }
  .thank-you-actions { display: grid; }
  .thank-you-actions .button { width: 100%; }
  .footer-grid { gap: 32px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-brand p, .footer-links a, .footer-links span { font-size: .96rem; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
  .footer-bottom { padding-bottom: 84px; flex-direction: column; font-size: .9rem; }
  .whatsapp-float { display: none; }
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 9px; background: oklch(98% 0.01 88 / .98); border-top: 1px solid var(--line); }
  .mobile-cta .button { min-height: 48px; padding-inline: 10px; font-size: 1rem; }
}

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

@media (forced-colors: active) {
  .button, .menu-toggle, .field input, .field select, .field textarea { border: 1px solid ButtonText; }
}
