:root {
  --teal: #1A7068;
  --teal-dark: #0D6B63;
  --teal-tint: #E6F2F1;
  --copper: #A0674A;
  --rose-copper: #C49070;
  --deep-copper: #9B6240;
  --linen: #F5F0E8;
  --warm-white: #FAF8F4;
  --deep-forest: #1A2A28;
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--deep-forest);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--deep-forest);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--teal-dark); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

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

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

/* Header */
header.site {
  background: var(--warm-white);
  border-bottom: 1px solid var(--teal-tint);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
  flex-wrap: wrap;
}
header.site .logo img { height: 34px; width: auto; }
header.site nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
header.site nav a {
  color: var(--deep-forest);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
header.site nav a:hover { color: var(--teal-dark); }
header.site nav a.external::after {
  content: " ↗";
  font-size: 12px;
}
header.site nav a.lang-switch {
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 6px 14px;
  min-height: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}
header.site nav a.lang-switch:hover { background: var(--teal-tint); }
@media (max-width: 600px) {
  header.site nav { gap: 14px 18px; }
  header.site nav a { font-size: 14px; min-height: 40px; }
  header.site nav a.btn { padding: 10px 18px; font-size: 14px; }
}

.feed-note {
  font-size: 14px;
  color: #5c6864;
  margin: -16px 0 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--teal-dark); color: var(--warm-white); }
.btn.secondary {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal);
}
.btn.secondary:hover { background: var(--teal-tint); }

/* Hero */
.hero {
  background: var(--linen);
  padding: 72px 0 56px;
}
.wrap.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-portrait {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  justify-self: end;
}
@media (max-width: 760px) {
  .wrap.split { grid-template-columns: 1fr; gap: 28px; }
  .hero-portrait { max-width: 260px; justify-self: start; }
}
.wrap.narrow { max-width: 760px; }
.hero .display {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 14ch;
}
.hero p.lede {
  font-size: 19px;
  max-width: 56ch;
  color: #2c3d3a;
}
.hero .cta-row {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.byline {
  margin-top: 40px;
  font-size: 14px;
  color: #4a5854;
  border-top: 1px solid #e2dccf;
  padding-top: 20px;
  max-width: 56ch;
}

/* Section: workshops teaser */
.section {
  padding: 64px 0;
}
.section.tint { background: var(--teal-tint); }
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.section .display { font-size: clamp(28px, 4vw, 38px); }
.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) {
  .section-grid { grid-template-columns: 1fr; }
}

/* Newsletter cards */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .issues-grid { grid-template-columns: 1fr; }
}
.issue-card {
  background: var(--warm-white);
  border: 1px solid var(--teal-tint);
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  display: block;
  color: var(--deep-forest);
}
.issue-card:hover { border-color: var(--teal); }
.issue-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  background: var(--teal-tint);
}
.issue-card .tag {
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.issue-card h3 { font-size: 20px; margin: 8px 0 6px; }
.issue-card .meta { font-size: 13px; color: #6b7672; }

/* Workshop cards (workshops.html) */
.workshops-hero {
  background: var(--linen);
  padding: 56px 0 40px;
  text-align: center;
}
.workshops-hero .display { font-size: clamp(32px, 5vw, 44px); }

.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 48px 0 72px;
}
@media (max-width: 820px) {
  .workshop-grid { grid-template-columns: 1fr; }
}
.workshop-card {
  background: var(--warm-white);
  border: 1px solid var(--teal-tint);
  border-radius: 16px;
  overflow: hidden;
}
.workshop-photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--teal-tint), var(--linen));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 14px;
  text-align: center;
  padding: 24px;
  border-bottom: 1px solid var(--teal-tint);
}
.workshop-body { padding: 28px 28px 32px; }
.workshop-card h2 { font-size: 26px; margin-bottom: 4px; }
.workshop-card .subhead {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
}
.workshop-card h4 {
  font-family: 'DM Sans', sans-serif;
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 22px 0 6px;
}
.workshop-card p { font-size: 15px; }
.workshop-card .btn { margin-top: 22px; width: 100%; }

.workshop-scene {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  justify-self: end;
}
@media (max-width: 760px) {
  .workshop-scene { max-width: 300px; justify-self: start; margin-top: 8px; }
}

/* Program page (AI Ready Teams) */
.prog-hero .display { max-width: 22ch; }
.section .display.sub { margin-top: 40px; }
.pill {
  display: inline-block;
  background: var(--teal-tint);
  color: var(--teal-dark);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
}
.steps { margin-top: 8px; }
.step {
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 24px;
  margin-bottom: 36px;
}
.step:last-child { margin-bottom: 0; }
.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.levels {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.levels li {
  background: var(--warm-white);
  border: 1px solid #e2dccf;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
}
.levels li strong { color: var(--teal-dark); font-weight: 500; }
.faq details {
  border-bottom: 1px solid #e2dccf;
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--teal);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: #2c3d3a; }

/* Legal pages */
.legal .display { font-size: 26px; margin-top: 36px; }
.legal .display:first-child { margin-top: 0; }
.legal ul { padding-left: 22px; margin: 0 0 1em; }
.legal li { margin-bottom: 6px; }

/* Subscribe embed section */
#subscribe { scroll-margin-top: 90px; }
#subscribe .lede,
#subscribe p { max-width: 48ch; margin-left: auto; margin-right: auto; }
.subscribe-embed { margin-top: 28px; }

/* Footer */
footer.site {
  background: var(--deep-forest);
  color: var(--warm-white);
  padding: 48px 0 32px;
  margin-top: 0;
}
footer.site .display { color: var(--warm-white); font-size: 26px; }
footer.site a { color: var(--rose-copper); }
footer.site .foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
  font-size: 14px;
}
footer.site .foot-links a { color: var(--warm-white); text-decoration: none; }
footer.site .foot-links a:hover { color: var(--rose-copper); }
footer.site .copyright {
  font-size: 13px;
  color: #9fb0ac;
  border-top: 1px solid #2a3d39;
  padding-top: 20px;
  margin-top: 20px;
}
