:root {
  --font-jakarta-sans: "Plus Jakarta Sans", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-syncopate: "Syncopate", "Plus Jakarta Sans", sans-serif;
  --dark: #090a0a;
  --panel: #151716;
  --ink: #f5f1e8;
  --gold: #d7b46a;
  --gold-deep: #caa14c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: var(--font-jakarta-sans);
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: #14110a;
}

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

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

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: #111;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

@keyframes navbarReflection {
  0% {
    opacity: 0;
    transform: translateX(-180%) skewX(-24deg);
  }

  0.5% {
    opacity: 0.16;
  }

  3% {
    opacity: 0.1;
    transform: translateX(650%) skewX(-24deg);
  }

  4%,
  100% {
    opacity: 0;
    transform: translateX(650%) skewX(-24deg);
  }
}

@keyframes hideIntro {
  0% {
    opacity: 1;
    visibility: visible;
  }

  99% {
    opacity: 0;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.84);
  }

  50% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(215, 180, 106, 0));
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.62));
    transform: scale(1);
  }
}

.intro-screen {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(98, 25, 24, 0.2), transparent 35%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 11px),
    #070808;
  animation: hideIntro 700ms ease 3000ms forwards;
}

.skip-intro .intro-screen {
  display: none;
}

.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 161, 76, 0.16), transparent 66%);
  animation: breathe 2.4s ease-in-out infinite;
  pointer-events: none;
}

.intro-logo-frame {
  position: relative;
  z-index: 1;
  width: min(540px, 82vw);
  padding: clamp(32px, 7vw, 66px) clamp(24px, 6vw, 58px);
}

.intro-logo-frame img {
  width: 100%;
  opacity: 0;
  animation: logoReveal 900ms ease 300ms forwards;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.92), rgba(20, 19, 16, 0.84)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
  border-bottom: 1px solid rgba(202, 161, 76, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -20%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 225, 0.42), transparent);
  filter: blur(3px);
  pointer-events: none;
  animation: navbarReflection 50s ease-in-out infinite;
}

.nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 22px);
  flex-wrap: wrap;
}

.nav-group a,
.mobile-nav a {
  font-family: var(--font-syncopate);
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-group a:hover,
.nav-group a:focus-visible,
.nav-group a.is-active,
.mobile-nav a.is-active {
  color: var(--gold);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
}

.menu-button {
  display: none;
}

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

.page-hero {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(110px, 12vh, 150px) clamp(22px, 6vw, 86px) clamp(70px, 9vh, 100px);
  background: #080909;
}

.inner-hero {
  scroll-margin-top: 88px;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.78) 0%, rgba(7, 8, 8, 0.46) 42%, rgba(7, 8, 8, 0.1) 76%, rgba(7, 8, 8, 0.32) 100%),
    linear-gradient(0deg, rgba(7, 8, 8, 0.82) 0%, rgba(7, 8, 8, 0.08) 58%);
}

.hero-graphic {
  position: absolute;
  z-index: 2;
  inset: 50px auto -30px 0;
  left: -400px;
  width: 60%;
  background: rgba(45, 44, 39, 0.72);
  transform: rotate(-15deg);
  transform-origin: center;
  box-shadow: 22px 18px 42px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.hero-graphic-front {
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -450px;
  border: 0.01px solid rgba(202, 161, 76, 0.82);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 10px),
    #101111;
  box-shadow: 18px 18px 36px rgba(0, 0, 0, 0.42);
}

.hero-content {
  position: relative;
  z-index: 4;
  isolation: isolate;
  width: min(720px, 48vw);
  max-width: 100%;
  padding: clamp(36px, 8vh, 86px) 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.78);
}

.hero-content::before {
  content: "";
  display: block;
  width: clamp(46px, 5vw, 74px);
  height: 2px;
  margin-bottom: clamp(22px, 3vh, 34px);
  background: linear-gradient(90deg, var(--gold), rgba(215, 180, 106, 0.14));
  box-shadow: 0 0 20px rgba(215, 180, 106, 0.2);
}

