/* ============================================================================
   NEW GROWTH — marketing sub-pages stylesheet
   Always dark. Flattened from tasks/newgrowth-brand.css (dark theme values).
   Espresso does the work; honey is the reward. Italiana speaks rarely.
   ========================================================================== */

:root {
  color-scheme: dark;

  /* palette (dark theme, flattened) */
  --ng-espresso-900: #191210;
  --ng-espresso-800: #241A15;
  --ng-espresso-700: #33251C;
  --ng-espresso-600: #4A362A;
  --ng-honey-500:    #E3B26B;
  --ng-honey-300:    #F0CF98;
  --ng-caramel-600:  #A8683A;
  --ng-porcelain:    #F6EFE6;
  --ng-foil-500:     #8E8B86;

  /* semantic (dark, no theme switching) */
  --ng-bg:             var(--ng-espresso-900);
  --ng-surface:        var(--ng-espresso-800);
  --ng-border:         rgba(227, 178, 107, 0.22);
  --ng-border-subtle:  rgba(246, 239, 230, 0.08);
  --ng-text:           var(--ng-porcelain);
  --ng-text-secondary: #CBBFB2;
  --ng-danger:         #D98282;
  --ng-danger-wash:    rgba(217, 130, 130, 0.14);
  --ng-success:        #6FB893;
  --ng-focus-ring:     0 0 0 3px rgba(227, 178, 107, 0.5);

  --ng-font-ui:      'Jost', system-ui, -apple-system, sans-serif;
  --ng-font-display: 'Italiana', Georgia, serif;
}

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

body {
  background: var(--ng-bg);
  color: var(--ng-text);
  font-family: var(--ng-font-ui);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--ng-honey-500); color: var(--ng-espresso-900); }
img { display: block; max-width: 100%; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--ng-focus-ring);
  border-radius: 4px;
}

/* ---------- Mini nav ---------- */
.mini-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(25, 18, 16, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227, 178, 107, 0.14);
}
.mini-nav .wordmark {
  font-family: var(--ng-font-display);
  font-size: 24px; letter-spacing: 0.01em;
  color: var(--ng-porcelain); text-decoration: none;
}
.mini-nav .wordmark span { color: var(--ng-honey-500); }
.mini-nav nav { display: flex; gap: 22px; align-items: center; }
.mini-nav nav a {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ng-foil-500); text-decoration: none;
  transition: color 0.15s ease;
}
.mini-nav nav a:hover { color: var(--ng-porcelain); }
.mini-nav nav a.app-link { color: var(--ng-honey-500); }
.mini-nav nav a.app-link:hover { color: var(--ng-honey-300); }
@media (max-width: 560px) {
  .mini-nav nav { gap: 14px; }
  .mini-nav nav a { letter-spacing: 0.08em; }
}

/* ---------- Page container ---------- */
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 150px 24px 90px;
}
.page--wide { max-width: 1120px; }

/* ---------- Typography ---------- */
h1.display {
  font-family: var(--ng-font-display);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.05;
  color: var(--ng-text);
}
.page h2 {
  font-family: var(--ng-font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  color: var(--ng-text);
  margin: 48px 0 14px;
}
.page .lede {
  margin-top: 18px;
  font-size: 17px;
}

/* prose */
.page p, .page ul, .page ol {
  margin-top: 14px;
  color: var(--ng-text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
}
.page ul, .page ol { padding-left: 22px; }
.page li { line-height: 1.7; margin-top: 8px; }
.page b, .page strong { color: var(--ng-text); font-weight: 500; }
.page a { color: var(--ng-honey-500); text-decoration: none; }
.page a:hover { color: var(--ng-honey-300); text-decoration: underline; }
.page .muted { color: var(--ng-foil-500); font-size: 13px; }

/* ---------- Forms ---------- */
.form-card {
  margin-top: 36px;
  background: var(--ng-surface);
  border: 1px solid var(--ng-border);
  border-radius: 14px;
  padding: 32px 28px;
}
.field { margin-top: 20px; }
.field:first-child { margin-top: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ng-text-secondary);
  margin-bottom: 8px;
}
.input, .textarea, .select {
  width: 100%;
  font-family: var(--ng-font-ui);
  font-size: 16px; font-weight: 400;
  color: var(--ng-porcelain);
  background: rgba(246, 239, 230, 0.06);
  border: 1px solid rgba(227, 178, 107, 0.35);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--ng-foil-500); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--ng-honey-500);
  box-shadow: 0 0 0 3px rgba(227, 178, 107, 0.25);
}
.textarea { resize: vertical; min-height: 140px; }
.select option { background: var(--ng-espresso-800); color: var(--ng-porcelain); }

.form-error {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ng-danger);
  background: var(--ng-danger-wash);
  border: 1px solid rgba(217, 130, 130, 0.3);
  border-radius: 10px;
  padding: 10px 16px;
}
.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ng-foil-500);
}
.success-card {
  margin-top: 36px;
  background: var(--ng-surface);
  border: 1px solid var(--ng-border);
  border-radius: 14px;
  padding: 48px 28px;
  text-align: center;
}
.success-card h2 { margin-top: 0; }
.success-card .tick {
  font-size: 34px; line-height: 1;
  color: var(--ng-success);
  margin-bottom: 14px;
}

