/* wethuntt.com — layout unique to this domain */

:root {
  --wh-bg: #1a0f18;
  --wh-panel: #241420;
  --wh-panel-2: #2e1a2c;
  --wh-amber: #e8a54b;
  --wh-amber-soft: #f0c078;
  --wh-rose: #c45c7a;
  --wh-text: #f8f0f4;
  --wh-muted: #b8a8b4;
  --wh-line: rgba(232, 165, 75, 0.22);
  --wh-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wh-pad: 1rem;
  --wh-gap: 1.5rem;
  --wh-touch: 2.75rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--wh-font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--wh-text);
  background: var(--wh-bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 15% -10%, rgba(196, 92, 122, 0.15), transparent),
    radial-gradient(ellipse 55% 45% at 90% 5%, rgba(232, 165, 75, 0.1), transparent);
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.wh-drawer-open { overflow: hidden; }

a { color: var(--wh-amber-soft); }

.wh-wrap { min-height: 100vh; display: flex; flex-direction: column; }

.wh-container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--wh-pad);
}

.wh-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 15, 24, 0.96);
  border-bottom: 1px solid var(--wh-line);
  padding-top: env(safe-area-inset-top);
  backdrop-filter: blur(10px);
}

.wh-top__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.4rem;
  padding: 0.45rem 0;
}

.wh-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: var(--wh-text);
  font-weight: 800;
  font-size: 1.15rem;
}

.wh-brand-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wh-rose), var(--wh-amber));
  flex-shrink: 0;
}

.wh-nav {
  flex-basis: 100%;
  display: none;
  flex-direction: column;
  padding-bottom: 0.65rem;
  border-top: 1px solid var(--wh-line);
  margin-top: 0.3rem;
}

.wh-top.wh-nav-open .wh-nav { display: flex; }

.wh-nav a {
  display: flex;
  align-items: center;
  min-height: var(--wh-touch);
  color: var(--wh-muted);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wh-nav a:hover,
.wh-nav a[aria-current="page"] { color: var(--wh-amber-soft); }

.wh-menu-btn {
  min-height: var(--wh-touch);
  min-width: var(--wh-touch);
  padding: 0 0.75rem;
  border: 1px solid var(--wh-line);
  border-radius: 8px;
  background: var(--wh-panel);
  color: var(--wh-text);
  font: 600 0.78rem var(--wh-font);
  cursor: pointer;
}

.wh-top__cta { display: none; flex-shrink: 0; }

.wh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1.35rem;
  font: 700 0.94rem var(--wh-font);
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.wh-btn--primary {
  color: #1a0f18;
  background: linear-gradient(135deg, var(--wh-amber), var(--wh-amber-soft));
  box-shadow: 0 6px 20px rgba(232, 165, 75, 0.28);
}

.wh-btn--ghost {
  color: var(--wh-amber-soft);
  background: transparent;
  border: 1px solid var(--wh-line);
  box-shadow: none;
}

.wh-btn--block { width: 100%; }

.wh-hero-zone { padding: var(--wh-gap) 0; }

.wh-hero {
  position: relative;
  padding: 1.25rem;
  background: linear-gradient(155deg, var(--wh-panel), var(--wh-panel-2));
  border: 1px solid var(--wh-line);
  border-radius: 18px;
  overflow: hidden;
}

.wh-hero-glow {
  position: absolute;
  inset: -40% 20% auto -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(196, 92, 122, 0.2), transparent 65%);
  pointer-events: none;
}

.wh-hero-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wh-hero-tag {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wh-muted);
}

.wh-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.wh-pill {
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--wh-bg);
  border: 1px solid var(--wh-line);
  color: var(--wh-muted);
}

.wh-pill--hot {
  color: var(--wh-bg);
  background: var(--wh-rose);
  border-color: transparent;
}

.wh-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 5.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
}

.wh-hero h1 em {
  font-style: normal;
  color: var(--wh-amber-soft);
}

.wh-lead {
  margin: 0 0 1rem;
  max-width: 36rem;
  color: var(--wh-muted);
  font-size: 0.98rem;
}

