:root {
  --ink: #173229;
  --ink-soft: #52655e;
  --forest: #123c2c;
  --forest-deep: #0a2b20;
  --green: #1e6a49;
  --lime: #ddeb65;
  --lime-hover: #edf77f;
  --cream: #f6f4ea;
  --sand: #e7e0cf;
  --white: #fff;
  --rust: #b95e35;
  --line: rgba(23, 50, 41, .13);
  --shadow: 0 24px 70px rgba(20, 53, 41, .12);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--lime);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.launch-bar {
  background: var(--forest-deep);
  color: rgba(255,255,255,.8);
  font-size: 13px;
}
.launch-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.launch-inner a {
  margin-left: 4px;
  color: var(--lime);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(221,235,101,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(221,235,101,0); }
  100% { box-shadow: 0 0 0 0 rgba(221,235,101,0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,244,234,.93);
  border-bottom: 1px solid rgba(23,50,41,.07);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 7px 22px rgba(10,43,32,.11);
}
.brand-mark img {
  width: 52px;
  height: 40px;
  object-fit: contain;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  letter-spacing: -.5px;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--green);
  transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 15px; }
.market-language-links {
  padding: 3px;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}
.market-language-links a {
  min-width: 29px;
  height: 28px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #7a8983;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .3px;
  text-decoration: none;
}
.market-language-links a:hover,
.market-language-links a:focus-visible {
  background: var(--forest);
  color: var(--white);
}
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg { width: 18px; height: 18px; }
.button-small { min-height: 42px; padding-inline: 17px; }
.button-dark { background: var(--forest); color: var(--white); box-shadow: 0 9px 24px rgba(18,60,44,.2); }
.button-dark:hover { background: var(--forest-deep); }
.button-accent { background: var(--lime); color: var(--forest-deep); box-shadow: 0 10px 28px rgba(14,40,29,.2); }
.button-accent:hover { background: var(--lime-hover); }
.button-light { background: var(--white); color: var(--forest-deep); box-shadow: 0 10px 28px rgba(4,29,20,.17); }
.button-light:hover { background: var(--cream); }
.button-full { width: 100%; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 640px;
  color: var(--white);
  background: var(--forest-deep);
  margin-bottom: 80px;
}
.hero-media, .hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media {
  background: url("buzafold.jpg") center 48% / cover no-repeat;
  filter: saturate(.83);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,31,22,.94) 0%, rgba(5,31,22,.75) 48%, rgba(5,31,22,.25) 100%),
    linear-gradient(0deg, rgba(5,31,22,.62) 0%, transparent 45%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 562px;
  padding: 88px 0 94px;
  display: grid;
  grid-template-columns: minmax(0, 700px) 300px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--lime); }
.eyebrow-line { width: 34px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 750px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.8px;
  text-wrap: balance;
}
.hero-copy > p {
  max-width: 620px;
  margin: 25px 0 31px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.light-link { color: var(--white); }
.hero-note {
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.note-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest-deep);
}
.note-icon svg { width: 24px; height: 24px; }
.hero-note strong { display: block; font-size: 15px; }
.hero-note p { margin: 6px 0 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.55; }

.search-wrap {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
}
.market-search {
  min-height: 90px;
  padding: 10px 10px 10px 25px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  align-items: center;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 65px rgba(7,35,25,.2);
}
.search-field {
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}
.search-field:first-child { padding-left: 0; }
.search-field label {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.search-field input, .search-field select {
  width: 100%;
  height: 30px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #66756f;
  font-size: 13px;
}
.search-field select { cursor: pointer; }
.input-with-icon { display: flex; align-items: center; gap: 8px; }
.input-with-icon svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; }
.button-search {
  align-self: stretch;
  min-width: 160px;
  border-radius: 13px;
  background: var(--forest);
  color: var(--white);
}

