/*
Theme Name: CRE Finance Guy
Theme URI: https://realestatefinanceguy.com
Author: Derek Carroll
Author URI: https://highpeakscapital.com
Description: Custom theme for CRE Finance Guy — Derek Carroll's real estate finance education brand.
Version: 1.0
License: Private
Text Domain: cre-finance-guy
*/

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --navy:       #09131F;
  --navy-mid:   #111E30;
  --navy-light: #1A2E48;
  --navy-card:  #0F1B2B;
  --gold:       #C8922A;
  --gold-light: #E5B04A;
  --white:      #FFFFFF;
  --muted:      #7A90B0;
  --body-text:  #C8D5E8;
  --border:     rgba(200,146,42,0.18);
  --border-sub: rgba(255,255,255,0.07);
}

body {
  font-family: 'Mulish', sans-serif;
  background: var(--navy);
  color: var(--body-text);
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; color: var(--white); line-height: 1.08; }
h1 { font-size: clamp(3rem, 6.5vw, 5.6rem); font-weight: 700; }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 700; }
p  { line-height: 1.78; }
a  { text-decoration: none; }
em { font-style: italic; }
img { max-width: 100%; height: auto; display: block; }

.gold { color: var(--gold-light); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ── UTILITIES ── */
.rule { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.4rem 0; }
.rule.center { margin: 1.4rem auto; }

.eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  padding: .85rem 2rem; border-radius: 1px;
  font-family: 'Mulish', sans-serif;
  font-size: .8rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all .2s ease;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,146,42,.35);
}

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: .85rem 2rem; border-radius: 1px;
  border: 1px solid rgba(255,255,255,.22);
  font-family: 'Mulish', sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: all .2s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.sec-hdr { text-align: center; margin-bottom: 4rem; }
.sec-hdr h2 { margin-bottom: .6rem; }
.sec-hdr p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: .95rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  background: rgba(9,19,31,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); letter-spacing: .02em;
}
.nav-logo span { color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: .78rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: .55rem 1.3rem !important; border-radius: 1px; font-weight: 800 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px;
  background:
    radial-gradient(ellipse 60% 60% at 75% 45%, rgba(200,146,42,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 85%, rgba(26,46,72,.7) 0%, transparent 55%),
    var(--navy);
  overflow: hidden; position: relative;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: center;
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 5rem 2rem;
}
.hero-headline { margin-bottom: 1.4rem; }
.hero-headline em { color: var(--gold-light); }
.hero-sub { font-size: 1.05rem; color: var(--body-text); max-width: 540px; margin-bottom: 2.5rem; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-sub); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: .25rem; }
.stat-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.hero-photo-wrap { position: relative; }
.hero-frame { position: relative; width: 360px; height: 460px; }
.hero-frame::before {
  content: '';
  position: absolute; top: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 1px solid rgba(200,146,42,.35);
  border-radius: 1px; z-index: 0;
}
.hero-frame::after {
  content: '';
  position: absolute; bottom: -8px; left: -8px;
  width: 60%; height: 40%;
  background: radial-gradient(ellipse, rgba(200,146,42,.12), transparent 70%);
  z-index: 0;
}
.hero-photo {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-badge {
  position: absolute; bottom: -18px; left: -22px; z-index: 2;
  background: var(--gold); color: var(--navy);
  padding: .9rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: .88rem; font-weight: 700; line-height: 1.35;
  max-width: 190px;
  box-shadow: 0 14px 36px rgba(0,0,0,.45);
}

/* ── QUICK LINKS ── */
#quick-links {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 0;
}
.ql-grid { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.ql-btn {
  display: flex; align-items: center; gap: .55rem;
  padding: .7rem 1.3rem;
  border: 1px solid var(--border); border-radius: 1px;
  background: rgba(200,146,42,.04);
  color: var(--white); font-size: .75rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  transition: all .2s; white-space: nowrap;
}
.ql-btn:hover {
  background: rgba(200,146,42,.14);
  border-color: var(--gold); color: var(--gold-light);
  transform: translateY(-1px);
}

/* ── AUTHORITY ── */
#authority { padding: 5rem 0; background: var(--navy); }
.auth-label {
  text-align: center; margin-bottom: 2rem;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.auth-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); overflow: hidden;
}
.auth-item { background: var(--navy-mid); padding: 1.7rem 1rem; text-align: center; transition: background .2s; }
.auth-item:hover { background: rgba(200,146,42,.07); }
.auth-icon { font-size: 1.5rem; margin-bottom: .55rem; }
.auth-title { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-weight: 700; color: var(--gold-light); margin-bottom: .25rem; line-height: 1.2; }
.auth-sub { font-size: .68rem; color: var(--muted); line-height: 1.45; }

