
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;600;700&display=swap');

:root{
  --bg-ink: #0a0620;
  --ink: #101027;
  --muted: #5a5a78;
  --white: #ffffff;
  --card: rgba(255,255,255,0.92);
  --glass: rgba(255,255,255,0.12);
  --stroke: rgba(255,255,255,0.18);
  --shadow: 0 18px 50px rgba(10, 10, 30, 0.22);
  --shadow-2: 0 14px 28px rgba(10, 10, 30, 0.18);
  --radius: 18px;
  --radius-2: 24px;
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  /* Persistently visible on all sections */
  background: rgba(0,0,0,1);
  backdrop-filter: blur(14px);
  /* border-bottom: 1px solid rgba(255,255,255,0.12); */ /*removed as test */
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}
/* Darken slightly once scrolling begins */
.site-header.is-scrolled{
  /*background: rgba(0,0,0,0.92);
  border-bottom-color: rgba(255,255,255,0.16);*/
}
.site-header.is-hidden{
  transform: translateY(-110%);
}

.site-header.is-scrolled{
  /*background: rgba(0,0,0,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.10);*/
}

.header-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  display:flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
}
.brand .name{
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 18px;
}
.brand .tag{
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 16px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 13px;
}
.nav a{
  padding: 8px 8px;
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}
.nav a:hover{
  background: rgba(255,255,255,0.12);
}
.nav a.active{
  /*background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);*/
}

.nav-toggle{
  display:none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 700;
}

/* Hero */
.hero{
  position: relative;
  color: #fff;
  overflow:hidden;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(54,74,255,0.9), transparent 60%),
              radial-gradient(900px 600px at 80% 40%, rgba(255,70,210,0.85), transparent 65%),
              linear-gradient(135deg, #0b0630 0%, #1d0b54 30%, #7b1ad4 70%, #ff51d2 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("../img/hero-gradient.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.20;
  mix-blend-mode: screen;
  pointer-events:none;
}
.hero-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 116px 18px 74px;
  position: relative;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items:center;
}

.hero h1{
  margin: 0 0 6px;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.1px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}
.hero h2{
  margin: 0 0 14px;
  font-weight: 600;
  font-size: clamp(18px, 2.6vw, 26px);
  color: rgba(255,255,255,0.92);
}
.hero p{
  margin: 0;
  color: rgba(255,255,255,0.86);
  max-width: 58ch;
}
.hero-cta{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.16); }
.btn.primary{
  background: rgba(255,255,255,0.92);
  color: #1a1241;
  border-color: transparent;
}
.btn.primary:hover{ background: #fff; }

.hero-art{
  position: relative;
  min-height: 260px;
}
.hero-art .dandelion{
  position:absolute;
  left: clamp(-10px, -2vw, 0px);
  bottom: -10px;
  width: min(520px, 92%);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  opacity: 0.92;
}

/* Main content */
.section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 18px;

}
.kicker{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #6b63c9;
  margin: 30px 0 10px 0;
}
.section h3{
  margin: 0 0 16px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
}
.lead ul li{
  color: var(--muted);
  max-width: 70ch;
}

