/* ============================================================
   Colette Peri — Stop-motion Director & Creative Studio
   Shared stylesheet
   ------------------------------------------------------------
   Headline font: "Tokyo" is not on Google Fonts, so we use
   "Fraunces" (a warm, characterful editorial serif) as the
   closest match to the look-and-feel direction.
   Body font: Montserrat ExtraLight (weight 200).
   Sign-off: Caveat (handwritten).
   ============================================================ */

:root {
  --yellow:     #F6C83A;
  --pink:       #EB9A99;
  --red-orange: #EB6544;
  --orange:     #F48E20;
  --green:      #1A9964;
  --blue:       #4A6FB5;
  --teal:       #90D2D3;

  --cream:      #FBF7EE;   /* warm off-white background */
  --cream-2:    #F4EEE1;   /* slightly deeper panel */
  --ink:        #20231F;
  --ink-soft:   #5C5F58;
  --line:       #E7E0D2;

  --max:        1180px;
  --radius:     16px;
  --shadow:     0 14px 38px rgba(40,35,20,0.10);

  --head: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Montserrat", system-ui, sans-serif;
  --hand: "Caveat", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 200;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 540;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 400; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 30px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--green); border-color: var(--green); }
.btn-yellow { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: #f0bd24; border-color: #f0bd24; }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,238,0.9);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo img { height: 46px; width: auto; display: block; }
.footer .logo img { height: 34px; }
.logo .logo-name { font-family: var(--head); font-weight: 560; font-size: 26px; letter-spacing: -0.01em; }
.logo .logo-sub {
  font-family: var(--body); font-weight: 400; font-size: 10px;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--ink-soft);
  margin-top: 5px; padding-left: 3px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 300; position: relative; }
.nav-links a:not(.ig)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--yellow); transition: width .2s ease;
}
.nav-links a:not(.ig):hover::after, .nav-links a.active::after { width: 100%; }
.ig { display: inline-flex; color: var(--ink); }
.ig svg { width: 22px; height: 22px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; }

/* ---------- Hero ---------- */
.hero { position: relative; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr minmax(0, 490px); gap: 48px; align-items: center;
  padding: 32px 0 24px;
}
.hero h1 { font-size: clamp(46px, 6.4vw, 84px); margin: 16px 0 22px; }
/* Animated bouncing yellow ball replacing the period after "move" */
.hero h1 .ball {
  display: inline-block; width: 0.16em; height: 0.16em; border-radius: 50%;
  background: var(--yellow); margin-left: 0.04em; vertical-align: baseline;
  animation: hop 5s ease-in-out infinite;
}
@keyframes hop {
  0%   { transform: translate(0, 0); }            /* resting as the period */
  5%   { transform: translate(0.12em, -0.45em); } /* hop 1 up */
  10%  { transform: translate(0.24em, 0); }       /* hop 1 land */
  15%  { transform: translate(0.36em, -0.45em); } /* hop 2 up */
  20%  { transform: translate(0.48em, 0); }       /* hop 2 land */
  25%  { transform: translate(0.60em, -0.45em); } /* hop 3 up */
  30%  { transform: translate(0.72em, 0); }       /* hop 3 land (farthest right) */
  36%  { transform: translate(0.40em, -0.6em); }  /* big leap back */
  42%  { transform: translate(0, 0); }            /* land back on the period */
  100% { transform: translate(0, 0); }            /* pause here for a few seconds */
}
@media (prefers-reduced-motion: reduce) { .hero h1 .ball { animation: none; } }
.hero .sub { font-size: clamp(18px, 1.75vw, 22px); color: var(--ink-soft); max-width: 46ch; margin-bottom: 34px; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; }
/* Single hero sizzle reel — 4:5 card */
.hero-media { aspect-ratio: 4 / 5; position: relative; }
.hero-reel { width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.made-badge {
  position: absolute; top: -16px; left: -16px; z-index: 3;
  width: 96px; height: 96px; border-radius: 50%; background: var(--yellow); color: #fff;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--body); font-weight: 700; font-size: 13px; line-height: 1.08; letter-spacing: 0.06em;
  text-transform: uppercase; transform: rotate(-9deg);
  box-shadow: 0 6px 18px rgba(40,35,20,0.18); border: 2px solid rgba(255,255,255,0.6);
}
@media (max-width: 920px) { .made-badge { width: 84px; height: 84px; font-size: 12px; } }
.eyebrow {
  font-family: var(--body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-orange);
  display: inline-block;
}

/* ---------- Tagline strip ---------- */
.tagline {
  background: var(--ink); color: var(--cream); text-align: center;
  padding: 22px 0; font-family: var(--head); font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px); font-weight: 400; letter-spacing: 0.01em;
}
.tagline span { color: var(--yellow); font-style: normal; }

