/* ===== ADDASON AUDITS — DESIGN SYSTEM ===== */
:root {
  --bg: #0b0a08;
  --bg-elevated: #141310;
  --bg-card: #1a1916;
  --gold: #c8a84b;
  --gold-hover: #dbbe65;
  --gold-dim: rgba(200,168,75,.15);
  --green: #3ecf6e;
  --red: #e74c4c;
  --cream: #f5f0e8;
  --cream-dim: rgba(245,240,232,.6);
  --cream-muted: rgba(245,240,232,.4);
  --cream-faint: rgba(245,240,232,.15);
  --heading: 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --mono: 'DM Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--body);
  font-size: 16px;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-hover); }

/* ===== NAV ===== */
.nav-bar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,10,8,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cream-faint);
  height: 72px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 60px);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 32px); }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream-muted); text-decoration: none;
  transition: color .3s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-logo { text-decoration: none; display: flex; align-items: center; justify-content: center; }
.nav-logo img { height: clamp(44px, 5vw, 60px); width: auto; display: block; }
.nav-cta {
  display: inline-block; background: var(--gold); color: var(--bg);
  padding: 10px 24px; font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; transition: background .3s;
}
.nav-cta:hover { background: var(--gold-hover); color: var(--bg); }

/* Hamburger */
.hamburger {
  display: none; cursor: pointer; width: 28px; height: 20px;
  position: relative; z-index: 1100;
}
.hamburger span {
  display: block; width: 100%; height: 1.5px; background: var(--cream);
  position: absolute; left: 0; transition: all .3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--bg);
  z-index: 1050; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--heading); font-size: 28px; font-weight: 300;
  color: var(--cream); text-decoration: none; letter-spacing: 2px;
}

@media (max-width: 768px) {
  .nav-left .nav-link, .nav-right .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-bar { height: 60px; }
  .nav-left { display: none; }
  .nav-logo { justify-self: center; }
  .nav-right { justify-self: end; }
}

/* ===== HERO ===== */
.hero {
  padding: 120px clamp(20px, 4vw, 60px) 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}
.hero .overline {
  font-size: 15px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--heading); font-size: clamp(42px, 6vw, 72px);
  font-weight: 300; line-height: 1.08; margin-bottom: 24px; color: var(--cream);
}
.hero .subtitle {
  font-size: 18px; line-height: 1.7; color: var(--cream-dim);
  max-width: 600px; margin: 0 auto 40px;
}
.btn-primary {
  display: inline-block; padding: 16px 48px;
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  background: var(--gold); color: var(--bg);
  transition: background .3s;
}
.btn-primary:hover { background: var(--gold-hover); color: var(--bg); }
.btn-outline {
  display: inline-block; padding: 16px 48px;
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--cream); color: var(--cream);
  background: transparent; transition: all .35s;
}
.btn-outline:hover { background: var(--cream); color: var(--bg); }

