/* =====================================================================
   BRISTOL PROPERTY NETWORK — STYLESHEET  (Dark "Bright & Friendly" theme)
   ---------------------------------------------------------------------
   Dark, sleek canvas + vibrant Bristol-colourful accents, rounded cards,
   and rich hover micro-interactions. Token-driven: reskin via :root.
   Display: Space Grotesk · Body: Inter.
   ===================================================================== */

/* =====================================================================
   1. CONFIG BLOCK — DESIGN TOKENS (the reskin lever)
   ===================================================================== */
:root {
  /* --- Dark base surfaces --- */
  --color-bg:        #0F1118;  /* page background — near-black charcoal-navy */
  --color-bg-alt:    #141823;  /* alternate section band */
  --color-surface:   #1A1F2C;  /* cards / panels */
  --color-surface-2: #232938;  /* raised / hover surface */
  --color-line:      rgba(255,255,255,0.10);  /* hairline borders */
  --color-line-2:    rgba(255,255,255,0.16);

  /* --- Text --- */
  --color-text:      #F3F2EC;  /* primary text (warm white) */
  --color-heading:   #FFFFFF;  /* headings */
  --color-muted:     #A7AFC0;  /* secondary text */
  --color-faint:     #6F7889;  /* tertiary / captions */

  /* --- Vibrant accent system (Bristol's colourful houses) --- */
  --c-coral:  #FF6B6B;
  --c-amber:  #FFC24B;
  --c-teal:   #25D3C6;
  --c-blue:   #5B8CFF;
  --c-violet: #A98BFF;
  --c-green:  #54D98C;
  --c-pink:   #FF8CC6;

  /* --- Primary brand accent (warm, friendly) + signature gradient --- */
  --accent:        #FF7A4D;                   /* default accent (warm coral-amber) */
  --accent-2:      #FFC24B;
  --grad-warm:     linear-gradient(120deg, #FF7A4D 0%, #FFC24B 100%);
  --grad-cool:     linear-gradient(120deg, #5B8CFF 0%, #25D3C6 100%);
  --grad-pop:      linear-gradient(120deg, #A98BFF 0%, #FF8CC6 55%, #FFC24B 100%);

  /* --- Typography --- */
  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-h1:    56px;
  --fs-h2:    38px;
  --fs-h3:    24px;
  --fs-body:  16.5px;
  --fs-small: 12px;
  --line-body: 1.7;

  /* --- Shape & layout --- */
  --max-width: 1200px;
  --radius:    18px;   /* rounded, friendly */
  --radius-sm: 12px;
  --radius-pill: 999px;
  --gutter:    24px;
  --section-y: 96px;

  --shadow:       0 8px 30px rgba(0,0,0,0.35);
  --shadow-hover: 0 18px 50px rgba(0,0,0,0.5);
}

/* =====================================================================
   2. RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--line-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* soft colour glows bleeding from the top — sets the vibrant-dark mood */
  background-image:
    radial-gradient(60vw 40vw at 15% -5%, rgba(91,140,255,0.10), transparent 60%),
    radial-gradient(55vw 38vw at 95% 0%, rgba(255,122,77,0.10), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1.2em; }

::selection { background: var(--accent); color: #1a1206; }

/* =====================================================================
   3. LAYOUT HELPERS
   ===================================================================== */
.container { max-width: var(--max-width); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: 60px; }
.section--alt { background: var(--color-bg-alt); }

/* Vibrant gradient band (used for AI / CTA sections) */
.section--navy {
  background: var(--grad-cool);
  color: #07131a;
  position: relative; overflow: hidden;
}
.section--navy::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(40vw 30vw at 80% 120%, rgba(255,255,255,0.25), transparent 60%);
  pointer-events:none;
}
.section--navy h2 { color: #06131a; }
.section--navy p { color: rgba(7,19,26,0.78); }
.section--navy .eyebrow { color: #06131a; }

.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 18px; color: var(--color-muted); }

/* Eyebrow — gradient text label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* =====================================================================
   4. BUTTONS  (pill, glow on hover)
   ===================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
  text-align: center;
  will-change: transform;
}
.btn--primary {
  background: var(--grad-warm);
  color: #1a1206;
  box-shadow: 0 6px 20px rgba(255,122,77,0.30);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(255,122,77,0.5); color:#1a1206; }

.btn--outline { background: transparent; color: var(--color-text); border-color: var(--color-line-2); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn--ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); color:#fff; transform: translateY(-2px); }

/* On the gradient band, primary flips to solid dark */
.section--navy .btn--primary { background: #0d1b22; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.section--navy .btn--primary:hover { background:#0a141a; }

/* =====================================================================
   5. SIGNATURE — EXCLUSIVE SEAT BADGE + CATEGORY CHIPS
   Per-card accent comes from inline --accent (set in config.js).
   ===================================================================== */
.seat-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--grad-warm);
  color: #1a1206;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 7px 14px; border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(255,122,77,0.32);
}
.seat-badge::before { content: "★"; font-size: 10px; }

/* Colourful category chip — tinted in the card's accent colour */
.category-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  padding: 5px 12px; border-radius: var(--radius-pill);
  transition: transform .18s ease, background .2s ease;
}
.card:hover .category-badge { transform: translateY(-1px) scale(1.04); }

/* =====================================================================
   6. HEADER / NAV  (sticky glass, dark)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,17,24,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--color-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__brand { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--color-heading); letter-spacing: -0.02em; }
.nav__brand span {
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__links a { position: relative; color: var(--color-muted); font-size: 15px; font-weight: 500; }
.nav__links a::after {
  content:""; position:absolute; left:0; right:100%; bottom:-6px; height:2px;
  background: var(--grad-warm); border-radius: 2px; transition: right .25s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--color-heading); }
.nav__links a:hover::after, .nav__links a.is-active::after { right:0; }
.nav__cta { margin-left: 6px; }
.nav__cta a::after { display:none; }

.nav__toggle { display:none; background:none; border:0; cursor:pointer; width:44px; height:44px; padding:10px; }
.nav__toggle span { display:block; height:2px; background: var(--color-text); margin:5px 0; border-radius:2px; transition: .25s ease; }

/* =====================================================================
   7. HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding-block: 132px; background: var(--color-bg); }
.hero__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.hero__overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(90deg, rgba(15,17,24,0.94) 0%, rgba(15,17,24,0.78) 45%, rgba(15,17,24,0.42) 100%),
    radial-gradient(50vw 40vw at 12% 30%, rgba(255,122,77,0.22), transparent 60%),
    radial-gradient(45vw 38vw at 88% 80%, rgba(91,140,255,0.22), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { color:#fff; font-size: clamp(40px, 6vw, 66px); margin-bottom: .25em; }
.hero__tagline { font-family: var(--font-display); font-size: 20px; color: var(--accent-2); margin-bottom:.7em; font-weight:500; }
.hero__lead { font-size: 19px; color: rgba(255,255,255,0.86); max-width: 640px; }
.hero__cta { margin-top: 34px; display:flex; gap:16px; flex-wrap:wrap; }
.hero__credit { position:absolute; bottom:10px; right:14px; z-index:2; font-size:11px; color: rgba(255,255,255,0.5); }
.hero__credit a { color: rgba(255,255,255,0.7); }

/* Compact page hero */
.page-hero { position: relative; overflow: hidden; padding-block: 104px; background: var(--color-bg); }
.page-hero .hero__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.page-hero .hero__overlay {
  background:
    linear-gradient(90deg, rgba(15,17,24,0.94), rgba(15,17,24,0.66)),
    radial-gradient(40vw 30vw at 85% 10%, rgba(169,139,255,0.22), transparent 60%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color:#fff; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 18px; }

.pro-flag {
  display:inline-block; font-family: var(--font-display);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing:.12em;
  color:#fff; background: rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,0.25);
  padding:7px 15px; border-radius: var(--radius-pill); margin-bottom: 18px;
}

/* =====================================================================
   8. PROPERTY JOURNEY — colourful image cards
   ===================================================================== */
.journey-card {
  position: relative; display:block; border-radius: var(--radius); overflow:hidden;
  min-height: 300px; color:#fff; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .3s ease;
  --accent: var(--c-blue);
}
.journey-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.journey-card__scrim {
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(10,12,18,0.92) 4%, rgba(10,12,18,0.18) 52%, rgba(10,12,18,0.05) 100%);
  transition: background .25s ease;
}
.journey-card::before { /* accent glow edge */
  content:""; position:absolute; inset:0; z-index:2; border-radius: var(--radius);
  box-shadow: inset 0 -4px 0 0 color-mix(in srgb, var(--accent) 85%, transparent);
  opacity:.85; transition: opacity .25s ease;
}
.journey-card__body { position:absolute; inset:0; z-index:3; display:flex; flex-direction:column; justify-content:flex-end; padding:26px; }
.journey-card__body h3 { color:#fff; font-size:24px; margin-bottom:6px; }
.journey-card__body p { color: rgba(255,255,255,0.82); font-size:14.5px; margin:0 0 12px; }
.journey-card__cta { font-family: var(--font-display); font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color: var(--accent); }
.journey-card__cta::after { content:" →"; display:inline-block; transition: transform .2s ease; }
.journey-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.journey-card:hover img { transform: scale(1.07); }
.journey-card:hover .journey-card__cta::after { transform: translateX(5px); }
.journey-card:hover::before { opacity:1; }
/* assign vibrant accents per card */
#journey .journey-card:nth-child(1){--accent:var(--c-blue);}
#journey .journey-card:nth-child(2){--accent:var(--c-coral);}
#journey .journey-card:nth-child(3){--accent:var(--c-teal);}
#journey .journey-card:nth-child(4){--accent:var(--c-amber);}
#journey .journey-card:nth-child(5){--accent:var(--c-violet);}
#journey .journey-card:nth-child(6){--accent:var(--c-pink);}
#journey .journey-card:nth-child(7){--accent:var(--c-green);}

/* Feature media+text row */
.feature { display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
.feature--flip .feature__media { order:2; }
.feature__media img { width:100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio:4/3; object-fit:cover; transition: transform .4s ease; }
.feature__media:hover img { transform: translateY(-4px) scale(1.01); }
.feature__credit { font-size:11px; color: var(--color-faint); margin-top:8px; }

/* =====================================================================
   9. CARD GRID  (members, blog, reviews)
   ===================================================================== */
.grid { display:grid; gap: var(--gutter); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  overflow: hidden;
  display:flex; flex-direction:column;
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease, background .25s ease;
  will-change: transform;
  --accent: var(--c-blue);
}
.card:hover {
  transform: translateY(-6px);
  background: var(--color-surface-2);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* Member card */
.member-card__photo { position:relative; aspect-ratio:4/3; overflow:hidden; background: var(--color-surface-2); display:flex; align-items:center; justify-content:center; }
.member-card__photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.55; transition: transform .5s ease, opacity .3s ease; }
.card:hover .member-card__photo img { transform: scale(1.08); opacity:.7; }
.member-card__photo::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, var(--color-surface), transparent 65%); }
.member-card__avatar {
  position:relative; z-index:1; width:78px; height:78px; border-radius:50%;
  background: color-mix(in srgb, var(--accent) 85%, #000 5%); color:#0e1016;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size:26px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 45%, transparent);
}
.member-card__body { padding:24px; flex:1; display:flex; flex-direction:column; }
.member-card__badges { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.member-card h3 { font-size:22px; margin-bottom:3px; }
.member-card__biz { font-size:14px; color: var(--accent); font-weight:600; margin-bottom:12px; }
.member-card__desc { font-size:15px; color: var(--color-muted); margin-bottom:18px; flex:1; }
.member-card__link { font-family: var(--font-display); font-weight:600; font-size:14px; color: var(--color-heading); }
.member-card__link::after { content:" →"; display:inline-block; transition: transform .2s ease; color: var(--accent); }
.card:hover .member-card__link::after { transform: translateX(5px); }

/* =====================================================================
   10. HOW IT WORKS — steps
   ===================================================================== */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap:28px; }
.step { text-align:center; padding:28px 20px; background: var(--color-surface); border:1px solid var(--color-line); border-radius: var(--radius); transition: transform .25s ease, border-color .25s ease; }
.step:hover { transform: translateY(-5px); border-color: var(--color-line-2); }
.step__icon { width:66px; height:66px; margin:0 auto 20px; border-radius:50%; background: color-mix(in srgb, var(--accent) 16%, transparent); border:1px solid color-mix(in srgb, var(--accent) 40%, transparent); display:flex; align-items:center; justify-content:center; color: var(--accent); transition: transform .25s ease; }
.step:hover .step__icon { transform: scale(1.08) rotate(-4deg); }
.step__icon svg { width:28px; height:28px; }
.steps .step:nth-child(1){--accent:var(--c-blue);}
.steps .step:nth-child(2){--accent:var(--c-amber);}
.steps .step:nth-child(3){--accent:var(--c-teal);}
.step h3 { font-size:20px; }
.step p { font-size:15px; color: var(--color-muted); }

/* =====================================================================
   11. OPEN SEATS
   ===================================================================== */
.seats { border-top:1px solid var(--color-line); }
.seat-row { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 8px; border-bottom:1px solid var(--color-line); transition: background .2s ease, padding-left .2s ease; border-radius: 10px; }
.seat-row:hover { background: var(--color-surface); padding-left:16px; }
.seat-row__info { display:flex; align-items:center; gap:14px; }
.seat-row__dot { width:10px; height:10px; border-radius:50%; flex:none; }
.seat-row__dot--open { background: var(--c-green); box-shadow: 0 0 0 4px rgba(84,217,140,0.18), 0 0 12px rgba(84,217,140,0.6); }
.seat-row__dot--filled { background: var(--color-faint); }
.seat-row__name { font-family: var(--font-display); font-size:20px; color: var(--color-heading); font-weight:600; }
.seat-row__status { font-size: var(--fs-small); text-transform:uppercase; letter-spacing:.1em; font-weight:600; color: var(--c-green); }
.seat-note { font-size:14px; color: var(--color-muted); font-style:italic; margin-top:20px; }

/* =====================================================================
   12. WHY IT WORKS
   ===================================================================== */
.why-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.why-item { background: var(--color-surface); border:1px solid var(--color-line); border-radius: var(--radius); padding:28px 24px; transition: transform .25s ease, border-color .25s ease; }
.why-item:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 50%, transparent); }
.why-item__icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; color:#0e1016; background: var(--accent); margin-bottom:16px; box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 40%, transparent); transition: transform .25s ease; }
.why-item:hover .why-item__icon { transform: rotate(-6deg) scale(1.06); }
.why-grid .why-item:nth-child(1){--accent:var(--c-coral);}
.why-grid .why-item:nth-child(2){--accent:var(--c-teal);}
.why-grid .why-item:nth-child(3){--accent:var(--c-violet);}
.why-grid .why-item:nth-child(4){--accent:var(--c-amber);}
.why-item h3 { font-size:19px; }
.why-item p { font-size:14.5px; color: var(--color-muted); }

/* =====================================================================
   13. REVIEWS
   ===================================================================== */
.review-card { background: var(--color-surface); border:1px solid var(--color-line); border-radius: var(--radius); padding:28px; display:flex; flex-direction:column; transition: transform .25s ease, border-color .25s ease; }
.review-card:hover { transform: translateY(-5px); border-color: var(--color-line-2); }
.review-card__stars { color: var(--c-amber); font-size:18px; letter-spacing:2px; margin-bottom:14px; }
.review-card__text { font-size:16px; color: var(--color-text); flex:1; margin-bottom:18px; }
.review-card__meta { font-size:14px; }
.review-card__author { font-weight:700; color: var(--color-heading); font-family: var(--font-display); }
.review-card__member { color: var(--color-muted); display:block; margin:2px 0 10px; }
.review-card__google { font-size:13px; font-weight:600; }

/* =====================================================================
   14. AI / GHL EMBED PLACEHOLDERS
   ===================================================================== */
.ghl-embed { border:1.5px dashed var(--color-line-2); border-radius: var(--radius); background: rgba(255,255,255,0.03); padding:40px; text-align:center; color: var(--color-muted); font-size:14px; }
.ghl-embed__label { font-family: var(--font-display); font-weight:600; color: var(--color-heading); display:block; margin-bottom:6px; }
.ghl-embed code { font-size:12px; color: var(--accent); }
.ai-cta { text-align:center; max-width:720px; margin-inline:auto; }
/* On the gradient band the embed needs dark-on-light treatment */
.section--navy .ghl-embed { border-color: rgba(7,19,26,0.3); background: rgba(255,255,255,0.18); color:#06131a; }
.section--navy .ghl-embed__label { color:#06131a; }
.section--navy .ghl-embed code { color:#0d1b22; }

/* =====================================================================
   15. FAQ ACCORDION
   ===================================================================== */
.faq { max-width: 840px; margin-inline:auto; }
.faq-item { border:1px solid var(--color-line); border-radius: var(--radius-sm); margin-bottom:12px; background: var(--color-surface); transition: border-color .2s ease, background .2s ease; overflow:hidden; }
.faq-item:hover { border-color: var(--color-line-2); }
.faq-item.is-open { border-color: color-mix(in srgb, var(--accent, var(--c-blue)) 55%, transparent); }
.faq-item__q { width:100%; background:none; border:0; cursor:pointer; text-align:left; font-family: var(--font-display); font-weight:600; font-size:18px; color: var(--color-heading); padding:20px 56px 20px 22px; position:relative; }
.faq-item__q::after { content:"+"; position:absolute; right:20px; top:50%; transform: translateY(-50%); font-family: var(--font-body); font-size:24px; color: var(--accent); transition: transform .25s ease; }
.faq-item.is-open .faq-item__q::after { content:"–"; }
.faq-item__a { max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-item__a p { padding:0 22px 20px; font-size:16px; color: var(--color-muted); margin:0; }

/* =====================================================================
   16. BLOG / ADVICE
   ===================================================================== */
.blog-card__img { position:relative; aspect-ratio:16/9; overflow:hidden; background: var(--color-surface-2); display:flex; align-items:flex-end; padding:16px; }
.blog-card__img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__img .category-badge { position:relative; z-index:1; background: rgba(10,12,18,0.7); color:#fff; border-color: rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.blog-card__img::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(10,12,18,0.6), transparent 60%); }
.blog-card__body { padding:24px; display:flex; flex-direction:column; flex:1; }
.blog-card__meta { font-size:13px; color: var(--color-faint); margin-bottom:10px; display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.blog-card h3 { font-size:21px; margin-bottom:12px; }
.blog-card h3 a { color: var(--color-heading); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card__excerpt { font-size:15px; color: var(--color-muted); flex:1; margin-bottom:16px; }
.author-badge { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color: var(--color-text); }
.author-badge--editorial { color: var(--accent); }

.blog-filters { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.blog-filters button { font-family: var(--font-display); font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.05em; background: var(--color-surface); border:1px solid var(--color-line); color: var(--color-muted); padding:9px 16px; border-radius: var(--radius-pill); cursor:pointer; transition: all .2s ease; }
.blog-filters button:hover { border-color: var(--color-line-2); color: var(--color-heading); transform: translateY(-2px); }
.blog-filters button.is-active { background: var(--grad-warm); border-color: transparent; color:#1a1206; }

/* Single post */
.post { max-width: 780px; margin-inline:auto; }
.post__header { text-align:center; margin-bottom:36px; }
.post__meta { font-size:14px; color: var(--color-muted); margin-bottom:16px; display:flex; gap:12px; justify-content:center; align-items:center; flex-wrap:wrap; }
.post__hero-img { position:relative; aspect-ratio:16/7; border-radius: var(--radius); overflow:hidden; margin-bottom:12px; box-shadow: var(--shadow); }
.post__hero-img img { width:100%; height:100%; object-fit:cover; }
.post__figcredit { font-size:11px; color: var(--color-faint); margin:0 0 40px; text-align:center; }
.post__body { font-size:18px; color: var(--color-text); }
.post__body h2 { font-size:28px; margin-top:1.6em; }
.post__body h3 { font-size:22px; margin-top:1.4em; }
.post__body a { font-weight:600; }
.post__body ul { padding-left:20px; }
.post__body li { margin-bottom:8px; color: var(--color-muted); }

/* =====================================================================
   17. MEMBER PROFILE
   ===================================================================== */
.profile-hero { background: var(--color-bg-alt); border-bottom:1px solid var(--color-line); padding-block:68px; }
.profile-hero__grid { display:grid; grid-template-columns: 320px 1fr; gap:48px; align-items:center; }
.profile-hero__photo { position:relative; overflow:hidden; aspect-ratio:1; border-radius: var(--radius); background: var(--color-surface-2); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow); }
.profile-hero__photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.55; }
.profile-hero__photo span { position:relative; z-index:1; width:110px; height:110px; border-radius:50%; background: var(--grad-warm); color:#1a1206; display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700; font-size:40px; box-shadow: 0 10px 30px rgba(255,122,77,0.4); }
.profile-hero__badges { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
.profile-hero h1 { font-size:46px; margin-bottom:4px; }
.profile-hero__biz { font-size:18px; color: var(--accent); font-weight:600; margin-bottom:16px; }
.profile-hero__bio { font-size:18px; color: var(--color-text); max-width:560px; }

.referral-badge-block { background: var(--grad-cool); color:#06131a; border-radius: var(--radius); padding:36px; text-align:center; box-shadow: var(--shadow); }
.referral-badge-block .seat-badge { margin-bottom:16px; background:#0d1b22; color:#fff; box-shadow:none; }
.referral-badge-block p { color: #06131a; margin:0; font-family: var(--font-display); font-size:20px; font-weight:600; }

.areas-list { display:flex; gap:10px; flex-wrap:wrap; list-style:none; padding:0; margin:16px 0 0; }
.areas-list li { font-size:14px; background: var(--color-surface); border:1px solid var(--color-line); padding:7px 14px; border-radius: var(--radius-pill); color: var(--color-muted); transition: transform .18s ease, border-color .2s ease; }
.areas-list li:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--color-text); }

/* =====================================================================
   18. PRICING & REFERRAL LADDER
   ===================================================================== */
.price-card { background: var(--color-surface); border:1px solid var(--color-line); border-radius: var(--radius); overflow:hidden; max-width:460px; }
.price-card__head { background: var(--grad-warm); color:#1a1206; padding:26px 28px; }
.price-card__head .eyebrow { -webkit-text-fill-color: #1a1206; color:#1a1206; background:none; }
.price-card__head h3 { color:#1a1206; margin:0; }
.price-row { display:flex; justify-content:space-between; padding:16px 28px; border-bottom:1px solid var(--color-line); font-size:16px; color: var(--color-muted); }
.price-row strong { color: var(--color-heading); }
.price-row:last-child { border-bottom:0; }

.callout { background: var(--grad-pop); color:#1a1024; border-radius: var(--radius); padding:26px 30px; font-family: var(--font-display); font-weight:600; font-size:22px; text-align:center; box-shadow: var(--shadow); }

.ladder { display:grid; gap:14px; max-width:560px; }
.ladder__step { display:flex; align-items:center; justify-content:space-between; background: var(--color-surface); border:1px solid var(--color-line); border-left:4px solid var(--accent); border-radius: var(--radius-sm); padding:18px 24px; transition: transform .2s ease; --accent: var(--c-amber); }
.ladder__step:hover { transform: translateX(4px); }
.ladder__step span { color: var(--color-muted); font-size:15px; }
.ladder__price { font-family: var(--font-display); font-size:26px; color: var(--color-heading); font-weight:700; }
.ladder__step--floor { --accent: var(--c-green); }
.ladder__step--floor .ladder__price { color: var(--c-green); }

/* =====================================================================
   19. FOOTER
   ===================================================================== */
.site-footer { background: #0B0D13; border-top:1px solid var(--color-line); color: var(--color-muted); padding-block:60px 32px; }
.footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap:32px; margin-bottom:40px; }
.site-footer h4 { color: var(--color-heading); font-family: var(--font-display); font-size:13px; text-transform:uppercase; letter-spacing:.1em; margin-bottom:16px; }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer li { margin-bottom:10px; }
.site-footer a { color: var(--color-muted); font-size:14px; }
.site-footer a:hover { color: var(--accent); }
.footer__brand { font-family: var(--font-display); font-size:22px; color: var(--color-heading); font-weight:700; margin-bottom:10px; }
.footer__brand span { background: var(--grad-warm); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.footer__about { font-size:14px; max-width:320px; }
.footer-bottom { border-top:1px solid var(--color-line); padding-top:24px; font-size:13px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; color: var(--color-faint); }
.footer-pro a { color: var(--accent); font-weight:600; }
.footer-pro a::after { content:" →"; }

/* =====================================================================
   20. UTILITIES
   ===================================================================== */
.text-center { text-align:center; }
.mt-32 { margin-top:32px; }
.mt-48 { margin-top:48px; }
.lead { font-size:19px; color: var(--color-muted); }
.divider { height:1px; background: var(--color-line); border:0; margin:0; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

/* =====================================================================
   21. RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  :root { --fs-h1: 42px; --fs-h2: 31px; --section-y: 70px; }
  .grid--3 { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile-hero__grid { grid-template-columns: 220px 1fr; gap:32px; }
  .feature { gap:32px; }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order:0; }
  .profile-hero__grid { grid-template-columns: 1fr; text-align:center; }
  .profile-hero__photo { max-width:240px; margin-inline:auto; }
  .profile-hero__badges, .areas-list { justify-content:center; }
  .nav__toggle { display:block; }
  .nav__links {
    position:absolute; top:74px; left:0; right:0; flex-direction:column; align-items:stretch; gap:0;
    background: var(--color-bg-alt); border-bottom:1px solid var(--color-line); padding:8px 0;
    max-height:0; overflow:hidden; transition: max-height .3s ease;
  }
  .nav__links.is-open { max-height:460px; }
  .nav__links li { padding:0 24px; }
  .nav__links a { display:block; padding:14px 0; border-bottom:1px solid var(--color-line); }
  .nav__links a::after { display:none; }
  .nav__cta { padding:16px 24px; }
  .nav__cta .btn { width:100%; }
}
@media (max-width: 640px) {
  :root { --fs-h1: 36px; }
  .grid--3, .grid--2, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-block: 88px; }
  .hero__cta { flex-direction:column; }
  .hero__cta .btn { width:100%; }
  .seat-row { flex-direction:column; align-items:flex-start; gap:12px; }
  .seat-row .btn { width:100%; }
  .btn { width:100%; }
  .ladder__step { flex-direction:column; align-items:flex-start; gap:6px; }
  .btn--inline { width:auto; }
}
@media (max-width: 640px) { .btn--inline { width:auto; } }

/* Respect reduced-motion — disable transforms/zooms */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .journey-card:hover img, .card:hover .member-card__photo img, .card:hover .blog-card__img img { transform: none; }
}

/* =====================================================================
   22. FEEDBACK ROUND — nav contrast, journey CTA, card actions,
       floating contact widget, video modal, clickable trust cards
   ===================================================================== */

/* --- Nav CTA: force dark, high-contrast text on the gradient pill --- */
.nav__cta a.btn { color:#1a1206; font-weight:700; }
.nav__cta a.btn:hover { color:#1a1206; }

/* --- Member card actions (View profile + Ask the AI) --- */
.member-card__actions { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto; }
.btn-mini {
  font-family: var(--font-display); font-size:13px; font-weight:600; white-space:nowrap;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 16%, transparent);
  border:1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  padding:8px 14px; border-radius: var(--radius-pill);
  transition: transform .18s ease, background .2s ease, color .2s ease;
}
.btn-mini:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--accent) 26%, transparent); color: var(--accent); }

/* --- Journey: full-width "not sure / talk to the AI" band --- */
.journey-cta {
  grid-column: 1 / -1;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  background: var(--grad-cool); color:#06131a;
  border-radius: var(--radius); padding:30px 34px; box-shadow: var(--shadow);
}
.journey-cta__text h3 { color:#06131a; margin:0 0 4px; font-size:25px; }
.journey-cta__text p { color: rgba(7,19,26,0.82); margin:0; font-size:15.5px; }
.journey-cta .btn { background:#0d1b22; color:#fff; flex:none; }
.journey-cta .btn:hover { background:#0a141a; color:#fff; transform: translateY(-2px); }

/* --- Clickable "Why people trust us" cards --- */
a.why-item { text-decoration:none; color:inherit; cursor:pointer; }
.why-item__more { display:inline-block; margin-top:14px; font-family: var(--font-display); font-size:13px; font-weight:600; color: var(--accent); }
.why-item__more::after { content:" →"; display:inline-block; transition: transform .2s ease; }
a.why-item:hover .why-item__more::after { transform: translateX(4px); }

/* --- Floating contact widget (chat · call · WhatsApp) bottom-right --- */
.fab { position:fixed; right:20px; bottom:20px; z-index:90; display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.fab__actions { display:flex; flex-direction:column; gap:10px; align-items:flex-end; transition: opacity .2s ease, transform .2s ease; }
.fab.is-closed .fab__actions { opacity:0; transform: translateY(12px) scale(.95); pointer-events:none; }
.fab__item { display:inline-flex; align-items:center; gap:10px; background: var(--color-surface-2); color: var(--color-text); border:1px solid var(--color-line-2); border-radius: var(--radius-pill); padding:9px 16px 9px 9px; font-size:14px; font-weight:600; box-shadow: var(--shadow); transition: transform .18s ease; }
.fab__item:hover { transform: translateX(-3px); color: var(--color-text); }
.fab__ic { width:30px; height:30px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:#0e1016; flex:none; }
.fab__ic svg { width:17px; height:17px; }
.fab__ic--wa { background:#25D366; }
.fab__ic--call { background: var(--c-blue); }
.fab__ic--chat { background: var(--accent); }
.fab__toggle { width:60px; height:60px; border-radius:50%; border:0; cursor:pointer; background: var(--grad-warm); color:#1a1206; box-shadow: 0 10px 30px rgba(255,122,77,0.45); display:inline-flex; align-items:center; justify-content:center; transition: transform .2s ease; }
.fab__toggle:hover { transform: scale(1.06) rotate(-4deg); }
.fab__toggle svg { width:26px; height:26px; }

/* --- Video intro modal (profile pages) --- */
.play-badge { position:absolute; z-index:2; bottom:14px; left:50%; transform:translateX(-50%); display:inline-flex; align-items:center; gap:8px; background: rgba(10,12,18,0.7); color:#fff; border:1px solid rgba(255,255,255,0.3); border-radius: var(--radius-pill); padding:9px 16px; font-size:13px; font-weight:600; cursor:pointer; backdrop-filter: blur(4px); transition: transform .18s ease, background .2s ease; }
.play-badge svg { width:14px; height:14px; }
.play-badge:hover { transform: translateX(-50%) translateY(-2px); background: rgba(10,12,18,0.88); }
.profile-hero__photo { cursor: pointer; }
.vmodal { position:fixed; inset:0; z-index:120; display:none; align-items:center; justify-content:center; padding:24px; background: rgba(5,6,10,0.82); backdrop-filter: blur(6px); }
.vmodal.is-open { display:flex; }
.vmodal__box { width:min(880px,100%); background: var(--color-surface); border:1px solid var(--color-line-2); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-hover); }
.vmodal__video { aspect-ratio:16/9; background:#0b0d13; display:flex; align-items:center; justify-content:center; color: var(--color-muted); font-size:15px; text-align:center; padding:24px; }
.vmodal__video video, .vmodal__video iframe { width:100%; height:100%; border:0; }
.vmodal__bar { display:flex; justify-content:space-between; align-items:center; padding:14px 18px; gap:12px; }
.vmodal__bar strong { font-family: var(--font-display); color: var(--color-heading); }
.vmodal__close { background:none; border:0; color: var(--color-muted); font-size:24px; line-height:1; cursor:pointer; }
.vmodal__close:hover { color: var(--color-heading); }

@media (max-width: 640px) {
  .fab { right:14px; bottom:14px; }
  .fab__toggle { width:54px; height:54px; }
  .journey-cta { padding:24px; }
}
