/* ============================================================
   TASHA SHELEG - DIGITAL SCRAPBOOK PORTFOLIO
   ============================================================ */

:root {
  --cream: #f5f3ef;
  --kraft: #d8c9a3;
  --kraft-dark: #c3b184;
  --page: #fbfaf7;
  --ink: #111111;
  --ink-soft: #4a4744;
  --pink: #e84c88;
  --gold: #d9a441;
  --sky: #5b9bd5;
  --red: #b3382c;
  --chrome-a: #c9c9c9;
  --chrome-b: #ffffff;
  --chrome-c: #6e6e6e;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Pacifico", cursive;

  --cursor-arrow: url("../assets/stickers/cursor-arrow.svg") 4 2, auto;
  --cursor-hand: url("../assets/stickers/cursor-hand.svg") 8 0, pointer;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.4;
  cursor: var(--cursor-arrow);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(17,17,17,0.045) 1px, transparent 0);
  background-size: 22px 22px;
}

a, button, .clickable, .nav-pill, .sticker.interactive {
  cursor: var(--cursor-hand);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ---------------- typography helpers ---------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}

.script {
  font-family: var(--font-script);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow.gold { color: #a97d1f; }

/* asterisk bullets */
.ast {
  color: var(--pink);
  font-weight: 900;
  margin-right: 10px;
  display: inline-block;
}
.ast.gold { color: var(--gold); }
.ast.sky { color: var(--sky); }

.dashed-rule {
  border: none;
  border-top: 2px dashed var(--ink);
  opacity: 0.25;
  margin: 64px 0;
}

.highlight {
  padding: 0 3px;
  border-radius: 2px;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.highlight.pink { background: rgba(232, 76, 136, 0.28); }
.highlight.gold { background: rgba(217, 164, 65, 0.35); }
.highlight.sky  { background: rgba(91, 155, 213, 0.3); }

/* ---------------- layout skeleton ---------------- */

section {
  position: relative;
  padding: 96px 0;
}

.section-inner {
  position: relative;
  z-index: 2;
}

.stage {
  position: relative;
  overflow: visible;
}

/* the floating "page" card used for content-heavy sections */
.page-card {
  background: var(--page);
  border: 1.5px solid rgba(17,17,17,0.1);
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(17,17,17,0.1), 0 2px 0 rgba(17,17,17,0.04);
  padding: 56px;
  position: relative;
  z-index: 2;
}

@media (max-width: 720px) {
  .page-card { padding: 32px 22px; }
  section { padding: 64px 0; }
}

/* corner crop marks ⌐...⌐ */
.crop-marks {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  z-index: 3;
}
.crop-marks span {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  opacity: 0.55;
}
.crop-marks .tl { top: 0; left: 0; }
.crop-marks .tr { top: 0; right: 0; transform: scaleX(-1); }
.crop-marks .bl { bottom: 0; left: 0; transform: scaleY(-1); }
.crop-marks .br { bottom: 0; right: 0; transform: scale(-1, -1); }

/* ============================================================
   STICKERS
   ============================================================ */

.sticker {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 6px 10px rgba(17,17,17,0.18));
  z-index: 4;
  --sticker-rot: rotate(0deg);
  --parallax-y: 0px;
  transform: var(--sticker-rot) translateY(var(--parallax-y));
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  will-change: transform;
}

.sticker.interactive {
  pointer-events: auto;
}

.sticker.interactive:hover {
  transform: var(--sticker-rot) translateY(var(--parallax-y)) scale(1.08) !important;
}

.sticker.bob {
  animation: bob 5.5s ease-in-out infinite;
}
.sticker.bob.delay1 { animation-delay: -1.4s; }
.sticker.bob.delay2 { animation-delay: -3.1s; }

@keyframes bob {
  0%, 100% { transform: var(--sticker-rot) translateY(var(--parallax-y)); }
  50% { transform: var(--sticker-rot) translateY(calc(var(--parallax-y) - 10px)); }
}

@media (prefers-reduced-motion: reduce) {
  .sticker.bob { animation: none; }
  .sticker, .sticker.interactive:hover { transition: none !important; }
}

@media (max-width: 720px) {
  .sticker.hide-mobile { display: none; }
}

.sz-xxs { width: 26px; }
.sz-xs  { width: 36px; }
.sz-sm  { width: 48px; }
.sz-md  { width: 64px; }
.sz-lg  { width: 92px; }
.sz-xl  { width: 130px; }
.sz-xxl { width: 170px; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 6px;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(17,17,17,0.12);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(17,17,17,0.12);
}

.nav-pill {
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.nav-pill:hover {
  background: var(--kraft);
  transform: translateY(-1px);
}

.nav-pill.active {
  background: var(--pink);
  color: #fff;
}

.nav-toggle {
  display: none;
}

@media (max-width: 640px) {
  .nav {
    top: 14px;
    left: 14px;
    right: 14px;
    transform: none;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .nav-pill { flex: 0 0 auto; font-size: 11.5px; padding: 9px 14px; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(52px, 11vw, 148px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.hero-script-accent {
  display: block;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--pink);
  margin-bottom: -0.35em;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 500;
  color: var(--ink-soft);
}

.hero-cta {
  margin-top: 40px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill-btn {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
  box-shadow: 4px 4px 0 var(--pink);
}

.pill-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--pink);
}

.pill-btn.outline {
  background: transparent;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--gold);
}
.pill-btn.outline:hover {
  box-shadow: 6px 6px 0 var(--gold);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

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

.about-photo-wrap {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.about-photo {
  border: 6px solid var(--page);
  outline: 2px solid var(--ink);
  border-radius: 4px;
  transform: rotate(-3deg);
  box-shadow: 0 20px 40px rgba(17,17,17,0.22);
  filter: grayscale(1) contrast(1.15);
}

.about-photo-corner {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 48px;
  height: 48px;
  z-index: 3;
  background: var(--gold);
  border-radius: 50%;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(17,17,17,0.25);
}

/* fanned trio of polaroids used as the About header photo */
.about-photo-trio {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding-top: 14px;
  box-sizing: border-box;
}

.about-photo-trio .polaroid {
  width: 140px;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.about-photo-trio .polaroid:nth-child(1) { transform: rotate(-7deg); }
.about-photo-trio .polaroid:nth-child(2) { transform: rotate(4deg) translateY(10px); }
.about-photo-trio .polaroid:nth-child(3) { transform: rotate(-3deg); }

@media (max-width: 480px) {
  .about-photo-trio .polaroid { width: 44%; }
}

.about-body p {
  font-size: 17px;
  font-weight: 500;
  text-align: justify;
  margin: 0 0 20px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* currently note (torn paper callout) */
.note {
  position: relative;
  margin: 56px auto 0;
  max-width: 460px;
}

.note-scrap-back {
  position: absolute;
  top: 18px;
  left: -14px;
  width: 72%;
  height: 88%;
  background: repeating-linear-gradient(-8deg, #f3c9d7, #f3c9d7 2px, #f6d5e0 2px, #f6d5e0 4px);
  clip-path: polygon(2% 8%, 40% 0%, 100% 4%, 96% 96%, 30% 100%, 0% 88%);
  transform: rotate(-9deg);
  box-shadow: 0 6px 14px rgba(17,17,17,0.15);
}

.note-paper {
  position: relative;
  background: #f3efe0;
  padding: 34px 30px 28px;
  transform: rotate(2.5deg);
  clip-path: polygon(1% 4%, 30% 0%, 70% 2%, 100% 6%, 98% 96%, 65% 100%, 20% 98%, 0% 92%);
  box-shadow: 0 14px 26px rgba(17,17,17,0.18);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 27px,
    rgba(91,155,213,0.35) 27px,
    rgba(91,155,213,0.35) 28px
  );
}

.note-paper .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.note-paper p {
  margin: 0;
  font-weight: 600;
  font-size: 15.5px;
}

.note-clip {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 64px;
  z-index: 5;
}

.note-star {
  position: absolute;
  bottom: -20px;
  right: -18px;
  width: 46px;
  z-index: 5;
}

/* polaroid base (reused by the header trio and the fact cards below) */
.polaroid {
  margin: 0;
  background: #fff;
  padding: 12px 12px 34px;
  width: 168px;
  box-shadow: 0 12px 24px rgba(17,17,17,0.16);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
  position: relative;
}

.polaroid:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.04);
  box-shadow: 0 20px 34px rgba(17,17,17,0.22);
  z-index: 5;
}

.polaroid img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(17,17,17,0.08);
}

@media (prefers-reduced-motion: reduce) {
  .polaroid { transition: none; }
}

/* "some things about me" - a photo + a full story for each fact */
.polaroid-label {
  margin: 64px 0 28px;
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--ink);
  opacity: 0.85;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}

@media (max-width: 760px) {
  .fact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.fact {
  text-align: center;
}

.fact .polaroid {
  width: 190px;
  margin: 0 auto 22px;
}

.fact:nth-child(1) .polaroid { transform: rotate(-5deg); }
.fact:nth-child(2) .polaroid { transform: rotate(4deg); }
.fact:nth-child(3) .polaroid { transform: rotate(-3deg); }

.fact p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.fact p .ast {
  float: left;
  margin-top: 2px;
}

/* ============================================================
   SKILLS
   ============================================================ */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}

@media (max-width: 760px) {
  .skills-grid { grid-template-columns: 1fr; gap: 36px; }
}

.skill-col h3 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.skill-col img.pixel-icon {
  width: 22px;
  height: 22px;
  image-rendering: pixelated;
}

.skill-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skill-col li {
  font-size: 15px;
  font-weight: 600;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(17,17,17,0.18);
  display: flex;
  align-items: center;
}

.skill-col li:last-child { border-bottom: none; }

/* hard skills / tools chip row */
.tools-heading {
  margin: 48px 0 18px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-chip {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px dashed var(--ink);
  background: var(--page);
}

.tool-chip:nth-child(3n+1) { border-color: var(--pink); color: var(--pink); }
.tool-chip:nth-child(3n+2) { border-color: var(--gold); color: #a97d1f; }
.tool-chip:nth-child(3n+3) { border-color: var(--sky); color: var(--sky); }

/* ============================================================
   EXPERIENCE / EDUCATION
   ============================================================ */

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

@media (max-width: 760px) {
  .exp-grid { grid-template-columns: 1fr; gap: 44px; }
}

.exp-item {
  margin-bottom: 30px;
}
.exp-item:last-child { margin-bottom: 0; }

.exp-title {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
}

.exp-meta {
  margin-left: 24px;
  margin-top: 4px;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* detailed role list (Experience / Education) */
.role-list {
  max-width: 820px;
}

.role {
  padding: 28px 0;
  border-top: 1px dashed rgba(17,17,17,0.2);
}
.role:last-child { padding-bottom: 0; }

.role-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 4px;
}

.role-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
}

.role-dates {
  font-family: var(--font-serif, var(--font-display));
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.role-org {
  margin-left: 24px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 15px;
}

.role-summary {
  margin: 12px 0 0 24px;
  font-size: 15px;
  font-weight: 500;
  max-width: 620px;
}

.role-bullets {
  margin: 14px 0 0 24px;
  padding: 0;
  list-style: none;
  max-width: 640px;
}

.role-bullets li {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.role-bullets li::before {
  content: "✱";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 12px;
  top: 3px;
}

/* ============================================================
   WORK - interactive platform tabs
   ============================================================ */

.work-intro {
  max-width: 560px;
  margin: -8px 0 36px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.work-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.work-tab-btn {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.work-tab-btn:hover { transform: translateY(-2px); }

.work-tab-btn.active {
  background: var(--ink);
  color: #fff;
}

.work-panel {
  display: none;
}
.work-panel.active {
  display: block;
}

.work-panel-meta {
  margin-bottom: 18px;
}

.work-panel-meta h4 {
  font-size: 19px;
  margin-bottom: 6px;
}

.work-panel-meta p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 620px;
}

.work-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 20px 6px 26px;
  -webkit-overflow-scrolling: touch;
}

.work-scroll::-webkit-scrollbar { height: 8px; }
.work-scroll::-webkit-scrollbar-thumb { background: rgba(17,17,17,0.25); border-radius: 999px; }

.work-frame {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #fff;
  padding: 10px 10px 10px;
  border: 1.5px solid rgba(17,17,17,0.12);
  box-shadow: 0 12px 26px rgba(17,17,17,0.14);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}

.work-frame figcaption {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--ink-soft);
}

.work-frame:nth-child(odd) { transform: rotate(-2deg); }
.work-frame:nth-child(even) { transform: rotate(2deg); }

.work-frame:hover { transform: rotate(0deg) translateY(-4px) scale(1.02); }

.work-frame img {
  width: auto;
  max-width: none;
  height: 300px;
  display: block;
}

.work-frame.placeholder {
  width: 220px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--ink-soft);
  border-style: dashed;
}

@media (max-width: 720px) {
  .work-frame img { height: 220px; }
  .work-frame.placeholder { width: 170px; height: 220px; }
}

/* case-study copy inside a work panel (e.g. the Socsi Society write-up) */
.work-case {
  max-width: 640px;
  margin-bottom: 24px;
}

.work-case .pill-btn {
  margin: 4px 0 22px;
  font-size: 13px;
  padding: 12px 22px;
}

.work-case p {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 14px;
}

.work-case .eyebrow {
  display: block;
  margin: 26px 0 12px;
}

.work-case ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.work-case ul li {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.work-case ul li::before {
  content: "✱";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--pink);
  font-size: 12px;
}

.work-case .note-inline {
  font-style: italic;
  color: var(--ink-soft);
}

.work-case ul.arrow-list li::before {
  content: "→";
  color: var(--sky);
  font-size: 13px;
  font-weight: 700;
  top: 1px;
}

/* ============================================================
   EVENTS
   ============================================================ */

/* moving photo marquees (stacked rows) */
.events-marquees {
  margin: 0 -32px 40px;
}

.events-marquee {
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.events-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: events-scroll 30s linear infinite;
}

.events-marquee-track.reverse {
  animation-name: events-scroll-reverse;
  animation-duration: 34s;
}

.events-marquee:hover .events-marquee-track {
  animation-play-state: paused;
}

.events-marquee-track img {
  height: 190px;
  width: auto;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 4px solid #fff;
  box-shadow: 0 12px 24px rgba(17,17,17,0.18);
}

.events-marquee-track img:nth-child(odd) { transform: rotate(-1.5deg); }
.events-marquee-track img:nth-child(even) { transform: rotate(1.5deg); }

@keyframes events-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes events-scroll-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 720px) {
  .events-marquees { margin-left: -22px; margin-right: -22px; }
  .events-marquee-track img { height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .events-marquee-track {
    animation: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.events-group-label {
  margin: 0 0 20px;
}

.events-group-label:not(:first-of-type) {
  margin-top: 48px;
}

.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
}

.event-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  padding: 16px 0;
  border-top: 1px dashed rgba(17,17,17,0.2);
}
.events-list .event-row:last-child { border-bottom: 1px dashed rgba(17,17,17,0.2); }

.event-tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pink);
}

.event-row h4 {
  font-size: 17px;
  margin: 0;
}

.event-row p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
  text-align: center;
  padding-bottom: 140px;
}

.contact-title {
  font-size: clamp(38px, 7vw, 84px);
  line-height: 0.95;
}

.contact-title .script {
  color: var(--sky);
}

.contact-sub {
  max-width: 520px;
  margin: 22px auto 0;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-pills {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.contact-pills .pill-btn {
  box-shadow: 4px 4px 0 var(--gold);
}
.contact-pills .pill-btn:nth-child(2) { box-shadow: 4px 4px 0 var(--sky); }
.contact-pills .pill-btn:nth-child(3) { box-shadow: 4px 4px 0 var(--pink); }
.contact-pills .pill-btn:hover { box-shadow: 6px 6px 0 var(--gold); }
.contact-pills .pill-btn:nth-child(2):hover { box-shadow: 6px 6px 0 var(--sky); }
.contact-pills .pill-btn:nth-child(3):hover { box-shadow: 6px 6px 0 var(--pink); }

footer {
  text-align: center;
  padding: 30px 0 46px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}
