:root {
  --ink: #171717;
  --ink-soft: #3a3a3a;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #ded7cc;
  --gold: #c99b4a;
  --gold-dark: #8c6427;
  --teal: #0f766e;
  --teal-dark: #0b4f4b;
  --charcoal: #202020;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(201, 155, 74, 0.75);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(18, 18, 18, 0.62);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.05) 45%, rgba(0, 0, 0, 0.18) 46%),
    linear-gradient(45deg, #85611f 0%, #d9b15d 48%, #f2e4bd 52%, #4e4e4e 100%);
  transform: rotate(-10deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.brand strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.93rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a.is-active {
  color: #fff;
  font-weight: 800;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: #fff !important;
  font-weight: 900;
}

.nav-cta {
  padding: 10px 16px;
  color: #171717 !important;
  background: var(--gold);
  border-radius: 6px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/precious-metals-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  width: min(1180px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 130px 0 72px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

p,
li,
label,
summary {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: 4.4rem;
  line-height: 0.98;
  font-weight: 800;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.8rem;
  line-height: 1.08;
  overflow-wrap: normal;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.22;
  overflow-wrap: normal;
}

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #151515;
  background: var(--gold);
}

.button-primary:hover {
  background: #ddb76a;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary {
  color: #fff;
  background: var(--teal);
}

.button-secondary:hover {
  background: var(--teal-dark);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.hero-video {
  width: 100%;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.video-frame-large {
  border-color: rgba(201, 155, 74, 0.64);
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.18);
}

.video-placeholder.is-hidden {
  display: none;
}

.play-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 4px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(201, 155, 74, 0.86);
}

.play-mark::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 22px 0 0 30px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #181818;
}

.video-placeholder p {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
}

.video-placeholder small {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  background: var(--charcoal);
  color: #fff;
}

.intro h2 {
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0)),
    #fff;
}

.light-section {
  background: #fff;
}

.preview-section {
  background: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading.compact {
  max-width: 680px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.feature-card,
.goal-list article,
.metal-card,
.contact-form,
.contact-note,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card {
  min-height: 248px;
  padding: 24px;
}

.card-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.goal-list p,
.metal-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.goals-section {
  background: #f3f7f5;
}

.goal-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.goal-list article {
  min-height: 166px;
  padding: 22px;
}

.metals-section {
  background: var(--ink);
  color: #fff;
}

.metals-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.metals-copy h2 {
  color: #fff;
}

.metals-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
}

.split-showcase,
.highlights-layout,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-showcase + .feature-grid {
  margin-top: 34px;
}

.image-panel,
.product-visual,
.contact-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(32, 32, 32, 0.1);
}

.image-panel {
  min-height: 330px;
}

.image-panel img,
.product-visual img,
.contact-image img,
.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bank-panel {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: clamp(24px, 4vw, 46px);
}

.bank-panel img {
  height: auto;
  object-fit: contain;
}

.dark-image {
  background: #111;
  border-color: rgba(255, 255, 255, 0.14);
}

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

.preview-card {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(32, 32, 32, 0.08);
}

.preview-card img {
  aspect-ratio: 16 / 9;
}

.preview-card span {
  display: block;
  padding: 22px 22px 0;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 900;
}

.preview-card p {
  margin: 0;
  padding: 8px 22px 22px;
  color: var(--ink-soft);
}

.subpage-body {
  background: #fff;
}

.page-hero {
  padding: 142px 0 78px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48)),
    url("assets/precious-metals-hero.png") center / cover;
}

.product-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.52)),
    url("assets/metals-closeup.png") center / cover;
}

.faq-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.46)),
    url("assets/pkm-vault.avif") center / cover;
}

.legal-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48)),
    url("assets/abschluss-documents.png") center / cover;
}

.blog-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48)),
    url("assets/metals-closeup.png") center / cover;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.product-visual {
  min-height: 360px;
  background: rgba(255, 255, 255, 0.92);
}

