/*
Theme Name: Alex Neiman
Theme URI: https://alexneiman.com
Author: Alex Neiman
Description: Custom performance marketing consultant theme
Version: 1.0
*/
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --cream:       #f6f1e9;
  --cream-deep:  #ede6d6;
  --charcoal:    #1c1a18;
  --charcoal-mid:#3a3630;
  --charcoal-lt: #6b6560;
  --gold:        #b8912a;
  --gold-lt:     #d4a84b;
  --gold-subtle: #f0e4c4;
  --white:       #fdfaf5;
  --rule:        rgba(28,26,24,.12);

  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --mono:    'DM Mono', monospace;

  --max:     1200px;
  --gutter:  clamp(24px, 5vw, 80px);

  --ease-out: cubic-bezier(.16,1,.3,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* PAGE ROUTING */
.page { display: none; }
.page.active { display: block; }

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

/* ============================================================
   SIGNAL MOTIF — decorative waveform lines
   ============================================================ */
.signal-lines {
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: .18;
}
.signal-lines span {
  display: block;
  width: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,241,233,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--charcoal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark svg { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }

.nav-links a.active {
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
}

.nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: .8rem !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--charcoal-mid) !important; }

/* ============================================================
   LAYOUT UTILS
   ============================================================ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.section-label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--charcoal);
  font-weight: 700;
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  color: var(--charcoal);
}

.h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.lead {
  font-size: 1.1rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
  max-width: 560px;
}

.rule { height: 1px; background: var(--rule); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .22s var(--ease-out);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--charcoal-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(28,26,24,.18);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,145,42,.28);
}

.btn svg { flex-shrink: 0; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* HERO */
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
}

.hero-content { position: relative; z-index: 2; }

.hero-kicker {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-scroll-hint {
  margin-top: 60px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--charcoal-lt), transparent);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-visual { height: 300px; }
}

.hero-canvas {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Abstract dashboard / signal motif */
.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 4px 32px rgba(28,26,24,.08);
}

.hero-card-main {
  top: 20px; left: 0; right: 60px;
  padding: 28px;
}

.hero-card-stat {
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  bottom: 60px; right: 0;
  width: 180px;
}

.hero-card-tag {
  top: 50%; right: 0;
  transform: translateY(-50%);
  background: var(--gold-subtle);
  border-color: rgba(184,145,42,.2);
  padding: 12px 16px;
  width: 160px;
}

.card-label {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 8px;
}

.card-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.card-stat-label {
  font-size: .75rem;
  color: var(--charcoal-lt);
}

.dark .card-label { color: rgba(246,241,233,.5); }
.dark .card-stat-label { color: rgba(246,241,233,.6); }
.dark .card-stat-num { color: var(--cream); }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  margin-top: 12px;
}

.mini-chart-bar {
  flex: 1;
  background: var(--gold-subtle);
  border-radius: 2px;
  transition: height .3s;
}

.mini-chart-bar.hi { background: var(--gold); }

/* WaveForm motif */
.waveform {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  opacity: .06;
  pointer-events: none;
}

/* ABOUT STRIP */
.about-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
}

.about-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 48px; }
}

.about-strip .section-label { color: rgba(184,145,42,.9); }
.about-strip .section-label::before { background: rgba(184,145,42,.7); }

.about-strip .h2 { color: var(--cream); }

.about-strip p {
  color: rgba(246,241,233,.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 20px;
}

.belief-block {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 36px;
}

.belief-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(246,241,233,.9);
}

.belief-attribution {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(184,145,42,.8);
  margin-top: 12px;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 24px 20px;
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-desc {
  font-size: .78rem;
  color: rgba(246,241,233,.5);
  line-height: 1.4;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: all .28s var(--ease-out);
  cursor: pointer;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background .28s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,26,24,.1);
  border-color: rgba(184,145,42,.3);
}

.service-card:hover::before { background: var(--gold); }

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  opacity: .7;
}