.kicker {
  display: block;
  font-family: var(--font-syncopate);
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-content > .kicker {
  font-size: 0.58rem;
}

h1,
.hero-title {
  margin: clamp(14px, 2.4vh, 26px) 0 clamp(14px, 2.4vh, 24px);
  max-width: 560px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-content p {
  max-width: 510px;
  margin: 0 0 clamp(22px, 4vh, 40px);
  color: rgba(245, 241, 232, 0.8);
  font-size: clamp(0.84rem, 0.9vw, 0.96rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-content .button-row {
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-syncopate);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.hero-content .button {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.62rem;
}

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

.button-primary {
  border-color: #d2ac5b;
  background: linear-gradient(135deg, #f0cf78, #a87d2f);
  color: #13100a;
  box-shadow: 0 12px 34px rgba(202, 161, 76, 0.18);
}

.button-secondary {
  border-color: rgba(245, 241, 232, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button-light {
  border-color: #2d2920;
  background: #111312;
  color: var(--ink);
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 126px) clamp(22px, 6vw, 86px);
  background:
    linear-gradient(145deg, rgba(202, 161, 76, 0.08), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 10px),
    #101111;
  color: var(--ink);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 18% 20%, rgba(202, 161, 76, 0.12), transparent 34%);
  pointer-events: none;
}

.section-light {
  background: linear-gradient(135deg, #f3eee1, #ded5c3);
  color: #151512;
}

.section-light::before {
  background: linear-gradient(120deg, transparent 0 60%, rgba(202, 161, 76, 0.16) 60% 78%, transparent 78%);
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-header {
  width: min(880px, 100%);
  margin-bottom: 34px;
}

.section-header h2 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(1.9rem, 3.45vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-header p {
  max-width: 680px;
  color: currentColor;
  opacity: 0.72;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.prose p {
  color: currentColor;
  opacity: 0.74;
  font-size: 1.05rem;
  line-height: 1.76;
}

.prose h2 {
  margin: 10px 0 18px;
  font-size: clamp(1.9rem, 3.6vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.privacy-content {
  width: min(900px, 100%);
}

.privacy-content h2 {
  margin: 12px 0 24px;
  font-size: clamp(1.9rem, 3.4vw, 3.45rem);
  line-height: 1.08;
}

.privacy-content h3 {
  margin: 32px 0 10px;
  color: #8b6725;
  font-size: 1.08rem;
  line-height: 1.35;
}

.privacy-content p {
  margin: 0 0 16px;
  color: rgba(20, 23, 25, 0.74);
  font-size: 1.02rem;
  line-height: 1.78;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: currentColor;
  opacity: 0.82;
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(215, 180, 106, 0.56);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  width: min(1180px, 100%);
  margin-inline: auto;
}

.product-card {
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(202, 161, 76, 0.22);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(202, 161, 76, 0.18), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px),
    var(--panel);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.product-card span {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.58;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(202, 161, 76, 0.68);
  transform: translateY(-4px);
}

.media-panel {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(202, 161, 76, 0.32);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(202, 161, 76, 0.18), transparent 46%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 10px),
    var(--panel);
  color: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
}

.media-panel-tall {
  min-height: 540px;
}

.media-panel-light {
  border-color: rgba(104, 79, 28, 0.32);
  background:
    linear-gradient(145deg, rgba(202, 161, 76, 0.2), transparent 46%),
    repeating-linear-gradient(135deg, rgba(20, 23, 25, 0.03) 0 1px, transparent 1px 10px),
    #f7f0df;
  color: #141719;
}

.media-panel::after,
.info-card::after,
.contact-form::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 70px;
  height: 70px;
  border-right: 1px solid rgba(202, 161, 76, 0.7);
  border-bottom: 1px solid rgba(202, 161, 76, 0.7);
  pointer-events: none;
}

.badge {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(202, 161, 76, 0.42);
  border-radius: 2px;
  background: rgba(202, 161, 76, 0.08);
  color: var(--gold-deep);
  font-family: var(--font-syncopate);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.media-panel h3 {
  max-width: 500px;
  margin: 30px 0 auto;
  font-size: clamp(1.35rem, 2.3vw, 2.35rem);
  line-height: 1.12;
}

.media-slot {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed rgba(202, 161, 76, 0.32);
  border-radius: 2px;
  color: currentColor;
  opacity: 0.62;
  text-align: center;
}

.media-slot-small {
  min-height: 94px;
  margin-top: 16px;
}

.media-slot-light {
  border-color: rgba(104, 79, 28, 0.38);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(202, 161, 76, 0.24);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(202, 161, 76, 0.14), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 10px),
    var(--panel);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.info-card-light {
  border-color: rgba(104, 79, 28, 0.2);
  background: linear-gradient(145deg, rgba(202, 161, 76, 0.16), transparent 42%), #fbf5e8;
}

.info-card::after {
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  border-color: rgba(202, 161, 76, 0.48);
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 1.18rem;
  line-height: 1.25;
}

.info-card-light h3 {
  color: #141719;
}

.info-card p,
.info-card li {
  color: currentColor;
  opacity: 0.72;
  line-height: 1.65;
}

.info-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(20, 23, 25, 0.74);
  line-height: 1.65;
}

.contact-list a {
  text-decoration-color: rgba(139, 103, 37, 0.42);
  text-underline-offset: 4px;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: #8b6725;
  text-decoration-color: currentColor;
}

.contact-social-links,
.social-links {
  display: flex;
  gap: 10px;
}

.social-links {
  margin-top: 12px;
}

.social-link {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.social-link-contact {
  width: 40px;
  height: 40px;
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
}

.social-link-contact img {
  width: 30px;
  height: 30px;
}

.social-link-contact svg {
  width: 30px;
  height: 30px;
}

.social-link svg .fill {
  fill: currentColor;
  stroke: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: #f5d58f;
  transform: translateY(-2px);
}

@keyframes whatsAppPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(215, 180, 106, 0));
    transform: scale(1);
  }

  50% {
    filter:
      drop-shadow(0 0 12px rgba(215, 180, 106, 0.78))
      drop-shadow(0 0 26px rgba(202, 161, 76, 0.34));
    transform: scale(1.1);
  }
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #25d366;
  background: transparent;
  border: 0;
  border-radius: 0;
  animation: whatsAppPulse 1.9s ease-in-out infinite;
  transition:
    color 160ms ease,
    transform 160ms ease,
    filter 160ms ease;
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: scale(1.08);
  filter:
    drop-shadow(0 0 14px rgba(245, 213, 143, 0.86))
    drop-shadow(0 0 30px rgba(202, 161, 76, 0.42));
}

.floating-whatsapp:focus-visible {
  outline: 2px solid #f5f1e8;
  outline-offset: 6px;
}

@keyframes privacyNoticeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-notice {
  position: fixed;
  z-index: 44;
  left: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(202, 161, 76, 0.34);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(202, 161, 76, 0.14), transparent 44%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 10px),
    rgba(10, 11, 11, 0.96);
  color: #f5f1e8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  animation: privacyNoticeIn 240ms ease both;
}

.privacy-notice[data-hiding="true"] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.privacy-notice p {
  margin: 0 0 14px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.86rem;
  line-height: 1.55;
}

.privacy-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.privacy-notice-actions a {
  color: #d7b46a;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(215, 180, 106, 0.42);
  text-underline-offset: 4px;
}

.privacy-notice-actions a:hover,
.privacy-notice-actions a:focus-visible {
  color: #f5d58f;
  text-decoration-color: currentColor;
}

.privacy-notice-actions button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #d2ac5b;
  border-radius: 2px;
  background: linear-gradient(135deg, #f0cf78, #a87d2f);
  color: #13100a;
  font-family: var(--font-syncopate);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.privacy-notice-actions button:hover,
.privacy-notice-actions button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

@keyframes formEntrance {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fieldEntrance {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(202, 161, 76, 0.32);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(202, 161, 76, 0.18), transparent 46%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 10px),
    var(--panel);
  color: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
  box-shadow: 0 22px 60px rgba(20, 23, 25, 0.16);
  animation: formEntrance 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(245, 241, 232, 0.78);
  font-weight: 900;
  opacity: 0;
  animation: fieldEntrance 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.contact-form label:nth-of-type(1) {
  animation-delay: 180ms;
}

.contact-form label:nth-of-type(2) {
  animation-delay: 260ms;
}

.contact-form label:nth-of-type(3) {
  animation-delay: 340ms;
}

.contact-form label:nth-of-type(4) {
  animation-delay: 420ms;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(202, 161, 76, 0.24);
  border-radius: 2px;
  outline: none;
  background: rgba(7, 8, 8, 0.72);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 241, 232, 0.42);
}

.contact-form select option {
  background: var(--panel);
  color: var(--ink);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: rgba(202, 161, 76, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(202, 161, 76, 0.16);
  transform: translateY(-1px);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.submit-button {
  opacity: 0;
  animation: fieldEntrance 520ms 500ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.footer-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  overflow: hidden;
  padding: 54px clamp(22px, 6vw, 86px);
  border-top: 1px solid rgba(202, 161, 76, 0.22);
  background:
    linear-gradient(135deg, rgba(202, 161, 76, 0.08), transparent 38%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 11px),
    #070808;
}

.footer-wrap::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(202, 161, 76, 0.26);
  transform: rotate(45deg);
  pointer-events: none;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(245, 241, 232, 0.64);
  line-height: 1.6;
}

.footer-brand img {
  width: clamp(156px, 15vw, 210px);
  height: auto;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
  color: rgba(245, 241, 232, 0.72);
  font-weight: 700;
}

.footer-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-content: start;
  color: rgba(245, 241, 232, 0.7);
}

.footer-contact strong {
  color: var(--gold);
}

.footer-contact a {
  text-decoration-color: rgba(215, 180, 106, 0.42);
  text-underline-offset: 4px;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #f5d58f;
  text-decoration-color: currentColor;
}

.footer-credit {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin: 12px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(215, 180, 106, 0.14);
  color: rgba(245, 241, 232, 0.46);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.footer-credit strong {
  color: rgba(215, 180, 106, 0.78);
  font-weight: 600;
}

@media (max-width: 980px) {
  .topbar {
    min-height: 72px;
    grid-template-columns: 48px 1fr 48px;
    gap: 0;
    padding: 7px 16px;
  }

  .nav-group {
    display: none;
  }

  .logo {
    grid-column: 2;
    min-width: 0;
  }

  .logo img {
    width: 112px;
  }

  .menu-button {
    grid-column: 3;
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-button[data-open="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-button[data-open="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[data-open="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .menu-backdrop {
    position: fixed;
    z-index: 28;
    inset: 72px 0 0;
    display: block;
    background: rgba(0, 0, 0, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .menu-backdrop[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav {
    position: fixed;
    z-index: 29;
    top: 72px;
    right: 0;
    display: flex;
    width: min(88vw, 380px);
    height: calc(100dvh - 72px);
    flex-direction: column;
    padding: 28px 24px;
    border-left: 1px solid rgba(215, 180, 106, 0.24);
    background:
      linear-gradient(145deg, rgba(215, 180, 106, 0.08), transparent 42%),
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 10px),
      #0b0c0c;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 240ms ease,
      visibility 240ms;
  }

  .mobile-nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 6px;
    border-bottom: 1px solid rgba(245, 241, 232, 0.09);
    font-size: 0.76rem;
    opacity: 0;
    transform: translateX(14px);
    transition:
      color 160ms ease,
      opacity 220ms ease calc(var(--item-index) * 35ms),
      transform 220ms ease calc(var(--item-index) * 35ms);
  }

  .mobile-nav a span {
    color: rgba(215, 180, 106, 0.58);
    font-family: var(--font-jakarta-sans);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .mobile-nav[data-open="true"] a {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .split,
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .product-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-credit {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .feature-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid > :last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 720px;
    align-items: flex-end;
    padding: 330px 22px 52px;
  }

  .hero-media {
    height: 410px;
  }

  .hero-media img {
    object-position: 64% top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #080909 0%, rgba(8, 9, 9, 0.98) 42%, rgba(8, 9, 9, 0.18) 72%, rgba(8, 9, 9, 0.04) 100%),
      linear-gradient(90deg, rgba(8, 9, 9, 0.3), transparent 72%);
  }

  .hero-graphic,
  .hero-graphic-front {
    width: 100%;
    background: rgba(65, 65, 67, 0.68);
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero-content br {
    display: none;
  }

  h1,
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
    line-height: 1.16;
  }
}

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

  .intro-screen {
    display: none;
  }

  .contact-form label,
  .submit-button {
    opacity: 1;
  }
}
