:root {
  --bg: #f4ede4;
  --paper: #eadcca;
  --paper-2: #f2c2cf;
  --paper-3: #4e6687;
  --red: #d83a2f;
  --red-deep: #c92d24;
  --black: #121212;
  --white: #ffffff;
  --line: rgba(18,18,18,0.12);
  --container: min(1180px, calc(100% - 52px));
  --shadow: 10px 10px 0 rgba(78,102,135,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--black);
  font-family: "Archivo", system-ui, sans-serif;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(rgba(0,0,0,0.18) 0.7px, transparent 0.7px);
  background-size: 12px 12px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; position: relative; }
.section { padding: 42px 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 99;
  background: var(--red);
  color: var(--white);
  padding: 10px 12px;
}
.skip-link:focus { left: 12px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244,237,228,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(18,18,18,0.08);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}
.brand-star { color: var(--red); font-size: 34px; line-height: 1; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 46px;
  height: 46px;
  padding: 0;
}
.menu-toggle span { display:block; width:24px; height:2px; background:var(--black); margin:5px auto; }

.paint-title {
  font-family: "Knewave", "Permanent Marker", cursive;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}
.hero { padding-top: 26px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}
.hero-title {
  margin: 0 0 24px;
  font-size: clamp(42px, 6.4vw, 88px);
  color: var(--red);
}
.hero-copy { padding-top: 20px; }
.hero-text { display: grid; gap: 16px; max-width: 600px; }
.hero-text p {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 23px);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.mark { color: var(--red); line-height: 1.1; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  margin-top: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(18,18,18,0.08);
}
.button:hover,
.button:focus-visible { background: var(--red-deep); }
.micro-note {
  margin-top: 12px;
  font-size: 13px;
  text-transform: lowercase;
  letter-spacing: 0.03em;
}
.micro-note span { color: var(--red); }
.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,0.08);
  min-height: 620px;
  background: #ded6cb;
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 18px;
  width: 62px;
  height: 14px;
  background: rgba(184, 160, 131, 0.7);
  transform: rotate(-12deg);
  z-index: 2;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 26px;
  align-items: start;
}
.intro-copy h2,
.section-title h2,
.features-intro h2,
.behind-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.06;
}
.intro-copy p,
.features-intro p,
.feature-card p,
.mini-card li,
.behind-copy p,
.audience-grid p,
.membership-columns li,
.join-copy p,
.site-footer p,
.site-footer small { font-size: 18px; }
.paper-note {
  display: inline-block;
  margin-top: 20px;
  background: var(--paper);
  padding: 18px 20px;
  box-shadow: 0 8px 14px rgba(18,18,18,0.08);
  transform: rotate(-2deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 33px;
  line-height: 1.05;
}
.paper-note.small {
  position: absolute;
  right: -14px;
  bottom: 22px;
  max-width: 250px;
  font-size: 29px;
}
.mini-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}
.mini-card.positive { background: rgba(242,194,207,0.45); }
.mini-card h3 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1;
}
.mini-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.mini-card li { position: relative; padding-left: 20px; }
.mini-card li::before { content: "×"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 800; }
.mini-card.positive li::before { content: "✓"; }