.service-num {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card .h3 { margin-bottom: 16px; }

.service-meta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-meta-line {
  display: flex;
  gap: 10px;
  font-size: .82rem;
}

.service-meta-key {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  padding-top: 1px;
  min-width: 64px;
  flex-shrink: 0;
}

.service-meta-val { color: var(--charcoal-mid); line-height: 1.5; }

.service-link {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: .02em;
  cursor: pointer;
  transition: gap .2s;
}

.service-link:hover { gap: 10px; }

/* PROCESS */
.process-section {
  background: var(--cream-deep);
  padding: clamp(64px, 8vw, 112px) var(--gutter);
}

.process-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
  position: relative;
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

.process-step {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  transition: all .28s var(--ease-out);
}

.process-step:first-child { border-radius: 8px 0 0 8px; }
.process-step:last-child { border-radius: 0 8px 8px 0; }
.process-step:hover { background: var(--charcoal); }
.process-step:hover .process-step-num,
.process-step:hover .process-step-label,
.process-step:hover p { color: rgba(246,241,233,.7); }
.process-step:hover .process-step-title { color: var(--cream); }

.process-step-num {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 20px;
  transition: color .28s;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color .28s;
}

.process-step-label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 8px;
  transition: color .28s;
}

.process-step p {
  font-size: .85rem;
  color: var(--charcoal-lt);
  line-height: 1.6;
  transition: color .28s;
}

/* WORK / CASE STORIES */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
}

.work-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  transition: all .28s var(--ease-out);
  background: var(--white);
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28,26,24,.1);
}

.work-card-thumb {
  height: 160px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card-thumb-inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8,1fr);
  grid-template-rows: repeat(5,1fr);
  gap: 4px;
  padding: 16px;
  opacity: .4;
}

.thumb-cell {
  background: rgba(184,145,42,.5);
  border-radius: 2px;
}

.thumb-cell.hi { background: var(--gold); opacity: 1; }
.thumb-cell.md { opacity: .7; }
.thumb-cell.lo { opacity: .3; }

.work-card-body { padding: 24px; }

.work-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-subtle);
  color: var(--gold);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.work-result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--charcoal-lt);
  letter-spacing: .06em;
}

.work-result strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  letter-spacing: -.01em;
  margin-bottom: 2px;
}

/* BLOG PREVIEW */
.blog-preview { padding: clamp(64px, 8vw, 112px) var(--gutter); }

.blog-preview-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.blog-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .blog-preview-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  transition: all .28s var(--ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(28,26,24,.09);
  border-color: rgba(184,145,42,.25);
}

.blog-card.featured {
  background: var(--charcoal);
  border-color: transparent;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .blog-card.featured { grid-row: span 1; }
}

.post-category {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 16px;
}

