/* ============================================
   Anna Borbotko — personal site
   Palette pulled from the Lines & Leaps mark:
   cream/beige base, cobalt-blue linework, warm orange accent.
   ============================================ */

:root {
  --cream: #f6e7c6;
  --cream-soft: #faf1de;
  --paper: #fffaf0;
  --ink: #201a12;
  --ink-soft: #4a4130;
  --blue: #1e49e2;
  --blue-deep: #12308f;
  --orange: #ea6530;
  --orange-deep: #cf4f1f;
  --line: rgba(32, 26, 18, 0.12);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1080px;
  --radius: 18px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #191510;
    --cream-soft: #14110d;
    --paper: #201a13;
    --ink: #f6ecd8;
    --ink-soft: #cfc3a6;
    --blue: #6f8dff;
    --blue-deep: #a9baff;
    --orange: #ff8a52;
    --orange-deep: #ffb187;
    --line: rgba(246, 236, 216, 0.14);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.dot-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  position: relative;
}
.dot-badge::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-32deg);
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 241, 222, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
@media (prefers-color-scheme: dark) {
  header.site-header { background: rgba(20, 17, 13, 0.86); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  text-decoration: none;
  color: var(--ink);
}
.wordmark .dot-badge { width: 24px; height: 24px; }

nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.primary-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
nav.primary-nav a:hover { color: var(--orange-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background: var(--cream);
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  z-index: 0;
}
@media (prefers-color-scheme: dark) { .hero-lines { opacity: 0.35; } }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero p.eyebrow { margin-bottom: 10px; }

.hero h1 {
  font-size: clamp(38px, 5.6vw, 58px);
  margin-bottom: 6px;
}

.hero .role {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero .opener {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn-square { border-radius: 6px; }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--orange-deep); color: var(--orange-deep); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.meta-value { font-size: 14px; color: var(--ink); font-weight: 500; }
.meta-divider { width: 1px; height: 34px; background: var(--line); flex-shrink: 0; }

/* ---------- Hero portrait ---------- */
.hero-portrait {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 340px;
}

.portrait-shape {
  position: absolute;
  top: -6%;
  right: -12%;
  width: 78%;
  height: 88%;
  background: linear-gradient(160deg, var(--orange), var(--orange-deep));
  border-radius: 50% 50% 8% 8% / 60% 60% 6% 6%;
  transform: rotate(6deg);
  z-index: 0;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  width: 88%;
  aspect-ratio: 4 / 5;
  border-radius: 16px 16px 120px 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(32, 26, 18, 0.18);
  background: var(--paper);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.portrait-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
}

.portrait-tag {
  position: absolute;
  right: -14px;
  top: 30%;
  transform: rotate(90deg);
  transform-origin: right top;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  z-index: 2;
}

.portrait-signature {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: "Caveat", cursive;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 30px 20px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--orange-deep);
  font-weight: 600;
}
.stat .label {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ---------- Section shell ---------- */
section { padding: 88px 0; }
#experience { padding: 0; }
#testimonials { padding-top: 40px; }
#newsletter { padding: 0; }
#speaking { padding-bottom: 40px; }
#contact { padding-top: 40px; }
.section-head { max-width: 860px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(28px, 4vw, 38px); margin-top: 10px; }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 17px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.about-copy p { margin: 0 0 18px; color: var(--ink-soft); font-size: 17.5px; }
.about-copy p strong { color: var(--ink); }

.bring-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.bring-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.bring-list .icon {
  color: var(--orange-deep);
  background: rgba(234, 101, 48, 0.12);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bring-list b { display: block; color: var(--ink); font-size: 15px; }
.bring-list span.detail { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Work / case studies ---------- */
.case {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  margin-bottom: 16px;
  overflow: hidden;
}
.case summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.case summary::-webkit-details-marker { display: none; }

.case-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.case-title .tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(30, 73, 226, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.case-title h3 { font-size: 21px; }
.case-title .hook {
  font-size: 15px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 400;
  margin-top: 2px;
}

.case-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
}
.case-toggle::before, .case-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink-soft);
  top: 50%; left: 50%;
}
.case-toggle::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.case-toggle::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); transition: opacity 0.15s ease; }
details[open] .case-toggle::after { opacity: 0; }

.case-body {
  padding: 0 28px 28px;
  color: var(--ink-soft);
  font-size: 16px;
}
.case-body p { margin: 0 0 14px; }
.case-body strong { color: var(--ink); }
.case-body p:last-child { margin-bottom: 0; }
.case-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.case-body ul li {
  padding-left: 20px;
  position: relative;
}
.case-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.work-group {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.work-group:first-of-type { margin-top: 0; }

/* ---------- Experience band (full-bleed, like the stat strip) ---------- */
.experience-band {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.experience-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  z-index: 0;
}
@media (prefers-color-scheme: dark) { .experience-lines { opacity: 0.35; } }
.experience-band > .wrap {
  position: relative;
  z-index: 1;
}

.showcase-group {
  /* no box of its own — the band above provides the shared background */
}

.showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.showcase-head .eyebrow {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}
.pill {
  display: inline-block;
  background: rgba(30, 73, 226, 0.1);
  color: var(--blue-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.trait-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.trait-pills .pill { margin-bottom: 0; }
.showcase-head h3 {
  font-size: clamp(24px, 3vw, 32px);
  max-width: 380px;
}
.showcase-desc {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 320px;
  margin: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.showcase-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.showcase-group + .showcase-group { margin-top: 40px; }

.showcase-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.showcase-card.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream-soft);
}
.showcase-card summary {
  list-style: none;
  cursor: pointer;
}
.showcase-card summary::-webkit-details-marker { display: none; }

.showcase-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.showcase-card .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(30, 73, 226, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
}
.showcase-card.dark .tag {
  color: var(--orange);
  background: rgba(234, 101, 48, 0.16);
}

.plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
  color: var(--ink);
}
.showcase-card.dark .plus { border-color: rgba(246, 236, 216, 0.3); color: var(--cream-soft); }
.plus::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}
.showcase-card[open] .plus::after { content: "\2212"; }

.showcase-card h4 {
  font-family: var(--serif);
  font-size: 21px;
  margin-bottom: 8px;
}
.showcase-card summary p {
  font-family: var(--sans);
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  min-height: 68px;
}
.showcase-card.dark summary p { color: rgba(246, 236, 216, 0.75); }

.card-visual {
  position: relative;
  margin-bottom: 16px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(30, 73, 226, 0.08);
  color: var(--blue-deep);
}
.showcase-card.dark .card-visual {
  background: rgba(246, 236, 216, 0.1);
  color: var(--orange);
}
.card-visual img,
.card-visual-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.card-visual img { object-fit: cover; }
.card-visual-fallback {
  display: none;
  align-items: center;
  justify-content: center;
}

.showcase-card-body { margin-top: 18px; }
.showcase-card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.showcase-card-body ul li {
  padding-left: 18px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.showcase-card.dark .showcase-card-body ul li { color: rgba(246, 236, 216, 0.75); }
.showcase-card-body ul li strong { color: var(--ink); }
.showcase-card.dark .showcase-card-body ul li strong { color: #fff; }
.showcase-card-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- Speaking (bento grid) ---------- */
.speaking-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "photo video video stats"
    "photo podcast podcast stats";
  gap: 20px;
  margin-top: 36px;
}

.bento-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.card-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue-deep);
  margin: 0 0 14px;
}

