/* ── RESET & VARS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #FFB84D;
  --gold-deep: #e09a28;
  --gold-light: #FFD699;
  --gold-faint: rgba(255,184,77,0.13);
  --gold-glow: rgba(255,184,77,0.30);
  --pink: #B41A26;
  --pink-mid: #c92030;
  --pink-deep: #7a1019;
  --orange: #FF9900;
  --black: #1c0d02;
  --graphite: #FFF5E9;
  --silver: rgba(255,245,233,0.68);
  --ivory: #2a1507;
  --linen: rgba(255,184,77,0.18);
  --white: #FFF5E9;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--graphite);
  overflow-x: hidden;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(35, 16, 2, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--linen);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  will-change: transform; transform: translateZ(0);
}

.nav-logo {
  position: relative;
  z-index: 210;

  display: flex;
  align-items: center;

  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: clamp(8rem, 10vw, 10.5rem);
  height: auto;
  display: block;
  object-fit: contain;
}
.logo-mark {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.04em;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 500; color: var(--white); letter-spacing: 0.1em;
}

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-ctas { display: flex; align-items: center; gap: 10px; }

.btn-outline {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; color: var(--white); border: 1px solid var(--gold);
  padding: 9px 20px; border-radius: 2px; cursor: pointer; font-weight: 500;
  transition: background 0.2s, color 0.2s; text-decoration: none; white-space: nowrap;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-gold {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--black); border: none;
  padding: 9px 22px; border-radius: 2px; cursor: pointer; font-weight: 600;
  transition: background 0.2s; text-decoration: none; white-space: nowrap; display: inline-block;
}
.btn-gold:hover { background: var(--gold-deep); color: var(--black); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; z-index: 210; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--gold);
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 190; background: rgba(22, 9, 1, 0.97);
  flex-direction: column; padding: 96px 8vw 60px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-links { list-style: none; flex: 1; display: flex; flex-direction: column; }
.mobile-menu-links li { border-bottom: 0.5px solid var(--linen); }
.mobile-menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 5vw, 2.4rem); font-weight: 400; color: var(--white);
  text-decoration: none; padding: 1rem 0; transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--gold); }
.mobile-menu-links .arrow { font-size: 1rem; color: var(--linen); font-family: 'DM Sans', sans-serif; }
.mobile-menu-btns { display: flex; gap: 10px; margin-top: 2.5rem; }
.mobile-menu-btns .btn-outline,
.mobile-menu-btns .btn-gold { flex: 1; text-align: center; padding: 14px 20px; font-size: 12px; }
.mobile-meta { margin-top: 2rem; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  padding-top: var(--nav-h);
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5vw;
  align-items: start;
  padding-left: 5vw; padding-right: 5vw;
  padding-bottom: 60px;
  padding-top: calc(var(--nav-h) + 56px);
  border-bottom: 0.5px solid var(--linen);
}

.hero-left {
      align-self: center;
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--silver); margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--silver); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--linen); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 1.4rem);
  font-weight: 400; color: var(--white);
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

.hero-meta {
  font-size: 12px; color: var(--silver); font-weight: 300; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
}
.hero-meta span { font-weight: 500; color: var(--gold-light); }

/* hero form card */
.form-card {
  background: rgba(255,245,233,0.04);
  border: 0.5px solid var(--linen);
  border-radius: 3px;
  padding: 2rem 1.8rem;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink), transparent);
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500; color: var(--white);
  line-height: 1.3; margin-bottom: 1.4rem;
}

/* shared form styles */
.cf-form { display: flex; flex-direction: column; gap: 10px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.phone-row { display: grid; grid-template-columns: 120px 1fr; gap: 10px; }

.cf-input, .cf-textarea, .cf-select {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 300; color: var(--white);
  background: rgba(255,245,233,0.05); border: 0.5px solid var(--linen);
  border-radius: 2px; padding: 11px 14px; outline: none; width: 100%;
  transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(255,245,233,0.4); }
.cf-input:focus, .cf-textarea:focus, .cf-select:focus {
  border-color: var(--gold); background: rgba(255,245,233,0.08);
}
.cf-textarea { resize: none; height: 60px; line-height: 1.6; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%); font-size: 10px; color: var(--silver); pointer-events: none;
}
.select-wrap .cf-select { padding-right: 26px; }