.cat-performance { background: rgba(59,130,246,.1); color: #3b82f6; }
.cat-ai { background: rgba(139,92,246,.1); color: #8b5cf6; }
.cat-creative { background: rgba(236,72,153,.1); color: #ec4899; }
.cat-systems { background: rgba(16,185,129,.1); color: #10b981; }

.featured .post-category.cat-performance { background: rgba(59,130,246,.2); }

.blog-card .h3 {
  color: var(--charcoal);
  margin-bottom: 12px;
  flex: 1;
}

.featured .h3 {
  color: var(--cream);
  font-size: 1.5rem;
}

.blog-excerpt {
  font-size: .875rem;
  color: var(--charcoal-lt);
  line-height: 1.65;
  margin-top: 8px;
}

.featured .blog-excerpt { color: rgba(246,241,233,.6); }

.blog-meta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .08em;
  color: var(--charcoal-lt);
}

.featured .blog-meta { color: rgba(246,241,233,.4); }

/* INSTAGRAM TEASER */
.ig-teaser {
  background: var(--cream-deep);
  padding: clamp(64px, 8vw, 96px) var(--gutter);
  text-align: center;
}

.ig-teaser-inner {
  max-width: 700px;
  margin: 0 auto;
}

.ig-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 40px 0;
}

.ig-mini-thumb {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  color: rgba(246,241,233,.3);
  position: relative;
}

.ig-mini-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity .22s;
}

.ig-mini-thumb:hover::after { opacity: .15; }

/* FINAL CTA */
.final-cta {
  background: var(--charcoal);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,42,.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .final-cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

.final-cta .section-label { color: rgba(184,145,42,.8); }
.final-cta .section-label::before { background: rgba(184,145,42,.6); }
.final-cta .h2 { color: var(--cream); }

.cta-checklist {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(246,241,233,.7);
}

.cta-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23b8912a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

.cta-right { text-align: center; }

.cta-right .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 18px 36px; }

.cta-sub {
  font-size: .78rem;
  color: rgba(246,241,233,.35);
  margin-top: 14px;
  font-family: var(--mono);
  letter-spacing: .06em;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page { padding-top: 0; }

.blog-hero-section {
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(40px,5vw,64px);
  max-width: var(--max);
  margin: 0 auto;
}

.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.filter-chip {
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--rule);
  color: var(--charcoal-lt);
  cursor: pointer;
  transition: all .2s;
  background: transparent;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.blog-featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto var(--gutter);
  background: var(--charcoal);
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-featured-article { grid-template-columns: 1fr; }
}

.featured-thumb {
  height: 100%;
  min-height: 320px;
  background: var(--charcoal-mid);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 40px;
}

.featured-content { padding: 48px; }

.featured-content .h2 {
  color: var(--cream);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 16px 0 20px;
}

.featured-excerpt {
  color: rgba(246,241,233,.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.featured-meta {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .1em;
  color: rgba(246,241,233,.4);
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.blog-list-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px,8vw,112px);
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .blog-list-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .blog-list-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-page { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.booking-hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .booking-hero { grid-template-columns: 1fr; gap: 40px; }
}

.booking-checklist {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-checklist li {
  display: flex;
  gap: 14px;
  font-size: .95rem;
  color: var(--charcoal-mid);
  align-items: flex-start;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--gold-subtle);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.booking-cta-box {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 40px;
  position: sticky;
  top: 88px;
  text-align: center;
}

.booking-cta-box .h3 { margin-bottom: 8px; }

.booking-cta-sub {
  font-size: .875rem;
  color: var(--charcoal-lt);
  margin-bottom: 28px;
  line-height: 1.6;
}

.booking-social-proof {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.proof-avatars {
  display: flex;
  justify-content: center;
  gap: -8px;
  margin-bottom: 8px;
}

.proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .55rem;
  color: var(--cream);
  margin-left: -8px;
}

.proof-text {
  font-size: .75rem;
  color: var(--charcoal-lt);
  text-align: center;
}

/* FAQ */
.faq-section {
  padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 8vw, 112px);
  max-width: 680px;
}

.faq-item {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
  cursor: pointer;
}

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

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--charcoal);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  border-radius: 1px;
}

.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); transition: opacity .2s, transform .2s; }

.faq-item.open .faq-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }

.faq-a {
  font-size: .875rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out), margin .35s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  margin-top: 14px;
}

/* ============================================================
   INSTAGRAM PAGE
   ============================================================ */
.ig-page { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.ig-header {
  padding: clamp(64px, 8vw, 112px) 0 56px;
  max-width: 680px;
}

.ig-plugin-area {
  background: var(--white);
  border: 1px dashed rgba(184,145,42,.3);
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.ig-plugin-label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.ig-plugin-desc {
  font-size: .875rem;
  color: var(--charcoal-lt);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.ig-fake-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 36px;
  opacity: .3;
}

.ig-fake-cell {
  aspect-ratio: 1;
  background: var(--charcoal);
  border-radius: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  color: rgba(246,241,233,.5);
  padding: clamp(40px, 5vw, 64px) var(--gutter);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(246,241,233,.8);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: .8rem;
  color: rgba(246,241,233,.4);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
}

.footer-links a:hover { color: rgba(246,241,233,.8); }

.footer-copy {
  font-size: .75rem;
  font-family: var(--mono);
  letter-spacing: .06em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ============================================================
   DIVIDER MOTIF
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  opacity: .25;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: var(--charcoal);
}

.section-divider-icon {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--charcoal);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* RESPONSIVE NAV */
@media (max-width: 640px) {
  .nav-links { gap: 20px; }
  .nav-links .nav-cta { display: none; }
}


/* ── BLOG LEAD CAPTURE STRIP ─────────────────── */
.blog-capture-strip {
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  margin-bottom: clamp(64px, 8vw, 112px);
}
.blog-capture-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 700px) {
  .blog-capture-inner { grid-template-columns: 1fr; }
}

/* ── INSTAGRAM FEED PLACEHOLDER ─────────────── */
.ig-feed-placeholder {
  border: 1.5px dashed var(--rule);
  border-radius: 8px;
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-feed-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/* Social link icons in footer */
.footer-links a svg { vertical-align: middle; opacity: .5; transition: opacity .2s; }
.footer-links a:hover svg { opacity: 1; }
