@font-face {
  font-family: "Geist";
  src: url("./fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
  --ink: #0a0c0b;
  --ink-soft: #151816;
  --paper: #e9e6dc;
  --paper-dim: #b8b6ad;
  --accent: #ffcd4a;
  --line: rgba(233, 230, 220, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.mobile-nav[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 0 3.4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.brand img {
  width: 122px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-shop,
.footer-bottom a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.header-shop:hover,
.footer-bottom a:hover {
  color: var(--accent);
}

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

.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 10, 9, 0.34);
  backdrop-filter: blur(14px);
}

.language-switch button {
  border: 0;
  border-radius: 999px;
  padding: 6px 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-switch button span {
  margin-right: 3px;
}

.language-switch button.active {
  background: #eeeae0;
  color: #0a0c0b;
}

.header-shop {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  height: 100svh;
  overflow: hidden;
  background: #171a18;
}

.hero-image,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 56% center;
  animation: heroIn 1.3s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.82) 0%, rgba(3, 5, 4, 0.45) 45%, rgba(3, 5, 4, 0.1) 76%),
    linear-gradient(0deg, rgba(2, 4, 3, 0.65) 0%, transparent 45%);
}

.hero-grain {
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 122px 6vw 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(68px, 8.3vw, 138px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.82);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  margin-top: 58px;
}

.hero-bottom > p {
  width: min(460px, 48vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.round-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 168px;
  height: 58px;
  padding: 0 17px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.round-link b {
  font-size: 19px;
}

.round-link:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero-index,
.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 35px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-index {
  left: 3.4vw;
}

.hero-scroll {
  right: 3.4vw;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 17px 0;
  border-top: 1px solid #1f211f;
  border-bottom: 1px solid #1f211f;
  background: var(--accent);
  color: #0a0c0b;
}

.marquee > div {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.marquee i {
  font-style: normal;
}

.section-shell {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 120px 5vw;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  gap: clamp(58px, 7vw, 120px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.product-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  height: 700px;
  background: var(--paper);
}

.product-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #222522;
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-visual:hover img,
.field-card:hover img {
  transform: scale(1.035);
}

.image-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 12px;
  background: rgba(10, 12, 11, 0.78);
  color: #fff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  backdrop-filter: blur(8px);
}

.product-copy h2,
.field-heading h2,
.catalog-content h2 {
  margin: 0;
  font-size: clamp(52px, 5.2vw, 88px);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.section-intro {
  max-width: 560px;
  margin: 30px 0 42px;
  color: #4f524f;
  font-size: 16px;
  line-height: 1.8;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 42px;
  border-top: 1px solid rgba(10, 12, 11, 0.22);
}

.spec-grid div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 12, 11, 0.22);
}

.spec-grid div:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid rgba(10, 12, 11, 0.22);
}

.spec-grid div:nth-child(even) {
  padding-left: 20px;
}

.spec-grid dt {
  margin-bottom: 6px;
  color: #727570;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.button-row,
.catalog-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.primary-button,
.light-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 174px;
  min-height: 52px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.primary-button:hover,
.light-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}

.text-button {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(10, 12, 11, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-button span {
  margin-left: 14px;
}

.field-section {
  padding: 128px 0 0;
  background: #101311;
  color: var(--paper);
}

.field-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  padding-top: 0;
  padding-bottom: 80px;
}

.field-heading h2 span {
  display: block;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.field-card + .field-card {
  border-left: 1px solid var(--line);
}

.field-card img,
.field-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.field-card img {
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.big-size-card img {
  object-position: 54% center;
}

.field-overlay {
  background: linear-gradient(0deg, rgba(5, 7, 6, 0.88) 0%, rgba(5, 7, 6, 0.08) 64%);
}

.field-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 46px 4.3vw;
}

.field-copy > span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.field-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: -0.05em;
}

.field-copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 40px;
  padding: 50px 6vw 50px;
  overflow: hidden;
  background: var(--accent);
  color: #0a0c0b;
}

.manifesto-mark {
  font-size: clamp(220px, 31vw, 520px);
  font-weight: 900;
  letter-spacing: -0.15em;
  line-height: 0.75;
  opacity: 0.18;
  transform: translateX(-0.12em);
}

.manifesto-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 17px;
}

.manifesto blockquote {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 4.65vw, 70px);
  font-weight: 770;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.catalog-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 780px;
  background: #111412;
  color: var(--paper);
}

