:root {
  --brand: #f5b544;
  --brand-deep: #d4942a;
  --brand-ink: #0a0c0f;
  --surface: #12151a;
  --panel: #1a1e25;
  --line: rgba(255, 255, 255, 0.1);
  --soft-line: rgba(255, 255, 255, 0.06);
  --text-subtle: rgba(255, 255, 255, 0.68);
  --text-faint: rgba(255, 255, 255, 0.42);
  --hero-overlay: linear-gradient(180deg, rgba(10, 12, 15, 0.54), rgba(10, 12, 15, 0.68) 55%, #0a0c0f 100%);
  --image-overlay: linear-gradient(180deg, transparent 40%, rgba(10, 12, 15, 0.92) 100%);
  --shadow-search: 0 24px 80px rgba(0, 0, 0, 0.48);
  --shadow-card: 0 24px 50px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Figtree", sans-serif;
  background: var(--brand-ink);
  color: #ffffff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-shell { min-height: 100vh; overflow: hidden; background: var(--brand-ink); }
.page-width { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--soft-line);
  background: rgba(10, 12, 15, 0.76);
  backdrop-filter: blur(16px);
}
.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.brand-mark {
  width: 25px;
  height: 25px;
  color: var(--brand);
  flex: 0 0 auto;
}
.brand-accent { color: var(--brand); }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; margin-right: auto; }
.desktop-nav a, .desktop-account a {
  color: var(--text-subtle);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}
.desktop-nav a:first-child { color: #fff; }
.desktop-nav a:hover, .desktop-account a:hover { color: var(--brand); }
.desktop-account { display: flex; align-items: center; gap: 24px; }
.menu-button { display: none; }
.mobile-nav { display: none; }

.hero-section {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-overlay);
}
.hero-content {
  min-width: 0;
  padding-top: 100px;
  text-align: center;
}
.hero-kicker, .section-kicker {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-content h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.42);
}
.hero-content h1 span { color: var(--brand); }
.hero-lead {
  max-width: 620px;
  margin: 26px auto 36px;
  color: var(--text-subtle);
  font-size: 17px;
  line-height: 1.65;
}
.search-area { position: relative; z-index: 5; width: min(760px, 100%); margin-inline: auto; }
.search-form {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(245, 181, 68, 0.52);
  border-radius: 8px;
  background: rgba(18, 21, 26, 0.94);
  box-shadow: var(--shadow-search);
}
.search-form svg { color: var(--brand); flex: 0 0 auto; }
.search-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
}
.search-form input::placeholder { color: var(--text-faint); }
.search-submit {
  min-height: 48px;
  padding: 0 23px;
  border: 0;
  border-radius: 5px;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.quick-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
}
.quick-searches button {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 21, 26, 0.82);
  color: var(--text-subtle);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.hero-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero-caption span { margin-inline: 10px; }

.categories-section { padding: 96px 0 110px; background: var(--brand-ink); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}
.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(245, 181, 68, 0.4);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.category-card {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.category-media { position: relative; aspect-ratio: 1 / 1.02; overflow: hidden; }
.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: var(--image-overlay);
}
.category-title {
  position: absolute;
  inset: auto 24px 22px;
}
.category-title p {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.category-title h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  line-height: 1;
}
.category-body { padding: 23px 24px 25px; }
.category-body > p {
  min-height: 44px;
  margin: 0 0 22px;
  color: var(--text-subtle);
  font-size: 14px;
  line-height: 1.55;
}
.category-body button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(245, 181, 68, 0.32);
  background: transparent;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.confidence-strip {
  border-block: 1px solid var(--soft-line);
  background: var(--surface);
}
.confidence-inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.confidence-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}
.confidence-copy strong { font-family: "Outfit", sans-serif; font-size: 17px; }
.confidence-copy span { color: var(--text-faint); font-size: 13px; }
.confidence-steps {
  display: flex;
  gap: 30px;
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.confidence-steps span { display: flex; align-items: center; gap: 8px; }
.confidence-steps b { color: var(--brand); font-size: 10px; }

.footer { padding: 34px 0; background: var(--brand-ink); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer p { margin: 0; color: var(--text-faint); font-size: 12px; }

@media (max-width: 820px) {
  .page-width { width: min(100% - 32px, 680px); }
  .desktop-nav, .desktop-account { display: none; }
  .menu-button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: #fff;
    background: var(--surface);
    cursor: pointer;
  }
  .mobile-nav { display: none !important; gap: 0; padding: 8px 16px 16px; border-top: 1px solid var(--soft-line); background: var(--brand-ink); }
  .mobile-nav.is-open { display: grid !important; }
  .mobile-nav a { padding: 13px 4px; color: var(--text-subtle); font-size: 14px; border-bottom: 1px solid var(--soft-line); }
  .hero-section { min-height: 760px; }
  .hero-content { padding-top: 90px; }
  .category-grid { grid-template-columns: 1fr; }
  .confidence-inner { padding-block: 30px; align-items: flex-start; flex-direction: column; }
  .confidence-steps { width: 100%; justify-content: space-between; gap: 10px; }
}

@media (max-width: 560px) {
  .nav-inner { height: 66px; }
  .brand { font-size: 18px; }
  .hero-section { min-height: 720px; align-items: start; }
  .hero-image { object-position: 60% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(10, 12, 15, 0.46), rgba(10, 12, 15, 0.58) 58%, rgba(10, 12, 15, 0.78) 100%); }
  .hero-content { padding-top: 136px; }
  .hero-content h1 { font-size: 39px; line-height: 1.02; }
  .hero-content h1 br { display: none; }
  .hero-lead { margin: 20px auto 28px; }
  .search-form { width: 100%; display: grid; grid-template-columns: 22px minmax(0, 1fr); padding: 12px 13px; }
  .search-form input { width: 100%; min-width: 0; }
  .search-submit { grid-column: 1 / -1; width: 100%; margin-top: 4px; }
  .quick-searches { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .quick-searches::-webkit-scrollbar { display: none; }
  .quick-searches button { flex: 0 0 auto; }
  .hero-caption { display: none; }
  .categories-section { padding: 72px 0 78px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .category-grid { gap: 16px; }
  .confidence-steps { display: grid; grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
