/* ==========================================================
   Iris Paints Self Medicate — Page Stylesheet
   Mobile-first. Breakpoints: 480px · 640px · 768px · 960px
   ========================================================== */

/* Page theme */
body { background: #fdf5e6; }

/* ══ Hero ══ */
.hero {
  background: #1a0505;
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .hero { padding: 80px 0 64px; } }
@media (min-width: 960px) { .hero { padding: 100px 0 88px; } }

.hero__stroke { position: absolute; pointer-events: none; opacity: 0.05; }
@media (min-width: 768px) { .hero__stroke { opacity: 0.07; } }

.hero__stroke--l {
  top: -60px; left: -80px;
  width: 300px;
  transform: rotate(-25deg);
  filter: hue-rotate(220deg);
}

.hero__stroke--r {
  bottom: -50px; right: -40px;
  width: 240px;
  transform: rotate(12deg);
}

@media (min-width: 768px) { .hero__stroke--l { width: 420px; } .hero__stroke--r { width: 320px; } }
@media (min-width: 960px) { .hero__stroke--l { width: 560px; } .hero__stroke--r { width: 440px; } }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 184, 75, 0.09);
  border: 1px solid rgba(232, 184, 75, 0.25);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--iris-lavender);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (min-width: 480px) { .hero__eyebrow { padding: 6px 18px; font-size: 0.72rem; margin-bottom: 22px; } }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 12vw, 6rem);
  font-weight: 700;
  color: white;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

@media (min-width: 480px) { .hero__title { margin-bottom: 24px; } }
.hero__title em { color: var(--iris-lavender); font-style: italic; }

.hero__sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.85;
}

@media (min-width: 480px) { .hero__sub { font-size: 1.1rem; margin-bottom: 42px; } }

.hero__actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
@media (min-width: 480px) { .hero__actions { flex-direction: row; flex-wrap: wrap; gap: 14px; } }

/* ══ Portfolio masonry ══ */
.portfolio-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) { .portfolio-masonry { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (min-width: 960px) { .portfolio-masonry { grid-template-columns: 5fr 7fr; grid-template-rows: auto auto; } }

.pm-left  { display: flex; flex-direction: column; gap: 12px; }
.pm-right { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .pm-left { gap: 14px; } .pm-right { gap: 14px; } }

.pm-right-top .photo-placeholder { min-height: 170px; }
.pm-right-bot { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pm-right-bot .photo-placeholder { min-height: 110px; }
.pm-left      .photo-placeholder { min-height: 190px; }

@media (min-width: 640px) {
  .pm-right-top .photo-placeholder { min-height: 210px; }
  .pm-right-bot .photo-placeholder { min-height: 130px; }
  .pm-left      .photo-placeholder { min-height: 300px; }
}

@media (min-width: 960px) {
  .pm-right-top .photo-placeholder { min-height: 260px; }
  .pm-right-bot { gap: 14px; }
  .pm-right-bot .photo-placeholder { min-height: 160px; }
  .pm-left      .photo-placeholder { min-height: 440px; }
}

.pm-cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.pm-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ══ Events panel ══ */
.events-panel { background: var(--iris-dark); color: white; }
.events-panel .section-heading { color: white; }
.events-panel .section-body    { color: rgba(255,255,255,0.6); }
.events-panel .section-label   { color: var(--iris-lavender); }

.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 184, 75, 0.2);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
}

@media (min-width: 480px) { .event-card { padding: 22px; gap: 18px; } }
@media (min-width: 768px) { .event-card { padding: 28px; gap: 24px; } }
.event-card:hover { background: rgba(232,184,75,0.1); border-color: rgba(232,184,75,0.5); }

.event-date {
  flex-shrink: 0;
  background: var(--iris-purple);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  min-width: 54px;
}

@media (min-width: 480px) { .event-date { padding: 12px 16px; min-width: 68px; } }

.event-date .month {
  display: block;
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--iris-lavender); margin-bottom: 3px;
}

.event-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: white; line-height: 1;
}

@media (min-width: 480px) { .event-date .day { font-size: 1.8rem; } }

.event-info h3 { font-weight: 600; font-size: 0.95rem; color: white; margin-bottom: 5px; }
.event-info p  { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
@media (min-width: 480px) { .event-info h3 { font-size: 1rem; } .event-info p { font-size: 0.875rem; } }

.event-type {
  display: inline-block;
  margin-top: 10px;
  background: rgba(196, 30, 30, 0.35);
  color: var(--iris-lavender);
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.no-events {
  border: 1px dashed rgba(232, 184, 75, 0.25);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  color: rgba(255,255,255,0.3);
}

@media (min-width: 480px) { .no-events { padding: 64px; } }
.no-events .icon { font-size: 2.5rem; display: block; margin-bottom: 14px; }

/* ══ Paint Party ══ */
.paint-party-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) { .paint-party-split { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; } }

.paint-party-info h3,
.paint-party-pricing h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--iris-dark);
  margin-bottom: 14px;
}

@media (min-width: 480px) { .paint-party-info h3, .paint-party-pricing h3 { font-size: 1.3rem; margin-bottom: 18px; } }