.proof-strip { padding: 12px 0 72px; }
.proof-grid {
  display: grid;
  grid-template-columns: .8fr .8fr .8fr 1.7fr;
  align-items: center;
}
.proof-item {
  min-height: 58px;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.proof-item:first-child { padding-left: 0; }
.proof-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}
.proof-item > span { margin-top: 7px; color: var(--ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .8px; }
.proof-wide { padding-right: 0; flex-direction: row; align-items: center; gap: 18px; border-right: 0; }
.proof-wide p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.avatar-stack { display: flex; flex-shrink: 0; padding-left: 8px; }
.avatar-stack span {
  width: 36px;
  height: 36px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
}
.avatar-stack span:nth-child(2) { background: #b75f36; }
.avatar-stack span:nth-child(3) { background: #d2a433; }
.avatar-stack span:nth-child(4) { background: #376c92; }

.action-hub {
  padding: 50px 0 110px;
  background: var(--cream);
}
.action-heading { margin-bottom: 42px; }
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.action-card {
  position: relative;
  min-height: 480px;
  padding: 48px;
  overflow: hidden;
  border-radius: 28px;
}
.action-publish {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  background:
    radial-gradient(circle at 15% 15%, rgba(221,235,101,.13), transparent 34%),
    var(--forest);
  color: var(--white);
}
.action-browse {
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--forest-deep);
}
.action-photo {
  position: absolute;
  inset: 0;
}
.action-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,32,23,.96) 0%, rgba(6,32,23,.72) 48%, rgba(6,32,23,.18) 100%);
}
.action-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.action-number {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 2;
  color: rgba(255,255,255,.45);
  font-family: Georgia, serif;
  font-size: 18px;
}
.action-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: var(--lime);
}
.action-icon svg { width: 31px; height: 31px; }
.action-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}
.action-kicker {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.action-card h3 {
  margin: 12px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.03;
  letter-spacing: -1.2px;
}
.action-card p {
  max-width: 410px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.action-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.action-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 23px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
}
.action-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}
.action-browse .action-copy { width: 100%; }
.mini-stats {
  max-width: 260px;
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.mini-stats span {
  padding: 15px 12px 15px 0;
  display: flex;
  flex-direction: column;
}
.mini-stats span + span {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.22);
}
.mini-stats strong {
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1;
}
.mini-stats small {
  margin-top: 5px;
  color: rgba(255,255,255,.6);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.section { padding: 105px 0; }
.offers-section { background: var(--white); }
.section-heading { margin-bottom: 42px; }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.7px;
}
.section-heading p { max-width: 570px; margin: 15px 0 0; color: var(--ink-soft); }
.centered { max-width: 700px; margin-inline: auto; text-align: center; }
.centered-eyebrow { justify-content: center; }
.filter-chips { margin-bottom: 28px; display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none; }
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chip {
  padding: 10px 17px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}
.filter-chip.active, .filter-chip:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.offer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.offer-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.offer-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow); }
.offer-card[hidden] { display: none; }
.offer-image {
  position: relative;
  height: 215px;
  display: block;
  overflow: hidden;
  background: #d7ded8;
}
.offer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.offer-card:hover .offer-image img { transform: scale(1.05); }
.offer-type, .demo-badge {
  position: absolute;
  top: 14px;
  padding: 6px 10px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.offer-type { left: 14px; background: var(--lime); color: var(--forest-deep); }
.offer-type.buy { background: #ffe0c2; color: #7c3717; }
.demo-badge { right: 14px; background: rgba(8,36,26,.7); color: var(--white); backdrop-filter: blur(8px); }
.offer-content { padding: 21px 19px 18px; }
.offer-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .6px; text-transform: uppercase; }
.location { display: flex; align-items: center; gap: 4px; color: #77847f; }
.location svg { width: 12px; height: 12px; }
.offer-content h3 { margin: 12px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.16; letter-spacing: -.4px; }
.offer-content h3 a:hover { color: var(--green); }
.offer-content > p { min-height: 62px; margin: 0 0 18px; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.company-line { padding-top: 15px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; border-top: 1px solid var(--line); }
.company-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--forest);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
}
.company-avatar.rust { background: var(--rust); }
.company-avatar.gold { background: #b88a25; }
.company-avatar.grape { background: #5c4b70; }
.company-line strong { display: block; overflow: hidden; font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }
.company-line small { display: block; color: #89958f; font-size: 9px; }
.verified { color: var(--green); }
.verified svg { width: 18px; height: 18px; }
.offer-footer {
  margin: 17px -19px -18px;
  padding: 14px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f8f8f3;
}
.quantity { display: flex; flex-direction: column; }
.quantity small { color: #8b9791; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.quantity strong { font-size: 13px; }
.contact-button {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
}
.contact-button:hover { background: var(--green); }
.no-results {
  padding: 70px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 24px;
}
.no-results svg { width: 42px; height: 42px; color: var(--green); }
.no-results h3 { margin: 13px 0 5px; font-family: Georgia, serif; font-size: 28px; }
.no-results p { margin: 0 0 22px; color: var(--ink-soft); }

.categories-section { background: var(--cream); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.category-card {
  min-height: 220px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.55);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.category-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow); }
.category-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8ebcf;
  color: var(--forest);
}
.category-icon svg { width: 30px; height: 30px; }
.category-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; line-height: 1.25; }
.category-card > span:last-child { margin-top: 11px; color: var(--green); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .7px; }

.process-section { background: #e9eadb; }
.process-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: center; }
.process-copy h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4.2vw, 57px); line-height: 1.08; letter-spacing: -1.8px; }
.process-copy > p { margin: 22px 0 30px; color: var(--ink-soft); }
.process-steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-steps li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(23,50,41,.16);
}
.process-steps li:first-child { border-top: 1px solid rgba(23,50,41,.16); }
.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,50,41,.2);
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 17px;
}
.process-steps h3 { margin: 1px 0 6px; font-family: Georgia, serif; font-size: 23px; }
.process-steps p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.listing-cta { position: relative; overflow: hidden; background: var(--forest-deep); color: var(--white); }
.listing-cta-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,42,29,.94) 0%, rgba(8,42,29,.83) 55%, rgba(8,42,29,.58) 100%),
    url("winegar.jpg") center / cover no-repeat;
  opacity: .85;
}
.listing-cta-inner {
  position: relative;
  z-index: 1;
  min-height: 600px;
  padding: 90px 0;
  display: grid;
  grid-template-columns: minmax(0, 620px) 390px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-kicker { color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: 1.7px; text-transform: uppercase; }
.listing-cta h2 { margin: 17px 0 0; font-family: Georgia, serif; font-size: clamp(43px, 5vw, 67px); line-height: 1.04; letter-spacing: -2px; }
.cta-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.free-label {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.free-label::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); }
.cta-panel ul { margin: 0 0 26px; padding: 0; list-style: none; }
.cta-panel li { position: relative; margin: 13px 0; padding-left: 28px; color: rgba(255,255,255,.85); font-size: 13px; }
.cta-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(221,235,101,.15);
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}
.cta-panel small { display: block; margin-top: 13px; color: rgba(255,255,255,.55); text-align: center; font-size: 9px; }

