:root {
  color-scheme: dark;
  --bg: #080a0b;
  --panel: #0d1011;
  --line: rgba(205, 133, 78, 0.25);
  --text: #f3f1ee;
  --muted: #aaa7a3;
  --copper: #c77c48;
  --copper-light: #e2a06b;
  --page: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 12%, rgba(95, 48, 23, 0.1), transparent 25%),
    var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.015), transparent 20%, transparent 80%, rgba(255,255,255,.01));
  mix-blend-mode: soft-light;
}

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

img,
video {
  display: block;
  width: 100%;
}

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: min(calc(100% - 64px), var(--page));
  height: 96px;
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  transform: translateX(-50%);
}

.brand {
  width: max-content;
  color: var(--copper-light);
  font-weight: 900;
  letter-spacing: 5px;
  line-height: .8;
}

.brand span {
  font-size: 29px;
}

.brand small {
  display: block;
  margin-top: 8px;
  padding-left: 31px;
  font-size: 9px;
  letter-spacing: 6px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 47px);
  color: #d5d2ce;
  font-size: 13px;
}

.main-nav a,
.concept-link {
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.main-nav a:hover {
  color: var(--copper-light);
}

.concept-link {
  justify-self: end;
  padding: 13px 23px;
  border: 1px solid rgba(202, 126, 72, .65);
  border-radius: 9px;
  color: var(--copper-light);
  font-size: 14px;
}

.concept-link:hover {
  background: rgba(198, 121, 68, .12);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.hero-video {
  object-fit: cover;
  object-position: center;
  filter: brightness(1.12) contrast(1.025) saturate(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 22% 55%, rgba(125, 82, 49, .09), transparent 34%),
    linear-gradient(90deg, rgba(7, 9, 10, .86) 0%, rgba(7, 9, 10, .64) 25%, rgba(7, 9, 10, .08) 58%, rgba(7, 9, 10, .07) 100%),
    linear-gradient(0deg, rgba(7, 9, 10, .56) 0%, transparent 29%);
}

.hero-prop {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: brightness(1.12) contrast(1.06);
}

.hero-prop-left {
  left: max(18px, calc((100% - var(--page)) / 2 + 22px));
  bottom: 108px;
  width: 255px;
  opacity: .74;
  -webkit-mask-image: radial-gradient(ellipse 72% 82% at 50% 48%, #000 48%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 82% at 50% 48%, #000 48%, transparent 100%);
}

.hero-prop-right {
  right: 0;
  bottom: 72px;
  width: 205px;
  opacity: .82;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 55% 54%, #000 52%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 55% 54%, #000 52%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--page));
  margin: 0 auto;
  padding-top: 155px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -.9px;
}

h1 {
  max-width: 610px;
  font-size: clamp(52px, 5vw, 72px);
  line-height: .98;
}

h1 span {
  display: block;
  margin-top: 8px;
  color: var(--copper);
}

.hero-copy {
  max-width: 520px;
  margin: 25px 0 0;
  color: #c2bfbb;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 27px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #d88b53, #a85d32);
  box-shadow: 0 12px 34px rgba(179, 92, 43, .24);
}

.button-primary:hover {
  box-shadow: 0 16px 45px rgba(196, 103, 51, .35);
}

.button-secondary {
  background: rgba(11, 13, 14, .55);
  backdrop-filter: blur(8px);
}

.hero-features {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 100%;
  min-height: 115px;
  display: flex;
  align-items: center;
  gap: 0;
  padding-inline: max(32px, calc((100% - var(--page)) / 2));
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(90deg, rgba(8, 10, 11, .9), rgba(8, 10, 11, .63));
  backdrop-filter: blur(12px);
}

.hero-features article {
  min-width: 245px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0 38px;
  border-right: 1px solid var(--line);
}

.hero-features article:first-child {
  padding-left: 0;
}

.hero-features article:last-child {
  border-right: 0;
}

.feature-icon,
.benefit-list > li > span,
.trust-strip > article > span {
  color: var(--copper);
  font-size: 35px;
  line-height: 1;
}

.hero-features strong,
.benefit-list strong,
.trust-strip strong {
  display: block;
  font-size: 14px;
}

.hero-features small,
.benefit-list small,
.trust-strip small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.section-shell {
  width: min(calc(100% - 64px), var(--page));
  margin-inline: auto;
}

.quality-block {
  overflow: hidden;
  background: #080a0b;
}

.quality-block img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

.quality-block-modes {
  margin-top: 28px;
}

.result-section {
  min-height: 570px;
  display: grid;
  grid-template-columns: 40% 60%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(125deg, #0c0f10 0%, #0b0d0e 45%, #12100e 100%);
}

.result-copy {
  position: relative;
  z-index: 2;
  width: calc(100% + 130px);
  padding: 54px 32px 48px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 130px) 100%, 0 100%);
  background: #0b0e0f;
}

.result-copy::after {
  content: none;
}

.result-copy h2,
.modes h2,
.order-section h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.04;
}

.result-copy > p:not(.eyebrow) {
  max-width: 485px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 17px;
}

.benefit-list > li > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(199, 124, 72, .45);
  border-radius: 50%;
  font-size: 22px;
}

.result-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #080a0b;
}

.result-media video {
  height: 100%;
  object-fit: cover;
  filter: contrast(1.045) saturate(1.04);
}

.doneness-text-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 31.5%;
  pointer-events: none;
}