.btn-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--orange)); color: var(--black); border: none;
  padding: 14px; border-radius: 2px; cursor: pointer; font-weight: 600;
  transition: opacity 0.2s; width: 100%;
}
.btn-submit:hover { opacity: 0.88; }

/* ══════════════════════════════
   BLOG LAYOUT — 3 column
══════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 220px 1fr 340px;
  gap: 0;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ── TOC (LEFT) ── */
.toc-wrap {
  padding-top: 48px;
  padding-right: 2rem;
  /* STICKY FIX */
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
  scrollbar-width: none;
  align-self: start;
}
.toc-wrap::-webkit-scrollbar { display: none; }

.toc-card {
  border-left: 2px solid var(--linen);
  padding-left: 1.2rem;
}

.toc-label {
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}

.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.toc-list li a {
  font-size: 12.5px; font-weight: 300; color: var(--silver);
  text-decoration: none; display: block; line-height: 1.5;
  padding: 3px 0; transition: color 0.2s;
  border-left: 2px solid transparent;
  margin-left: -1.2rem; padding-left: 1rem;
}
.toc-list li a:hover,
.toc-list li a.active {
  color: var(--gold-light);
  border-left-color: var(--gold);
}

.toc-h1 a { font-weight: 500; font-size: 12.5px; }
.toc-h2 a { padding-left: 1.5rem; font-size: 12px; }
.toc-h3 a { padding-left: 2rem; font-size: 11.5px; color: rgba(255,245,233,0.4); }

/* ── BLOG CONTENT (CENTER) ── */
.blog-content {
  padding: 48px 3rem;
  border-left: 0.5px solid var(--linen);
  border-right: 0.5px solid var(--linen);
  min-height: 80vh;
}

/* typography */
.blog-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 500;
  color: var(--white); line-height: 1.2; margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem; border-bottom: 0.5px solid var(--linen);
}
.blog-content h1:first-child { margin-top: 0; }

.blog-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 400; font-style: italic;
  color: var(--gold-light); line-height: 1.25; margin: 2.2rem 0 0.8rem;
}

.blog-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.04em;
  margin: 1.8rem 0 0.6rem;
  display: flex; align-items: center; gap: 8px;
}
.blog-content h3::before {
  content: '';
  width: 16px; height: 1.5px; background: var(--gold); flex-shrink: 0;
}

.blog-content p {
  font-size: 15px; font-weight: 300; color: var(--graphite);
  line-height: 1.85; margin-bottom: 1.2rem;
  opacity: 0.88;
}

.blog-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.blog-content a:hover { color: var(--gold-light); }

.blog-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.4rem; background: rgba(255,184,77,0.06);
  margin: 1.8rem 0; border-radius: 0 2px 2px 0;
}
.blog-content blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic; color: var(--white); font-size: 1rem; margin: 0;
  opacity: 1;
}

.blog-content ul, .blog-content ol {
  padding-left: 1.4rem; margin-bottom: 1.2rem;
}
.blog-content li {
  font-size: 15px; font-weight: 300; color: var(--graphite);
  line-height: 1.8; margin-bottom: 4px;
}

/* ── AI SUMMARY (inside content) ── */
.ai-section {
  background: rgba(255,184,77,0.05);
  border-top: 0.5px solid var(--linen);
  border-bottom: 0.5px solid var(--linen);
  border-left: 3px solid var(--gold);
  padding: 28px 24px;
  position: relative; overflow: hidden;
  border-radius: 0 3px 3px 0;
}

.ai-section::after {
  content: 'AI';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 80px; font-weight: 500; font-style: italic;
  color: transparent; -webkit-text-stroke: 0.5px var(--linen);
  pointer-events: none; user-select: none; z-index: 0;
}

.ai-inner { position: relative; z-index: 1; }

