/* ============================================
   Dr. Clay Moss — drclaymoss.com
   Design system recreated from Webflow original
   ============================================ */

/* Exact brand fonts — same files the original Webflow site serves */
@font-face { font-family: 'Nordeco Cyrillic'; src: url(https://cdn.prod.website-files.com/69ef00fe307a25e1acc43a34/69ef00fe307a25e1acc43a85_NordecoCyrillic-Regular.ttf) format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nordeco Cyrillic'; src: url(https://cdn.prod.website-files.com/69ef00fe307a25e1acc43a34/69ef00fe307a25e1acc43ab9_NordecoCyrillic-SemiBold.ttf) format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Nordeco Cyrillic'; src: url(https://cdn.prod.website-files.com/69ef00fe307a25e1acc43a34/69ef00fe307a25e1acc43a87_NordecoCyrillic-Bold.ttf) format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'HelveticaNeue'; src: url(https://cdn.prod.website-files.com/69ef00fe307a25e1acc43a34/69ef00fe307a25e1acc43a8b_HelveticaNeueRoman.otf) format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'HelveticaNeue'; src: url(https://cdn.prod.website-files.com/69ef00fe307a25e1acc43a34/69ef00fe307a25e1acc43a86_HelveticaNeueLight.otf) format("opentype"); font-weight: 300; font-style: normal; font-display: swap; }

:root {
  /* Official brand palette (Clay, June 2026):
     Primary Teal #134B59 · Primary Cream #EFEFC4 · Near Black #1A1A1A · Gold sparingly */
  --navy: #134b59;
  --slate: #134b59;
  --slate-dark: #0d3540;
  --teal: #5ec4b8;
  --teal-deep: #134b59;
  --mint: #d7eaea;
  --sage: #cfe0da;
  --gold: #d4af55;
  --clay-dark: #b8923f;
  --cream-2: #e6e6c6;
  --gold-soft: #134b59;
  --cream: #efefc4;
  --bg: #fafafa;
  --ink: #1a1a1a;
  --gray: #787878;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 500px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
  cursor: pointer;
  border: none;
}
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--cream); color: var(--ink); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.7); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-outline-dark { background: transparent; color: var(--teal-deep); border: 1.5px solid var(--teal-deep); }
.btn-outline-dark:hover { background: var(--teal-deep); color: var(--white); }
.btn-gold { background: var(--teal-deep); color: var(--white); }
.btn-gold:hover { background: var(--slate-dark); }

