:root {
  --dark: #1f2419; --green: #4a7c1f; --green-d: #35600f; --amber: #e8a01e;
  --ink: #262b21; --ink-soft: #5d6455; --line: #e0e4da; --bg-alt: #f5f7f1;
  --radius: 6px; --wrap: 1180px;
}
:root { --green-d: #35600f; }
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: "Open Sans", "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.7; color: var(--ink); background: #fff; }
h1, h2, h3 { font-family: Oswald, "Arial Narrow", Arial, sans-serif; line-height: 1.2; margin: 0 0 .5em; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
h1 { font-size: 2.5rem; } h2 { font-size: 1.75rem; color: var(--green-d); } h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; } img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-d); } a:hover, a:focus-visible { color: var(--amber); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.container { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 10px rgba(31,36,25,.1); }
.topbar { background: var(--dark); color: #c6cdbb; font-size: .82rem; }
.topbar__in { display: flex; flex-wrap: wrap; gap: 4px 22px; justify-content: space-between; align-items: center; min-height: 32px; }
.topbar p { margin: 0; } .topbar a { color: #fff; text-decoration: none; margin-right: 16px; font-weight: 600; }
.topbar a:hover { color: var(--amber); }
.header__in { display: flex; align-items: center; gap: 20px; min-height: 84px; }
.brand { margin-right: auto; } .brand img { width: 84px; height: auto; }
.primary-nav ul { display: flex; flex-wrap: wrap; gap: 2px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { display: block; padding: 9px 13px; border-radius: var(--radius); color: var(--ink); text-decoration: none; font-family: Oswald, Arial, sans-serif; font-size: .95rem; font-weight: 500; text-transform: uppercase; }
.primary-nav a:hover, .primary-nav a:focus-visible { background: var(--green); color: #fff; }
.nav-toggle { display: none; width: 46px; height: 42px; background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.nav-toggle__box { display: block; position: relative; width: 22px; height: 2px; margin: 0 auto; background: var(--dark); }
.nav-toggle__box::before, .nav-toggle__box::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--dark); }
.nav-toggle__box::before { top: -7px; } .nav-toggle__box::after { top: 7px; }

.hero { position: relative; background: var(--dark); }
.hero__bg { width: 100%; max-height: 440px; object-fit: cover; opacity: .62; }
.hero__panel { position: absolute; inset: auto 0 0 0; padding: 32px 0 30px; background: linear-gradient(180deg, rgba(31,36,25,0), rgba(31,36,25,.9) 45%); color: #fff; }
.hero h1 { color: #fff; max-width: 20ch; } .hero__lead { max-width: 58ch; color: #d9e0cd; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.btn { display: inline-block; padding: 13px 28px; border-radius: 999px; font-family: Oswald, Arial, sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; text-decoration: none; font-size: 1rem; }
.btn--primary { background: var(--amber); color: #2b2205; } .btn--primary:hover { background: #f5b234; color: #2b2205; }
.btn--ghost { border: 2px solid rgba(255,255,255,.65); color: #fff; padding: 11px 26px; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); color: #fff; }

.section { padding: 50px 0; } .section--alt { background: var(--bg-alt); }
.section__title { position: relative; padding-bottom: 12px; margin-bottom: 24px; }
.section__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 58px; height: 4px; background: var(--amber); }
.prose { max-width: 82ch; } .prose p:last-child { margin-bottom: 0; }
.claim { font-family: Oswald, Arial, sans-serif; font-size: 1.25rem; color: var(--green-d); text-transform: uppercase; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cards > * { min-width: 0; }
.card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card figcaption { padding: 16px 18px; }
.card h3 { color: var(--green-d); font-size: 1rem; }
.card p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { border-collapse: collapse; width: 100%; }
caption { text-align: left; padding: 14px 16px; color: var(--ink-soft); font-size: .9rem; }
th, td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; }
tbody th { font-family: Oswald, Arial, sans-serif; font-weight: 500; color: var(--green-d); width: 38%; text-transform: uppercase; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.panel { background: var(--bg-alt); border-left: 4px solid var(--green); border-radius: var(--radius); padding: 20px 24px; }
.panel h3 { color: var(--green-d); } .panel p:last-child { margin-bottom: 0; }

.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery > * { min-width: 0; }
.shot { margin: 0; border-radius: var(--radius); overflow: hidden; background: #ddd; }
.shot img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

.tirolina { display: grid; grid-template-columns: 1fr 1.2fr; gap: 34px; align-items: center; }
.tirolina__img { margin: 0; } .tirolina__img img { width: 100%; border-radius: var(--radius); }

.section--contact { background: var(--dark); color: #cad2bd; }
.section--contact .section__title { color: #fff; }
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact__box { background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 20px 24px; min-width: 0; }
.contact__box h3 { color: var(--amber); }
.contact address { font-style: normal; }
.contact a { color: #fff; font-weight: 600; } .contact a:hover { color: var(--amber); }
.contact p:last-child { margin-bottom: 0; }

.site-footer { background: #161a11; color: #929a85; font-size: .92rem; padding-top: 34px; }
.footer__in { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 26px; padding-bottom: 22px; }
.footer__name { color: #fff; font-family: Oswald, Arial, sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; }
.footer__head { color: #fff; font-weight: 600; margin-bottom: .6em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; } .site-footer li { margin-bottom: 6px; }
.site-footer a { color: #929a85; text-decoration: none; } .site-footer a:hover { color: var(--amber); }
.footer__bottom { border-top: 1px solid #272d1e; padding: 14px 0; }
.footer__bottom p { margin: 0; font-size: .84rem; }

@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, 1fr); } .gallery { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px) { .two-col, .tirolina { grid-template-columns: 1fr; } .footer__in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  h1 { font-size: 1.85rem; } h2 { font-size: 1.4rem; }
  .section { padding: 34px 0; }
  .nav-toggle { display: block; }
  .primary-nav { display: none; width: 100%; order: 3; padding-bottom: 12px; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { padding: 11px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .header__in { flex-wrap: wrap; min-height: 68px; }
  .hero__bg { max-height: 280px; } .hero__panel { position: static; background: var(--dark); }
  .cards, .contact, .footer__in { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .topbar__in { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
