/*
Theme Name:  BRDDG Child
Template:    hello-elementor
Description: BRDDG custom child theme
Version:     1.0.0
Author:      BRDDG
*/

/* ── VARIABLES ── */
:root {
  --bg:       #d8dcd8;
  --fg:       #111111;
  --rule:     rgba(0,0,0,0.15);
  --hi-bg:    #111111;
  --hi-fg:    #d8dcd8;
  --row:      64px;
  --row-menu: 44px;
  --half:     32px;
  --gap:      44px;
  --font:     "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --t-lg:     42px;
  --t-md:     18px;
  --t-sm:     11px;
}

html { background: var(--bg); }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: grayscale;
  font-smoothing: grayscale;
  text-shadow:
    0 0 0.5px rgba(17,17,17,0.5),
    0 0 1.5px rgba(17,17,17,0.15);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
}

/* LCD scanline */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.022) 0px,
    rgba(0,0,0,0.022) 1px,
    transparent 1px,
    transparent 4px
  );
  z-index: 9999;
}

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

/* ── LAYOUT ── */
.wrap { width: 100%; }

/* ── TITLE BAR ── */
.titlebar {
  width: 100%;
  height: var(--row);
  padding: 0 var(--half);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 100;
}

.titlebar-name {
  font-size: var(--t-md);
  font-weight: 700;
}

/* ── HAMBURGER ── */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg);
}

/* ── ROW LINK ── */
.row-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--row);
  padding: 0 var(--half);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--fg);
}

.row-link + .row-link { border-top: none; }

.row-link:hover,
button.row-link:hover {
  background: var(--hi-bg);
  color: var(--hi-fg);
  text-shadow: none;
}

.nav-drop .row-link,
.row-link.sm { height: var(--row-menu); }

button.row-link {
  width: 100%;
  background: var(--bg);
  border: none;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: var(--t-md);
  color: var(--fg);
  text-shadow: inherit;
}

/* ── NAV DROPDOWN ── */
.nav-drop {
  display: none;
  width: 100%;
}

.nav-drop.open { display: block; }

/* ── CTA ROW (always inverted) ── */
.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--row);
  padding: 0 var(--half);
  background: var(--hi-bg);
  color: var(--hi-fg);
  font-size: var(--t-md);
  font-weight: 400;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-shadow: none;
}

.cta-row + .cta-row { border-top: none; }

/* ── CTA LABEL ── */
.cta-label {
  display: flex;
  align-items: center;
  height: var(--row-menu);
  padding: 0 var(--half);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}

.cta-label + .row-link { border-top: none; }

/* ── NOW-PLAYING ZONE ── */
.np-zone {
  width: 100%;
  padding: var(--row) var(--half) var(--gap);
  border-bottom: 1px solid var(--rule);
}

.np-label {
  font-size: var(--t-md);
  font-weight: 400;
  margin-bottom: var(--half);
}

