:root {
  --mustard: #f5b21b;
  --coral: #f4685b;
  --teal: #16b5b0;
  --purple: #7140d8;
  --ink: #1f1f25;
  --muted: #555664;
  --paper: #fffaf2;
  --panel: #ffffff;
  --line: rgba(31, 31, 37, 0.13);
  --shadow: 0 16px 34px rgba(20, 19, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.theme-about {
  background: linear-gradient(180deg, #fff9ef 0%, #fff5f2 100%);
}

.theme-programme {
  background: linear-gradient(180deg, #fff8f0 0%, #f8f5ff 100%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", "Poppins", sans-serif;
  line-height: 1.15;
}

a {
  color: inherit;
}

.social-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social-inline a {
  text-decoration: none;
}

.social-inline a:hover,
.social-inline a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.social-inline svg {
  width: 0.92rem;
  height: 0.92rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-inline svg path {
  fill: currentColor;
  stroke: none;
}

.shell {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header-overlay {
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.site-header-overlay::before {
  content: "";
  display: block;
  height: 10px;
  background-image: repeating-linear-gradient(90deg, var(--mustard) 0 36px, transparent 36px 52px),
    repeating-linear-gradient(90deg, var(--coral) 0 22px, transparent 22px 40px),
    repeating-linear-gradient(90deg, var(--teal) 0 16px, transparent 16px 32px),
    repeating-linear-gradient(90deg, var(--purple) 0 10px, transparent 10px 24px);
  background-blend-mode: multiply;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  width: auto;
  max-width: min(360px, 56vw);
  max-height: 128px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
}

.nav-links a[aria-current="page"] {
  color: var(--purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  filter: brightness(1.02);
}

.btn-mustard {
  background: var(--mustard) !important;
  color: #fff !important;
}

.btn-coral {
  background: var(--coral) !important;
  color: #fff !important;
}

.btn-teal {
  background: var(--teal) !important;
  color: #fff !important;
}

.nav-links .btn,
.hero-actions .btn,
.form-btn,
.newsletter-form .btn {
  border-color: transparent !important;
  text-decoration: none !important;
}

.nav-links a[aria-current="page"].btn {
  color: #fff !important;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero-home {
  min-height: 84svh;
  display: flex;
  align-items: center;
  background-image: url("Artllmcollective.jpg");
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 12, 20, 0.72), rgba(10, 12, 20, 0.22));
  z-index: -1;
}

.hero-content {
  color: #fff;
  padding-block: 6rem 5rem;
}

.hero-content h1 {
  max-width: 880px;
  font-size: clamp(2rem, 4.7vw, 4rem);
}

.hero-content p,
.hero-lead {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-intro p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.liver-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background-image: repeating-linear-gradient(90deg, var(--mustard) 0 36px, transparent 36px 52px),
    repeating-linear-gradient(90deg, var(--coral) 0 22px, transparent 22px 40px),
    repeating-linear-gradient(90deg, var(--teal) 0 16px, transparent 16px 32px),
    repeating-linear-gradient(90deg, var(--purple) 0 10px, transparent 10px 24px);
  background-blend-mode: multiply;
}

.section {
  padding-block: clamp(3.3rem, 7vw, 5.8rem);
}

.home-main {
  position: relative;
  isolation: isolate;
}

.home-main::before {
  content: "";
  position: absolute;
  inset: 58svh 0 auto 0;
  min-height: 420px;
  background-image: linear-gradient(180deg, rgba(255, 250, 242, 0.8) 0%, rgba(255, 250, 242, 0.98) 100%);
  pointer-events: none;
  z-index: -1;
}

.accent-dots {
  position: relative;
}

.accent-dots::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -18px;
  left: -18px;
  z-index: -1;
  border-radius: 50%;
  background-image: radial-gradient(circle at 4px 4px, rgba(113, 64, 216, 0.32) 3px, transparent 3px);
  background-size: 18px 18px;
}

.intro-copy h2,
.highlights-section h2,
.page-header h1,
.split-two h2,
.partners-section h2,
.outcomes-section h2,
.section-intro h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
}

.intro-copy p,
.highlights-section p,
.page-header p,
.split-two p,
.founder-copy p,
.timeline-step span,
.workshop-grid p,
.outcomes-list li,
.contact-side p {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}

.carousel {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
}

.carousel img {
  width: min(310px, 70vw);
  height: 230px;
  object-fit: cover;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}

.cohort-gallery-section {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.cohort-gallery {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
}

.gallery-image {
  width: min(340px, 72vw);
  height: clamp(280px, 34vw, 420px);
  object-fit: cover;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.gallery-image-staircase {
  object-position: center 12%;
}

.gallery-image-session {
  object-position: center center;
}

.gallery-image-collective {
  object-position: center 24%;
}

.gallery-image-team {
  object-position: center 20%;
}

.gallery-image-team-two {
  object-position: center 24%;
}

.gallery-image-team-three {
  object-position: center 22%;
}

.gallery-image-presentation {
  object-position: center 18%;
}

.highlights-section {
  background: linear-gradient(150deg, rgba(245, 178, 27, 0.1), rgba(244, 104, 91, 0.1));
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.partner-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 6px solid var(--teal);
  border-radius: 0.8rem;
  padding: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.site-footer {
  text-align: center;
  padding: 2.6rem 1.2rem 2.9rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.3rem 0;
}

.site-footer small {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--muted);
}

.page-main {
  padding-top: 0.8rem;
}

.page-header {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  padding-inline: clamp(1.2rem, 3vw, 2rem);
}

.theme-about .page-header {
  background: linear-gradient(120deg, rgba(245, 178, 27, 0.16), rgba(244, 104, 91, 0.12));
}

.theme-programme .page-header {
  background: linear-gradient(120deg, rgba(22, 181, 176, 0.14), rgba(113, 64, 216, 0.12));
}

.accent-brush {
  position: relative;
  overflow: hidden;
}

.accent-brush::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -25px;
  width: 180px;
  height: 180px;
  border-radius: 40% 60% 56% 44% / 35% 43% 57% 65%;
  background: linear-gradient(130deg, rgba(244, 104, 91, 0.28), rgba(245, 178, 27, 0.25));
}

.accent-line-top {
  position: relative;
}

.accent-line-top::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.65rem;
  height: 3px;
  background: linear-gradient(90deg, var(--mustard), var(--coral), var(--teal), var(--purple));
  border-radius: 999px;
}

.founder-split {
  display: grid;
  gap: 1.1rem;
}

.founder-panel {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1.2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.theme-about .founder-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 178, 27, 0.09));
}

.founder-visual {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 0.8rem;
}

.founder-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(22, 181, 176, 0.18), rgba(113, 64, 216, 0.2));
  color: #313049;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
}