.wh-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.wh-trust {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  color: var(--wh-muted);
}

.wh-trust li { margin-bottom: 0.35rem; padding-left: 1rem; position: relative; }
.wh-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--wh-amber); font-weight: 700; }

.wh-fine { margin: 0; font-size: 0.8rem; color: var(--wh-muted); }

.wh-hero-art {
  margin: 0 auto;
  width: min(100%, 20rem);
}

.wh-hero-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 14px;
  border: 1px solid var(--wh-line);
  background: linear-gradient(145deg, #3d2438 0%, #1a0f18 50%, #4a3020 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.wh-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 15, 24, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.wh-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.wh-media {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 12px;
  border: 1px solid var(--wh-line);
  overflow: hidden;
  background: var(--wh-panel-2);
}

.wh-media--tall { aspect-ratio: 3/4; max-height: 28rem; }

.wh-media-placeholder {
  aspect-ratio: 16/10;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--wh-panel-2), var(--wh-bg));
  border: 1px solid var(--wh-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wh-muted);
  font-size: 0.9rem;
}

.wh-page-banner {
  margin: 0 0 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--wh-line);
  overflow: hidden;
  aspect-ratio: 21/9;
  max-height: 12rem;
  background: var(--wh-panel-2);
}

.wh-page-banner--short {
  aspect-ratio: 2.4/1;
  max-height: 9rem;
}

.wh-page-banner .wh-img { object-position: center 30%; }

.wh-app-visual {
  max-width: 14rem;
  margin: 0 auto 1.25rem;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid var(--wh-line);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.wh-intent {
  background: rgba(36, 20, 32, 0.55);
  border-block: 1px solid var(--wh-line);
}

.wh-intent-facts .wh-card { height: 100%; }

.wh-intent-list {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.wh-intent-list div {
  padding: 0.75rem 0.9rem;
  background: var(--wh-panel);
  border: 1px solid var(--wh-line);
  border-radius: 10px;
}

.wh-intent-list dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wh-amber-soft);
}

.wh-intent-list dd {
  margin: 0.25rem 0 0;
  color: var(--wh-text);
  font-size: 0.92rem;
}

.wh-section { padding: var(--wh-gap) 0; }

.wh-section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 4vw, 1.55rem);
  text-wrap: balance;
}

.wh-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wh-text-link { color: var(--wh-amber-soft); font-weight: 600; text-decoration: none; }
.wh-text-link:hover { text-decoration: underline; }

.wh-card {
  padding: 1rem;
  background: var(--wh-panel);
  border: 1px solid var(--wh-line);
  border-radius: 12px;
}

.wh-grid-3 {
  display: grid;
  gap: 0.8rem;
}

.wh-stats {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.wh-stat-val { font-size: 1.75rem; font-weight: 800; color: var(--wh-amber-soft); }
.wh-stat-kicker { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--wh-muted); }
.wh-stat-sub { font-size: 0.85rem; color: var(--wh-muted); }

.wh-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}

.wh-profiles {
  display: grid;
  gap: 0.75rem;
}

.wh-profile-card { padding: 0.9rem; }

.wh-profile-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
  margin-bottom: 0.75rem;
}

.wh-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--wh-text);
  background: linear-gradient(135deg, var(--wh-rose), #6b3a5c);
}

.wh-profile-name { font-weight: 700; }
.wh-profile-city { font-size: 0.85rem; color: var(--wh-muted); }
.wh-badge-soft {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 4px;
  background: rgba(232, 165, 75, 0.15);
  color: var(--wh-amber-soft);
}

.wh-status { font-size: 0.72rem; font-weight: 700; }
.wh-status--on { color: #6ee7a0; }
.wh-status--off { color: var(--wh-muted); }

.wh-profile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wh-mini-steps {
  display: grid;
  gap: 0.75rem;
}

.wh-mini-step strong { display: block; margin-bottom: 0.25rem; }
.wh-mini-step span { font-size: 0.9rem; color: var(--wh-muted); }

.wh-icon { font-size: 1.5rem; margin-bottom: 0.35rem; }

.wh-audience {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
}

.wh-aud strong { display: block; }
.wh-aud span { font-size: 0.82rem; color: var(--wh-muted); }

.wh-split {
  display: grid;
  gap: 1.25rem;
}

.wh-checklist {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--wh-muted);
  font-size: 0.92rem;
}