/* honeypot — invisible to humans */
.hp-field {
  position: absolute; left: -9999px;
  opacity: 0; height: 0; overflow: hidden;
}

/* ---------- Honey CTA (pill) ---------- */
.btn-cta {
  display: inline-block;
  font-family: var(--ng-font-ui);
  font-weight: 500; font-size: 15px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ng-espresso-900);
  background: linear-gradient(100deg, var(--ng-honey-500), var(--ng-honey-300));
  padding: 16px 40px;
  border: none; border-radius: 999px;
  text-decoration: none; text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 40px rgba(227, 178, 107, 0.25);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(227, 178, 107, 0.35); }
.btn-cta[disabled] { opacity: 0.55; cursor: default; transform: none; box-shadow: none; }
.btn-cta--block { display: block; width: 100%; }

/* ---------- Pricing ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}
.tier {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ng-surface);
  border: 1px solid var(--ng-border);
  border-radius: 14px;
  padding: 28px 24px;
}
.tier .tier-name {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ng-honey-500);
}
.tier .price {
  font-family: var(--ng-font-display);
  font-weight: 400;
  font-size: 46px; line-height: 1.1;
  margin-top: 12px;
  color: var(--ng-text);
}
.tier .per {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ng-foil-500);
  margin-top: 4px;
}
.tier .allowance {
  margin-top: 14px;
  font-size: 13px; font-weight: 400;
  color: var(--ng-honey-500);
  border: 1px solid var(--ng-border);
  border-radius: 999px;
  padding: 5px 12px;
  align-self: flex-start;
}
.tier ul {
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.tier li {
  font-size: 14px; line-height: 1.55;
  color: var(--ng-text-secondary);
  padding-left: 18px;
  position: relative;
}
.tier li::before {
  content: '·';
  position: absolute; left: 2px;
  color: var(--ng-honey-500);
  font-weight: 600;
}
.tier .btn-cta { margin-top: auto; padding: 14px 20px; font-size: 13px; }

/* featured (Salon) — honey gradient, espresso text */
.tier--featured {
  background: linear-gradient(135deg, var(--ng-honey-500), var(--ng-honey-300));
  border-color: transparent;
  box-shadow: 0 18px 60px rgba(227, 178, 107, 0.2);
}
.tier--featured .tier-name { color: rgba(25, 18, 16, 0.72); }
.tier--featured .price { color: var(--ng-espresso-900); }
.tier--featured .per { color: rgba(25, 18, 16, 0.6); }
.tier--featured .allowance {
  color: var(--ng-espresso-900);
  border-color: rgba(25, 18, 16, 0.35);
}
.tier--featured li { color: var(--ng-espresso-700); }
.tier--featured li::before { color: var(--ng-espresso-900); }
.tier--featured .btn-cta {
  background: var(--ng-espresso-900);
  color: var(--ng-porcelain);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}
.tier .chip {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ng-honey-500);
  background: var(--ng-espresso-900);
  border: 1px solid var(--ng-honey-500);
  border-radius: 999px;
  padding: 5px 14px;
}

/* minute-pack strip */
.minute-pack {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 14px 24px;
  align-items: center; justify-content: space-between;
  background: var(--ng-surface);
  border: 1px solid var(--ng-border);
  border-radius: 14px;
  padding: 20px 24px;
}
.minute-pack .mp-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ng-foil-500);
}
.minute-pack .mp-name { font-size: 16px; font-weight: 400; color: var(--ng-text); margin-top: 4px; }
.minute-pack .mp-price {
  font-family: var(--ng-font-display);
  font-size: 32px; color: var(--ng-honey-500);
}
.pricing-footnote {
  margin-top: 22px !important;
  font-size: 13.5px !important;
  color: var(--ng-foil-500) !important;
}

/* ---------- FAQ ---------- */
.faq { margin-top: 80px; }
.faq details { border-bottom: 1px solid var(--ng-border-subtle); }
.faq details:first-of-type { border-top: 1px solid var(--ng-border-subtle); }
.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 18px 38px 18px 0;
  font-size: 16px; font-weight: 400;
  color: var(--ng-porcelain);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; font-weight: 300;
  color: var(--ng-honey-500);
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p {
  margin: 0;
  padding: 0 0 20px;
  font-size: 15px; line-height: 1.7;
  color: var(--ng-text-secondary);
  max-width: 68ch;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 44px 24px 56px;
  border-top: 1px solid rgba(227, 178, 107, 0.14);
  display: flex; flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--ng-foil-500);
}
.site-footer a { color: var(--ng-foil-500); text-decoration: none; }
.site-footer a:hover { color: var(--ng-porcelain); }
.site-footer a[aria-current="page"] { color: var(--ng-honey-500); }

/* ---------- 404 ---------- */
.center-hero {
  min-height: 72vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
  .btn-cta:hover { transform: none; }
}