/* ===== SECTIONS ===== */
.section { padding: 100px clamp(20px, 4vw, 60px); }
.section--alt { background: var(--bg-elevated); }
.section--card { background: var(--bg-card); }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .overline {
  font-size: 15px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.sec-head h2 {
  font-family: var(--heading); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; color: var(--cream); line-height: 1.12;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== WHAT YOU GET (6 cards) ===== */
.wyg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.wyg-item {
  padding: 32px 24px; border: 1px solid var(--cream-faint);
  text-align: center; transition: border-color .3s, transform .3s;
  background: var(--bg);
}
.wyg-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.wyg-icon { font-size: 28px; margin-bottom: 16px; opacity: .7; }
.wyg-item h3 {
  font-family: var(--heading); font-size: 22px; font-weight: 400;
  margin-bottom: 10px; color: var(--cream);
}
.wyg-item p { font-size: 16px; line-height: 1.65; color: var(--cream-muted); }

/* ===== HOW IT WORKS (3 steps) ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; max-width: 1000px; margin: 0 auto;
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  font-family: var(--heading); font-size: 64px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 16px;
}
.step h3 {
  font-family: var(--heading); font-size: 26px; font-weight: 400;
  margin-bottom: 12px; color: var(--cream);
}
.step p { font-size: 16px; line-height: 1.7; color: var(--cream-muted); }

/* ===== PRICING (3 cards) ===== */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.pkg-card {
  background: var(--bg); border: 1px solid var(--cream-faint);
  padding: 48px 32px; text-align: center;
  position: relative; transition: border-color .3s, box-shadow .3s;
}
.pkg-card:hover { border-color: var(--gold); box-shadow: 0 8px 40px rgba(200,168,75,.08); }
.pkg-card.featured { border-color: var(--gold); border-width: 2px; }
.pkg-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--gold); color: var(--bg);
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  padding: 5px 18px; white-space: nowrap;
}
.pkg-name {
  font-family: var(--heading); font-size: clamp(28px, 3vw, 36px);
  font-weight: 300; margin-bottom: 8px; color: var(--cream);
}
.pkg-price {
  font-family: var(--heading); font-size: 42px; font-weight: 300;
  color: var(--gold); margin-bottom: 6px;
}
.pkg-price .freq { font-size: 18px; color: var(--cream-muted); }
.pkg-subtitle {
  font-size: 16px; color: var(--cream-muted); margin-bottom: 28px;
  letter-spacing: .5px;
}
.pkg-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pkg-features li {
  font-size: 16px; line-height: 1.6; color: var(--cream-dim);
  padding: 10px 0; border-bottom: 1px solid var(--cream-faint);
  display: flex; align-items: flex-start; gap: 10px;
}
.pkg-features li::before {
  content: '\2713'; color: var(--gold); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.pkg-features li.highlight { color: var(--gold); font-weight: 600; }
.pkg-features li.highlight::before { content: '+'; }
.pkg-cta {
  display: inline-block; width: 100%; padding: 16px;
  background: var(--gold); color: var(--bg);
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none; text-align: center;
  border: 2px solid var(--gold); transition: all .3s;
}
.pkg-cta:hover { background: var(--gold-hover); border-color: var(--gold-hover); color: var(--bg); }

/* ===== WHO THIS IS FOR ===== */
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 800px; margin: 0 auto;
}
.who-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 20px; border: 1px solid var(--cream-faint);
  background: var(--bg); transition: border-color .3s;
}
.who-item:hover { border-color: var(--gold); }
.who-item .check { color: var(--green); font-weight: 700; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.who-item p { font-size: 16px; line-height: 1.6; color: var(--cream-dim); }

/* ===== ADD-ONS ACCORDION ===== */
.addon-wrap { max-width: 760px; margin: 0 auto; }
.addon-toggle {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; padding: 24px 0; border-bottom: 1px solid var(--cream-faint);
  user-select: none;
}
.addon-toggle h3 {
  font-family: var(--heading); font-size: 24px; font-weight: 400; color: var(--cream);
}
.addon-toggle .arrow {
  font-size: 20px; color: var(--gold); transition: transform .3s; line-height: 1;
}
.addon-group.open .addon-toggle .arrow { transform: rotate(45deg); }
.addon-list { max-height: 0; overflow: hidden; transition: max-height .5s ease, padding .3s; }
.addon-group.open .addon-list { max-height: 600px; padding: 16px 0; }
.addon-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(245,240,232,.06);
}
.addon-item:last-child { border-bottom: none; }
.addon-name { font-size: 16px; color: var(--cream-dim); }
.addon-name span { display: block; font-size: 13px; color: var(--cream-muted); margin-top: 2px; }
.addon-price {
  font-family: var(--heading); font-size: 20px; font-weight: 400;
  color: var(--gold); white-space: nowrap;
}