.product-visual img {
  object-fit: contain;
  padding: clamp(14px, 3vw, 30px);
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.product-visual.hero-photo {
  height: 360px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

.product-detail-section {
  background: #f3f7f5;
}

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

.closing-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
}

.faq-list-large details p {
  font-size: 1rem;
}

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

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(32, 32, 32, 0.08);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.blog-card span {
  padding: 22px 22px 0;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  padding: 8px 22px 0;
  font-size: 1.28rem;
}

.blog-card p {
  margin: 0;
  padding: 10px 22px 24px;
  color: var(--ink-soft);
}

.blog-article-section {
  background: #f3f7f5;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px);
}

.blog-article {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(32, 32, 32, 0.08);
}

.blog-article h2 {
  max-width: 13ch;
  overflow-wrap: break-word;
  hyphens: auto;
}

.blog-article > p:not(.eyebrow):not(.article-meta):not(.source-line) {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.article-meta {
  margin: 16px 0 24px;
  color: var(--gold-dark);
  font-weight: 800;
}

.article-points {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.article-points section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-points p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.article-callout {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(201, 155, 74, 0.54);
  border-radius: 8px;
  background: #fff8e9;
}

.article-callout span {
  color: var(--ink-soft);
}

.source-line {
  margin: 28px 0 0;
  color: var(--ink-soft);
}

.source-line a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article-dark {
  background: var(--ink);
}

.dark-article {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.dark-article h2,
.dark-article h3 {
  color: #fff;
}

.dark-article > p:not(.eyebrow):not(.article-meta):not(.source-line),
.dark-article .article-points p,
.dark-article .source-line,
.dark-article .article-callout span {
  color: rgba(255, 255, 255, 0.78);
}

.dark-article .article-points section {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.dark-article .article-callout {
  border-color: rgba(201, 155, 74, 0.54);
  background: rgba(201, 155, 74, 0.12);
}

.dark-article .source-line a {
  color: #f1c96d;
}

.legal-section {
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0)),
    #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px);
}

.legal-content {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(32, 32, 32, 0.08);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--ink-soft);
}

.legal-content a,
.checkbox-line a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.metal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metal-card {
  min-height: 188px;
  padding: 22px;
  color: var(--ink);
}

.metal-card span {
  display: block;
  width: 54px;
  height: 10px;
  margin-bottom: 28px;
  border-radius: 999px;
}

.metal-card.gold span {
  background: linear-gradient(90deg, #7f5d21, #e1b957, #fff0b8);
}

.metal-card.silver span {
  background: linear-gradient(90deg, #737373, #d9dde2, #ffffff);
}

.metal-card.platinum span {
  background: linear-gradient(90deg, #64717a, #cad5da, #f3f7f9);
}

.metal-card.palladium span {
  background: linear-gradient(90deg, #3c514f, #9bb7b1, #e8f5f1);
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(201, 155, 74, 0.14), rgba(15, 118, 110, 0.1)),
    #f8f6f1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(460px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.contact-note {
  margin-top: 28px;
  padding: 20px;
}

.important-note {
  border-color: rgba(201, 155, 74, 0.68);
  background: #fff8e9;
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note span {
  margin-top: 6px;
  color: var(--ink-soft);
}

.contact-image {
  margin-top: 22px;
  aspect-ratio: 16 / 9;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 40px rgba(35, 35, 35, 0.08);
}

.contact-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #cfc8bc;
  border-radius: 6px;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-line {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  color: var(--ink-soft) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

.checkbox-line input {
  min-height: auto;
  margin: 4px 0 0;
  padding: 0;
  accent-color: var(--gold-dark);
}

.form-submit {
  width: fit-content;
  min-width: 190px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: #121212;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.legal {
  width: min(1120px, 100%);
  margin: 26px auto 0 !important;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 22px;
    background: rgba(18, 18, 18, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 4px;
  }

  .nav-cta {
    width: fit-content;
    padding: 11px 16px !important;
  }

  .hero-inner,
  .intro-grid,
  .metals-layout,
  .faq-layout,
  .contact-layout,
  .split-showcase,
  .highlights-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 112px;
  }

  .hero-video {
    order: -1;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    max-width: 12ch;
  }

  .feature-grid,
  .goal-list,
  .feature-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sticky-heading {
    position: static;
  }

  .page-hero {
    padding-top: 116px;
  }

  .closing-cta {
    display: grid;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 1.02rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-inner {
    gap: 26px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .trust-list {
    display: grid;
  }

  .button,
  .form-submit {
    width: 100%;
  }

  .video-placeholder p {
    font-size: 1.18rem;
  }

  .play-mark {
    width: 58px;
    height: 58px;
  }

  .play-mark::after {
    margin: 16px 0 0 23px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }

  .feature-grid,
  .goal-list,
  .metal-grid,
  .preview-grid,
  .blog-card-grid,
  .feature-grid-three,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .goal-list article,
  .metal-card {
    min-height: auto;
  }

  .footer-inner {
    display: grid;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .image-panel,
  .product-visual {
    min-height: 220px;
  }

  .preview-card {
    min-height: auto;
  }
}