/* ---------- Section base ---------- */
.section { padding: 80px 0; position: relative; }
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 46px); margin: 10px 0 0; }
.section-head p { color: var(--ink-soft); max-width: 52ch; margin-top: 12px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 20px; flex-wrap: wrap; }
.head-row h2 { font-size: clamp(26px, 3.4vw, 40px); }
.link-arrow { font-size: 15px; font-weight: 300; color: var(--red-orange); white-space: nowrap; }
.link-arrow:hover { text-decoration: underline; }

/* ---------- Client logo strip ---------- */
.clients { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #ffffff; }
.clients .wrap { padding: 44px 28px; }
.clients .label { display: block; text-align: center; font-family: var(--body); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; color: var(--ink-soft); margin-bottom: 30px; }
.logo-grid { display: flex; flex-wrap: wrap; justify-content: center; row-gap: 38px; max-width: 1180px; margin: 0 auto; }
.logo-cell { flex: 0 0 12.5%; display: flex; align-items: center; justify-content: center; padding: 0 16px; }
.logo-grid img {
  max-height: 46px; max-width: 100%; width: auto; height: auto;
  object-fit: contain; transition: transform .2s ease;
}
.logo-grid img:hover { transform: translateY(-3px); }
@media (max-width: 880px) { .logo-cell { flex-basis: 25%; } }
@media (max-width: 480px) { .logo-cell { flex-basis: 33.33%; } }

/* ---------- Featured work grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.work-card { transition: transform .2s ease; }
.work-card:hover { transform: translateY(-4px); }
.work-thumb {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden;
  display: grid; place-items: center; color: var(--cream); box-shadow: var(--shadow);
  background: var(--cream-2);
}
.work-thumb video, .work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: grid; place-items: center; transition: transform .2s ease;
}
.work-card:hover .play { transform: scale(1.1); }
.play::after { content: ""; border-left: 16px solid var(--ink); border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }
.work-meta { padding: 16px 4px 0; }
.work-meta h3 { font-size: 19px; margin-bottom: 2px; }
.work-meta p { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.03em; }

/* ---------- Ways to work tiles ---------- */
.ways-grid { display: grid; grid-template-columns: 0.7fr 2.3fr; gap: 36px; align-items: center; }
.ways-head h2 { font-size: clamp(26px, 3.2vw, 38px); }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tile {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream);
  padding: 16px; transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile-img { aspect-ratio: 4 / 3; border-radius: 11px; margin-bottom: 14px; }
.tile h3 { font-size: 19px; margin-bottom: 6px; }
.tile p { font-size: 13px; font-weight: 300; color: var(--ink-soft); flex: 1; }
.tile .arrow { color: var(--red-orange); margin-top: 12px; font-size: 18px; }

/* ---------- Bio ---------- */
.bio { background: transparent; }
.bio-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.bio-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
  background: linear-gradient(120deg, var(--red-orange), var(--orange) 35%, var(--yellow) 60%, var(--green) 80%, var(--blue));
  display: grid; place-items: center; color: rgba(255,255,255,.92); font-family: var(--head); font-size: 22px;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-text h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.bio-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16.5px; }
.life-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.life-wrap .eyebrow { margin-bottom: 18px; }
.life-wrap img { width: 100%; max-width: 720px; height: auto; display: block; }
.signoff { font-family: var(--hand); font-size: 34px; color: var(--ink); line-height: 1.15; margin-top: 6px; }
.signoff .name { color: var(--red-orange); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 54px 0 36px; background: var(--cream); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 22px; margin-bottom: 30px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14.5px; font-weight: 300; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { font-size: 12.5px; color: var(--ink-soft); text-align: center; border-top: 1px solid var(--line); padding-top: 24px; }
.footer-bottom .hand { font-family: var(--hand); font-size: 17px; }

/* ---------- Generic page hero / content ---------- */
.page-hero { padding: 78px 0 36px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(40px, 6vw, 74px); margin-bottom: 16px; }
.page-hero p { color: var(--ink-soft); max-width: 58ch; margin: 0 auto; font-size: 17px; }
.divider { height: 4px; width: 64px; background: var(--yellow); margin: 22px auto 0; border-radius: 4px; }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 30px; margin: 40px 0 14px; }
.prose h3 { font-size: 22px; margin: 26px 0 8px; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16.5px; }
.prose ul { color: var(--ink-soft); margin: 0 0 18px 20px; }
.prose li { margin-bottom: 8px; }

/* card grids for inner pages */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--cream); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .swatch { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px; }
.card h3 { font-size: 21px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15px; }
.price { font-family: var(--head); font-weight: 560; font-size: 19px; margin-top: 14px; }

.shop-thumb { aspect-ratio: 1; border-radius: var(--radius); margin-bottom: 16px; }