.ai-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem;
}
.ai-header-icon {
  width: 28px; height: 28px; border: 0.5px solid var(--gold);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,245,233,0.05); flex-shrink: 0;
}
.ai-header-icon svg { width: 14px; height: 14px; color: var(--gold); }

.ai-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; color: var(--white); line-height: 1.2;
}
.ai-heading em { font-style: italic; color: var(--gold); }

.ai-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}

.ai-card {
  background: rgba(255,245,233,0.03); border: 0.5px solid var(--linen); border-radius: 3px;
  padding: 12px 14px; display: flex; align-items: center; gap: 10px;
  cursor: pointer; text-decoration: none; position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.ai-card:hover {
  border-color: var(--gold);
  box-shadow: 0 3px 16px var(--gold-glow);
  transform: translateY(-2px);
}
.ai-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s ease;
}
.ai-card:hover::before { transform: scaleY(1); }

.ai-logo-box {
  width: 30px; height: 30px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 0.5px solid var(--linen); background: rgba(255,245,233,0.05); overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}
.ai-card:hover .ai-logo-box { background: var(--gold-faint); border-color: var(--gold); }
.ai-logo-box svg { width: 18px; height: 18px; }

.ai-card-name {
  font-size: 12px; font-weight: 500; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ai-card-desc { font-size: 10px; font-weight: 300; color: var(--silver); }

.ai-card-arrow {
  width: 20px; height: 20px; flex-shrink: 0; border: 0.5px solid var(--linen);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s, border-color 0.2s, background 0.2s; margin-left: auto;
}
.ai-card:hover .ai-card-arrow { opacity: 1; border-color: var(--gold); background: var(--gold); }
.ai-card-arrow svg { width: 9px; height: 9px; color: var(--black); }

.ai-note {
  margin-top: 1rem; display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 300; color: var(--silver);
}
.ai-note svg { width: 11px; height: 11px; color: var(--gold); flex-shrink: 0; }

/* ── RIGHT STICKY FORM ── */
.blog-form-wrap {
  padding-top: 48px;
  padding-left: 2rem;
  /* STICKY FIX */
  position: sticky;
  top: calc(var(--nav-h) + 28px);
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
  scrollbar-width: none;
  align-self: start;
}
.blog-form-wrap::-webkit-scrollbar { display: none; }

.form-card-blog {
  background: var(--ivory);
  border: 0.5px solid var(--linen);
  border-radius: 3px;
  padding: 1.8rem 1.6rem;
  position: relative;
}
.form-card-blog::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink), transparent);
}
.form-card-blog h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 500; color: var(--white);
  line-height: 1.3; margin-bottom: 1.2rem;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .blog-layout { grid-template-columns: 180px 1fr 300px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .form-card { display: none; } /* hide hero form on mobile — right sidebar serves it */

  .blog-layout { grid-template-columns: 1fr; padding: 0 5vw; }

  .toc-wrap {
    position: static; max-height: none; overflow: visible;
    padding: 24px 0 0; border-bottom: 0.5px solid var(--linen);
    padding-bottom: 24px; margin-bottom: 0;
  }

  .blog-content {
    border-left: none; border-right: none;
    padding: 32px 0;
  }

  .blog-form-wrap {
    position: static; max-height: none; overflow: visible;
    padding: 0 0 60px; border-top: 0.5px solid var(--linen);
  }

  .ai-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero { padding: calc(var(--nav-h) + 32px) 5vw 40px; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .form-row-2 { grid-template-columns: 1fr; }
  .blog-content { padding: 24px 0; }
  .ai-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
footer {
  background: var(--black);
  border-top: 0.5px solid var(--linen);
}

/* ── TOP SECTION: logo + nav columns ── */
.footer-top {
  padding: 72px 6vw 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4vw;
  border-bottom: 0.5px solid var(--linen);
}

/* brand column */
.footer-brand {}

.footer-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; margin-bottom: 1.4rem;
}

.footer-logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.footer-logo-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 500; color: var(--gold);
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.12em;
}

