:root {
  --ink: #111217;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --muted: #656b73;
  --line: #ded9d0;
  --red: #d63e35;
  --red-dark: #a92f28;
  --blue: #0d4f8b;
  --green: #1f7658;
  --gold: #b68a3c;
  --shadow: 0 18px 45px rgba(17, 18, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 14px;
}

.top-strip {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-strip a {
  color: #fff2d4;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 0 5vw;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(17, 18, 23, 0.08);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--red);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #303238;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a.nav-call {
  background: var(--red);
  color: white;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: var(--ink);
  color: white;
  outline: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font-weight: 850;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(560px, 76vh, 760px);
  display: grid;
  align-items: end;
  padding: 8vh 5vw;
  color: white;
}

.page-hero {
  min-height: clamp(430px, 60vh, 620px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.02) 44%);
}

.hero-content,
.page-hero-content {
  width: min(820px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #fff2d4;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.lede {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--red);
  color: white;
  font-weight: 850;
}

.btn:hover,
.btn:focus-visible {
  background: var(--red-dark);
  outline: none;
}

.btn.secondary {
  background: white;
  color: var(--ink);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: #f1ebe1;
}

.btn.dark {
  background: var(--ink);
  color: white;
}

.btn.dark:hover,
.btn.dark:focus-visible {
  background: #2b2e36;
}

.section {
  padding: 72px 5vw;
}

.section.compact {
  padding-top: 44px;
  padding-bottom: 44px;
}

.section.dark {
  background: var(--ink);
  color: white;
}

.section.blue {
  background: #e8f1f8;
}

.section.green {
  background: #e6f1ec;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 30px;
}

.section-header h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-header p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.dark .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.kicker {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-grid,
.category-grid,
.product-grid,
.feature-grid,
.deal-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

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

.promo-tile,
.category-card,
.product-card,
.feature-card,
.deal-card,
.contact-panel {
  background: var(--panel);
  border: 1px solid rgba(17, 18, 23, 0.09);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 18, 23, 0.06);
}

.promo-tile {
  padding: 22px;
}

.promo-number {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.promo-tile p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.category-card {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: end;
  color: white;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05) 62%);
}

.category-card-content {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.category-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 900;
}

.text-link::after {
  content: ">";
  color: var(--red);
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  font-weight: 900;
  color: var(--ink);
}

.was {
  color: var(--muted);
  text-decoration: line-through;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ffe8e5;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stock {
  margin-top: 12px;
}

.stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.stock-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e2d8;
}

.stock-fill {
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

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

.feature-card {
  padding: 24px;
}

.feature-card strong {
  color: var(--blue);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.deal-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.deal-card {
  padding: 28px;
}

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

.deal-card p {
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.countdown span {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
}

.countdown strong {
  display: block;
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
}

.wide-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(17, 18, 23, 0.09);
  box-shadow: var(--shadow);
}

.wide-band h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.columns {
  columns: 2 300px;
  column-gap: 40px;
  color: var(--muted);
}

.collection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.collection-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

.contact-panel {
  padding: 24px;
}

.contact-panel p {
  color: var(--muted);
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: #33363d;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 12px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 42px 5vw;
  background: #0d0e12;
  color: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-inner p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav {
    justify-content: flex-start;
  }

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

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

@media (max-width: 760px) {
  .top-strip {
    font-size: 0.75rem;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 8px;
  }

  .site-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    background: white;
    border: 1px solid var(--line);
  }

  .hero,
  .page-hero {
    min-height: 560px;
    padding: 72px 22px 46px;
  }

  .hero::after,
  .page-hero::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
  }

  .section {
    padding: 54px 22px;
  }

  .section-header,
  .footer-inner {
    display: block;
  }

  .section-header .btn {
    margin-top: 18px;
  }

  .promo-grid,
  .category-grid,
  .product-grid,
  .feature-grid,
  .deal-grid,
  .contact-grid,
  .collection-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 280px;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .site-nav.open {
    grid-template-columns: 1fr;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .countdown {
    grid-template-columns: 1fr;
  }
}
