:root {
  --bg: #050504;
  --bg-soft: #0d0c0a;
  --ink: #f3eadc;
  --ink-soft: #d5cbbb;
  --muted: #93897a;
  --line: rgba(243, 234, 220, 0.16);
  --line-strong: rgba(243, 234, 220, 0.28);
  --gold: #c5a25b;
  --gold-soft: #e1c986;
  --paper: #e9decd;
  --paper-ink: #17120d;
  --paper-muted: #625849;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.72;
}

a {
  color: inherit;
}

main {
  overflow-x: clip;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 92svh;
  isolation: isolate;
  overflow: hidden;
  padding: 28px clamp(20px, 5vw, 64px) 26px;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.95) contrast(1.03);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.9) 34%, rgba(5, 5, 4, 0.58) 62%, rgba(5, 5, 4, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.42) 0%, rgba(5, 5, 4, 0.1) 50%, rgba(5, 5, 4, 0.72) 100%);
}

.nav,
.hero-content,
.hero-strip,
.section,
.footer {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--paper-ink);
  background: var(--gold);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 950;
}

.brand-name {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: rgba(243, 234, 220, 0.72);
  font-size: 0.9rem;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.hero-content {
  align-self: center;
  max-width: var(--max);
  padding: clamp(80px, 12vh, 132px) 0 clamp(68px, 9vh, 108px);
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: 10.2rem;
  font-weight: 920;
  line-height: 0.82;
}

h2 {
  margin-bottom: 24px;
  font-size: 5.3rem;
  font-weight: 900;
  line-height: 0.98;
}

h2 span {
  display: inline;
}

h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.24rem;
  font-weight: 640;
}

.hero-lead span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
}

.primary-link {
  color: var(--paper-ink);
  background: var(--gold);
}

.ghost-link {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(5, 5, 4, 0.34);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(5, 5, 4, 0.58);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  padding: 18px 20px;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 850;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(86px, 10vw, 132px) clamp(20px, 5vw, 64px);
}

.focus {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34rem),
    var(--bg);
}

.section-head {
  max-width: 960px;
  margin-bottom: 56px;
}

.focus-list {
  border-top: 1px solid var(--line-strong);
}

.focus-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.item-index {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.focus-item p,
.contact-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.56fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
  width: 100%;
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2 + 64px));
  padding-right: max(clamp(20px, 5vw, 64px), calc((100vw - var(--max)) / 2 + 64px));
  color: var(--paper-ink);
  background: var(--paper);
}

.product .eyebrow {
  color: #8a6a2e;
}

.product-copy p {
  max-width: 640px;
  color: var(--paper-muted);
  font-size: 1.04rem;
}

.fineprint {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 18, 13, 0.16);
}

.text-button {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 5px;
  color: var(--paper-ink);
  border-bottom: 2px solid var(--paper-ink);
  font-weight: 900;
  text-decoration: none;
}

.product-visual {
  display: flex;
  justify-content: center;
}

.screen-shell {
  width: min(310px, 72vw);
  padding: 12px;
  background: #080806;
  border: 1px solid rgba(23, 18, 13, 0.22);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(23, 18, 13, 0.25);
}

.screen-shell img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mail-link {
  display: grid;
  gap: 44px;
  min-height: 210px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(197, 162, 91, 0.09), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  text-decoration: none;
}

.mail-link span {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.mail-link strong {
  align-self: end;
  color: var(--gold-soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  padding: 30px clamp(20px, 5vw, 64px) 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  h1 {
    font-size: 7rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 1.7rem;
  }

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

  .product {
    padding-left: clamp(20px, 5vw, 64px);
    padding-right: clamp(20px, 5vw, 64px);
  }

  .product-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 92svh;
    padding: 20px 18px 18px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.88) 52%, rgba(5, 5, 4, 0.52) 100%),
      linear-gradient(180deg, rgba(5, 5, 4, 0.58) 0%, rgba(5, 5, 4, 0.18) 45%, rgba(5, 5, 4, 0.82) 100%);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    padding: 54px 0 48px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: 4.75rem;
  }

  h2 {
    font-size: 2.12rem;
    line-height: 1.06;
  }

  h2 span {
    display: block;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-link,
  .ghost-link {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-strip span:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .focus-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .screen-shell {
    width: min(278px, 100%);
  }

  .mail-link {
    min-height: 178px;
    padding: 22px;
  }

  .mail-link span {
    font-size: 1.18rem;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }
}