.footer-tagline {
  font-size: 13px; font-weight: 300; color: var(--silver);
  line-height: 1.7; max-width: 240px; margin-bottom: 1.8rem;
}

/* social icons */
.footer-socials {
  display: flex; gap: 8px; margin-bottom: 2rem;
}

.social-icon {
  width: 34px; height: 34px;
  border: 0.5px solid var(--linen);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* awards strip */
.footer-awards {
  display: flex; gap: 8px; flex-wrap: wrap;
}

.award-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--ivory);
  border: 0.5px solid var(--linen);
  padding: 5px 10px; border-radius: 2px;
  font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); font-weight: 500;
}
.award-badge svg { width: 11px; height: 11px; color: var(--gold); flex-shrink: 0; }

/* nav columns */
.footer-col {}

.footer-col-title {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); font-weight: 500;
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 8px;
}
.footer-col-title::after {
  content: '';
  flex: 1; height: 0.5px; background: var(--linen);
}

.footer-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}

.footer-col ul a {
  font-size: 13px; font-weight: 300; color: var(--silver);
  text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 0;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul a:hover .link-arrow { opacity: 1; transform: translateX(4px); }

.link-arrow {
  opacity: 0; font-size: 11px; margin-left: 4px;
  transition: opacity 0.2s, transform 0.2s; display: inline-block;
}

/* newsletter column */
.footer-newsletter {}

.footer-newsletter p {
  font-size: 12.5px; font-weight: 300; color: var(--silver);
  line-height: 1.65; margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex; flex-direction: column; gap: 8px;
}

.newsletter-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px; font-weight: 300;
  color: var(--white); background: var(--ivory);
  border: 0.5px solid var(--linen);
  border-radius: 2px; padding: 11px 14px; outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.newsletter-input::placeholder { color: rgba(255,245,233,0.4); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,245,233,0.06); }

.newsletter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--orange)); color: var(--black); border: none;
  padding: 12px; border-radius: 2px; cursor: pointer; font-weight: 600;
  transition: opacity 0.2s; width: 100%;
}
.newsletter-btn:hover { opacity: 0.88; }

.newsletter-note {
  font-size: 10px; color: var(--silver); opacity: 0.7;
  letter-spacing: 0.03em; margin-top: 2px;
}

/* ── STATS BAR ── */
.footer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 0.5px solid var(--linen);
}

.footer-stat {
  padding: 2rem 6vw;
  border-right: 0.5px solid var(--linen);
  display: flex; align-items: center; gap: 16px;
}
.footer-stat:last-child { border-right: none; }
.footer-stat:first-child { padding-left: 6vw; }

.stat-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 0.5px solid var(--linen);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory);
}
.stat-icon-wrap svg { width: 18px; height: 18px; color: var(--gold); }

.footer-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 500; color: var(--white); line-height: 1;
}
.footer-stat-lbl {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); margin-top: 2px;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  padding: 20px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.footer-copy {
  font-size: 11px; color: var(--silver); letter-spacing: 0.04em;
}
.footer-copy span { color: var(--gold); }

.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 11px; color: var(--silver); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

.footer-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--silver);
}
.footer-location svg { width: 12px; height: 12px; color: var(--gold); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: span 3; }
  .footer-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-stat:nth-child(2) { border-right: none; }
  .footer-stat:nth-child(3) { border-top: 0.5px solid var(--linen); }
  .footer-stat:nth-child(4) { border-top: 0.5px solid var(--linen); border-right: none; }
}

@media (max-width: 700px) {
  .footer-cta-band { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band-right { align-items: flex-start; }
  .footer-cta-band::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
  .footer-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-stats { grid-template-columns: 1fr; }
  .footer-stat { border-right: none !important; border-top: 0.5px solid var(--linen); }
  .footer-stat:first-child { border-top: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* ── TLDR WRAP ── */
.tldr-wrap {
  margin: 2rem 0;
  background: var(--ivory);
  border: 0.5px solid var(--linen);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

/* gold top accent bar */
.tldr-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink), transparent);
}

/* ── HEADER ── */
.tldr-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 1.8rem 1.4rem;
  border-bottom: 0.5px solid var(--linen);
  background: var(--ivory);
}

