:root {
  --bg: #050808;
  --panel: #0b1111;
  --panel-soft: #101919;
  --text: #f7f2e7;
  --muted: #c8bdab;
  --gold: #d8b45c;
  --gold-strong: #f0cb69;
  --line: rgba(216, 180, 92, 0.28);
  --line-cool: rgba(116, 151, 145, 0.28);
  --green: #63d39e;
  --shadow: rgba(0, 0, 0, 0.38);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 180, 92, 0.11), transparent 34rem),
    linear-gradient(180deg, #071010 0%, var(--bg) 44%, #020404 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 0.25rem;
  background: var(--gold);
  color: #090806;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 180, 92, 0.18);
  background: rgba(5, 8, 8, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  padding: 0.65rem 0.9rem;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: var(--line);
  color: var(--text);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: transparent;
  color: var(--text);
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
  content: "";
}

.nav-toggle-line::before {
  transform: translateY(-0.45rem);
}

.nav-toggle-line::after {
  transform: translateY(0.32rem);
}

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

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.hero-copy {
  max-width: 58rem;
}

.hero-crest {
  width: clamp(7rem, 18vw, 11rem);
  height: auto;
  margin-bottom: 1.6rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-style: italic;
  font-weight: 700;
}

h2 {
  max-width: 14ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.lead {
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.brand-statement {
  display: grid;
  gap: 0.3rem;
  max-width: 28rem;
  margin-top: 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-style: italic;
  line-height: 1.25;
}

.section,
.page-hero,
.contact-panel {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

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

.product-card,
.product-section,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(145deg, rgba(16, 25, 25, 0.92), rgba(7, 12, 12, 0.92));
  box-shadow: 0 1.5rem 4rem var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line-cool);
}

.product-card-body,
.product-detail,
.contact-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.8rem;
  border: 1px solid rgba(99, 211, 158, 0.38);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 1rem;
  color: var(--gold-strong);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

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

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.product-section.reverse {
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
}

.product-section.reverse .product-visual {
  order: 2;
}

.product-visual img {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line-cool);
  padding-top: 0.8rem;
}

dt {
  color: var(--gold);
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  min-height: calc(100vh - 10rem);
  align-content: center;
}

.contact-panel h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
}

.contact-panel .lead {
  max-width: 23rem;
}

.contact-card {
  display: grid;
  gap: 0.4rem;
  width: 100%;
  max-width: 34rem;
  margin-top: 2rem;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--gold-strong);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 800;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  border-top: 1px solid rgba(216, 180, 92, 0.18);
  padding: 2rem 0;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--gold-strong);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  outline: none;
}

@media (max-width: 800px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding-top: 0.8rem;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
  }

  .product-grid,
  .product-section,
  .product-section.reverse {
    grid-template-columns: 1fr;
  }

  .product-section.reverse .product-visual {
    order: 0;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }
}

@media (max-width: 520px) {
  main,
  .nav,
  .site-footer {
    width: min(100% - 1rem, 1120px);
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.25rem);
  }

  .hero,
  .section,
  .page-hero,
  .contact-panel {
    padding: 3rem 0;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .product-card-body,
  .product-detail,
  .contact-card {
    padding: 1rem;
  }
}