.badges {
  margin: 0.5rem 0;
  font-weight: 600;
  color: #2a2a38;
}

.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.split-two.single-column {
  grid-template-columns: 1fr;
}

.about-story p {
  max-width: 940px;
}

.about-layout {
  align-items: start;
}

.about-visual-stack {
  display: grid;
  gap: 1rem;
}

.mission-card {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(130deg, rgba(22, 181, 176, 0.14), rgba(245, 178, 27, 0.16));
  padding-inline: clamp(1.2rem, 3vw, 2rem);
}

.mission-card p {
  font-size: 1.1rem;
  color: #222232;
}

.timeline-label {
  margin-bottom: 0.4rem;
}

.testimonial-stack {
  display: grid;
  gap: 0.75rem;
}

.testimonials-layout {
  display: grid;
  gap: 1.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-photo-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.testimonial-photo-card .panel-image {
  min-height: 360px;
  border-radius: 0;
  object-position: center 20%;
}

.testimonial-image {
  aspect-ratio: 4 / 5;
  min-height: 0;
  height: auto;
  object-fit: cover;
}

.testimonial-image-ruth {
  object-position: center top;
}

.testimonial-image-ashley {
  object-position: center 12%;
}

.testimonial-caption {
  padding: 1rem;
}

.testimonial-caption h3 {
  font-size: 1.1rem;
}

.testimonial-caption p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.how-it-works-section {
  border-radius: 1rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(245, 178, 27, 0.08));
  border: 1px solid var(--line);
  padding-inline: clamp(1rem, 2.4vw, 1.8rem);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--coral);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
}

.testimonial-card h3 {
  margin-bottom: 0.3rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

.panel-image {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  min-height: 280px;
}

.partners-section blockquote {
  margin: 1.2rem 0 0;
  padding: 1rem;
  border-left: 5px solid var(--coral);
  background: rgba(244, 104, 91, 0.09);
  border-radius: 0.6rem;
  color: #302f3a;
}

.theme-about .partner-card:nth-child(1) {
  border-left-color: var(--mustard);
}

.theme-about .partner-card:nth-child(2) {
  border-left-color: var(--coral);
}

.theme-about .partner-card:nth-child(3) {
  border-left-color: var(--purple);
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--purple);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
}