/* ===== FAQ ===== */
.faq-item {
  max-width: 760px; margin: 0 auto 4px;
  border-bottom: 1px solid var(--cream-faint);
}
.faq-item summary {
  list-style: none; padding: 18px 0; font-size: 16px; font-weight: 500;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; color: var(--gold); transition: transform .3s;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 18px; font-size: 16px; line-height: 1.75;
  color: var(--cream-muted); max-width: 760px; margin: 0 auto;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative; padding: 120px 40px; text-align: center; overflow: hidden;
}
.final-cta .bg { position: absolute; inset: 0; }
.final-cta .bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta .bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,10,8,.7);
}
.final-cta > *:not(.bg) { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--heading); font-size: clamp(36px, 5vw, 56px);
  font-weight: 300; color: var(--cream); margin-bottom: 14px;
}
.final-cta p {
  font-size: 15px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--cream-muted); margin-bottom: 40px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg); color: var(--cream-muted);
  padding: 60px clamp(20px, 4vw, 60px);
  border-top: 1px solid var(--cream-faint);
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto 40px;
}
.foot-brand h3 {
  font-family: var(--heading); font-size: 24px; font-weight: 300;
  color: var(--cream); letter-spacing: 2px; margin-bottom: 14px;
}
.foot-brand p { font-size: 15px; line-height: 1.7; max-width: 300px; }
.foot-col h4 {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
}
.foot-col a {
  display: block; color: var(--cream-muted); text-decoration: none;
  font-size: 15px; margin-bottom: 10px; transition: color .3s;
}
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  border-top: 1px solid var(--cream-faint); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; font-size: 13px;
  flex-wrap: wrap; gap: 16px;
}
.foot-bottom a { color: var(--gold); text-decoration: none; }
.foot-bottom a:hover { color: var(--gold-hover); }

/* ===== IMAGE BREAK ===== */
.img-break { margin: 0; line-height: 0; }
.img-break img {
  width: 100%; height: 400px; object-fit: cover; border-radius: 0;
}

/* ===== QUOTE STRIP ===== */
.quote-strip {
  padding: 60px clamp(20px, 4vw, 60px);
  background: var(--bg-card); text-align: center;
}
.quote-strip p {
  font-family: var(--heading); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400; font-style: italic; color: var(--cream-dim);
  max-width: 700px; margin: 0 auto; line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 80px clamp(20px, 4vw, 60px) 40px; text-align: center;
}
.contact-hero h1 {
  font-family: var(--heading); font-size: clamp(40px, 5vw, 60px);
  font-weight: 300; color: var(--cream); margin-bottom: 16px;
}
.contact-hero p { font-size: 16px; color: var(--cream-dim); max-width: 500px; margin: 0 auto; }
.hb-embed {
  max-width: 700px; margin: 0 auto; padding: 40px clamp(20px, 4vw, 60px) 80px;
  min-height: 600px;
}
.contact-info {
  text-align: center; padding: 0 20px 80px;
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.contact-info a {
  font-size: 16px; color: var(--cream-muted); text-decoration: none;
  letter-spacing: 1px; transition: color .3s;
}
.contact-info a:hover { color: var(--gold); }

/* ===== REDIRECT PAGE ===== */
.redirect-wrap {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-height: 100vh; text-align: center;
  padding: 40px;
}
.redirect-wrap h1 {
  font-family: var(--heading); font-size: 36px; font-weight: 300;
  color: var(--cream); margin-bottom: 16px;
}
.redirect-wrap p { font-size: 16px; color: var(--cream-muted); margin-bottom: 24px; }
.spinner {
  width: 40px; height: 40px; border: 3px solid var(--cream-faint);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 1s linear infinite; margin-bottom: 24px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .wyg-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .wyg-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .img-break img { height: 240px; }
  footer { padding: 24px 20px; text-align: center; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-brand h3 { font-size: 18px; margin-bottom: 4px; }
  .foot-brand p { font-size: 13px; line-height: 1.5; max-width: none; }
  .foot-col h4 { margin-bottom: 6px; font-size: 11px; letter-spacing: 2px; }
  .foot-col a { font-size: 13px; margin-bottom: 4px; }
  .foot-bottom {
    padding-top: 12px; font-size: 11px; justify-content: center;
    gap: 8px; flex-direction: column; align-items: center;
  }
  .contact-info { flex-direction: column; gap: 16px; }
}