.band { padding: 34px 0; }
.band-red { background: linear-gradient(180deg, var(--red), var(--red-deep)); color: var(--white); }
.band-pink { background: linear-gradient(180deg, #efbac7, #f4ccd6); }
.band-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.band-content.centered { grid-template-columns: auto 1fr; }
.band-icon { font-size: 40px; color: var(--white); }
.band-icon.dark { color: var(--black); }
.band-title {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 84px);
  color: var(--red);
}
.band-title.light { color: var(--white); }
.band-side-note {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.02;
}

.audience-wrap { position: relative; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  max-width: 960px;
}
.audience-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.audience-grid article span {
  color: var(--red);
  font-size: 26px;
  font-weight: 800;
}
.audience-grid p { margin: 0; }
.sticky-note {
  position: absolute;
  right: 0;
  top: 100px;
  width: 180px;
  padding: 20px 18px;
  background: var(--paper-2);
  box-shadow: 8px 8px 0 rgba(18,18,18,0.08);
  transform: rotate(-4deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.features-intro,
.feature-card {
  min-height: 208px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-intro { grid-row: span 3; }
.features-intro .scribble-note {
  margin-top: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1.02;
}
.feature-card h3 { margin: 0 0 10px; font-size: 26px; line-height: 1.1; }
.feature-card p { margin: 0; }

.behind-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.behind-photo { position: relative; }
.portrait-frame {
  max-width: 500px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #111;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1);
}
.eyebrow { margin: 0 0 8px; color: var(--red); font-weight: 700; }
.behind-copy blockquote {
  margin: 24px 0 0;
  color: var(--paper-3);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.02;
}

.join-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 32px;
  align-items: center;
}
.join-title {
  margin: 0 0 18px;
  font-size: clamp(36px, 4.1vw, 72px);
  color: var(--red);
}
.membership-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.membership-tag {
  position: absolute;
  top: -18px;
  left: 22px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.membership-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 34px;
  padding: 42px 24px 22px;
}
.membership-columns ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.membership-columns li { position: relative; padding-left: 20px; }
.membership-columns li::before { content: "✓"; position:absolute; left:0; top:0; color: var(--red); font-weight: 900; }
.membership-ribbon {
  display: block;
  margin: 0 24px 24px;
  background: var(--paper-3);
  color: var(--white);
  padding: 18px 24px;
  text-align: center;
  border-radius: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 34px 0 40px;
}
.footer-inner h2 {
  margin: 0 0 12px;
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.93;
}
.site-footer p, .site-footer small { margin: 0; display: block; }
.site-footer p { font-size: 21px; }
.site-footer small { margin-top: 8px; font-size: 18px; opacity: 0.9; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .behind-grid,
  .join-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-intro { grid-row: auto; grid-column: span 2; }
  .sticky-note { position: static; margin-top: 24px; }
  .paper-note.small { position: static; max-width: 320px; margin-top: 20px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: min(320px, calc(100vw - 48px));
    padding: 16px;
    background: rgba(244,237,228,0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(18,18,18,0.08);
  }
  .main-nav.is-open { display: flex; }
  .hero-photo-frame { min-height: 520px; }
  .band-content,
  .band-content.centered,
  .membership-columns,
  .audience-grid,
  .features-grid { grid-template-columns: 1fr; }
  .features-intro { grid-column: auto; }
  .band-content { gap: 14px; text-align: center; }
  .band-side-note { font-size: 26px; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 28px 0; }
  .brand-copy strong { font-size: 12px; }
  .brand-star { font-size: 30px; }
  .hero-title { font-size: clamp(34px, 13vw, 58px); }
  .hero-text p,
  .intro-copy p,
  .features-intro p,
  .feature-card p,
  .mini-card li,
  .behind-copy p,
  .audience-grid p,
  .membership-columns li,
  .join-copy p,
  .site-footer p,
  .site-footer small { font-size: 16px; }
  .intro-copy h2,
  .section-title h2,
  .features-intro h2,
  .behind-copy h2 { font-size: clamp(28px, 8vw, 42px); }
  .paper-note,
  .paper-note.small,
  .sticky-note,
  .scribble-note,
  .band-side-note,
  .membership-ribbon,
  .behind-copy blockquote { font-size: 25px !important; }
  .mini-card h3 { font-size: 30px; }
  .feature-card h3 { font-size: 22px; }
  .audience-grid article span { font-size: 22px; }
  .hero-photo-frame { min-height: 420px; }
  .button { width: 100%; }
  .footer-inner h2 { font-size: clamp(44px, 14vw, 70px); }
}

/* V5: Founding Circle + conversa individual */
.hero-ctas {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: 24px;
}
.hero-ctas .button { margin-top: 0; }
.secondary-link {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 3px;
}
.secondary-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.2s ease;
}
.secondary-link:hover::after,
.secondary-link:focus-visible::after { transform: scaleX(0.45); }

.mentoring {
  background: rgba(78, 102, 135, 0.08);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mentoring-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}
.mentoring-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.06;
}
.mentoring-copy p,
.mentoring-card li,
.membership-note { font-size: 18px; }
.button-dark {
  background: var(--black);
  color: var(--white);
}
.button-dark:hover,
.button-dark:focus-visible { background: #2b2b2b; }
.mentoring-card {
  position: relative;
  padding: 34px 30px 28px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.mentoring-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}
.mentoring-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.mentoring-card li {
  position: relative;
  padding-left: 22px;
}
.mentoring-card li::before {
  content: "✳";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-size: 13px;
}

.circle-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-top: 22px;
}
.circle-meta strong {
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 5vw, 78px);
  line-height: 0.9;
}
.circle-meta span {
  font-weight: 700;
  font-size: 17px;
}
.membership-note {
  margin: -4px 24px 24px;
  color: rgba(18,18,18,0.72);
}

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

@media (max-width: 640px) {
  .hero-ctas { justify-items: stretch; }
  .secondary-link { text-align: center; }
  .mentoring-copy p,
  .mentoring-card li,
  .membership-note { font-size: 16px; }
  .mentoring-copy h2 { font-size: clamp(28px, 8vw, 42px); }
  .mentoring-label { font-size: 28px; }
  .mentoring-card { padding: 28px 22px 24px; }
  .circle-meta { display: grid; gap: 8px; }
  .circle-meta strong { font-size: 56px; }
}