/* split content rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split + .split { margin-top: 64px; }
.split-media { aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.split p { color: var(--ink-soft); margin-bottom: 14px; font-size: 16.5px; }

/* form */
.form { max-width: 620px; margin: 0 auto; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-family: var(--body); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--body); font-size: 16px; font-weight: 300; background: #fff; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(246,200,58,.28); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Modal (newsletter) ---------- */
.modal { display: none; position: fixed; inset: 0; z-index: 200; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(28,28,28,0.55); }
.modal-box {
  position: relative; width: min(92vw, 560px); height: min(82vh, 720px);
  margin: 9vh auto 0; background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.modal-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal-close {
  position: absolute; top: 8px; right: 12px; z-index: 2;
  background: rgba(255,255,255,.9); border: 0; width: 36px; height: 36px;
  border-radius: 50%; font-size: 24px; line-height: 1; cursor: pointer; color: var(--ink);
}
.modal-close:hover { background: var(--yellow); }

/* ---------- Case study ---------- */
.case-hero { padding: 40px 0 8px; }
.back-link { font-size: 14px; font-weight: 300; color: var(--ink-soft); display: block; margin-bottom: 18px; }
.back-link:hover { color: var(--ink); }
.case-hero h1 { font-size: clamp(40px, 6vw, 76px); margin: 8px 0 16px; }
.case-intro { color: var(--ink-soft); font-size: 18px; max-width: 60ch; }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.case-tags span {
  font-family: var(--body); font-weight: 400; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
}
.case-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; align-items: center; }
.bts-label { font-family: var(--body); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-right: 2px; }
.bts-chip { font-family: var(--body); font-size: 14px; padding: 9px 17px; border: 1.5px solid var(--ink); border-radius: 999px; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.bts-chip:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.vid-masonry .bts-under { display: inline-flex; margin-top: 9px; margin-right: 8px; font-size: 13px; padding: 7px 15px; }

.case-feature { margin-top: 12px; }
.case-feature video {
  width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow);
  display: block; background: #000;
}
.formats-note {
  font-family: var(--body); font-weight: 400; font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink-soft); margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
}
.formats-note::before { content: ""; width: 18px; height: 2px; background: var(--yellow); display: inline-block; }

.case-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.case-gallery figure { margin: 0; }
.case-gallery video {
  width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow);
  display: block; background: #000;
}
.case-gallery figcaption {
  font-family: var(--head); font-weight: 560; font-size: 17px; margin-top: 12px; color: var(--ink);
}
@media (max-width: 760px) { .case-gallery { grid-template-columns: 1fr; } }

/* next project preview */
.next-project { display: block; border-top: 1px solid var(--line); background: var(--cream-2); transition: background .2s ease; }
.next-project:hover { background: #efe8d8; }
.np-inner { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: center; padding: 46px 0; }
.np-text .eyebrow { color: var(--ink-soft); }
.np-text h2 { font-size: clamp(30px, 4.5vw, 56px); margin: 8px 0 10px; }
.np-text .np-arrow { color: var(--red-orange); font-size: 16px; font-weight: 300; }
.np-thumb { aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream); }
.np-thumb video, .np-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .np-inner { grid-template-columns: 1fr; } .np-thumb { order: -1; } }

/* grouped sections for content-heavy case studies */
.case-group { margin-top: 58px; }
.case-group h2 { font-size: clamp(24px, 3vw, 34px); margin: 6px 0 26px; }

/* masonry — keeps each video's natural shape (handles mixed 4:5 / 9:16 / 1:1) */
.vid-masonry { column-gap: 20px; }
.vid-masonry figure { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 22px; }
.vid-masonry video {
  width: 100%; height: auto; display: block; border-radius: var(--radius);
  box-shadow: var(--shadow); background: #000;
}
.vid-masonry figcaption {
  font-family: var(--head); font-weight: 560; font-size: 15px; margin-top: 10px; color: var(--ink);
}
.vid-masonry.cols-3 { column-count: 3; }
.vid-masonry.cols-4 { column-count: 4; }
@media (max-width: 900px) { .vid-masonry.cols-4 { column-count: 3; } .vid-masonry.cols-3 { column-count: 2; } }
@media (max-width: 560px) { .vid-masonry.cols-3, .vid-masonry.cols-4 { column-count: 2; } }