.tldr-badge {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; font-style: italic;
  color: var(--black);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* gold shimmer sweep on badge */
.tldr-badge::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122,16,25,0.35), transparent);
  animation: tldrShimmer 3s ease-in-out infinite;
}

@keyframes tldrShimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.tldr-eyebrow {
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 3px;
}

.tldr-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 400; color: var(--white); line-height: 1.2;
}
.tldr-heading em { font-style: italic; color: var(--gold); }

/* ── GRID ── */
.tldr-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--linen);
}

/* ── ITEM ── */
.tldr-item {
  background: var(--ivory);
  padding: 1rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  transition: background 0.2s;
}

.tldr-item:hover { background: rgba(255,184,77,0.05); }

/* gold left sweep on hover */
.tldr-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s ease;
}
.tldr-item:hover::before { transform: scaleY(1); }

/* number */
.tldr-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 500; font-style: italic;
  color: var(--white);
  line-height: 1; flex-shrink: 0;
  min-width: 28px;
  transition: color 0.2s;
}
.tldr-item:hover .tldr-num { color: var(--gold); }

.tldr-text {
  font-size: 13px; font-weight: 300;
  color: var(--graphite); line-height: 1.72;
  margin: 0;
  opacity: 0.88;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .tldr-header { gap: 1rem; }
  .tldr-badge { font-size: 0.9rem; padding: 5px 11px; }
}
/* ── SHARE WRAP ── */
.share-wrap {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--ivory);
  border: 0.5px solid var(--linen);
  border-left: 3px solid var(--gold);
  border-radius: 0 3px 3px 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.share-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; flex-shrink: 0;
}
.share-label svg { width: 14px; height: 14px; color: var(--gold); }

.share-buttons {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}

/* base card */
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: rgba(255,245,233,0.04);
  border: 0.5px solid var(--linen);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 400;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  will-change: transform;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

/* icon circle */
.share-icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s;
}
.share-icon svg { width: 14px; height: 14px; }

.share-name { line-height: 1; }

/* ── per-brand colours ── */

/* Facebook */
.share-fb { color: #4d9bff; border-color: rgba(24,119,242,0.3); }
.share-fb .share-icon { background: rgba(24,119,242,0.12); }
.share-fb:hover { border-color: #1877F2; background: #1877F2; color: #fff; }
.share-fb:hover .share-icon { background: rgba(255,255,255,0.15); }

/* Instagram */
.share-ig { color: #e0559e; border-color: rgba(193,53,132,0.3); }
.share-ig .share-icon { background: rgba(193,53,132,0.12); }
.share-ig:hover { border-color: #C13584; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.share-ig:hover .share-icon { background: rgba(255,255,255,0.15); }

/* X / Twitter */
.share-tw { color: var(--white); border-color: rgba(255,245,233,0.2); }
.share-tw .share-icon { background: rgba(255,245,233,0.08); }
.share-tw:hover { border-color: var(--white); background: var(--white); color: var(--black); }
.share-tw:hover .share-icon { background: rgba(0,0,0,0.12); }

/* LinkedIn */
.share-li { color: #4da3f0; border-color: rgba(10,102,194,0.3); }
.share-li .share-icon { background: rgba(10,102,194,0.12); }
.share-li:hover { border-color: #0A66C2; background: #0A66C2; color: #fff; }
.share-li:hover .share-icon { background: rgba(255,255,255,0.15); }

/* Copy */
.share-copy { color: var(--gold); border-color: rgba(255,184,77,0.3); }
.share-copy .share-icon { background: var(--gold-faint); }
.share-copy:hover { border-color: var(--gold); background: var(--gold); color: var(--black); }
.share-copy:hover .share-icon { background: rgba(0,0,0,0.08); }

/* copied state */
.share-copy.copied { border-color: #4ade80; background: #4ade80; color: var(--black); }
.share-copy.copied .share-icon { background: rgba(0,0,0,0.08); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .share-wrap { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .share-btn { padding: 9px 13px; font-size: 11.5px; }
  .share-name { display: none; }
  .share-icon { width: 22px; height: 22px; }
  .share-icon svg { width: 13px; height: 13px; }
  /* show name on copy button always so user knows what it does */
  .share-copy .share-name { display: inline; }
}

/* ── WRAP ── */
.author-wrap {
  margin-top: 3rem;
  border-top: 0.5px solid var(--linen);
  padding-top: 2.5rem;
}

.author-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.4rem;
}
.author-section-label svg { width: 10px; height: 10px; color: var(--gold); }

/* ── CARD ── */
.author-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--ivory);
  border: 0.5px solid var(--linen);
  border-radius: 3px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* gold top bar */
.author-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink), transparent);
}

/* faint watermark initial */
.author-card::after {
  content: 'AR';
  position: absolute; right: -10px; bottom: -20px;
  font-family: 'Playfair Display', serif;
  font-size: 120px; font-weight: 600; font-style: italic;
  color: transparent; -webkit-text-stroke: 0.5px var(--linen);
  pointer-events: none; user-select: none; line-height: 1;
  will-change: transform; transform: translateZ(0);
}

/* ── LEFT ── */
.author-left {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  flex-shrink: 0;
}

.author-avatar-wrap {
  position: relative; width: 90px; height: 90px;
}

.author-avatar-placeholder {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--gold));
  border: 2px solid var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 500; font-style: italic;
  color: var(--white);
}

.author-avatar-img {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--linen);
  display: block;
}