.paint-party-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }

.paint-party-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-mid); font-size: 0.95rem;
}

.paint-party-list li::before { content: '✦'; color: var(--iris-purple); font-size: 0.7rem; flex-shrink: 0; }

.paint-party-note {
  font-size: 0.82rem; color: var(--text-mid);
  font-style: italic;
  border-left: 2px solid var(--iris-lavender);
  padding-left: 12px; margin-top: 16px;
}

.party-price-tiers { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 480px) { .party-price-tiers { gap: 12px; } }

.party-tier {
  display: flex; justify-content: space-between; align-items: center;
  background: white;
  border: 1px solid rgba(232, 184, 75, 0.3);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 480px) { .party-tier { padding: 16px 24px; } }

.party-tier__people { font-weight: 600; color: var(--iris-dark); font-size: 0.9rem; }
@media (min-width: 480px) { .party-tier__people { font-size: 0.95rem; } }

.party-tier__price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--iris-purple); }
@media (min-width: 480px) { .party-tier__price { font-size: 1.6rem; } }

/* ══ Commissions ══ */
.commissions-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) { .commissions-split { grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; } }
@media (min-width: 960px) { .commissions-split { gap: 72px; } }

.commission-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 480px) { .commission-photos { gap: 12px; } }
.commission-photos .photo-placeholder { min-height: 110px; }
@media (min-width: 480px) { .commission-photos .photo-placeholder { min-height: 145px; } }
.commission-photos .cp-wide { grid-column: span 2; }
.commission-photos .cp-wide .photo-placeholder { min-height: 150px; }
@media (min-width: 480px) { .commission-photos .cp-wide .photo-placeholder { min-height: 190px; } }
.cp-cell { border-radius: var(--radius-md); overflow: hidden; }

.process { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
@media (min-width: 480px) { .process { gap: 20px; margin-top: 28px; } }

.process-step { display: flex; gap: 14px; align-items: flex-start; }

.process-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--iris-purple), var(--iris-lavender));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: white;
}

.process-step h4 { font-size: 0.9rem; font-weight: 600; color: var(--iris-dark); margin-bottom: 3px; }
.process-step p  { font-size: 0.8rem; color: var(--text-mid); line-height: 1.55; }
@media (min-width: 480px) { .process-step h4 { font-size: 0.92rem; } .process-step p { font-size: 0.82rem; } }

/* ══ Murals ══ */
.murals-panel { background: #1a0505; color: white; position: relative; overflow: hidden; }
.murals-panel .section-heading { color: white; }
.murals-panel .section-body    { color: rgba(255,255,255,0.6); }
.murals-panel .section-label   { color: var(--iris-lavender); }

.murals-bg {
  position: absolute; top: -50px; right: -70px;
  width: 260px; opacity: 0.04;
  pointer-events: none; transform: rotate(10deg);
}

@media (min-width: 768px) { .murals-bg { width: 380px; } }
@media (min-width: 960px) { .murals-bg { width: 550px; opacity: 0.05; } }

.murals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative; z-index: 1;
}

@media (min-width: 640px) { .murals-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

.mural-cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.mural-cell:hover { transform: scale(1.015); }

.mural-cell .photo-placeholder {
  min-height: 170px;
  background: linear-gradient(135deg, rgba(123,79,166,0.35), rgba(21,10,40,0.7));
  color: rgba(255,255,255,0.4);
}

.mural-cell .photo-placeholder::before { content: ''; }

@media (min-width: 640px) { .mural-cell .photo-placeholder { min-height: 210px; } }

.mural-cell--wide { grid-column: 1; }
@media (min-width: 640px) {
  .mural-cell--wide { grid-column: span 2; }
  .mural-cell--wide .photo-placeholder { min-height: 250px; }
}

.murals-cta {
  margin-top: 32px;
  padding: 22px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(195,166,227,0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative; z-index: 1;
}

@media (min-width: 480px) { .murals-cta { padding: 28px; border-radius: var(--radius-lg); } }

@media (min-width: 768px) {
  .murals-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 52px;
    padding: 40px 44px;
  }
}

.murals-cta h3 { font-family: var(--font-display); font-size: 1.2rem; color: white; margin-bottom: 6px; }
@media (min-width: 480px) { .murals-cta h3 { font-size: 1.4rem; } }
.murals-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* ══ Why Buy Local ══ */
.why-local-panel { background: var(--iris-dark); color: white; }
.why-local-inner { max-width: 720px; }
.why-local-panel .section-heading { color: white; }
.why-local-panel .section-label   { color: var(--iris-lavender); }

.why-local-body { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }
@media (min-width: 480px) { .why-local-body { gap: 18px; } }

.why-local-body p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.85; }
@media (min-width: 480px) { .why-local-body p { font-size: 1.05rem; } }

.why-local-highlight {
  font-family: var(--font-display);
  font-size: 1.05rem !important;
  color: var(--iris-lavender) !important;
  font-style: italic;
}

@media (min-width: 480px) { .why-local-highlight { font-size: 1.15rem !important; } }