:root {
  --ink: #14211b;
  --muted: #66716b;
  --green-950: #03170f;
  --green-900: #062417;
  --green-800: #0b3825;
  --green-700: #14523a;
  --gold: #dcae58;
  --gold-strong: #f0c46e;
  --ivory: #fbfaf5;
  --sand: #f1eadc;
  --line: #e6ddcb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(4, 20, 13, 0.14);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 23, 15, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(220, 174, 88, 0.22);
  backdrop-filter: blur(18px);
}

.topbar {
  min-height: 76px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(240px, 520px) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand svg {
  width: 44px;
  height: 44px;
  fill: var(--gold);
  filter: drop-shadow(0 8px 18px rgba(220, 174, 88, 0.22));
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.search {
  position: relative;
}

.search input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 18px;
  outline: none;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

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

.language-select {
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(220, 174, 88, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 10px;
  outline: none;
}

.language-select option {
  background: var(--green-900);
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: linear-gradient(135deg, #f4cf82, var(--gold));
  color: #1c1306;
  box-shadow: 0 14px 34px rgba(220, 174, 88, 0.25);
}

.header-actions .button {
  min-width: 172px;
}

.button--outline {
  border-color: rgba(244, 207, 130, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav {
  width: min(1280px, calc(100% - 32px));
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -12px;
  height: 2px;
  background: var(--gold);
  transition: right 180ms ease;
}

.nav a:hover::after {
  right: 0;
}

.section {
  padding: 78px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 70% 12%, rgba(220, 174, 88, 0.14), transparent 24rem),
    linear-gradient(140deg, var(--green-950), var(--green-900) 52%, #0d1f18);
  color: var(--white);
}

.section-soft {
  background:
    linear-gradient(90deg, rgba(220, 174, 88, 0.1), transparent 30%),
    var(--sand);
}

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 88px 0;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.65rem, 4.9vw, 4.6rem);
  margin-bottom: 22px;
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 16px;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  margin-bottom: 26px;
}

.hero__checks,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__checks span,
.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(220, 174, 88, 0.28);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
}

.hero__checks span::before,
.feature-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__media {
  position: relative;
  min-height: 380px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(244, 207, 130, 0.2);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  opacity: 0.95;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 23, 15, 0.08), transparent 42%);
  pointer-events: none;
}

.float-card {
  position: absolute;
  display: grid;
  gap: 2px;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(251, 250, 245, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  z-index: 2;
}

.float-card strong {
  color: var(--green-800);
  font-size: 1.55rem;
  line-height: 1;
}

.float-card span {
  max-width: 160px;
  color: var(--muted);
  font-size: 0.8rem;
}

.float-card--top {
  top: 18px;
  left: 18px;
}

.float-card--bottom {
  right: 18px;
  bottom: 18px;
}

.leaf-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.leaf-field span {
  position: absolute;
  width: 18px;
  height: 34px;
  border-radius: 100% 0;
  background: rgba(244, 207, 130, 0.18);
  transform: rotate(35deg);
  animation: drift 9s ease-in-out infinite;
}

.leaf-field span:nth-child(1) {
  left: 12%;
  top: 16%;
}

.leaf-field span:nth-child(2) {
  left: 82%;
  top: 18%;
  animation-delay: 1.4s;
}

.leaf-field span:nth-child(3) {
  left: 56%;
  top: 76%;
  animation-delay: 2.8s;
}

.leaf-field span:nth-child(4) {
  left: 24%;
  top: 68%;
  animation-delay: 4.1s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(35deg);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(16px, -22px, 0) rotate(55deg);
    opacity: 0.75;
  }
}

.proof-bar {
  background: var(--green-800);
  color: var(--white);
  border-top: 1px solid rgba(220, 174, 88, 0.32);
  border-bottom: 1px solid rgba(220, 174, 88, 0.28);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  display: grid;
  gap: 2px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid div:first-child {
  border-left: 0;
}

.proof-grid strong {
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.section-heading {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split p,
.quality-panel p,
.market-grid p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-dark p:not(.eyebrow),
.quality-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: 230px 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(29, 31, 25, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(29, 31, 25, 0.12);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 23%;
  background: #f7f3ea;
}

.product-card div {
  padding: 22px;
}

.product-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.product-card span {
  display: inline-flex;
  border-radius: 999px;
  background: #f6ecd8;
  color: #754f12;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 10px;
}

.product-card--dark {
  background: var(--green-900);
  color: var(--white);
  border-color: rgba(220, 174, 88, 0.36);
}

.product-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.section-soft .feature-list span {
  background: var(--white);
  border-color: var(--line);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process div {
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px 18px;
  box-shadow: 0 16px 34px rgba(29, 31, 25, 0.06);
}

.process strong {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
  align-items: stretch;
}

.quality-panel {
  border-radius: 8px;
  padding: 34px;
  min-height: 360px;
  display: grid;
  align-content: end;
}

.spec-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(29, 31, 25, 0.06);
}

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

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

th {
  color: var(--green-800);
  background: #f8f2e8;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.market-band {
  background:
    linear-gradient(90deg, rgba(3, 23, 15, 0.9), rgba(3, 23, 15, 0.72)),
    url("assets/ref-about.jpg") center 36% / cover;
  color: var(--white);
}

.market-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.market-tags span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(244, 207, 130, 0.34);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.contact-cards a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(29, 31, 25, 0.05);
}

.contact-cards strong {
  color: var(--green-800);
}

.contact-cards span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9d1c2;
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(220, 174, 88, 0.18);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer {
  background: #091710;
  color: var(--white);
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 38px;
}

.footer p,
.footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.brand--footer {
  color: var(--white);
  margin-bottom: 16px;
}

.footer h3 {
  font-family: inherit;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-strong);
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.mini-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mini-form input {
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.mini-form button {
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #1c1306;
  font-weight: 800;
  padding: 0 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 20px;
  background:
    radial-gradient(circle at 50% 42%, rgba(220, 174, 88, 0.18), transparent 22rem),
    var(--green-950);
  color: var(--white);
  text-align: center;
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.splash strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
}

.splash small {
  color: rgba(255, 255, 255, 0.72);
}

.splash__mark {
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
}

.splash__mark span {
  position: absolute;
  width: 34px;
  height: 72px;
  border-radius: 100% 0;
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  transform-origin: bottom center;
  animation: bloom 950ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.splash__mark span:nth-child(1) {
  transform: rotate(-34deg) scale(0.2);
}

.splash__mark span:nth-child(2) {
  transform: rotate(0) scale(0.2);
  animation-delay: 120ms;
}

.splash__mark span:nth-child(3) {
  transform: rotate(34deg) scale(0.2);
  animation-delay: 240ms;
}

@keyframes bloom {
  to {
    transform: rotate(var(--angle, 0deg)) scale(1);
  }
}

.splash__mark span:nth-child(1) {
  --angle: -34deg;
}

.splash__mark span:nth-child(2) {
  --angle: 0deg;
}

.splash__mark span:nth-child(3) {
  --angle: 34deg;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  max-width: min(440px, calc(100% - 32px));
  transform: translate(-50%, 120%);
  border-radius: 8px;
  background: var(--green-900);
  color: var(--white);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .search {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 12px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
    width: 100%;
    padding: 0 20px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  .nav a::after {
    display: none;
  }

  .hero__grid,
  .split,
  .quality-grid,
  .market-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero__media,
  .hero__media img {
    min-height: 300px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container,
  .topbar,
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    min-height: 70px;
    gap: 12px;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .brand svg {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    display: none;
  }

  .language-select {
    max-width: 132px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 56px 0;
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .float-card {
    position: static;
    margin: 10px;
  }

  .hero__media {
    display: grid;
  }

  .hero__media img {
    min-height: 230px;
  }

  .product-grid,
  .proof-grid,
  .process,
  .form-row,
  .footer-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    grid-template-rows: 210px 1fr;
  }

  .product-card img {
    height: 210px;
  }

  .proof-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-grid div:first-child {
    border-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .splash {
    display: none;
  }

  body.is-locked {
    overflow: auto;
  }
}