/* ── AUDIENCE ── */
#audience { padding: 7rem 0; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.aud-card {
  background: var(--navy-card); border: 1px solid var(--border-sub);
  padding: 2.2rem 1.8rem; position: relative; overflow: hidden; transition: all .3s;
}
.aud-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.aud-card:hover::after { transform: scaleX(1); }
.aud-card:hover { border-color: rgba(200,146,42,.3); transform: translateY(-3px); }
.aud-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: rgba(200,146,42,.12); line-height: 1; margin-bottom: .8rem; }
.aud-card h3 { font-size: 1.25rem; margin-bottom: .7rem; }
.aud-card p { color: var(--muted); font-size: .85rem; line-height: 1.72; margin-bottom: 1.3rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: .35rem; }
.tag { font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); background: rgba(200,146,42,.1); padding: .28rem .65rem; border-radius: 1px; }

/* ── OFFERS ── */
#offers { padding: 7rem 0; background: var(--navy-mid); }
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.offer-card {
  background: var(--navy-card); border: 1px solid var(--border-sub);
  padding: 2.5rem; display: flex; flex-direction: column;
  position: relative; transition: all .3s;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.offer-card.featured { border-color: var(--gold); }
.offer-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--gold); color: var(--navy);
  font-size: .6rem; font-weight: 800; letter-spacing: .14em; padding: .28rem .8rem;
}
.offer-icon { font-size: 1.8rem; margin-bottom: 1.1rem; }
.offer-card h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.offer-price { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-style: italic; color: var(--gold-light); margin-bottom: 1rem; }
.offer-card > p { color: var(--muted); font-size: .87rem; line-height: 1.73; margin-bottom: 1.4rem; flex-grow: 1; }
.offer-list { list-style: none; margin-bottom: 2rem; }
.offer-list li { font-size: .83rem; color: var(--body-text); padding: .38rem 0 .38rem 1.2rem; position: relative; border-bottom: 1px solid var(--border-sub); }
.offer-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: .72rem; top: .45rem; }
.offer-list li:last-child { border-bottom: none; }

/* ── OPT-IN ── */
#optin {
  padding: 7rem 0; text-align: center;
  background: radial-gradient(ellipse 55% 55% at 50% -5%, rgba(200,146,42,.13) 0%, transparent 65%), var(--navy);
}
.optin-inner { max-width: 660px; margin: 0 auto; }
.optin-inner h2 { margin-bottom: .8rem; }
.optin-inner > p { color: var(--muted); margin-bottom: 2.5rem; font-size: .95rem; }
.optin-magnet {
  display: flex; align-items: center; gap: 1.4rem; text-align: left;
  background: var(--navy-mid); border: 1px solid var(--border);
  padding: 1.4rem; margin-bottom: 1rem;
}
.optin-magnet-icon { font-size: 2.4rem; flex-shrink: 0; }
.optin-magnet h4 { font-family: 'Cormorant Garamond', serif; color: var(--gold-light); font-size: 1.05rem; margin-bottom: .3rem; }
.optin-magnet p { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.55; }