.contact-strip { background: var(--yellow); text-align: center; }
.contact-strip h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.contact-strip p { margin-bottom: 26px; font-size: 17px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 84px; left: 0; right: 0; background: var(--cream);
    padding: 22px 28px; gap: 18px; border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .hero-media { order: -1; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: 1fr; gap: 28px; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .bio-grid, .card-grid, .card-grid.two, .split { grid-template-columns: 1fr; gap: 30px; }
  .split-media { order: -1; }
  .deco { display: none; }
}
@media (max-width: 480px) {
  .work-grid, .tiles { grid-template-columns: 1fr; }
}

/* ===== Service tiles with photos + portfolio galleries ===== */
.tile-img { overflow: hidden; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.tile:hover .tile-img img { transform: scale(1.05); }
.photo-gallery { columns: 3; column-gap: 14px; }
.photo-gallery img { width: 100%; border-radius: 12px; margin: 0 0 14px; display: block; box-shadow: var(--shadow); break-inside: avoid; }
.gallery-group { margin-top: 40px; }
.gallery-group h2 { font-size: clamp(23px, 2.8vw, 32px); margin: 6px 0 18px; }
.studio-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.studio-gallery img, .studio-gallery video { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; box-shadow: var(--shadow); }
.speaking-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 8px; }
.speaking-strip img { width: 100%; border-radius: 14px; display: block; box-shadow: var(--shadow); }
@media (max-width: 820px) { .photo-gallery { columns: 2; } }
@media (max-width: 520px) { .photo-gallery { columns: 1; } .studio-gallery, .speaking-strip { grid-template-columns: 1fr; } }

/* ===== Portraits: session card + MPC badge ===== */
.session-card { background: var(--cream-2); border-radius: var(--radius); padding: 40px; margin: 48px auto 0; max-width: 720px; text-align: center; }
.session-card h2 { font-size: clamp(24px,3vw,34px); margin: 6px 0 20px; }
.session-list { list-style: none; padding: 0; margin: 0 auto 22px; max-width: 460px; text-align: left; display: inline-block; }
.session-list li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink); }
.session-list li::before { content: "✦"; position: absolute; left: 0; color: var(--red-orange); }
.session-price { color: var(--ink-soft); max-width: 56ch; margin: 0 auto 26px; }
.session-price strong { color: var(--ink); font-size: 1.15em; }
.mpc-badge { display: flex; justify-content: center; margin-top: 56px; }
.mpc-badge img { width: 150px; height: auto; opacity: .85; transition: opacity .2s ease; }
.mpc-badge:hover img { opacity: 1; }

/* ===== Speaking: banner + invite row ===== */
.speaking-banner img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.invite-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: center; margin-top: 52px; }
.invite-photo img { width: 100%; max-width: 340px; border-radius: var(--radius); box-shadow: var(--shadow); display: block; margin-left: auto; }
.invite-cta h2 { font-size: clamp(24px,3vw,36px); margin-bottom: 20px; }
@media (max-width: 760px) {
  .invite-row { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .invite-photo img { margin: 0 auto; }
}

/* ===== Print Shop: visit-us block ===== */
.visit-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--cream-2); border-radius: var(--radius); padding: 40px; margin-top: 56px; }
.visit-block img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); display: block; }
.visit-block h2 { font-size: clamp(24px,3vw,36px); margin: 6px 0 14px; }
.visit-block p { color: var(--ink-soft); margin-bottom: 8px; }
.visit-block .addr { font-weight: 400; color: var(--ink); }
@media (max-width: 760px) { .visit-block { grid-template-columns: 1fr; gap: 24px; text-align: center; } }

/* ===== Print Shop: squared uniform grid ===== */
.print-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.print-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); display: block; }
@media (max-width: 760px) { .print-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .print-grid { grid-template-columns: 1fr; } }

/* ===== About: polaroids strung in a row ===== */
.polaroid-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 4px 0; }
.polaroid-row img { width: 150px; height: auto; margin: 0 -12px; filter: drop-shadow(0 9px 16px rgba(40,35,20,0.20)); transition: transform .25s ease; }
.polaroid-row img:nth-child(odd) { transform: translateY(-8px); }
.polaroid-row img:nth-child(even) { transform: translateY(12px); }
.polaroid-row img:hover { transform: translateY(-2px) scale(1.05); z-index: 2; position: relative; }
@media (max-width: 900px) { .polaroid-row img { width: 22%; margin: 0 -6px; } }
@media (max-width: 560px) { .polaroid-row img { width: 30%; } }

/* ===== Portraits landing: larger sub-page cards ===== */
.portrait-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.portrait-cards .tile-img { aspect-ratio: 3 / 2; margin-bottom: 16px; }
.portrait-cards h3 { font-size: 23px; margin-bottom: 7px; }
.portrait-cards p { font-size: 14px; }
@media (max-width: 680px) { .portrait-cards { grid-template-columns: 1fr; } }

/* ===== Portraits: collage banner + cross-link CTA ===== */
.collage-banner img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.cross-cta h2 { font-size: clamp(26px,3.2vw,38px); margin: 6px 0 12px; }
.cross-cta p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 24px; }