.doneness-title {
  position: absolute;
  top: 12%;
  left: 4.5%;
  width: 220px;
  padding: 4px 10px;
  color: var(--copper-light);
  background: rgba(31, 31, 30, .96);
  box-shadow: 0 0 7px 5px rgba(31, 31, 30, .96);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.doneness-labels {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 9px 4.5% 8px;
  background: rgba(31, 31, 30, .985);
}

.doneness-labels span {
  min-width: 0;
}

.doneness-labels b,
.doneness-labels small {
  width: max-content;
  display: block;
  padding-inline: 4px;
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
}

.doneness-labels b {
  color: #f2f0ed;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.doneness-labels small {
  margin-top: 5px;
  color: #c7c4bf;
  font-size: 10px;
}

.modes {
  margin-top: 28px;
  padding: 28px 25px 23px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.modes h2 {
  margin-bottom: 24px;
  font-size: 35px;
}

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

.mode-card {
  position: relative;
  aspect-ratio: 350 / 238;
  overflow: hidden;
  border: 1px solid rgba(204, 140, 92, .28);
  background: #090b0c;
}

.mode-card img,
.mode-card video {
  height: 100%;
  object-fit: cover;
  filter: contrast(1.055) saturate(1.055);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

.mode-card:hover img,
.mode-card:hover video {
  transform: scale(1.035);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 25px;
  padding: 27px 25px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #0b0d0e;
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip > article > span {
  font-size: 30px;
}

.order-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 55px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 30%, rgba(168, 86, 43, .16), transparent 32%),
    #0c0e0f;
}

.contact-order {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0d0e;
}

.contact-card {
  padding: 52px 46px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 90%, rgba(166, 84, 41, .13), transparent 34%),
    linear-gradient(145deg, #0d1011, #090b0c);
}

.contact-card h2 {
  max-width: 460px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.04;
}

.contact-intro {
  max-width: 460px;
  margin: 22px 0 31px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list > div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .018);
}

.contact-list span {
  color: var(--copper-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 14px;
}

.contact-note {
  display: block;
  margin-top: 22px;
  color: #777572;
  font-size: 11px;
  line-height: 1.5;
}

.order-form-wrap {
  position: relative;
  padding: 43px 46px 46px;
  background:
    radial-gradient(circle at 90% 0%, rgba(192, 107, 56, .08), transparent 30%),
    #0c0e0f;
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.form-heading span {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 29px;
}

.form-heading strong {
  color: var(--copper-light);
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: #d7d3cf;
  font-size: 12px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 6px;
  outline: 0;
  color: var(--text);
  background: #090b0c;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 105px;
  padding-block: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(199, 124, 72, .12);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #d86658;
}

.field-message {
  margin-top: 18px;
}

.field-error,
.consent-error {
  min-height: 14px;
  color: #ed8174;
  font-size: 11px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: var(--copper);
}

.consent a {
  color: var(--copper-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-error {
  display: block;
  margin: 5px 0 0 27px;
}

.form-submit-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: #ed8174;
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
}

.form-footer small {
  max-width: 230px;
  color: #76736f;
  font-size: 10px;
  line-height: 1.4;
}

.form-success {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-light);
  font-size: 27px;
}

.form-success h3 {
  margin: 19px 0 8px;
  font-size: 26px;
}

.form-success p {
  max-width: 430px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 30px 0 60px;
}

.faq details {
  padding: 21px 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #0b0d0e;
}

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

.faq p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 40px);
    grid-template-columns: 1fr auto;
  }

  .concept-link {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 11, .7);
  }

  .menu-toggle span:not(.sr-only) {
    width: 21px;
    height: 1px;
    display: block;
    background: var(--copper-light);
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    transform: translateY(-15px);
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--line);
    background: rgba(8, 10, 11, .97);
    transition: .25s ease;
  }

  .main-nav.is-open {
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    padding: 13px 15px;
  }

  .hero {
    min-height: 850px;
  }

  .hero-video {
    width: 145%;
    margin-left: -24%;
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 9, 10, .88), rgba(7, 9, 10, .5) 70%, rgba(7, 9, 10, .22)),
      linear-gradient(0deg, rgba(7, 9, 10, .92) 0%, transparent 45%);
  }

  .hero-prop {
    display: none;
  }

  .hero-content,
  .section-shell {
    width: calc(100% - 40px);
  }

  .hero-features {
    min-height: 145px;
    overflow-x: auto;
    padding-inline: 20px;
  }

  .hero-features article {
    min-width: 230px;
  }

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

  .result-copy::after {
    display: none;
  }

  .result-copy {
    width: 100%;
    clip-path: none;
  }

  .result-media {
    min-height: 430px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

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

  .contact-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 810px;
  }

  .hero-content {
    padding-top: 130px;
  }

  h1 {
    max-width: 410px;
    font-size: 44px;
  }

  .hero-copy {
    max-width: 370px;
    font-size: 15px;
  }

  .hero-actions {
    width: min(100%, 350px);
    flex-direction: column;
  }

  .hero-video {
    width: 185%;
    margin-left: -65%;
    opacity: .8;
  }

  .mode-grid,
  .trust-strip,
  .faq {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    padding: 0;
    border-right: 0;
  }

  .result-copy {
    padding: 42px 23px;
  }

  .result-media {
    min-height: 320px;
  }

  .doneness-title {
    font-size: 8px;
  }

  .doneness-labels {
    gap: 3px;
  }

  .doneness-labels b,
  .doneness-labels small {
    overflow: hidden;
    max-width: 100%;
    padding-inline: 2px;
    text-overflow: ellipsis;
    font-size: 7px;
  }

  .modes {
    padding: 23px 16px 16px;
  }

  .order-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 37px 24px;
  }

  .contact-card,
  .order-form-wrap {
    padding: 35px 22px;
  }

  .form-heading,
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