/* ---------- Unified floating nav (same on every page) ---------- */
.nav2 { position: fixed; top: 16px; left: 0; right: 0; z-index: 100; padding: 0 16px; }
.nav2 .bar {
  max-width: 1180px; margin: 0 auto;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 26px;
  box-shadow: 0 6px 24px rgba(26,26,26,.08);
}
.nav2 .brand { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--ink); display: flex; align-items: center; }
.nav2 .brand img { height: 32px; width: auto; display: block; }
.nav2 .brand span { font-size: 12px; letter-spacing: .12em; color: var(--gray); margin-left: 6px; font-weight: 600; }
.nav2 .links { display: flex; gap: 26px; font-size: 15.5px; font-weight: 500; color: var(--ink); }
.nav2 .links a:hover { color: var(--teal-deep); }
.nav2 .cta {
  background: var(--teal-deep); color: #fff; border-radius: var(--radius-pill);
  padding: 12px 22px; font-family: var(--font-head); font-weight: 600; font-size: 15px;
  display: flex; align-items: center; gap: 10px; transition: background .2s; white-space: nowrap;
}
.nav2 .cta:hover { background: var(--slate-dark); }
.nav2 .cta .arr { background: #fff; color: var(--teal-deep); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }
@media (max-width: 900px) { .nav2 .links { display: none; } }
@media (max-width: 640px) { .nav2 .cta { font-size: 13.5px; padding: 10px 16px; } .nav2 .brand { font-size: 18px; } }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
}
.site-header.floating {
  position: fixed;
  top: 14px;
  padding: 0;
}
.site-header.floating .container {
  background: rgba(15,25,28,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  max-width: 1100px;
}
.site-header.floating .nav-links { background: none; padding: 0; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.on-light { position: relative; background: var(--bg); }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.site-header:not(.on-light) .nav-links {
  background: rgba(15,20,22,.55);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  backdrop-filter: blur(6px);
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}
.site-header.on-light .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 20%;
  opacity: .85;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,20,22,.72) 0%, rgba(15,20,22,.35) 55%, rgba(15,20,22,.15) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; padding: 140px 0 90px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  color: var(--white);
}
.hero h1 .accent { color: var(--cream); display: block; font-style: italic; }
.hero p {
  margin: 28px 0;
  font-size: 18px;
  color: rgba(255,255,255,.88);
  max-width: 640px;
}
.hero-rule { border: none; border-top: 1px solid rgba(255,255,255,.35); margin: 8px 0 28px; max-width: 640px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-note { font-size: 16px; color: rgba(255,255,255,.85); }
.hero-note::before { content: '•  '; }
.proof-pill {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-size: 14.5px;
  color: rgba(255,255,255,.95);
  margin-bottom: 26px;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- EKG pulse line ---------- */
.ekg {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  opacity: .12;
  pointer-events: none;
}
.ekg polyline {
  fill: none;
  stroke: var(--cream);
  stroke-width: 2;
  stroke-linejoin: round;
}

/* ---------- Section basics ---------- */
section { padding: 80px 0; }
.kicker {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.section-title {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 28px;
}
.center { text-align: center; }

/* ---------- Featured ---------- */
.featured { background: var(--bg); }
.featured-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  align-items: center;
}
.featured-card img { border-radius: var(--radius-md); }
.featured-card h3 { font-size: 28px; margin-bottom: 12px; color: var(--teal-deep); }
.featured-card .show-name { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--teal-deep); margin-bottom: 6px; }
.featured-card p { color: var(--gray); }

/* ---------- About preview ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-grid p { color: var(--gray); margin: 18px 0 26px; }
.card-teal {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.card-teal .tag { font-family: var(--font-head); font-weight: 700; font-size: 24px; letter-spacing: .04em; }
.card-teal h3 { font-size: 24px; margin: 12px 0 18px; font-weight: 500; }
.card-teal p { color: rgba(255,255,255,.95); margin: 10px 0; }
.portrait-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.portrait-card img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Chips marquee ---------- */
.chips-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--white);
}
.chips-card h3 { text-align: center; font-size: 30px; margin-bottom: 24px; color: var(--teal-deep); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  background: var(--bg);
  border: 1px solid #e2e8e8;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 15px;
  color: var(--ink);
}

/* ---------- Optimize card ---------- */
.optimize-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.optimize-card h3 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 24px; color: var(--teal-deep); }
.optimize-list {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: left;
}
.optimize-list h4 {
  font-size: 19px;
  padding: 12px 0;
  border-bottom: 1px solid #eee6d8;
  font-weight: 600;
}
.optimize-list h4:last-child { border-bottom: none; }

/* ---------- Banner image ---------- */
.banner-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.banner-photo img { width: 100%; height: 520px; object-fit: cover; object-position: 50% 64%; }
.banner-photo .banner-title {
  position: absolute; top: 40px; left: 0; right: 0;
  text-align: center;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}