/* Photo tile */
.bento-photo {
  grid-area: photo;
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 220px;
}
.bento-photo img,
.bento-photo-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bento-photo img { object-fit: cover; object-position: top center; }
.bento-photo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
}
.bento-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%);
  pointer-events: none;
}
/* Stat tiles */
.bento-stats {
  grid-area: stats;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mini-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.mini-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(234, 101, 48, 0.12);
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.mini-stat .num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--orange-deep);
  line-height: 1.1;
}
.mini-stat .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* Video tile */
.bento-video { grid-area: video; overflow: hidden; }
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Podcast tile */
.bento-podcast { grid-area: podcast; }
.podcast-embed iframe {
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 12px;
  display: block;
}

/* ---------- Testimonials ---------- */
.testi-carousel {
  display: flex;
  align-items: center;
  gap: 32px;
}
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.carousel-btn:hover { border-color: var(--orange); color: var(--orange-deep); }
.testi {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  flex: 0 0 min(420px, 85vw);
  scroll-snap-align: start;
}
.testi blockquote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
}
.testi blockquote::before { content: "\201C"; color: var(--orange); }
.testi blockquote::after { content: "\201D"; color: var(--orange); }
.testi cite {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
  display: block;
}
.testi cite b { color: var(--ink); display: block; font-size: 14.5px; }

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  padding: 64px 0;
}
.newsletter-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  z-index: 0;
}
.newsletter-photo-wrap {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 260px;
  max-width: 32%;
  aspect-ratio: 4 / 3;
  z-index: 1;
}
.newsletter-photo-shape {
  position: absolute;
  top: -14%;
  left: -12%;
  width: 62%;
  height: 68%;
  background: linear-gradient(160deg, var(--orange), var(--orange-deep));
  border-radius: 50% 50% 8% 8% / 60% 60% 6% 6%;
  transform: rotate(-8deg);
  z-index: 0;
}
.newsletter-photo {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 100%;
  margin-left: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
  background: var(--paper);
}
.newsletter-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.newsletter-photo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.newsletter h2 { color: #fff; font-size: clamp(26px, 3.4vw, 34px); }
.newsletter p { color: rgba(255,255,255,0.86); font-size: 16.5px; margin-top: 14px; }
.newsletter .badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 14px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-form input {
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-family: var(--sans);
}
.newsletter-form .btn-primary {
  background: var(--orange);
}

/* ---------- Contact ---------- */
.contact-box {
  background: var(--cream);
  border-radius: 28px;
  padding: 64px;
  text-align: center;
}
.contact-box h2 { font-size: clamp(30px, 4.4vw, 44px); }
.contact-box p { color: var(--ink-soft); font-size: 18px; margin: 16px auto 30px; max-width: 480px; }
.contact-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 26px auto 0;
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form button { align-self: center; }
.form-success {
  max-width: 440px;
  margin: 26px auto 0;
  padding: 20px;
  border-radius: 14px;
  background: rgba(30, 73, 226, 0.08);
  color: var(--blue-deep);
  font-weight: 500;
  text-align: center;
}

/* ---------- Footer ---------- */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-soft);
}
.footer-inner nav { display: flex; gap: 20px; }
.footer-inner a { text-decoration: none; }
.footer-inner nav a:hover { color: var(--orange-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-portrait { order: -1; max-width: 220px; margin: 0 auto 12px; }
  .hero-ctas { justify-content: center; }
  .hero-meta { margin: 0 auto; justify-content: center; }
  .hero .opener { margin-left: auto; margin-right: auto; }
  .portrait-tag { display: none; }
  .speaking-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "stats"
      "video"
      "podcast";
  }
  .bento-photo { min-height: 240px; }
  .experience-band { padding: 36px 0; }
  .showcase-head { align-items: flex-start; }
  .showcase-desc { max-width: 100%; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-grid.cols-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .newsletter { padding: 40px 0; }
  .newsletter-photo-wrap { display: none; }
  .contact-box { padding: 44px 26px; border-radius: 20px; }
}

@media (max-width: 720px) {
  nav.primary-nav { display: none; }
  .nav-toggle { display: block; }
  body.nav-open nav.primary-nav {
    display: flex;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--cream-soft);
    flex-direction: column;
    padding: 28px;
    gap: 22px;
    z-index: 60;
  }
  .case summary { flex-direction: row; align-items: flex-start; }
  .case-title { flex-direction: column; align-items: flex-start; gap: 8px; }
  .testi-carousel .carousel-btn { display: none; }
  .testi-carousel { gap: 0; }
  .testi { flex: 0 0 82vw; }
}