/* Ways of working cards */
.cards{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card{
  background: var(--card);
  border-radius: var(--radius-2);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 10, 60, 0.10);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(10, 10, 30, 0.28);
}
.card-media{
  position: relative;
  height: 150px;
  overflow:hidden;
}
.card-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.03);
}
.card-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.00) 10%, rgba(0,0,0,0.36) 100%);
}
.card-media .media-label{
  position:absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 12px 24px rgba(0,0,0,0.45);
  font-size: 16px;
}
.card-body{
  padding: 16px 16px 18px;
}
.card-body p{
  margin: 8px 0 0;
  color: #3e3a63;
  font-size: 14px;
}
.card .pill{
  display:inline-flex;
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(110, 74, 255, 0.10);
  border: 1px solid rgba(110, 74, 255, 0.22);
  color: #3a2bb7;
  font-weight: 800;
  font-size: 13px;
}
/* Tablet / small screens: 2x2 grid */
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: single column */
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
/* Purple section */
.band{
  background: linear-gradient(160deg, #4b1aa5 0%, #7a18c8 45%, #b21de0 100%);
  color: #fff;
  padding: 62px 0 72px;
}
.band .section{
  padding: 0 18px;
}
.band p{
  color: rgba(255,255,255,0.88);
  max-width: 82ch;
}

/* Footer */
.footer{
  padding: 28px 18px;
  border-top: 1px solid rgba(20,10,60,0.10);
  color: #5b5877;
}
.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
    padding: 104px 18px 86px;
  }
  .hero-art{
    min-height: 20px; /* change to 220 px if dandelion wanted on mobile */
  }
  .hero-art .dandelion{
    display: none; /* change this to display:visible to get dandelion on mobile devices */
    position: relative;
    left: 0;
    bottom: 0;
    width: min(520px, 100%);
    margin: 10px auto 0;
  }
  .cards{
    grid-template-columns: 1fr;
  }
  .card-media{ height: 180px; }
  .nav{
    position: fixed;
    top: 62px;
    right: 14px;
    left: 14px;
    background: rgba(10,6,32,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 12px;
    display:none;
    flex-direction: column;
    gap: 6px;
  }
  .nav.open{ display:flex; }
  .nav a{ width:100%; }
  .nav-toggle{ display:inline-flex; }
}
/* Wave to white (responsive SVG) */
.hero{ 
  --wave-h: clamp(120px, 16vw, 210px);
}
.hero-inner{
  position:relative;
  padding-bottom: calc(74px + var(--wave-h));
}
.wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  width:100%;
  height: var(--wave-h);
  pointer-events:none;
}
.wave path{ fill: #fff; }

/* Reflective blockquote with feature quotation marks */

blockquote.reflective {
  position: relative;
  margin: 36px 0;
  padding: 28px 34px 26px 44px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(110, 74, 255, 0.08),
    rgba(255, 255, 255, 0.9)
  );
  border-left: 4px solid rgba(110, 74, 255, 0.6);
  box-shadow: 0 18px 42px rgba(10, 10, 30, 0.14);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #2a2555;
}

/* Opening quote */
blockquote.reflective::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 14px;
  font-size: 88px;
  line-height: 1;
  font-family: Fraunces, Georgia, serif;
  color: rgba(110, 74, 255, 0.28);
  text-shadow: 0 6px 18px rgba(110, 74, 255, 0.25);
  pointer-events: none;
}

/* Closing quote */
blockquote.reflective::after {
  content: "”";
  position: absolute;
  bottom: -28px;
  right: 18px;
  font-size: 88px;
  line-height: 1;
  font-family: Fraunces, Georgia, serif;
  color: rgba(110, 74, 255, 0.22);
  text-shadow: 0 6px 18px rgba(110, 74, 255, 0.22);
  pointer-events: none;
}

/* Attribution */
blockquote.reflective cite {
  display: block;
  margin-top: 14px;
  font-family: Manrope, system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: #5b57a6;
  letter-spacing: 0.03em;
}