.np-title {
  font-size: var(--t-lg);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.np-sub {
  font-size: var(--t-md);
  font-weight: 400;
  line-height: 1.55;
}

/* ── CONTENT SECTION ── */
.section {
  width: 100%;
  padding: var(--gap) var(--half);
  border-bottom: 1px solid var(--rule);
}

.section-title {
  font-size: var(--t-lg);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: var(--gap);
}

.section-title.tight { margin-bottom: 0; }

.section-sub {
  font-size: var(--t-md);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: var(--gap);
}

.section-sub:last-child { margin-bottom: 0; }

/* ── STEPS ── */
.step {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
}

.step:last-child { border-bottom: 1px solid var(--rule); }

.step-title {
  font-size: var(--t-md);
  font-weight: 700;
}

.step-body {
  font-size: var(--t-md);
  font-weight: 400;
  line-height: 1.55;
}

/* ── BRING LIST ── */
.bring-list {
  list-style: none;
  margin-bottom: var(--gap);
}

.bring-list li {
  font-size: var(--t-md);
  font-weight: 400;
  line-height: 1.4;
  padding: var(--half) 0;
  border-top: 1px solid var(--rule);
}

.bring-list li:last-child { border-bottom: 1px solid var(--rule); }

.callout {
  margin-top: var(--half);
  padding-top: var(--half);
  border-top: 1px solid var(--rule);
}

.callout p {
  font-size: var(--t-md);
  line-height: 1.55;
  margin-bottom: var(--half);
}

.callout p:last-child { margin-bottom: 0; }
.callout strong { font-weight: 700; }

/* ── PRICING TIERS ── */
.tier {
  padding: var(--gap) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.tier + .tier { border-top: none; }

.tier-name {
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tier-price {
  font-size: var(--t-lg);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: var(--half);
}

.tier-detail {
  font-size: var(--t-md);
  line-height: 1.65;
  margin-bottom: var(--half);
}

.tier-note {
  font-size: var(--t-sm);
  letter-spacing: 0.5px;
  line-height: 1.7;
  padding: var(--half) 0 0;
}

.tier-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--row-menu);
  padding: 0 var(--half);
  margin: 0 calc(-1 * var(--half));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-md);
  font-weight: 400;
  color: var(--fg);
}

.tier-cta:hover {
  background: var(--hi-bg);
  color: var(--hi-fg);
  text-shadow: none;
}

/* ── FAQ ── */
.faq-list { width: 100%; }

.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--row-menu);
  padding: 0 var(--half);
  font-size: var(--t-md);
  font-weight: 400;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--fg);
  font-family: var(--font);
  text-shadow: 0 0 0.5px rgba(17,17,17,0.5), 0 0 1.5px rgba(17,17,17,0.15);
}

.faq-q:hover {
  background: var(--hi-bg);
  color: var(--hi-fg);
  text-shadow: none;
}

.faq-ch { flex-shrink: 0; margin-left: var(--half); }

.faq-a {
  display: none;
  padding: 0 var(--half) var(--gap);
  font-size: var(--t-md);
  line-height: 1.65;
}

.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
.footer {
  width: 100%;
  margin-top: auto;
  padding: var(--half);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
}

.footer span,
.footer a { font-size: var(--t-sm); letter-spacing: 0.5px; }

.flinks { display: flex; gap: var(--half); }

/* ── HERO (homepage) ── */
.hero {
  width: 100%;
  padding: var(--row) var(--half) var(--gap);
  border-bottom: 1px solid var(--rule);
}

.hero-b1 { margin-bottom: var(--gap); }

.hero-title {
  font-size: var(--t-lg);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: var(--t-md);
  font-weight: 400;
  white-space: nowrap;
}

.hero-b2 { margin-bottom: var(--gap); }

.stats { display: flex; gap: var(--row); }

.stat-n {
  display: block;
  font-size: var(--t-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.stat-l {
  display: block;
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.trust-label {
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.trust-names {
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── FORM ── */
.form-label {
  display: block;
  padding: var(--half) var(--half) 0;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  height: var(--row);
  padding: 0 var(--half);
  font-family: var(--font);
  font-size: var(--t-md);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--fg);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:first-child { border-top: 1px solid var(--rule); }

.form-input::placeholder { color: rgba(17,17,17,0.35); }

.form-textarea {
  width: 100%;
  padding: var(--half);
  font-family: var(--font);
  font-size: var(--t-md);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--fg);
  outline: none;
  min-height: 160px;
  resize: vertical;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-textarea::placeholder { color: rgba(17,17,17,0.35); }

select.form-input { cursor: pointer; }

button.cta-row {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  font-family: var(--font);
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  :root { --t-lg: 30px; --half: 20px; --gap: 32px; }
  .stats        { gap: var(--half); }
  .hero-sub     { white-space: normal; text-wrap: balance; }
  .tier-cta     { margin: 0 calc(-1 * var(--half)); }
  .see-how-wrap { margin-top: 10vh; }
  .footer       { margin-top: 0; }
}
