:root {
  color-scheme: light;
  --ink: #15191b;
  --muted: #5d6569;
  --line: #cfd5d2;
  --paper: #f4f1e9;
  --white: #ffffff;
  --green: #223b34;
  --green-dark: #14241f;
  --clay: #9b6b3a;
  --sand: #e5ded1;
  --notice: #f6ead9;
  --notice-line: #c49b61;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.nav-open { overflow: hidden; }

a { color: inherit; }

img { max-width: 100%; }

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 233, 0.96);
  border-bottom: 1px solid rgba(21, 25, 27, 0.14);
}

.header-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 168px;
  height: auto;
  display: block;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.header-grid > .site-nav {
  justify-self: end;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--clay);
}

.language-switch {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.language-switch select {
  width: auto;
  min-width: 68px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.08) brightness(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 36, 31, 0.78) 0%, rgba(20, 36, 31, 0.48) 48%, rgba(20, 36, 31, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.24));
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
  padding: 72px 0 84px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .kicker,
.contact-section .kicker { color: #e1c99f; }

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
}

h3 { margin: 0; }

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--clay);
  color: #fff;
  border-color: var(--clay);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.button.secondary-dark {
  border-color: var(--green);
  color: var(--green);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.asset-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.lot-sheet {
  background: #f7f2e7;
  color: var(--ink);
  border: 1px solid #b7aa96;
  padding: 22px;
}

.hero-sheet {
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.sheet-label {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay);
}

.lot-sheet dl {
  margin: 0;
  display: grid;
  border-top: 1px solid var(--line);
}

.lot-sheet dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.lot-sheet dt { color: var(--muted); }

.lot-sheet dd {
  margin: 0;
  font-weight: 800;
}

.sheet-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.text-button {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.lot-section,
.verification-section {
  background: var(--white);
}

.faq-section {
  background: #f0ede6;
}

.split-grid,
.verification-grid,
.contact-grid,
.image-band-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.section-copy p,
.contact-grid p {
  color: var(--muted);
  font-size: 18px;
}

.notice-line {
  padding-left: 14px;
  border-left: 3px solid var(--notice-line);
}

.section-header {
  margin-bottom: 28px;
}

.section-header.compact {
  margin-bottom: 20px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--sand);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

tr:last-child td { border-bottom: 0; }

.buyer-section {
  background: #f0ede6;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.buyer-grid article,
.route-list li,
.faq-list details {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.buyer-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--clay);
  font-weight: 800;
}

.buyer-grid h3 {
  margin-bottom: 9px;
}

.buyer-grid p,
.route-list p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.image-band {
  background: var(--white);
}

.image-band figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.image-band figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-band figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 13px;
}

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

.check-list li {
  padding: 12px 14px;
  border-left: 3px solid var(--clay);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.route-section {
  background: #e7e1d5;
}

.route-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 44px;
}

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

.route-list li {
  display: grid;
  grid-template-columns: 48px 0.72fr 1.28fr;
  gap: 18px;
  align-items: start;
}

.route-list span {
  font-weight: 800;
  color: var(--clay);
}

.verification-panel {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

body.is-rtl .hero-copy,
body.is-rtl .section-copy,
body.is-rtl .faq-list,
body.is-rtl .request-form {
  direction: rtl;
  text-align: right;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-top: 12px;
}

.contact-section {
  background: var(--green-dark);
  color: var(--white);
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.78);
}

address {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.request-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px;
  font: inherit;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.request-form select option { color: var(--ink); }

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.site-footer {
  background: #111a17;
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand span {
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.credit-link img {
  width: 76px;
  height: auto;
  display: inline-block;
}

.legal-page { background: var(--white); }

.legal-content {
  max-width: 860px;
  padding: 58px 0;
}

.legal-content h1 {
  color: var(--ink);
  font-size: 44px;
  line-height: 1.05;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.draft-warning {
  padding: 14px;
  border: 1px solid var(--notice-line);
  background: var(--notice);
  color: #5e4325;
}

@media (max-width: 920px) {
  h1 { font-size: 54px; }
  h2 { font-size: 36px; }

  .hero-grid,
  .split-grid,
  .verification-grid,
  .route-grid,
  .contact-grid,
  .image-band-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-sheet {
    max-width: 420px;
  }

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

  .route-list li {
    grid-template-columns: 46px 1fr;
  }

  .route-list p {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand-logo {
    width: 146px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch span {
    display: none;
  }

  .language-switch select {
    min-width: 58px;
    padding: 8px 7px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .legal-page .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .legal-page .site-nav a {
    padding: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 36, 31, 0.82) 0%, rgba(20, 36, 31, 0.64) 62%, rgba(20, 36, 31, 0.38) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08));
  }

  .hero-grid {
    padding: 50px 0 56px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }

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

  .section {
    padding: 58px 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

}