.wh-quotes {
  display: grid;
  gap: 0.75rem;
}

.wh-quote p { margin: 0 0 0.5rem; font-style: italic; }

.wh-blog-cards {
  display: grid;
  gap: 1rem;
}

.wh-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--wh-panel);
  border: 1px solid var(--wh-line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}

.wh-blog-card:hover { border-color: var(--wh-amber); }

.wh-blog-thumb {
  height: 8rem;
  background: linear-gradient(120deg, var(--wh-panel-2), #3d2835);
}

.wh-blog-card .wh-pad { padding: 1rem; }
.wh-blog-card h3 { margin: 0.5rem 0; font-size: 1rem; color: var(--wh-text); }
.wh-blog-excerpt { margin: 0; font-size: 0.88rem; color: var(--wh-muted); }
.wh-blog-more { font-size: 0.85rem; font-weight: 600; color: var(--wh-amber-soft); }

.wh-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--wh-panel-2), var(--wh-panel));
  border: 1px solid var(--wh-line);
  border-radius: 14px;
}

.wh-pied {
  margin-top: auto;
  padding: 1.5rem var(--wh-pad) calc(1.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--wh-line);
  background: var(--wh-panel);
}

.wh-pied-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.wh-pied-title { font-weight: 700; margin-bottom: 0.5rem; font-size: 0.9rem; }
.wh-pied ul { margin: 0; padding: 0; list-style: none; }
.wh-pied li { margin-bottom: 0.35rem; }
.wh-pied a { color: var(--wh-muted); text-decoration: none; font-size: 0.88rem; }
.wh-pied a:hover { color: var(--wh-amber-soft); }

.wh-pied-bottom { font-size: 0.82rem; color: var(--wh-muted); text-align: center; }

.wh-voile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.wh-top.wh-nav-open + .wh-voile,
.wh-voile.wh-voile--on { display: block; }

.wh-legal { padding: var(--wh-gap) 0 2.5rem; }
.wh-legal h1 { font-size: clamp(1.3rem, 4vw, 1.9rem); margin: 0 0 1rem; }
.wh-prose {
  background: var(--wh-panel);
  border: 1px solid var(--wh-line);
  border-radius: 12px;
  padding: 1.15rem;
  color: var(--wh-muted);
  font-size: 0.94rem;
}
.wh-prose h2 { color: var(--wh-text); font-size: 1.05rem; margin: 1.2rem 0 0.5rem; }
.wh-prose h2:first-child { margin-top: 0; }
.wh-prose p, .wh-prose ul { margin: 0 0 0.75rem; }
.wh-prose ul { padding-left: 1.2rem; }

.wh-steps-list { margin: 0; padding: 0; list-style: none; counter-reset: whs; }
.wh-steps-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  color: var(--wh-muted);
}
.wh-steps-list li::before {
  counter-increment: whs;
  content: counter(whs);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--wh-bg);
  background: var(--wh-amber);
  border-radius: 50%;
}
.wh-steps-list strong { display: block; color: var(--wh-text); margin-bottom: 0.15rem; }

.wh-page-intro {
  padding: var(--wh-gap) 0 0.5rem;
}

.wh-page-intro h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 4.5vw, 2.1rem);
  text-wrap: balance;
}

.wh-page-intro .wh-lead { margin-bottom: 1rem; }