/* ---------- Focus cards ---------- */
.social-row { display: flex; gap: 14px; margin: 22px 0 36px; }
.social-row a {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-row a:hover { background: var(--teal); color: var(--ink); }
.social-row svg { width: 22px; height: 22px; fill: currentColor; }

.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.focus-card {
  background: var(--teal-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.focus-card img { height: 300px; width: 100%; object-fit: cover; object-position: 50% 12%; }
.focus-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.focus-card h3 { font-size: 22px; margin-bottom: 12px; color: #fff; }
.focus-card p { color: rgba(255,255,255,.85); font-size: 15.5px; flex: 1; }
.focus-card .btn { margin-top: 20px; align-self: flex-start; font-size: 14px; padding: 10px 22px; }

/* ---------- Framework ---------- */
.framework { background: linear-gradient(180deg, #eef4f3 0%, var(--bg) 100%); border-radius: var(--radius-lg); }
.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
  margin-top: 48px;
}
.step .num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 500;
  color: #b9c6c6;
  margin-bottom: 10px;
}
.step h3 { font-size: 23px; margin-bottom: 12px; }
.step p { color: var(--gray); }

/* ---------- Built in public ---------- */
.builtin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
}
.builtin-card .lead-tag { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--teal-deep); margin-bottom: 8px; }
.builtin-card h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 20px; }
.builtin-card > p { color: var(--gray); max-width: 820px; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.value-card {
  border-radius: var(--radius-md);
  padding: 26px 30px;
}
.value-card:nth-child(odd) { background: var(--mint); }
.value-card:nth-child(even) { background: var(--sage); }
.value-card h3 { font-size: 20px; margin-bottom: 6px; }
.value-card p { color: #45524f; font-size: 15.5px; }

/* ---------- Photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-strip img { border-radius: var(--radius-md); height: 300px; width: 100%; object-fit: cover; object-position: 50% 12%; }

/* ---------- Connect / IG ---------- */
.connect-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.ig-card {
  background: linear-gradient(160deg, var(--navy), var(--slate));
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.ig-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.ig-card .ig-meta { position: relative; z-index: 2; }
.ig-card h3 { font-size: 26px; }
.ig-card p { color: rgba(255,255,255,.9); }
.connect-copy h3 { font-size: 24px; margin-bottom: 14px; }
.connect-copy p { color: var(--gray); margin-bottom: 24px; }

/* ---------- Newsletter ---------- */
.newsletter-section { padding: 80px 0; }
.newsletter-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate);
  color: var(--white);
  padding: 76px 56px;
  text-align: center;
}
.newsletter-card .nl-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .25;
}
.newsletter-card .nl-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.newsletter-card .nl-logo { display:block; width: 100%; max-width: 380px; height: auto; margin: 0 auto 22px; }
.newsletter-card h2 { font-size: clamp(36px, 5.2vw, 60px); margin-bottom: 18px; }
.newsletter-card p { color: rgba(255,255,255,.92); max-width: 600px; margin: 0 auto 30px; font-size: 17px; }
.substack-embed, .kit-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.substack-embed iframe { display: block; width: 100%; height: 480px; border: none; }
.kit-embed { padding: 22px 20px; }
.kit-embed [data-style="clean"], .kit-embed .formkit-form { background: transparent !important; }
.nl-social {
  position: relative; z-index: 2;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.nl-social h3 { font-size: 24px; }
.nl-social .social-row { margin: 0; }
.nl-social .social-row a { background: var(--cream); color: var(--slate-dark); }
.nl-social .social-row a:hover { background: var(--white); }

/* ---------- Footer ---------- */
.site-footer { padding: 64px 0 40px; }
.footer-top { margin-bottom: 28px; }
.footer-logo img { height: 64px; width: auto; }
.footer-navpill {
  display: inline-flex;
  gap: 0;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  margin: 26px 0 18px;
}
.footer-navpill a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  padding: 0 20px;
  border-right: 1px solid #d8d2c4;
}
.footer-navpill a:last-child { border-right: none; }
.footer-navpill a:hover { color: var(--teal-deep); }
.footer-blurb { color: var(--gray); max-width: 560px; }
.footer-bottom {
  border-top: 1px solid #dde4e4;
  margin-top: 36px;
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-watermark {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 600;
  color: #e3e9e9;
  user-select: none;
  line-height: 1;
}
.footer-contact { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.footer-contact .email { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 17px; }
.footer-contact .social-row a { background: var(--teal-deep); }
.footer-legal { margin-top: 28px; font-size: 13.5px; color: #9aa4a6; text-align: center; }

/* ---------- Inner page hero ---------- */
.page-hero {
  background: var(--bg);
  padding: 140px 0 40px;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 20px; }
.page-hero p { color: var(--gray); max-width: 720px; }

/* ---------- Lead magnet landing ---------- */
.lm-hero {
  background: linear-gradient(160deg, var(--navy), var(--slate));
  color: var(--white);
  padding: 120px 0 70px;
  text-align: center;
}
.lm-hero .eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--cream);
  margin-bottom: 14px;
}
.lm-hero h1 { font-size: clamp(32px, 4.6vw, 52px); max-width: 820px; margin: 0 auto 18px; }
.lm-hero p { color: rgba(255,255,255,.88); max-width: 640px; margin: 0 auto; font-size: 18px; }
.lm-body { padding: 64px 0; }
.lm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lm-list { list-style: none; }
.lm-list li {
  padding: 14px 0 14px 38px;
  position: relative;
  border-bottom: 1px solid #e4eae9;
  color: var(--ink);
}
.lm-list li::before {
  content: '✓';
  position: absolute; left: 0;
  width: 26px; height: 26px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  top: 14px;
}
.lm-signup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 10px 40px rgba(29,58,79,.08);
}
.lm-signup-card h3 { font-size: 22px; margin-bottom: 8px; }
.lm-signup-card .sub { color: var(--gray); font-size: 15px; margin-bottom: 20px; }
.lm-unlock {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8ecec;
  text-align: center;
}
.lm-unlock p { font-size: 15px; color: var(--gray); margin-bottom: 14px; }

/* ---------- Newsletter archive ---------- */
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.archive-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.archive-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(29,58,79,.10); }
.archive-card .date {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.archive-card h3 { font-size: 21px; margin-bottom: 10px; }
.archive-card p { color: var(--gray); font-size: 15px; flex: 1; }
.archive-card .read-more { margin-top: 18px; font-family: var(--font-head); font-weight: 700; color: var(--teal-deep); }
.archive-empty {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--gray);
}