.optin-form-wrap { margin-top: 2rem; background: var(--navy-mid); border: 1px solid var(--border); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; text-align: left; }
.form-group label { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.form-group input {
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--white);
  padding: .75rem 1rem;
  font-family: 'Mulish', sans-serif;
  font-size: .88rem; font-weight: 500;
  border-radius: 1px; outline: none;
  transition: border-color .2s; width: 100%;
}
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--muted); opacity: .6; }
.form-email { margin-bottom: 1rem; }
.form-submit {
  width: 100%;
  background: var(--gold); color: var(--navy);
  border: none; padding: .95rem 2rem;
  font-family: 'Mulish', sans-serif;
  font-size: .82rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; margin-top: .5rem;
  transition: all .2s; border-radius: 1px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,146,42,.3); }
.form-note { font-size: .72rem; color: rgba(122,144,176,.6); margin-top: 1rem; }

/* ── BLOG (homepage widget) ── */
#blog { padding: 7rem 0; background: var(--navy-mid); }
.blog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-bottom: 3rem; }
.blog-card { background: var(--navy-card); border: 1px solid var(--border-sub); text-decoration: none; display: block; transition: all .3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-3px); border-color: rgba(200,146,42,.3); }
.blog-thumb { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; background: linear-gradient(135deg, var(--navy-light), var(--navy-mid)); border-bottom: 1px solid var(--border-sub); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.4rem; }
.blog-cat { font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.blog-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--white); line-height: 1.3; margin-bottom: .55rem; }
.blog-card p { font-size: .8rem; color: var(--muted); line-height: 1.62; margin-bottom: .9rem; }
.blog-meta { font-size: .68rem; color: rgba(122,144,176,.55); }
.blog-cta { text-align: center; }