/* Dark background (purple band) */
.band blockquote.reflective {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.band blockquote.reflective::before,
.band blockquote.reflective::after {
  color: rgba(255, 255, 255, 0.35);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.band blockquote.reflective cite {
  color: rgba(255, 255, 255, 0.85);
}

/* Mobile tuning */
@media (max-width: 600px) {
  blockquote.reflective {
    padding: 22px 22px 22px 30px;
    font-size: 1rem;
  }

  blockquote.reflective::before,
  blockquote.reflective::after {
    font-size: 64px;
  }

  blockquote.reflective::before {
    top: -12px;
    left: 8px;
  }

  blockquote.reflective::after {
    bottom: -20px;
    right: 10px;
  }
}
.nav a {
  position: relative;
}

.nav a.active {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
}

Black arrow at bottom of header
.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -23px; 
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #000000;
  pointer-events: none;
}

/* Mobile: remove arrow (stacked menu) */
@media (max-width: 900px) {
  .nav a.active::after {
    display: none;
  }
}

/* Footer rows + icons */

.footer-inner {
  flex-direction: column;
  align-items: stretch;
}

/* Primary text row */

.footer-row-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Mobile: stack + centre */

@media (max-width: 700px) {
  .footer-row-primary {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }
   .footer-row-secondary {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
/* Icons row */
/* Second footer row: fixed max height and centred contents */
.footer-row-icons {
  margin-top: 14px;
  height: 80px;
  max-height: 80px;
  display: flex;
  align-items: center;       /* vertical centre */
  justify-content: flex-end; /* right align on desktop */
  overflow: hidden;          /* keeps the row at 80px */
}

/* Icon container */
.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;   /* keeps the group visually centred within its own width */
  gap: 16px;
}

/* Links expand to content */
.footer-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;         /* gives a nice hit-area without forcing a square */
  border-radius: 10px;
  background: rgba(0,0,0,0);
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

/* Icon sizing (controls height while allowing varying widths) */
.footer-icons img {
  height: 60px;
  width: auto;
  max-height: 60px;
  display: block;
  opacity: 0.88;
}

/* Hover */
.footer-icons a:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,0);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* Mobile: centre the row and allow wrap (still capped at 60px; keep icons modest) */
@media (max-width: 700px) {
  .footer-row-icons {
    justify-content: center; /* centre the group */
    height: auto; /* added to fix mobile glitch */
    max-height:none;
    overflow: visible;
  }

  .footer-icons {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Band section 2/3 – 1/3 split */

.band-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: center;
}

/* Main band text */
.band-main {
  max-width: 72ch; /* keeps text readable */
}

/* Portrait column */
.band-portrait {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Portrait frame tuned for dark band */
.portrait-frame--band {
  width: 100%;
  max-width: 280px;
  border-radius: 22px;
  overflow: hidden;
  padding: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

/* Inner image */
.portrait-frame--band img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* Mobile: stack */
@media (max-width: 900px) {
  .band-split {
    grid-template-columns: 1fr;
  }

  .band-portrait {
    order: -1; /* show portrait first on mobile (optional) */
    margin-bottom: 12px;
  }

  .portrait-frame--band {
    max-width: 220px;
  }
}

.image-strip {
  margin: 28px 0;
}

.image-strip-inner {
  display: flex;
  justify-content: space-between; /* equal spacing across the width */
  align-items: flex-end;          /* helps differing heights look intentional */
  gap: 18px;
}


/*
  Critical bit: prevent squeezing that would “fake-fit” and
  instead force overflow, then hide the whole section.
*/
.image-strip .framed {
  flex: 0 0 auto;
}


/* Let items shrink to fit the container */
.image-strip .framed {
  flex: 1 1 0;      /* each takes an equal share, and can shrink */
  min-width: 0;     /* critical: allows flex items to actually shrink */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  position: relative; /* bounded box fix */
}

/* Constrain images */
.image-strip img {
  max-height: 100px;  /* your cap */
  max-width: 100%;    /* never exceed the frame width */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.image-strip-panel {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(110, 74, 255, 0.08),
    rgba(255, 255, 255, 0.9)
  );
  border: 1px solid rgba(110, 74, 255, 0.18);
  box-shadow: 0 18px 46px rgba(10, 10, 30, 0.14);
}

/* Inner flex layout */
.image-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

/* Individual glass frames (full-bleed version) */
.image-strip .framed {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;              /* remove inner padding for full bleed */
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 0 solid rgba(20, 10, 60, 0.10); /* removed 1px width */
  box-shadow:
    inset 0 0 0 rgba(255,255,255,0.6), /* remove 1px from second position and replace with 0*/
    0 10px 26px rgba(10, 10, 30, 0.12);
  overflow: hidden;       /* critical for cropping */
  height: 120px;          /* frame height */
  display: flex;
}

/* Images constrained + centred */
.image-strip img {
  max-height: 180px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(0.98) contrast(1.02);
}

.collab {
  max-height: 250px;
}

/* Images now fill and crop to frame */
.image-strip .framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* full bleed crop */
  display: block;
  border-radius: 0;       /* let frame handle rounding */
}
.image-strip .framed::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  pointer-events: none;
}

@media (max-width: 700px) {
  .image-strip-inner {
    flex-direction: column;
    gap: 14px;
  }

  .image-strip .framed {
    width: 100%;
    flex: 0 0 auto;   /* prevent odd stretching */
  }
}
.wave{
  bottom: -3px;              /* was -1px */
  display: block;
  transform: translateY(1px); /* extra nudge for Safari/retina */
}

.wave path{
  stroke: none;
  vector-effect: non-scaling-stroke;
}
/* Make cards flex columns so CTA can sit at the bottom */
.card {
  display: flex;
  flex-direction: column;
}

/* Let media stay at top, body fill remaining space */
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* Push the pill / button to the bottom */
.card .pill {
  margin-top: auto;   /* key line */
  align-self: flex-end; /* keeps it left aligned */
}
.lead ul li{
  color: var(--muted);
  max-width: 70ch;
}