/* ---------- Article (newsletter issue) ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.article .date { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }
.article h1 { font-size: clamp(30px, 4vw, 44px); margin: 12px 0 28px; }
.article h2 { font-size: 26px; margin: 36px 0 14px; }
.article h3 { font-size: 21px; margin: 28px 0 10px; }
.article p { margin: 16px 0; color: #333b3e; }
.article ul, .article ol { margin: 16px 0 16px 24px; color: #333b3e; }
.article blockquote {
  border-left: 4px solid var(--teal);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  color: var(--gray);
  font-style: italic;
}
.article .article-cta {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 48px;
  text-align: center;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-photo img { border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-card h2 { font-size: 28px; margin-bottom: 24px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #dde4e4;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--teal); border-color: transparent; }
.form-field textarea { min-height: 140px; resize: vertical; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .connect-grid, .lm-grid, .contact-grid, .featured-card { grid-template-columns: 1fr; }
  .focus-grid, .archive-grid, .photo-strip { grid-template-columns: 1fr 1fr; }
  .framework-grid, .value-grid { grid-template-columns: 1fr; gap: 36px; }
  .nl-social { align-items: flex-start; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline-light, .nav-cta .btn-outline-dark { display: none; }
  .nav-cta .btn { white-space: nowrap; font-size: 14px; padding: 11px 18px; }
  .nav-logo img { height: 42px; }
  .focus-grid, .archive-grid, .photo-strip { grid-template-columns: 1fr; }
  .hero-inner { padding: 120px 0 70px; }
  .newsletter-card { padding: 40px 28px; }
  .builtin-card { padding: 36px 28px; }
  section { padding: 56px 0; }
}


/* ===== Green London-style hero (preview) ===== */
.hero-green { background: var(--slate); color: var(--cream); text-align: center; padding: 108px 0 150px; position: relative; }
.hero-green .container { max-width: 1180px; }
.hero-green .proof-pill { background: rgba(244,239,228,.12); border: 1px solid rgba(244,239,228,.35); color: var(--cream); }
.hero-green .eyebrow { font-size: 13px; letter-spacing: .26em; text-transform: uppercase; color: #d4af55; font-weight: 600; margin-bottom: 18px; }
.hero-green h1 { font-family: var(--font-head); font-size: clamp(30px, 4.2vw, 56px); font-weight: 600; line-height: 1.12; color: #ffffff; margin: 10px 0 24px; }
.hero-green h1 em { font-style: italic; color: #efefc4; }
.hero-green .hero-lead { max-width: 660px; margin: 0 auto 36px; font-size: 18px; line-height: 1.6; color: rgba(244,239,228,.9); }
.btn-clay { background: var(--gold); color: var(--teal-deep); }
.btn-clay:hover { background: var(--clay-dark); }
.popout { position: relative; width: min(860px, 92vw); margin: 80px auto -130px; z-index: 3; }
.popout .frame { position: relative; width: 100%; aspect-ratio: 1672 / 722; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.34); }
.popout .frame .bg { position: absolute; left: 0; top: -30.33%; width: 100%; display: block; }
.popout .cutout { position: absolute; left: 0; top: -30.33%; width: 100%; display: block; z-index: 2; pointer-events: none; filter: drop-shadow(0 14px 18px rgba(0,0,0,.32)); }
.hero-green + section { padding-top: 200px; }
@media (max-width: 640px){
  .hero-green { padding: 92px 0 96px; }
  .hero-green h1 { font-size: 30px; line-height: 1.15; }
  .hero-green .hero-lead { font-size: 16px; }
  .hero-green .eyebrow { font-size: 11.5px; letter-spacing: .2em; }
  .popout { margin: 30px auto 0; width: 86vw; }
  .popout .frame { aspect-ratio: 4 / 5; }
  .popout .frame .bg { position: absolute; inset: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: 57% 14%; }
  .popout .cutout { display: none; }
  .hero-green + section { padding-top: 64px; }
}


/* hero headline one-line-per-sentence on desktop */
@media (min-width: 760px){ .hero-green h1 { white-space: nowrap; } }
/* focus card button on teal */
.focus-card .btn-outline-dark { color: #fff; border-color: rgba(255,255,255,.6); }
.focus-card .btn-outline-dark:hover { background: #fff; color: var(--teal-deep); border-color: #fff; }


/* As Seen On row */
.seenon-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; text-align: center; }
.seenon { background: var(--white); border: 0.5px solid rgba(19,75,89,.14); border-radius: var(--radius-lg); overflow: hidden; }
.seenon img { width: 100%; height: 230px; object-fit: cover; object-position: 50% 26%; display: block; }
.seenon-name { font-family: var(--font-head); font-size: 23px; color: var(--teal-deep); margin: 22px 22px 6px; line-height: 1.15; }
.seenon-host { color: var(--gray); font-size: 14.5px; margin: 0 22px 26px; }
@media (max-width: 760px){ .seenon-row { grid-template-columns: 1fr; } }

/* Newsletter subscriber proof */
.nl-proof { color: var(--gold); font-weight: 600; font-size: 16px; letter-spacing: .03em; margin: -6px 0 22px; }

/* As Seen On — clickable podcast card */
a.seenon-link { display: block; color: inherit; text-decoration: none; transition: transform .2s, box-shadow .2s; }
a.seenon-link:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(40,60,45,.12); }
.seenon-imgwrap { position: relative; line-height: 0; }
.seenon-imgwrap .play-badge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.seenon-imgwrap .play-badge svg { width: 30px; height: 30px; fill: #fff; }
.seenon-imgwrap .play-badge::before { content: ""; position: absolute; width: 64px; height: 64px; border-radius: 50%; background: rgba(19,75,89,.82); }
.seenon-imgwrap .play-badge svg { position: relative; z-index: 1; margin-left: 3px; }
a.seenon-link:hover .play-badge::before { background: var(--gold); }


/* See more podcast appearances */
.more-appearances { text-align: center; margin-top: 30px; }
.more-appearances summary { display: inline-block; cursor: pointer; list-style: none; background: var(--teal-deep); color: #fff; padding: 11px 28px; border-radius: var(--radius-pill); font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.more-appearances summary::-webkit-details-marker { display: none; }
.more-appearances summary::after { content: " ▾"; }
.more-appearances[open] summary::after { content: " ▴"; }
.more-appearances[open] summary { background: var(--slate-dark); }
.appearance-list { list-style: none; max-width: 640px; margin: 22px auto 0; text-align: left; }
.appearance-list li { border-bottom: 0.5px solid rgba(19,75,89,.14); }
.appearance-list a { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 15px 6px; color: var(--ink); }
.appearance-list a:hover { color: var(--teal-deep); }
.appearance-list .ap-name { font-weight: 500; }
.appearance-list .ap-date { color: var(--gray); font-size: 14px; white-space: nowrap; }