.catalog-photo {
  min-height: 640px;
  overflow: hidden;
}

.catalog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 7vw;
}

.catalog-content h2 {
  max-width: 720px;
}

.catalog-content > p:not(.section-kicker) {
  max-width: 560px;
  margin: 30px 0 42px;
  color: var(--paper-dim);
  font-size: 15px;
  line-height: 1.8;
}

.light-button {
  background: var(--paper);
  color: var(--ink);
}

.outline-button {
  border: 1px solid rgba(233, 230, 220, 0.44);
  color: var(--paper);
}

footer {
  padding: 20px 30px 30px;
  border-top: 1px solid var(--line);
  background: #080a09;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
}

.footer-top img {
  width: min(340px, 30vw);
}

.footer-top p {
  margin: 0 0 4px;
  color: #a9aaa5;
  font-size: 13px;
}

.footer-top > a {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 20px;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 118px;
  padding: 28px 30px 26px 0;
}

.contact-item + .contact-item {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.contact-item span {
  color: #737671;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--paper);
  font-size: clamp(16px, 1.6vw, 23px);
  font-weight: 620;
  letter-spacing: -0.025em;
}

a.contact-item strong {
  transition: color 180ms ease;
}

a.contact-item:hover strong {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #737671;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

@keyframes heroIn {
  from { transform: scale(1.07); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-shop {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    gap: 10px;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
  }

  .menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    margin: 0 auto;
    background: white;
  }

  .mobile-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 4vw;
    background: rgba(8, 10, 9, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .product-section {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 560px;
  }

  .catalog-section {
    grid-template-columns: 1fr 1fr;
  }

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

  .field-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding: 0 18px;
  }

  .brand img {
    width: 94px;
  }

  .language-switch button {
    padding: 5px 7px;
  }

  .mobile-nav {
    top: 74px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 110px 20px 92px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 5, 4, 0.92) 0%, rgba(3, 5, 4, 0.25) 66%, rgba(3, 5, 4, 0.4) 100%);
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 82px);
    line-height: 0.82;
  }

  .hero-bottom {
    align-items: center;
    gap: 20px;
    margin-top: 34px;
  }

  .hero-bottom > p {
    width: auto;
    font-size: 13px;
    line-height: 1.6;
  }

  .round-link {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }

  .round-link span {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .section-shell {
    padding: 80px 20px;
  }

  .product-section {
    gap: 48px;
  }

  .product-section::before {
    height: 950px;
  }

  .product-visual,
  .product-visual img {
    min-height: 430px;
  }

  .product-copy h2,
  .field-heading h2,
  .catalog-content h2 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .field-section {
    padding-top: 82px;
  }

  .field-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 54px;
  }

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

  .field-card:nth-child(3) {
    grid-column: auto;
  }

  .field-card {
    min-height: 570px;
  }

  .field-card + .field-card {
    border-left: 0;
  }

  .field-copy {
    padding: 32px 22px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    padding: 50px 6vw 50px;
  }

  .manifesto-copy {
    padding-top: 0;
  }

  .manifesto-mark {
    position: absolute;
    left: -30px;
    bottom: 60px;
    font-size: 380px;
  }

  .manifesto blockquote {
    font-size: clamp(36px, 11vw, 58px);
  }

  .catalog-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .catalog-photo {
    min-height: 440px;
  }

  .catalog-content {
    padding: 80px 20px;
  }

  footer {
    padding: 20px 30px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 34px;
  }

  .footer-top img {
    width: 210px;
  }

  .footer-top p {
    grid-row: 2;
  }

  .footer-top > a {
    grid-column: 2;
    grid-row: 1;
  }

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

  .footer-contact {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .contact-item {
    min-height: 94px;
    padding: 22px 0;
  }

  .contact-item + .contact-item {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

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