.site-footer { background: #071f17; color: rgba(255,255,255,.73); }
.footer-main { padding: 72px 0 55px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 70px; }
.footer-logo { color: var(--white); }
.footer-brand p { max-width: 330px; margin: 21px 0 13px; font-size: 13px; }
.footer-email { color: var(--lime); font-size: 13px; font-weight: 800; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-size: 12px; }
.footer-column strong { margin-bottom: 7px; color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-column a:hover { color: var(--lime); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; text-transform: uppercase; letter-spacing: .8px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .main-nav { gap: 16px; }
  .main-nav a:nth-last-child(1) { display: none; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .process-layout { gap: 55px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }
  .launch-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .nav-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: rgba(18,60,44,.08);
  }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 115px 0 auto;
    min-height: calc(100vh - 115px);
    padding: 35px 24px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
  }
  .main-nav.open { display: flex; }
  .main-nav a, .main-nav a:nth-last-child(1) { padding: 17px 5px; display: block; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 23px; }
  .header-actions .button { display: none; }
  .market-language-links a { min-width: 27px; height: 27px; padding-inline: 5px; }
  .hero { margin-bottom: 0; }
  .hero-layout { min-height: auto; padding: 90px 0 190px; grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .hero h1 { font-size: clamp(45px, 10vw, 68px); }
  .search-wrap { bottom: 30px; }
  .market-search { grid-template-columns: 1fr 1fr; gap: 10px; padding: 13px; }
  .search-field { padding: 8px 12px; border: 0; }
  .search-keyword { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .button-search { grid-column: 1 / -1; min-height: 52px; }
  .proof-strip { padding: 45px 0 60px; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 25px 0; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-wide { grid-column: 1 / -1; padding-left: 0; }
  .action-grid { grid-template-columns: 1fr; }
  .action-card { min-height: 430px; }
  .heading-row { align-items: flex-start; flex-direction: column; }
  .process-layout, .listing-cta-inner { grid-template-columns: 1fr; }
  .listing-cta-inner { padding: 80px 0; }
  .footer-main { grid-template-columns: 2fr 1fr 1fr; gap: 45px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  .header-inner { height: 70px; gap: 10px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 21px; }
  .header-actions { gap: 0; }
  .market-language-links a { min-width: 20px; height: 25px; padding-inline: 2px; font-size: 7px; }
  .main-nav { inset: 105px 0 auto; min-height: calc(100vh - 105px); }
  .hero { min-height: 730px; }
  .hero-media { background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,31,22,.92), rgba(5,31,22,.52)); }
  .hero-layout { padding: 72px 0 285px; }
  .hero-copy { min-width: 0; }
  .hero h1 { font-size: clamp(36px, 9.6vw, 47px); letter-spacing: -1.8px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .search-wrap { bottom: 21px; }
  .market-search { grid-template-columns: 1fr; }
  .search-keyword, .button-search { grid-column: auto; }
  .search-field { border-bottom: 1px solid var(--line); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { padding: 0 13px; }
  .proof-item strong { font-size: 22px; }
  .proof-item > span { font-size: 9px; }
  .action-hub { padding: 40px 0 78px; }
  .action-card { min-height: 480px; padding: 32px 25px; }
  .action-publish { grid-template-columns: 1fr; align-content: center; gap: 22px; }
  .action-icon { width: 60px; height: 60px; }
  .action-card h3 { font-size: 39px; }
  .section { padding: 78px 0; }
  .section-heading h2 { font-size: 39px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-image { height: 235px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card { min-height: 175px; padding: 20px 12px; }
  .category-icon { width: 54px; height: 54px; margin-bottom: 14px; }
  .category-card strong { font-size: 16px; }
  .process-layout { gap: 45px; }
  .process-copy h2 { font-size: 40px; }
  .process-steps li { grid-template-columns: 55px 1fr; gap: 13px; }
  .step-number { width: 45px; height: 45px; }
  .listing-cta h2 { font-size: 43px; }
  .cta-panel { padding: 26px 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

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