.theme-programme .timeline-step:nth-child(odd) {
  border-left-color: var(--coral);
}

.theme-programme .timeline-step:nth-child(even) {
  border-left-color: var(--teal);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
}

.workshop-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid rgba(113, 64, 216, 0.4);
  border-radius: 0.8rem;
  padding: 1rem;
}

.theme-programme .workshop-grid article:nth-child(2n) {
  border-top-color: rgba(22, 181, 176, 0.55);
}

.theme-programme .workshop-grid article:nth-child(3n) {
  border-top-color: rgba(245, 178, 27, 0.6);
}

.theme-programme .outcomes-section {
  border-radius: 1rem;
  padding-inline: clamp(1rem, 2.2vw, 1.8rem);
  background: linear-gradient(140deg, rgba(244, 104, 91, 0.11), rgba(22, 181, 176, 0.12));
  border: 1px solid var(--line);
}

.workshop-grid h3 {
  font-size: 1rem;
}

.outcomes-list {
  padding-left: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.contact-card,
.contact-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.enquiry-form,
.newsletter-form {
  display: grid;
  gap: 0.45rem;
}

.enquiry-form input,
.enquiry-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.68rem 0.78rem;
  font: inherit;
}

.form-btn {
  margin-top: 0.6rem;
  width: fit-content;
}

.newsletter-box {
  margin-top: 1rem;
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
}

.newsletter-box h3 {
  font-size: 1rem;
}

.sponsor-callout {
  border-top-style: solid;
}

@media (max-width: 900px) {
  .nav {
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    padding: 0.65rem 0 0.8rem;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero-home {
    min-height: 74svh;
    background-position: center 20%;
  }

  .hero-content {
    padding-block: 4.5rem 3.5rem;
  }

  .hero-lead {
    max-width: 36rem;
  }

  .highlights-grid,
  .split-two,
  .contact-grid,
  .founder-panel {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image {
    width: min(420px, 82vw);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(1140px, 100% - 1.25rem);
  }

  .site-header-overlay {
    position: sticky !important;
    inset: auto;
  }

  .logo img {
    max-width: min(146px, 42vw);
    max-height: 64px;
  }

  .nav-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    overflow: visible;
  }

  .nav-links li {
    min-width: 0;
  }

  .nav-links li a {
    width: 100%;
    min-height: 2.1rem;
    padding: 0.42rem 0.35rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff !important;
  }

  .nav-links li:nth-child(1) a {
    background: var(--coral) !important;
  }

  .nav-links li:nth-child(2) a {
    background: var(--teal) !important;
  }

  .nav-links li:nth-child(3) a {
    background: var(--mustard) !important;
  }

  .nav-links li:nth-child(4) a {
    background: var(--coral) !important;
  }

  .hero-home {
    min-height: calc(84svh - 96px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 54% 18%;
  }

  .hero-overlay {
    background: linear-gradient(170deg, rgba(10, 12, 20, 0.58), rgba(10, 12, 20, 0.22));
  }

  .hero-content {
    padding-block: 1.4rem 2rem;
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 6.2vw, 2rem);
    line-height: 1.08;
  }

  .hero-content p {
    margin-top: 0.7rem;
    font-size: 0.98rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 2.8rem;
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.55rem;
  }

  .carousel img {
    width: min(280px, 78vw);
    height: 200px;
  }

  .gallery-image {
    width: min(320px, 82vw);
    height: 240px;
    min-height: 240px;
  }

  .testimonial-image {
    min-height: 0;
  }

  .testimonial-caption {
    padding: 0.9rem;
  }

  .testimonial-caption p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .workshop-grid article,
  .timeline-step,
  .mission-card {
    padding: 0.9rem;
  }

  .site-footer {
    padding-inline: 1rem;
  }

  .site-footer .social-inline,
  .contact-side .social-inline,
  .page-header .social-inline {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding-block: 2.2rem;
  }

  .page-main {
    padding-top: 0.35rem;
  }

  .page-header,
  .contact-card,
  .contact-side,
  .founder-panel {
    padding: 0.85rem;
  }
}
