:root {
  color-scheme: dark;
  --ink: #f3efe6;
  --muted: #b5b0a3;
  --paper: #0f1317;
  --paper-2: #151a20;
  --panel: rgba(18, 22, 28, 0.82);
  --panel-strong: rgba(24, 29, 36, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --blue: #6aa9c8;
  --green: #88b39a;
  --gold: #d0a15e;
  --gold-soft: rgba(208, 161, 94, 0.18);
  --radius: 18px;
  --shadow: 0 26px 64px rgba(0, 0, 0, 0.38);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 12%, rgba(208, 161, 94, 0.18), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(106, 169, 200, 0.14), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(136, 179, 154, 0.1), transparent 28%),
    linear-gradient(180deg, #090b0f 0%, var(--paper) 62%, #090b0f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
  opacity: 0.55;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

header {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(9, 11, 15, 0.84), rgba(9, 11, 15, 0));
}

.brand {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

nav a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

nav a {
  color: var(--muted);
  border: 1px solid transparent;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  outline: none;
  transform: translateY(-1px);
}

main {
  flex: 1;
  padding: 42px 0 76px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.9;
}

.brand-lockup {
  display: grid;
  gap: 0.1em;
  width: min-content;
  max-width: 100%;
}

.brand-lockup-image {
  width: min(100%, 760px);
  min-height: clamp(120px, 16vw, 200px);
  align-items: start;
}

.brand-wordmark {
  display: block;
  width: min(100%, 760px);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42));
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.1;
}

.model-title {
  display: inline-block;
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(1.95rem, 4.3vw, 3rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.model-title span {
  display: block;
  white-space: nowrap;
}

.model-title .small {
  margin-bottom: 0.08em;
  color: #ffd8a6;
  font-size: 0.46em;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.68;
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #f0c47f 100%);
  color: #1a1309;
  box-shadow: 0 18px 34px rgba(208, 161, 94, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 38px rgba(208, 161, 94, 0.32);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.panel,
.product-card,
.media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel {
  padding: clamp(22px, 4vw, 34px);
}

.panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.hero-media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: #07090c;
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.44);
}

.hero-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.96);
}

.hero-media figcaption,
.campaign-card figcaption {
  padding: 14px 16px 16px;
  color: rgba(243, 239, 230, 0.72);
  background: linear-gradient(180deg, rgba(12, 15, 20, 0.88), rgba(12, 15, 20, 0.98));
  font-size: 0.92rem;
}

.section {
  margin-top: clamp(52px, 8vw, 90px);
}

.section-header {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-header p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

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

.feature-pill {
  min-height: 80px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.feature-pill strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
}

.feature-pill span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

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

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

.copy-card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.copy-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.statement-band {
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(140deg, rgba(208, 161, 94, 0.18), rgba(106, 169, 200, 0.08)),
    rgba(16, 19, 24, 0.9);
  box-shadow: var(--shadow);
}

.statement-band p {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.66;
}

.campaign-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.campaign-copy {
  padding-top: 8px;
}

.campaign-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.campaign-copy .feature-strip {
  grid-template-columns: 1fr;
}

.campaign-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: #07090c;
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.34);
}

.campaign-card img {
  width: 100%;
  display: block;
  background: #07090c;
}

.product-card {
  min-height: 300px;
  padding: clamp(22px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.product-meta {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.spec-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.52;
}

.spec-list li {
  display: flex;
  gap: 10px;
}

.spec-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(208, 161, 94, 0.15);
}

.media-grid {
  display: grid;
  gap: 18px;
}

.media-card {
  margin: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #151a20;
}

.image-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(208, 161, 94, 0.14), rgba(106, 169, 200, 0.1)),
    rgba(17, 20, 25, 0.95);
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
}

.media-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .hero,
  .product-layout,
  .campaign-layout {
    grid-template-columns: 1fr;
  }
}

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

  header {
    display: grid;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 16px, 1120px);
  }

  header {
    position: static;
    padding: 14px 0 8px;
    backdrop-filter: none;
    background: transparent;
    gap: 12px;
  }

  .topbar {
    gap: 0.45rem;
  }

  .topbar h1 {
    font-size: 1.1rem;
    line-height: 1.1;
  }

  nav {
    gap: 6px;
  }

  nav a {
    padding: 0 12px;
    min-height: 38px;
    font-size: 0.92rem;
  }

  main {
    padding: 20px 0 60px;
  }

  .actions {
    flex-direction: column;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .brand-lockup-image {
    width: 100%;
    min-height: clamp(74px, 22vw, 110px);
  }

  .brand-wordmark {
    width: min(100%, 420px);
  }

  .model-title {
    font-size: clamp(1.75rem, 10vw, 2.55rem);
  }

  .lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .feature-strip {
    margin-top: 18px;
    gap: 10px;
  }

  .feature-pill,
  .copy-card,
  .product-card {
    border-radius: 14px;
  }

  .panel {
    padding: 0.8rem;
  }

  .hero,
  .campaign-layout,
  .product-layout {
    gap: 22px;
  }

  .hero-media,
  .campaign-card {
    border-radius: 18px;
  }

  .hero-media figcaption,
  .campaign-card figcaption {
    font-size: 0.86rem;
    padding: 12px 14px 14px;
  }

  .board-wrap {
    border-radius: 0.6rem;
  }
}
