@font-face {
  font-family: Cairo;
  src: url("fonts/cairo-regular.ttf");
  font-display: swap;
  font-weight: 400 600;
}
@font-face {
  font-family: Cairo;
  src: url("fonts/cairo-bold.ttf");
  font-display: swap;
  font-weight: 700 900;
}
:root {
  --black: #0b0d0f;
  --ink: #171a1c;
  --paper: #f1eee8;
  --gold: #d5b67e;
  --muted: #a8abad;
  --line: #ffffff20;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Cairo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #45c0dd;
  outline-offset: 6px;
}
.skip {
  position: fixed;
  top: -100px;
  right: 20px;
  background: var(--gold);
  color: #000;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.header {
  height: 88px;
  position: absolute;
  z-index: 5;
  top: 0;
  inset-inline: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5%;
  border-bottom: 1px solid var(--line);
  direction: ltr;
}
.brand {
  font:
    bold 31px Georgia,
    serif;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.atom {
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}
.header nav {
  display: flex;
  gap: 36px;
  direction: rtl;
  font-size: 14px;
}
.header nav a:hover,
.text-link:hover {
  color: var(--gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  direction: rtl;
  font-size: 13px;
  border: 1px solid #ffffff40;
  padding: 9px 19px;
  border-radius: 30px;
  min-height: 44px;
}
.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  max-height: 1080px;
  display: flex;
  align-items: center;
  isolation: isolate;
  direction: ltr;
}
.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  object-position: 55% center;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #090c0fbd, transparent 65%),
    linear-gradient(0deg, #0b0d0f, transparent 30%);
  z-index: -1;
}
.hero-content {
  direction: rtl;
  text-align: right;
  width: 46%;
  padding: 50px 3% 0 6%;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(45px, 4.8vw, 76px);
  line-height: 1.42;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  font-weight: 800;
}
.hero h1 span {
  color: var(--gold);
}
.hero-description {
  font-size: 18px;
  color: #c2c1bd;
  margin: 0 0 30px;
  line-height: 1.9;
}
.actions {
  display: flex;
  gap: 26px;
  align-items: center;
}
.button {
  border: 0;
  border-radius: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 13px 25px;
  font-size: 14px;
  min-height: 52px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: #edd3a3;
}
.gold {
  background: var(--gold);
  color: #151617;
}
.text-link {
  display: inline-block;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
  min-height: 44px;
}
.hero-foot {
  position: absolute;
  bottom: 32px;
  inset-inline: 5.5%;
  display: flex;
  justify-content: space-between;
  font: 10px Arial;
  letter-spacing: 0.13em;
  color: #b6b8b8;
}
.hero-foot span:last-child {
  font: 12px Cairo;
}
.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 38px 9%;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  text-align: center;
}
.spec-strip div {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.spec-strip div:last-child {
  border: 0;
}
.spec-strip strong {
  font: 500 clamp(22px, 2vw, 30px) Arial;
  letter-spacing: -0.02em;
}
.spec-strip span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.section {
  padding: 100px 7%;
}
.section h2 {
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1.5;
  letter-spacing: -0.035em;
  margin: 0 0 25px;
}
.section h2 span {
  color: #878c8c;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}
.mini {
  font: 10px Arial;
  letter-spacing: 0.18em;
  opacity: 0.65;
}
.design {
  background: var(--paper);
  color: var(--ink);
}
.design .eyebrow {
  color: #79603b;
}
.design-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7%;
  align-items: center;
}
.design-copy p {
  font-size: 15px;
  max-width: 390px;
  color: #5d6364;
  line-height: 2.1;
}
.design-grid img {
  aspect-ratio: 1.3;
  width: 100%;
  border-radius: 2px;
}
.dark-link {
  margin-top: 20px;
}
.detail-pair {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  direction: ltr;
}
.detail-pair figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.detail-pair img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.detail-pair figcaption {
  position: absolute;
  bottom: 25px;
  inset-inline: 30px;
  direction: rtl;
  display: flex;
  flex-direction: column;
  color: #fff;
  text-shadow: 0 1px 12px #000;
}
.detail-pair figure:first-child figcaption {
  color: #23262b;
  text-shadow: none;
}
.detail-pair figcaption span {
  font-size: 11px;
}
.detail-pair figcaption strong {
  font-size: 22px;
}
.experience {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.experience > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.experience:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #050708e0, transparent 90%);
  z-index: -1;
}
.experience-copy {
  max-width: 570px;
  padding: 60px 7% 60px 0;
}
.experience h2 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.35;
  margin: 0 0 25px;
}
.experience p:not(.eyebrow) {
  font-size: 16px;
  color: #d2d0ca;
  line-height: 2;
}
.experience small {
  font-size: 11px;
  color: #aeb0b1;
}
.viewer-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
}
.viewer-heading > p {
  font-size: 14px;
  color: #b7b9bb;
}
.viewer small {
  font-size: 11px;
}
.viewer #model-container {
  position: relative;
  background: #111315;
  aspect-ratio: 16/8;
  overflow: hidden;
  margin-bottom: 22px;
}
.viewer #model-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.viewer #load-model {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.viewer iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.film {
  padding-top: 0;
}
.film video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
}
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  background: var(--paper);
  color: var(--ink);
}
.specs .eyebrow {
  color: #79603b;
}
.specs-copy > p:not(.eyebrow) {
  color: #606767;
  font-size: 13px;
}
.specs-copy img {
  margin-top: 35px;
  width: 100%;
  max-height: 450px;
  object-position: center 65%;
}
.specs dl {
  margin: 0;
  padding-top: 20px;
}
.specs dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #1e222326;
  padding: 24px 0;
}
.specs dt {
  font-size: 13px;
  color: #5c6265;
}
.specs dd {
  margin: 0;
  font: 500 20px Arial;
}
.setup {
  background: #171a1c;
}
.setup h2 {
  font-size: 40px;
}
.setup ol {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8%;
  margin: 60px 0 0;
}
.setup li {
  border-top: 1px solid #ffffff30;
  padding-top: 24px;
}
.setup li > span {
  font: 12px Arial;
  color: var(--gold);
}
.setup h3 {
  font-size: 26px;
  margin: 18px 0 8px;
}
.setup li p {
  font-size: 14px;
  color: #b4b7b8;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8%;
}
.faq h2 {
  font-size: 36px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 23px 0;
  cursor: pointer;
  font-size: 15px;
  min-height: 60px;
}
.faq details p {
  font-size: 14px;
  color: #aeb2b5;
  padding-bottom: 18px;
}
.contact {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, #28251d, transparent 60%), #101214;
}
.contact h2 {
  font-size: clamp(44px, 5vw, 76px);
}
.contact h2 span {
  color: var(--gold);
}
.contact > p:not(.eyebrow) {
  color: #afb0ad;
  font-size: 14px;
}
.contact .button {
  margin: 20px 0;
}
.contact .text-link {
  display: block;
  width: max-content;
  margin: 5px auto;
}
footer {
  padding: 45px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
  border-top: 1px solid var(--line);
}
footer p {
  font-size: 13px;
  color: #9b9d9c;
}
footer > a:last-child {
  font: 12px Arial;
  letter-spacing: 0.12em;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-left: 10%;
    width: 45%;
  }
  .section {
    padding-inline: 12%;
  }
}
@media (max-width: 850px) {
  .header {
    padding-inline: 5%;
    height: 74px;
  }
  .header nav {
    gap: 16px;
    font-size: 12px;
  }
  .brand {
    font-size: 26px;
  }
  .atom {
    font-size: 28px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 8px 12px;
    gap: 12px;
  }
  .hero {
    height: auto;
    min-height: 900px;
    align-items: start;
  }
  .hero-content {
    width: 100%;
    padding: 120px 7% 0;
    text-align: center;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-bg {
    object-fit: cover;
    height: 570px;
    top: auto;
    bottom: 0;
    object-position: 76% center;
  }
  .hero:after {
    background: linear-gradient(
      180deg,
      #0b0d0f 38%,
      transparent 68%,
      #0b0d0f 99%
    );
  }
  .hero-content .eyebrow {
    font-size: 10px;
  }
  .actions {
    justify-content: center;
  }
  .hero-foot {
    bottom: 22px;
  }
  .hero-foot span:first-child {
    display: none;
  }
  .hero-foot span:last-child {
    width: 100%;
    text-align: center;
  }
  .spec-strip {
    padding: 26px 5%;
    gap: 8px;
  }
  .spec-strip strong {
    font-size: 19px;
  }
  .spec-strip span {
    font-size: 10px;
  }
  .section {
    padding: 65px 6%;
  }
  .design-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .design-copy p {
    max-width: 100%;
  }
  .design-grid img {
    aspect-ratio: 1.4;
  }
  .detail-pair {
    margin-top: 28px;
    gap: 15px;
  }
  .detail-pair img {
    height: 390px;
  }
  .detail-pair figcaption {
    inset-inline: 15px;
    bottom: 18px;
  }
  .detail-pair figcaption strong {
    font-size: 16px;
  }
  .experience {
    min-height: 730px;
    align-items: start;
  }
  .experience > img {
    object-position: 40% 70%;
  }
  .experience:after {
    background: linear-gradient(180deg, #090b0ff0, transparent 95%);
  }
  .experience-copy {
    padding: 60px 7%;
    max-width: 440px;
  }
  .experience h2 {
    font-size: 50px;
  }
  .viewer-heading {
    display: block;
  }
  .viewer #model-container {
    aspect-ratio: 1.25;
  }
  .viewer #load-model {
    font-size: 12px;
    padding: 10px 16px;
    bottom: 20px;
    gap: 12px;
  }
  .viewer iframe {
    min-height: 320px;
  }
  .film {
    padding-top: 0;
  }
  .specs {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .specs-copy img {
    display: none;
  }
  .specs dl {
    padding: 0;
  }
  .specs dl > div {
    padding: 18px 0;
  }
  .setup h2 {
    font-size: 31px;
  }
  .setup ol {
    gap: 5%;
    margin-top: 35px;
  }
  .setup h3 {
    font-size: 22px;
  }
  .setup li p {
    font-size: 12px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact h2 {
    font-size: 45px;
  }
  footer {
    gap: 20px;
    flex-wrap: wrap;
  }
  footer p {
    display: none;
  }
}
@media (max-width: 440px) {
  .header nav {
    display: none;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero {
    min-height: 860px;
  }
  .hero-bg {
    height: 500px;
  }
  .hero-description {
    margin-bottom: 22px;
  }
  .spec-strip {
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
  }
  .spec-strip div:nth-child(2) {
    border: 0;
  }
  .section h2 {
    font-size: 33px;
  }
  .detail-pair img {
    height: 310px;
  }
  .detail-pair figcaption strong {
    font-size: 13px;
  }
  .detail-pair figcaption span {
    font-size: 10px;
  }
  .section-top {
    margin-bottom: 20px;
  }
  .mini {
    font-size: 8px;
  }
  .setup ol {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .setup li {
    padding-top: 15px;
  }
  .setup h3 {
    margin: 6px 0;
  }
  .setup li p {
    font-size: 14px;
  }
  .viewer #load-model {
    font-size: 11px;
  }
  .contact h2 {
    font-size: 42px;
  }
  .specs dd {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

.poster-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.poster-section > div > p:not(.eyebrow) {
  color: #b2b4b5;
  max-width: 430px;
  font-size: 15px;
  line-height: 2;
}
.poster-section .button {
  margin-top: 20px;
}
.poster-section img {
  max-height: 850px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 850px) {
  .poster-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.design-grid > img {
  height: auto;
}
.order {
  background: var(--paper);
  color: var(--ink);
}
.order .eyebrow {
  color: #79603b;
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8%;
  align-items: start;
}
.order-copy p {
  font-size: 15px;
  max-width: 400px;
  color: #5d6364;
  line-height: 2.1;
  margin-bottom: 30px;
}
.order-copy img {
  max-width: 260px;
  height: auto;
  border-radius: 2px;
}
.order-form {
  display: grid;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label,
.field > span {
  font-size: 13px;
  color: #5d6364;
}
.field .optional {
  opacity: 0.7;
}
.field input[type="text"],
.field input[type="tel"],
.field select {
  border: 0;
  border-bottom: 1px solid #1e222340;
  background: transparent;
  padding: 12px 2px;
  font: inherit;
  color: var(--ink);
  font-size: 15px;
  border-radius: 0;
  min-height: 44px;
}
.field select {
  direction: rtl;
}
.field input:focus,
.field select:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #1e222340;
  padding: 6px 0;
  width: max-content;
}
.qty-stepper button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #1e222360;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}
.qty-stepper button:hover {
  border-color: var(--gold);
  color: #79603b;
}
.qty-stepper input {
  width: 32px;
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
}
.ship-type {
  display: flex;
  gap: 14px;
}
.ship-type label {
  flex: 1;
  border: 1px solid #1e222340;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ship-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ship-type label:has(input:checked) {
  border-color: var(--gold);
  background: #d5b67e1f;
  color: #79603b;
}
.order-form .button {
  width: max-content;
  border: 0;
}
@media (max-width: 850px) {
  .order-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .order-copy img {
    display: none;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.hero-content {
  width: 40%;
  padding-left: 4%;
  padding-right: 2%;
}
.hero h1 {
  font-size: clamp(42px, 4.2vw, 66px);
}
@media (max-width: 850px) {
  .hero-content {
    width: 100%;
    padding: 120px 7% 0;
  }
  .hero h1 {
    font-size: 52px;
  }
}
@media (max-width: 440px) {
  .hero h1 {
    font-size: 45px;
  }
}
