/* ===== Sunday Sauce Studio — sticker-book maximalism ===== */

@font-face {
  font-family: "Bootzy";
  src: url("fonts/BootzyTM.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Feltpen";
  src: url("fonts/Feltpen-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Feltpen";
  src: url("fonts/Feltpen-Medium.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --rust: #9d3f0d;
  --peach: #fbdb9a;
  --cream: #ecebcc;
  --slate: #92b1b7;
  --ink: #141414;
  --paper: #ecebcc;
  --shadow: 6px 6px 0 #141414;
  --shadow-lg: 10px 10px 0 #141414;
  --shadow-sm: 3px 3px 0 #141414;
  --display: "Bootzy", "Bungee Inline", system-ui, sans-serif;
  --hand: "Feltpen", "Caveat", cursive;
  --body: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

/* ---------- Type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.86;
  text-transform: uppercase;
}
.hand {
  font-family: var(--hand);
  font-weight: 600;
  line-height: 1;
}

/* Hollow / outlined text */
.hollow {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.hollow-rust { -webkit-text-stroke-color: var(--rust); }
.hollow-cream { -webkit-text-stroke-color: var(--cream); }

/* ---------- Buttons / pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.pill:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}
.pill.rust { background: var(--rust); color: var(--cream); }
.pill.slate { background: var(--slate); color: var(--ink); }
.pill.peach { background: var(--peach); color: var(--ink); }
.pill.sm { padding: 8px 16px; font-size: 13px; box-shadow: var(--shadow-sm); }
.pill.lg { padding: 20px 36px; font-size: 20px; box-shadow: var(--shadow-lg); }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--rust);
  color: var(--cream);
}
.marquee.peach { background: var(--peach); color: var(--ink); }
.marquee.slate { background: var(--slate); color: var(--ink); }
.marquee.cream { background: var(--cream); color: var(--ink); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
  padding: 16px 0;
  align-items: center;
  gap: 36px;
}
.marquee.fast .marquee-track { animation-duration: 22s; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee-item {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  text-transform: uppercase;
}
.marquee-dot {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: currentColor;
  display: inline-block;
  flex: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Scalloped section dividers ---------- */
.scallop {
  display: block;
  width: 100%;
  height: 36px;
  position: relative;
  z-index: 2;
}
.scallop svg { width: 100%; height: 100%; display: block; }

/* ---------- Sections ---------- */
section { position: relative; }
.bg-cream { background: var(--cream); }
.bg-peach { background: var(--peach); }
.bg-rust { background: var(--rust); color: var(--cream); }
.bg-slate { background: var(--slate); }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ---------- Stickers (decorative, absolutely positioned) ---------- */
.sticker {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(4px 4px 0 #141414);
  will-change: transform;
}
.sticker.tilt-l { transform: rotate(-8deg); }
.sticker.tilt-r { transform: rotate(7deg); }

/* Floating animation – very subtle */
@keyframes float-a {
  0%, 100% { transform: translate(0,0) rotate(var(--rot, 0deg)); }
  50% { transform: translate(0, -10px) rotate(calc(var(--rot, 0deg) + 2deg)); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0,0) rotate(var(--rot, 0deg)); }
  50% { transform: translate(8px, -6px) rotate(calc(var(--rot, 0deg) - 3deg)); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.float-a { animation: float-a 6s ease-in-out infinite; }
.float-b { animation: float-b 7.5s ease-in-out infinite; }
.spin { animation: spin-slow 30s linear infinite; }

/* ---------- Cards ---------- */
.card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
}

/* Wavy/blob photo frame */
.blob-frame {
  position: relative;
  display: inline-block;
}
.blob-frame svg.blob-mask { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

/* ---------- Tape ---------- */
.tape {
  position: absolute;
  width: 100px;
  height: 26px;
  background: rgba(157,63,13,0.5);
  border: 1.5px solid rgba(20,20,20,0.5);
  transform: rotate(-6deg);
  top: -14px; left: 24px;
}

/* ---------- Helpers ---------- */
.center { text-align: center; }
.tag {
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--peach);
  font-family: var(--hand);
  font-weight: 600;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 16px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .dot {
  width: 22px; height: 22px; border-radius: 999px; background: var(--rust);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  display: inline-block;
}
.nav-links {
  display: flex; gap: 8px; align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
}
.nav-links a:hover {
  border-color: var(--ink);
  background: var(--peach);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 72px 0 40px;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(60px, 9.5vw, 156px);
  line-height: 0.82;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.hero h1 .l1 { color: var(--rust); }
.hero h1 .l2 { display: block; color: var(--ink); }
.hero h1 .l3 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}
.hero h1 .l4 { display: block; color: var(--rust); font-style: italic; }
.hero-sub {
  font-family: var(--hand);
  font-size: 26px;
  font-weight: 600;
  margin: 18px 0 28px;
  max-width: 520px;
  line-height: 1.15;
  transform: rotate(-1.5deg);
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 6px;
}

.hero-collage {
  position: relative;
  height: 560px;
}

/* Big tomato stamp */
.stamp {
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  padding: 12px 18px;
  font-family: var(--display);
  text-transform: uppercase;
  background: var(--peach);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 80px 0 100px;
  background: var(--peach);
  position: relative;
  overflow: hidden;
}
.services-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}
.services h2 {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.82;
  margin: 0;
  text-transform: uppercase;
}
.services h2 .accent { color: var(--rust); font-style: italic; }
.services h2 .stroke {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
  display: inline-block;
}
.menu-list { display: grid; gap: 26px; }
.menu-item {
  display: grid;
  grid-template-columns: 80px 1fr 220px 60px;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.2s ease;
}
.menu-item:hover { transform: translate(-3px, -3px) rotate(-0.4deg); }
.menu-item:nth-child(2n) { transform: rotate(0.3deg); }
.menu-item:nth-child(2n):hover { transform: translate(-3px, -3px) rotate(0.7deg); }
.menu-num {
  font-family: var(--display);
  font-size: 56px;
  color: var(--rust);
  -webkit-text-stroke: 1px var(--ink);
  line-height: 1;
}
.menu-title {
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 0.95;
}
.menu-quote {
  font-family: var(--hand);
  font-size: 19px;
  font-weight: 600;
  color: #3a2913;
}
.menu-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.menu-arrow {
  width: 52px; height: 52px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--rust);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}

.menu-item.special {
  background: var(--rust);
  color: var(--cream);
  transform: rotate(-0.6deg);
}
.menu-item.special:hover { transform: translate(-3px,-3px) rotate(-1deg); }
.menu-item.special .menu-num { color: var(--peach); -webkit-text-stroke: 1px var(--cream); }
.menu-item.special .menu-quote { color: var(--peach); }
.menu-item.special .menu-arrow { background: var(--peach); color: var(--ink); }
.menu-item.special .tag { background: var(--cream); }

/* ---------- PILLARS ---------- */
.pillars {
  padding: 100px 0;
  background: var(--rust);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.pillar {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 28px 24px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 320px;
}
.pillar:nth-child(1) { transform: rotate(-2deg); }
.pillar:nth-child(2) { transform: rotate(1.4deg); background: var(--peach); }
.pillar:nth-child(3) { transform: rotate(-1.2deg); background: var(--slate); }
.pillar:nth-child(4) { transform: rotate(2deg); }
.pillar-num {
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.8;
  color: var(--rust);
  -webkit-text-stroke: 1px var(--ink);
  margin-bottom: 8px;
}
.pillar:nth-child(2) .pillar-num,
.pillar:nth-child(3) .pillar-num { color: var(--ink); -webkit-text-stroke: 0; }
.pillar h3 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 0.95;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.pillar p { margin: 0; font-size: 16px; line-height: 1.45; }

.pillars h2 {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.82;
  margin: 0;
  text-transform: uppercase;
}

/* ---------- ABOUT / STORY ---------- */
.story {
  padding: 110px 0 120px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.story-copy h2 {
  font-family: var(--display);
  font-size: clamp(54px, 7.6vw, 112px);
  line-height: 0.86;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.story-copy h2 .stroke {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}
.story-copy h2 .rust { color: var(--rust); }
.story-copy p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 0 18px;
}
.story-copy .pull {
  font-family: var(--hand);
  font-size: 24px;
  font-weight: 600;
  color: var(--rust);
  border-left: 4px solid var(--rust);
  padding: 4px 0 4px 18px;
  margin: 22px 0;
  line-height: 1.2;
  max-width: 480px;
}

.polaroid-stack {
  position: relative;
  width: 100%;
  height: 580px;
}
.polaroid {
  position: absolute;
  background: #fff;
  border: 2.5px solid var(--ink);
  padding: 14px 14px 60px;
  box-shadow: var(--shadow-lg);
}
.polaroid .ph {
  width: 100%; height: 100%;
  background-size: 18px 18px;
  background-image: repeating-linear-gradient(45deg, transparent 0 8px, rgba(20,20,20,0.08) 8px 9px);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.6);
  text-align: center;
  padding: 12px;
}
.polaroid .cap {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  line-height: 1;
}
.polaroid { border-color: #9d3f0d; }
.polaroid.p1 { width: 260px; height: 300px; left: 10px; top: 30px; transform: rotate(-8deg); z-index: 1; background: var(--peach); }
.polaroid.p1 .ph { background: var(--peach); }
.polaroid.p2 { width: 230px; height: 270px; right: 30px; top: 70px; transform: rotate(7deg); z-index: 2; background: var(--cream); }
.polaroid.p2 .ph { background: var(--slate); }
.polaroid.p3 { width: 300px; height: 360px; left: 50%; top: 50%; transform: translate(-50%, -22%) rotate(-2deg); z-index: 5; background: var(--rust); }
.polaroid.p3 .cap { color: var(--cream); }
.polaroid.p3 .ph { background: var(--rust); color: var(--cream); }

/* Blob image frames */
.blob {
  width: 320px; height: 320px;
  background: var(--peach);
  border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* ---------- INTENSIVE SECTION ---------- */
.intensive {
  padding: 100px 0;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.intensive .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.intensive h2 {
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 120px);
  line-height: 0.82;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.intensive h2 .stroke { color: transparent; -webkit-text-stroke: 3px var(--ink); }
.intensive h2 .rust { color: var(--rust); }
.steps { display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  font-size: 16px;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--rust);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 24px;
  border: 2.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}
.step strong { font-family: var(--display); font-size: 22px; text-transform: uppercase; display: block; line-height: 1; margin-bottom: 4px; }

.deliverables {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 28px 30px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.deliverables h3 {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.deliverables ul {
  list-style: none; padding: 0; margin: 0;
}
.deliverables li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 2px dashed rgba(20,20,20,0.3);
  font-size: 15px;
  font-weight: 500;
}
.deliverables li:last-child { border-bottom: 0; }
.deliverables li .check {
  width: 24px; height: 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--rust);
  flex: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
}

/* ---------- VOICE ---------- */
.voice {
  padding: 90px 0 100px;
  background: var(--peach);
  position: relative;
  overflow: hidden;
}
.voice h2 {
  font-family: var(--display);
  font-size: clamp(50px, 8vw, 116px);
  line-height: 0.84;
  margin: 0 0 16px;
  text-transform: uppercase;
  text-align: center;
}
.voice h2 .stroke { color: transparent; -webkit-text-stroke: 3px var(--ink); }
.voice h2 .rust { color: var(--rust); }
.voice-sub {
  text-align: center;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 22px;
  margin: 0 auto 50px;
  transform: rotate(-1deg);
}
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.voice-col h3 {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  margin: 0 0 20px;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 18px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: var(--cream);
}
.voice-col.no h3 { background: var(--slate); }
.voice-list { display: grid; gap: 14px; }
.voice-quote {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 18px 22px;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  box-shadow: var(--shadow);
  position: relative;
}
.voice-quote.no { background: rgba(146,177,183,0.5); }
.voice-quote.no::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 1.5px), var(--rust) calc(50% - 1.5px), var(--rust) calc(50% + 1.5px), transparent calc(50% + 1.5px));
  opacity: 0.6;
  border-radius: 14px;
  pointer-events: none;
}
.voice-quote:nth-child(odd) { transform: rotate(-0.8deg); }
.voice-quote:nth-child(even) { transform: rotate(0.8deg); }

/* ---------- CTA ---------- */
.cta {
  padding: 120px 0 130px;
  background: var(--rust);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 184px);
  line-height: 0.82;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.cta h2 .stroke { color: transparent; -webkit-text-stroke: 3px var(--cream); }
.cta h2 .peach { color: var(--peach); font-style: italic; }
.cta-sub {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 26px;
  margin: 0 auto 36px;
  max-width: 600px;
  line-height: 1.2;
}
.cta-input {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 6px 6px 6px 28px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 100%;
}
.cta-input input {
  border: 0;
  background: transparent;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  flex: 1;
  outline: none;
  padding: 12px 8px;
  min-width: 0;
}
.cta-input button {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 18px;
  padding: 12px 22px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--rust);
  color: var(--cream);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.cta-input button:hover { background: var(--ink); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--cream);
  border-top: 3px solid var(--ink);
  padding: 48px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 2px dashed rgba(20,20,20,0.3);
}
.footer h4 {
  font-family: var(--display);
  font-size: 20px;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { text-decoration: none; font-weight: 500; font-size: 15px; }
.footer ul a:hover { color: var(--rust); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  font-size: 13px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-logo {
  font-family: var(--display);
  font-size: 36px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-blurb {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 18px;
  max-width: 320px;
  line-height: 1.2;
}

/* ---------- Service expand ---------- */
.menu-item { cursor: pointer; }
.menu-item .menu-arrow { transition: transform 0.2s ease; }
.menu-item.open .menu-arrow { transform: rotate(90deg); }
.menu-detail {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding: 26px 28px 28px;
  background: var(--peach);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.menu-item.special .menu-detail { background: var(--cream); color: var(--ink); }
.menu-detail .price {
  display: inline-block;
  font-family: var(--display);
  font-size: 26px;
  background: var(--rust);
  color: var(--cream);
  padding: 8px 18px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.menu-detail p { font-size: 16px; line-height: 1.6; margin: 0 0 14px; max-width: 760px; }
.menu-detail .addon {
  display: inline-block;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 18px;
  margin-top: 8px;
  padding: 6px 14px;
  background: var(--slate);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 100px 0 110px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials h2 {
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 120px);
  line-height: 0.84;
  margin: 0 0 14px;
  text-transform: uppercase;
  text-align: center;
}
.testimonials h2 .rust { color: var(--rust); font-style: italic; }
.testimonials h2 .stroke { color: transparent; -webkit-text-stroke: 3px var(--ink); }
.testimonials .sub {
  text-align: center;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 22px;
  margin: 0 auto 50px;
  transform: rotate(-1deg);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi:nth-child(1) { transform: rotate(-1.5deg); background: var(--peach); }
.testi:nth-child(2) { transform: rotate(1deg); }
.testi:nth-child(3) { transform: rotate(-0.8deg); background: var(--slate); }
.testi:nth-child(4) { transform: rotate(1.2deg); background: var(--peach); }
.testi:nth-child(5) { transform: rotate(-1deg); }
.testi:nth-child(6) { transform: rotate(0.8deg); background: var(--slate); }
.testi:nth-child(7) { transform: rotate(-1.6deg); background: var(--peach); grid-column: 2 / 3; }
.testi-head { display: flex; gap: 14px; align-items: center; }
.testi-avatar {
  width: 64px; height: 64px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 26px;
  background: var(--rust);
  color: var(--cream);
}
.testi-name { font-family: var(--display); font-size: 20px; line-height: 1; text-transform: uppercase; }
.testi-role { font-family: var(--hand); font-size: 16px; font-weight: 600; opacity: 0.8; }
.testi-quote { font-size: 15px; line-height: 1.5; }
.testi-stars { display: flex; gap: 3px; font-size: 16px; color: var(--rust); }
.testi:nth-child(3) .testi-stars,
.testi:nth-child(6) .testi-stars { color: var(--ink); }

/* ---------- Story image frames (real photos) ---------- */
.photo-blob {
  position: absolute;
  filter: drop-shadow(8px 8px 0 #141414);
}
.photo-blob svg { display: block; }

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .hero-grid, .services-head, .story-grid, .intensive .wrap, .voice-grid, .footer-top {
    grid-template-columns: 1fr;
  }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .menu-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .menu-tags, .menu-arrow { display: none; }
  .hero-collage { height: 380px; }
  .polaroid-stack { height: 460px; }
  .nav-links a { display: none; }
  .nav-links .pill { display: inline-flex; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .marquee-item { font-size: 28px; }
}
