:root {
  --ink: #17211f;
  --muted: #64716f;
  --line: #dce3e1;
  --paper: #f4f6f4;
  --panel: #ffffff;
  --green: #07584f;
  --green-2: #0b3036;
  --red: #c73a2d;
  --gold: #b8872b;
  --blue: #246f9c;
  --shadow: 0 16px 42px rgba(16, 34, 32, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.topbar { background: var(--green-2); color: #fff; font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar a { text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 22px; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 238px; }
.brand-mark { width: 50px; height: 42px; display: grid; place-items: center; background: linear-gradient(135deg, var(--green), var(--blue)); color: #fff; border-radius: 4px; font-weight: 900; font-size: 13px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 18px; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 12px; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 16px; font-size: 14px; color: #33413d; }
.main-nav a:hover { color: var(--red); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 6px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--red); border-radius: 4px; background: var(--red); color: #fff; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(184, 50, 50, .22); }
.btn.secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn.light { background: #fff; color: var(--green-2); border-color: #fff; }

.hero { position: relative; min-height: 680px; display: grid; align-items: end; overflow: hidden; background: #102227; color: #fff; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7, 25, 28, .94), rgba(9, 48, 54, .72) 46%, rgba(199, 58, 45, .18)); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 760px) 190px; gap: 36px; align-items: end; justify-content: space-between; padding: 118px 0 66px; }
.hero-copy { padding-bottom: 36px; }
.eyebrow { display: inline-block; color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: 0; font-size: 13px; margin-bottom: 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 74px); line-height: .98; letter-spacing: 0; margin-bottom: 22px; }
.hero p { max-width: 690px; color: rgba(255,255,255,.86); font-size: 19px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.market-strip { display: grid; gap: 1px; background: rgba(255,255,255,.26); border: 1px solid rgba(255,255,255,.34); }
.market-strip strong, .market-strip span { min-height: 58px; display: grid; place-items: center; background: rgba(8, 43, 49, .82); font-weight: 800; }
.market-strip strong { min-height: 82px; background: var(--red); font-size: 28px; }

.section { padding: 86px 0; }
.section[id] { scroll-margin-top: 96px; }
.section-head { max-width: 760px; margin-bottom: 30px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.06; letter-spacing: 0; margin-bottom: 16px; }
h3 { font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
p { color: var(--muted); }
.route-section { background: #fff; }
.route-layout { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: 52px; align-items: start; }
.route-line { display: grid; grid-template-columns: 12px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.route-line > span { width: 12px; min-height: 100%; background: var(--green); border-radius: 6px; }
.route-line:nth-child(2) > span { background: var(--red); }
.route-line:nth-child(3) > span { background: var(--blue); }
.route-line a { color: var(--red); font-weight: 800; }

.products-section { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-tile { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: 6px; overflow: hidden; box-shadow: 0 10px 24px rgba(27, 36, 34, .06); }
.product-tile:nth-child(2) { border-top-color: var(--red); }
.product-tile:nth-child(3) { border-top-color: var(--blue); }
.product-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #e9ebe8; }
.product-tile div { padding: 20px; }
.product-tile a:hover { color: var(--red); }

.notes-band { background: var(--green-2); color: #fff; }
.notes-band p { color: rgba(255,255,255,.78); }
.notes-layout { display: grid; grid-template-columns: minmax(240px, 340px) 1fr; gap: 40px; }
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.18); }
.notes-grid article { background: rgba(255,255,255,.08); padding: 24px; }

.buyer-section { background: #fff; }
.buyer-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 24px; color: #33413d; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.image-mosaic { display: grid; grid-template-columns: .88fr 1fr; gap: 12px; }
.image-mosaic img { width: 100%; object-fit: cover; border-radius: 8px; }
.image-mosaic img:first-child { grid-row: span 2; height: 520px; }
.image-mosaic img:not(:first-child) { height: 254px; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: minmax(240px, 340px) 1fr; gap: 44px; }
.faq { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 800; }
details p { margin: 12px 0 0; }

.contact-band { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 44px; align-items: start; }
.form { background: linear-gradient(145deg, var(--green-2), #10262a); color: #fff; border-radius: 6px; padding: 28px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 7px; color: rgba(255,255,255,.86); font-weight: 700; }
.form input, .form textarea { width: 100%; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.1); color: #fff; border-radius: 6px; padding: 12px; font: inherit; }
.form textarea { min-height: 140px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,.6); }
.form .btn { width: fit-content; background: var(--gold); border-color: var(--gold); color: #1e211c; }
.form-status { color: #fff; min-height: 24px; margin: 0; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.content-hero { padding: 86px 0; background: linear-gradient(180deg, #fff, #f7f9f8); border-bottom: 1px solid var(--line); }
.content-hero h1 { color: var(--green-2); max-width: 860px; }
.content-hero p { max-width: 760px; font-size: 18px; }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.content-section { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px; margin-bottom: 16px; }
aside { background: var(--green-2); color: #fff; border-radius: 6px; padding: 24px; position: sticky; top: 104px; }
aside p { color: rgba(255,255,255,.78); }

.site-footer { background: #101c19; color: #fff; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
.site-footer p { color: rgba(255,255,255,.68); }
.site-footer a { display: block; color: rgba(255,255,255,.78); margin: 7px 0; font: inherit; }
.site-footer a:hover { color: #fff; }
.social-row { display: flex; gap: 10px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 24px; }
.social-row a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 6px; margin: 0; }
.legal-row { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.62); font-size: 13px; margin-top: 28px; }
.legal-row a { display: inline; margin: 0; }

.modal { position: fixed; inset: 0; display: none; place-items: center; background: rgba(0,0,0,.48); z-index: 80; padding: 20px; }
.modal.open { display: grid; }
.modal-card { width: min(440px, 100%); background: #fff; color: var(--ink); padding: 28px; border-radius: 8px; }

@media (max-width: 980px) {
  .header-inner { min-height: 68px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .header-inner > .btn { display: none; }
  .hero-layout, .route-layout, .notes-layout, .buyer-layout, .faq-layout, .contact-grid, .content-layout { grid-template-columns: 1fr; }
  .market-strip { grid-template-columns: repeat(5, 1fr); }
  .market-strip strong, .market-strip span { min-height: 48px; font-size: 13px; }
  .product-grid, .notes-grid, .footer-grid { grid-template-columns: 1fr; }
  .image-mosaic img:first-child, .image-mosaic img:not(:first-child) { height: auto; }
  aside { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar-inner { display: grid; padding: 8px 0; }
  .brand { min-width: 0; }
  .hero { min-height: 640px; }
  .hero-layout { padding: 92px 0 42px; }
  .hero-copy { padding-bottom: 10px; }
  h1 { font-size: 40px; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
}