.wh-faq {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.wh-faq details {
  border: 1px solid var(--wh-line);
  border-radius: 10px;
  background: var(--wh-panel);
  overflow: hidden;
}

.wh-faq summary {
  padding: 0.85rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.wh-faq summary::-webkit-details-marker { display: none; }

.wh-faq details p {
  margin: 0;
  padding: 0 1rem 0.9rem;
  color: var(--wh-muted);
  font-size: 0.9rem;
}

.wh-guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wh-guide-list li {
  margin-bottom: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--wh-panel);
  border: 1px solid var(--wh-line);
  border-radius: 10px;
}

.wh-guide-list a {
  font-weight: 600;
  text-decoration: none;
  color: var(--wh-amber-soft);
}

.wh-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.wh-pied-col ul { margin: 0; padding: 0; list-style: none; }

@media (min-width: 400px) {
  :root { --wh-pad: 1.1rem; --wh-gap: 1.65rem; }
}

@media (min-width: 480px) {
  .wh-pied-grid { grid-template-columns: repeat(2, 1fr); }
  .wh-intent-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 560px) {
  .wh-stats { grid-template-columns: repeat(3, 1fr); }
  .wh-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .wh-profiles { grid-template-columns: repeat(2, 1fr); }
  .wh-mini-steps { grid-template-columns: repeat(3, 1fr); }
  .wh-quotes { grid-template-columns: repeat(3, 1fr); }
  .wh-blog-cards { grid-template-columns: repeat(3, 1fr); }
  .wh-intent-facts .wh-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .wh-page-banner { max-height: 14rem; }
}

@media (min-width: 761px) {
  :root { --wh-pad: 1.35rem; --wh-gap: 2rem; }

  body.wh-drawer-open { overflow: auto; }

  .wh-menu-btn { display: none; }

  .wh-nav {
    display: flex !important;
    flex-direction: row;
    flex: 1;
    flex-basis: auto;
    width: auto;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    border: none;
  }

  .wh-nav a { min-height: 0; border: none; padding: 0.2rem 0; }

  .wh-top__cta { display: inline-flex; }

  .wh-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(18rem, 38%);
    gap: 1.5rem 2rem;
    align-items: center;
  }

  .wh-hero-actions { flex-direction: row; flex-wrap: wrap; }
  .wh-btn--block { width: auto; min-width: 10.5rem; }
  .wh-cta-row { flex-direction: row; flex-wrap: wrap; }
  .wh-profile-actions { flex-direction: row; }
  .wh-cta-panel { flex-direction: row; align-items: center; justify-content: space-between; }
  .wh-split { grid-template-columns: 1fr 1fr; align-items: center; }
  .wh-pied-grid { grid-template-columns: repeat(4, 1fr); }
  .wh-profiles { grid-template-columns: repeat(3, 1fr); }
  .wh-app-layout {
    display: grid;
    grid-template-columns: min(14rem, 32%) 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .wh-app-layout .wh-app-visual { margin: 0; max-width: none; }
  .wh-intent-list { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 760px) {
  :root { --wh-pad: 1rem; --wh-gap: 1.35rem; }

  .wh-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  .wh-hero-art {
    order: -1;
    width: 100%;
    max-width: 22rem;
  }

  .wh-hero-frame { aspect-ratio: 5/4; }

  .wh-hero h1 { font-size: clamp(1.45rem, 6.5vw, 1.85rem); }

  .wh-hero-actions .wh-btn { min-height: 3.15rem; font-size: 1rem; }

  .wh-top__cta {
    padding-inline: 0.85rem;
    font-size: 0.88rem;
  }

  .wh-brand { font-size: 1.05rem; }

  .wh-section-head { flex-direction: column; align-items: flex-start; }

  .wh-profile-top { grid-template-columns: auto 1fr; }
  .wh-profile-top .wh-status { grid-column: 1 / -1; justify-self: start; margin-top: 0.15rem; }

  .wh-split .wh-media,
  .wh-split .wh-media--tall { max-height: 16rem; aspect-ratio: 16/10; }

  .wh-cta-panel { text-align: center; }
  .wh-cta-panel .wh-btn { width: 100%; }

  .wh-pied-grid { gap: 1rem; }

  .wh-page-banner { aspect-ratio: 16/9; max-height: 10rem; }

  .wh-app-layout { text-align: center; }
}

@media (max-width: 380px) {
  .wh-pills { gap: 0.35rem; }
  .wh-pill { font-size: 0.72rem; padding: 0.2rem 0.5rem; }
  .wh-audience { grid-template-columns: 1fr 1fr; }
}