/* ── BLOG ARCHIVE PAGE ── */
.blog-archive-wrap { padding: 7rem 0 5rem; }
.blog-archive-wrap h1 { margin-bottom: .5rem; }
.blog-archive-intro { color: var(--muted); margin-bottom: 3rem; font-size: .95rem; }
.archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.archive-card { background: var(--navy-card); border: 1px solid var(--border-sub); overflow: hidden; transition: all .3s; }
.archive-card:hover { transform: translateY(-3px); border-color: rgba(200,146,42,.3); }
.archive-card a { text-decoration: none; display: block; }
.archive-thumb { height: 180px; background: linear-gradient(135deg, var(--navy-light), var(--navy-mid)); overflow: hidden; }
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; }
.archive-body { padding: 1.6rem; }
.archive-cat { font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.archive-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--white); line-height: 1.25; margin-bottom: .6rem; }
.archive-card p { font-size: .83rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.archive-meta { font-size: .68rem; color: rgba(122,144,176,.55); }
.archive-pagination { text-align: center; margin-top: 3rem; }
.archive-pagination .page-numbers { display: inline-block; padding: .5rem .9rem; border: 1px solid var(--border); color: var(--muted); font-size: .8rem; margin: 0 .2rem; transition: all .2s; }
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── SINGLE POST PAGE ── */
.post-wrap { max-width: 780px; margin: 0 auto; padding: 7rem 2rem 5rem; }
.post-header { margin-bottom: 3rem; }
.post-cat { font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; display: block; }
.post-wrap h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.post-meta { font-size: .78rem; color: var(--muted); margin-bottom: 2rem; }
.post-featured-img { width: 100%; height: 380px; object-fit: cover; margin-bottom: 3rem; border: 1px solid var(--border-sub); }
.post-content { font-size: 1rem; line-height: 1.85; color: var(--body-text); }
.post-content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin: 2rem 0 .8rem; }
.post-content p { margin-bottom: 1.4rem; }
.post-content ul, .post-content ol { margin: 0 0 1.4rem 1.5rem; }
.post-content li { margin-bottom: .5rem; line-height: 1.7; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--navy-mid);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic; color: var(--gold-pale);
}
.post-content a { color: var(--gold-light); border-bottom: 1px solid rgba(200,146,42,.3); transition: border-color .2s; }
.post-content a:hover { border-color: var(--gold-light); }
.post-content strong { color: var(--white); font-weight: 700; }
.post-content img { max-width: 100%; margin: 2rem 0; border: 1px solid var(--border-sub); }
.post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-sub); }
.back-to-blog { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.back-to-blog:hover { color: var(--gold-light); }

/* ── CONSULTING ── */
#consulting { padding: 7rem 0; background: var(--navy); }
.consulting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.con-content h2 { margin-bottom: 1rem; }
.con-content p { color: var(--muted); font-size: .92rem; line-height: 1.8; margin-bottom: 1.2rem; }
.con-list { list-style: none; margin-bottom: 2.5rem; }
.con-list li { display: flex; gap: .8rem; align-items: flex-start; padding: .65rem 0; border-bottom: 1px solid var(--border-sub); font-size: .88rem; color: var(--body-text); }
.con-list li span:first-child { color: var(--gold); font-size: .75rem; margin-top: .15rem; flex-shrink: 0; }
.con-card { background: var(--navy-mid); border: 1px solid var(--border); padding: 2.8rem; }
.con-card h3 { font-size: 1.7rem; margin-bottom: .5rem; }
.free-badge { display: inline-block; background: rgba(200,146,42,.15); color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .8rem; margin-bottom: .6rem; }
.con-card .price-note { font-size: .78rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.6; }
.con-card hr { border: none; border-top: 1px solid var(--border-sub); margin: 1.5rem 0; }
.sessions { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.session { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1rem; background: rgba(200,146,42,.05); border: 1px solid var(--border-sub); }
.session-left { flex: 1; }
.session-name { font-size: .83rem; font-weight: 600; color: var(--white); }
.session-desc { font-size: .72rem; color: var(--muted); margin-top: .15rem; }
.session-price-wrap { flex-shrink: 0; margin-left: 1rem; text-align: right; }
.session-price { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-light); font-weight: 700; display: block; }
.free-price { color: #5DC96E !important; }
.strike { text-decoration: line-through; color: var(--muted) !important; font-size: .9rem !important; }
.sale { color: #5DC96E !important; font-size: 1.3rem !important; }
.cal-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: .9rem; }

/* ── INVEST ── */
#invest {
  padding: 5rem 0; text-align: center;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.invest-inner { max-width: 600px; margin: 0 auto; }
.invest-inner h2 { margin-bottom: .8rem; }
.invest-inner p { color: var(--muted); font-size: .92rem; margin-bottom: 2rem; line-height: 1.8; }
.invest-note { font-size: .72rem; color: rgba(122,144,176,.5); margin-top: 1rem; }

/* ── FOOTER ── */
#site-footer { background: var(--navy-mid); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; font-size: 1.15rem; }
.footer-brand p { font-size: .82rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.socials { display: flex; gap: .7rem; }
.social-btn { width: 34px; height: 34px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .78rem; color: var(--muted); transition: all .2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-col h5 { font-family: 'Mulish', sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border-sub); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .75rem; color: var(--muted); }
.footer-disclaimer { font-size: .68rem; color: rgba(122,144,176,.45); max-width: 480px; text-align: right; line-height: 1.55; }

/* ── THANK YOU PAGE ── */
.thankyou-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 7rem 2rem; }
.thankyou-inner { max-width: 560px; }
.thankyou-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.thankyou-inner h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.thankyou-inner p { color: var(--muted); font-size: .95rem; margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
  .auth-grid { grid-template-columns: repeat(3,1fr); }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  .offers-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .archive-grid { grid-template-columns: repeat(2,1fr); }
  .consulting-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .auth-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .ql-grid { flex-direction: column; align-items: stretch; }
  .form-row { grid-template-columns: 1fr; }
}