.author-online-dot {
  position: absolute; bottom: 4px; right: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #4ade80; border: 2px solid var(--ivory);
}

/* social icons */
.author-socials { display: flex; gap: 6px; }

.author-social {
  width: 30px; height: 30px;
  border: 0.5px solid var(--linen); border-radius: 2px;
  background: rgba(255,245,233,0.04);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.author-social svg { width: 13px; height: 13px; }
.author-social:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── RIGHT ── */
.author-right { flex: 1; min-width: 0; position: relative; z-index: 1; }

.author-top-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 1.2rem;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 500; color: var(--white);
  line-height: 1.1; margin-bottom: 3px;
}

.author-role {
  font-size: 11px; color: var(--silver);
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 400;
}

/* stats */
.author-stats {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}

.author-stat { text-align: center; }

.author-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500; color: var(--white);
  display: block; line-height: 1;
}

.author-stat-lbl {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); margin-top: 2px; display: block;
}

.author-stat-divider {
  width: 0.5px; height: 28px; background: var(--linen); flex-shrink: 0;
}

/* divider line */
.author-divider {
  width: 100%; height: 0.5px; background: var(--linen); margin-bottom: 1rem;
}

/* bio */
.author-bio {
  font-size: 13px; font-weight: 300; color: var(--graphite);
  line-height: 1.78; margin-bottom: 1.2rem;
  opacity: 0.88;
}

/* tags */
.author-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.4rem;
}

.author-tag {
  font-size: 10px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(255,245,233,0.03); border: 0.5px solid var(--linen);
  padding: 4px 10px; border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.author-tag:hover { background: var(--gold-faint); border-color: var(--gold); }

/* cta link */
.author-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.author-cta svg { width: 13px; height: 13px; transition: transform 0.2s; }
.author-cta:hover { color: var(--gold); border-color: var(--gold); }
.author-cta:hover svg { transform: translate(3px, -3px); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .author-card { flex-direction: column; align-items: center; text-align: center; padding: 1.6rem; }
  .author-card::after { display: none; }
  .author-top-row { flex-direction: column; align-items: center; }
  .author-stats { justify-content: center; }
  .author-tags { justify-content: center; }
  .author-cta { justify-content: center; }
  .author-left { flex-direction: row; align-items: center; gap: 1.4rem; }
  .author-avatar-wrap { width: 70px; height: 70px; }
  .author-avatar-placeholder { width: 70px; height: 70px; font-size: 1.6rem; }
  .author-avatar-img { width: 70px; height: 70px; }
}