:root {
  --bg: #060606;
  --surface: rgba(18, 18, 18, 0.82);
  --surface-strong: #121212;
  --text: #f4f1ec;
  --muted: #aea49a;
  --accent: #d8a24a;
  --accent-dark: #f0c878;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Avenir Next, Avenir, Trebuchet MS, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 162, 74, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, #050505 0%, #0d0d0d 48%, #171717 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.site-header,
.hero,
.voucher-grid-section,
.site-footer {
  backdrop-filter: blur(18px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
}

.header-note {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 1.25rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero h1,
.section-heading h2,
.footer-meta h2 {
  margin: 0;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.9rem);
  max-width: 11ch;
}

.lead,
.section-heading p,
.status-card p,
.footer-meta p {
  color: var(--muted);
  line-height: 1.6;
}

.lead {
  max-width: 56ch;
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.status-card {
  display: flex;
  align-items: stretch;
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(10, 10, 10, 0.92));
  border: 1px solid rgba(216, 162, 74, 0.2);
}

.featured-voucher {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  width: 100%;
}

.featured-voucher-copy h2 {
  margin: 0;
}

.featured-voucher-copy {
  font-size: 1.15rem;
  line-height: 1.15;
  color: var(--accent-dark);
}

.featured-voucher img {
  width: 100%;
  min-height: 240px;
  object-fit: contain;
  padding: 0.35rem;
  background: #0b0b0b;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms ease,
    filter 220ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.featured-voucher:hover img {
  transform: translateY(-6px) scale(1.02);
  filter: saturate(1.08);
  border-color: rgba(216, 162, 74, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.status-pill {
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voucher-grid-section {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.voucher-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(120px, 1fr));
  gap: 1rem;
}

.voucher-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #111111;
  min-height: 150px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.voucher-card img {
  width: 100%;
  height: calc(100% - 3rem);
  object-fit: contain;
  padding: 0.5rem 0.5rem 0.2rem;
  background: linear-gradient(180deg, #151515, #0b0b0b);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.voucher-card h3 {
  margin: 0;
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.voucher-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 162, 74, 0.55);
  background:
    linear-gradient(180deg, rgba(216, 162, 74, 0.08), rgba(255, 255, 255, 0.03)),
    #141414;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 44px rgba(0, 0, 0, 0.34);
}

.voucher-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.site-footer {
  padding: 1.4rem;
  margin-top: 1rem;
}

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

.footer-meta section {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta a {
  color: var(--accent-dark);
}

@media (max-width: 860px) {
  .site-header,
  .section-heading,
  .footer-meta,
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header,
  .section-heading,
  .footer-meta {
    display: grid;
  }

  .header-note {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
  }

  .featured-voucher {
    grid-template-columns: 1fr;
  }

  .voucher-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(5, minmax(120px, 1fr));
  }

  .voucher-card {
    min-height: 128px;
  }
}
