/* ============================================
   Lush Marketing — design tokens
   ============================================ */
:root {
  --hero-blue: #175FA0;
  --magenta: #E31C79;
  --violet: #6B2E8C;
  --marigold: #F4B400;
  --near-black: #0B0B0C;
  --paper: #FBF6EF;
  --ink: #14213D;
  --ink-soft: #4A5570;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.05; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--marigold); color: var(--near-black);
  padding: .75rem 1.25rem; z-index: 999; font-weight: 600;
}
.skip-link:focus { left: var(--pad); top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 3px;
}

/* ============================================
   Buttons
   ============================================ */
.button {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button--marigold {
  background: var(--marigold);
  color: var(--near-black);
}
.button--marigold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(244,180,0,.35); }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(251,246,239,.92);
  backdrop-filter: blur(8px);
  padding: .6rem 0;
  box-shadow: 0 1px 0 rgba(20,33,61,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand img { border-radius: 8px; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); font-weight: 600; font-size: .95rem; }
.site-nav a { text-decoration: none; color: #fff; margin-left: clamp(1rem, 2vw, 2rem); }
.site-nav a:first-child { margin-left: 0; }
.site-header.is-scrolled .site-nav a { color: var(--ink); }
.site-nav a:hover { color: var(--marigold); }
.site-header.is-scrolled .site-nav a:hover { color: var(--magenta); }
.nav-cta {
  background: var(--marigold);
  color: var(--near-black) !important;
  padding: .55rem 1.15rem;
  border-radius: 999px;
}
@media (max-width: 640px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--hero-blue);
  color: #fff;
  overflow: hidden;
  padding: clamp(7.5rem, 16vw, 11rem) 0 clamp(5rem, 10vw, 7rem);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.hero-copy { max-width: 46rem; }
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.hero-subhead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 34rem;
  color: rgba(255,255,255,.88);
}
.hero .button { margin-top: 2.2rem; }
.hero-logo-sticker {
  width: clamp(120px, 14vw, 200px);
  transform: rotate(-7deg);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.25));
  justify-self: end;
}
.hero-blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-blob--one {
  width: clamp(220px, 30vw, 420px);
  left: -6%;
  bottom: -12%;
  opacity: .9;
}
.hero-blob--two {
  width: clamp(160px, 20vw, 280px);
  right: 6%;
  bottom: -4%;
  opacity: .5;
  transform: rotate(8deg);
}
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-sticker { justify-self: start; width: 110px; margin-top: .5rem; }
}

/* ============================================
   Section intro label (sentence case, not shouty)
   ============================================ */
.section-intro {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--magenta);
  margin: 0 0 .5rem;
}

/* ============================================
   Pillars — speech-bubble trio
   ============================================ */
.pillars {
  background: var(--paper);
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(5.5rem, 9vw, 8rem);
}
.bubble-row {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.bubble {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 30px 30px 30px 6px;
  padding: 1.9rem 1.7rem 2.1rem;
  position: relative;
}
.bubble--one { transform: translateY(0); }
.bubble--two { transform: translateY(clamp(0px, 4vw, 2.75rem)); }
.bubble--three { transform: translateY(clamp(0px, -1vw, -0.5rem)); }
.bubble img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 1.1rem;
  border: 3px solid var(--paper);
  outline: 2px solid var(--ink);
}
.bubble h3 {
  font-size: 1.5rem;
  margin-bottom: .6rem;
}
.bubble--one h3 { color: var(--magenta); }
.bubble--two h3 { color: var(--violet); }
.bubble--three h3 { color: var(--hero-blue); }
.bubble p { color: var(--ink-soft); font-size: .98rem; }

@media (max-width: 820px) {
  .bubble-row { grid-template-columns: 1fr; }
  .bubble--one, .bubble--two, .bubble--three { transform: none; }
}

/* ============================================
   Approach — dark full-bleed
   ============================================ */
.approach {
  background:
    linear-gradient(155deg, rgba(11,11,12,.88), rgba(16,26,50,.94)),
    var(--near-black);
  color: #fff;
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.approach h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  color: var(--marigold);
}
.approach-body {
  margin-top: 2rem;
  max-width: 62ch;
}
.approach-body .lead {
  font-size: 1.2rem;
  color: #fff;
}
.approach-body p:not(.lead) {
  color: rgba(255,255,255,.78);
}
.approach-body p { font-size: 1.05rem; margin-bottom: 1.2em; }

/* ============================================
   About
   ============================================ */
.about {
  background: var(--near-black);
  color: #fff;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.about-inner {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about-media img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 546/820;
  object-fit: cover;
  object-position: top center;
}
.about-copy h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1.1rem; }
.about-copy > p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--marigold);
  margin: 1.6rem 0 1.8rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--magenta);
  line-height: 1.3;
}
.about-paragraphs p { color: rgba(255,255,255,.72); font-size: 1rem; }

@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 260px; }
}

/* ============================================
   Contact
   ============================================ */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--magenta);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: left;
}
.contact-inner { position: relative; z-index: 2; max-width: 42rem; }
.contact h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.1rem; }
.contact p { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 36ch; }
.contact-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
}
.contact-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  text-decoration: none;
  border-bottom: 3px solid var(--marigold);
  padding-bottom: .1rem;
}
.contact-links a:hover { color: var(--marigold); }
.contact-squiggle {
  position: absolute; z-index: 1;
  width: clamp(140px, 16vw, 220px);
  right: 8%;
  top: 10%;
  opacity: .85;
}
.contact-ring {
  position: absolute; z-index: 1;
  width: clamp(220px, 28vw, 380px);
  right: -4%;
  bottom: -18%;
  opacity: .28;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 1.6rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .88rem;
}
.footer-inner img { border-radius: 6px; }
.footer-inner p { margin: 0; }

/* ============================================
   Content loading state
   ============================================ */
.skeleton-text { transition: opacity .3s ease; }
body.content-loading .skeleton-text { opacity: .55; }
