:root {
  --sand-50: #fbf7ed;
  --sand-100: #f4ead7;
  --sand-200: #e8d6b8;
  --ocean-950: #062f3c;
  --ocean-900: #0a4353;
  --ocean-700: #176d7d;
  --ocean-500: #3d9aaa;
  --sky-300: #8ec8d5;
  --coral-600: #b73b2f;
  --coral-500: #d85841;
  --ink: #17343c;
  --muted: #587078;
  --white: #fffdf7;
  --shadow: 0 22px 50px rgb(11 61 72 / 15%);
  --display: "Noto Serif TC", serif;
  --sans: "Noto Sans TC", sans-serif;
  --shell: min(1160px, calc(100% - 40px));
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 20%, rgb(226 197 145 / 22%), transparent 28rem),
    var(--sand-50);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f28d5e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ocean-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: grid;
  width: min(1220px, calc(100% - 32px));
  min-height: 68px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 18px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgb(5 47 60 / 28%);
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgb(2 27 35 / 12%);
  transform: translateX(-50%);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgb(8 69 83 / 11%);
  background: rgb(255 253 247 / 91%);
  color: var(--ocean-950);
  box-shadow: 0 14px 38px rgb(8 61 72 / 14%);
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.06em;
}

.brand small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: currentcolor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.album-link {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--coral-600);
  color: white;
  font-size: 13px;
  font-weight: 700;
  justify-self: end;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.album-link:hover {
  background: #972c25;
  transform: translateY(-2px);
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  padding: 150px max(20px, calc((100vw - 1160px) / 2)) 100px;
  align-items: center;
  overflow: hidden;
  background: var(--ocean-950);
  color: white;
}

.hero-photo,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  scale: 1.03;
  animation: settle 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgb(3 34 43 / 92%) 0%, rgb(5 49 62 / 75%) 37%, transparent 74%),
    linear-gradient(0deg, rgb(2 28 35 / 62%), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
  animation: rise 800ms 180ms ease-out both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--coral-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd1a6;
}

.hero-organizers {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(2 44 55 / 52%);
  color: rgb(255 255 255 / 92%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  backdrop-filter: blur(8px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(52px, 7.3vw, 104px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 em {
  color: #ffd8a7;
  font-style: normal;
}

.hero-theme {
  margin: -8px 0 18px;
  color: #ffd8a7;
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral-500);
  color: white;
}

.button-primary:hover {
  background: var(--coral-600);
}

.button-ghost {
  border-color: rgb(255 255 255 / 55%);
  background: rgb(255 255 255 / 7%);
}

.button-ghost:hover {
  border-color: white;
  background: rgb(255 255 255 / 14%);
}

.hero-stamp {
  position: absolute;
  right: max(26px, calc((100vw - 1160px) / 2));
  bottom: 86px;
  z-index: 2;
  display: flex;
  width: 130px;
  height: 130px;
  border: 2px solid rgb(255 255 255 / 68%);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  line-height: 1.05;
  rotate: 6deg;
}

.hero-stamp::before {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgb(255 255 255 / 5%);
  border-radius: inherit;
  content: "";
}

.hero-stamp span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-stamp strong {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: flex;
  min-height: 44px;
  flex-direction: column;
  align-items: center;
  color: rgb(255 255 255 / 78%);
  font-size: 10px;
  letter-spacing: 0.15em;
  transform: translateX(-50%);
}

.scroll-cue svg {
  margin-top: 2px;
  animation: nudge 1.8s ease-in-out infinite;
}

.intro {
  display: grid;
  padding-block: 130px 110px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12vw;
}

.intro h2,
.section-heading h2,
.ending h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.intro-copy > p {
  max-width: 680px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.week-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--sand-200);
  padding-top: 28px;
}

.week-stats div {
  display: flex;
  flex-direction: column;
}

.week-stats strong {
  color: var(--ocean-900);
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.week-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.days-section {
  padding: 100px 0 130px;
  background: var(--ocean-950);
  color: white;
}

.section-heading {
  display: flex;
  margin-bottom: 48px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > p {
  max-width: 330px;
  margin: 0 0 8px;
  color: var(--muted);
}

.days-section .section-heading > p {
  color: rgb(255 255 255 / 63%);
}

.day-tabs-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
}

.day-tabs {
  display: grid;
  min-width: 760px;
  border-bottom: 1px solid rgb(255 255 255 / 19%);
  grid-template-columns: repeat(5, 1fr);
}

.day-tab {
  position: relative;
  min-height: 116px;
  padding: 16px 16px 20px;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 48%);
  cursor: pointer;
  text-align: left;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.day-tab::after {
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 16px;
  height: 3px;
  background: var(--coral-500);
  content: "";
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.day-tab.is-active {
  background: rgb(255 255 255 / 4%);
  color: white;
}

.day-tab.is-active::after {
  transform: scaleX(1);
}

.day-tab small,
.day-tab span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.day-tab strong {
  display: block;
  margin: 5px 0;
  font-family: var(--display);
  font-size: 31px;
}

.day-panel {
  display: grid;
  margin-top: 60px;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  animation: rise 360ms ease-out both;
}

.day-photo {
  position: relative;
  margin: 0;
}

.day-photo::before {
  position: absolute;
  inset: -16px 18px 16px -16px;
  z-index: 0;
  border: 1px solid rgb(255 255 255 / 28%);
  content: "";
}

.day-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 28px 60px rgb(0 0 0 / 28%);
}

.day-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  z-index: 2;
  padding: 6px 10px;
  background: rgb(5 47 60 / 78%);
  font-size: 10px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(6px);
}

.day-copy {
  position: relative;
}

.day-number {
  position: absolute;
  top: -108px;
  right: 0;
  color: rgb(255 255 255 / 5%);
  font-family: var(--display);
  font-size: 170px;
  font-weight: 900;
  line-height: 1;
}

.day-copy h3 {
  position: relative;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.day-copy > p:not(.section-kicker, .upload-note) {
  color: rgb(255 255 255 / 73%);
}

.day-copy blockquote {
  margin: 30px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--coral-500);
  color: #ffe0bd;
  font-family: var(--display);
  font-size: 20px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--coral-500);
  font-weight: 700;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translate(3px, -3px);
}

.upload-note {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
}

.art-section {
  padding: 130px 0;
  background:
    radial-gradient(circle at 82% 12%, rgb(61 154 170 / 18%), transparent 28rem),
    var(--sand-100);
}

.art-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.screenprint-feature {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(10 67 83 / 10%);
  border-radius: var(--radius-md);
  background: rgb(255 253 247 / 92%);
  box-shadow: 0 22px 56px rgb(8 57 69 / 12%);
}

.screenprint-intro {
  display: grid;
  padding: 46px 48px;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.screenprint-intro .section-kicker {
  grid-column: 1;
}

.screenprint-intro h3 {
  margin: 4px 0 0;
  color: var(--ocean-900);
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.screenprint-intro > p:last-child {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.screenprint-gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 130px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 4px;
  background: var(--ocean-950);
}

.screenprint-photo {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.screenprint-photo-group {
  grid-column: span 8;
  grid-row: span 3;
}

.screenprint-photo-portrait {
  grid-column: span 4;
  grid-row: span 3;
}

.screenprint-photo-process,
.screenprint-photo-detail,
.screenprint-photo-shirts {
  grid-column: span 4;
  grid-row: span 2;
}

.screenprint-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.screenprint-photo:hover img {
  transform: scale(1.025);
}

.screenprint-photo-portrait img {
  object-position: center 42%;
}

.art-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(10 67 83 / 10%);
  border-radius: var(--radius-md);
  background: rgb(255 253 247 / 88%);
  box-shadow: 0 18px 46px rgb(8 57 69 / 10%);
}

.art-card-media {
  display: grid;
  height: 510px;
  overflow: hidden;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 3px;
  background: var(--ocean-950);
}

.art-card-media img {
  display: block;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.art-card-media-main {
  grid-column: 1 / -1;
  object-position: center 70%;
}

.art-card-media-single img {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.art-card:hover .art-card-media img {
  transform: scale(1.025);
}

.art-card-copy {
  padding: 34px 34px 38px;
}

.art-card-copy h3 {
  margin: 0 0 16px;
  color: var(--ocean-900);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.art-card-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.art-card-cyanotype {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.art-card-cyanotype .art-card-media {
  height: 100%;
  min-height: 430px;
}

.art-card-cyanotype .art-card-copy {
  align-self: center;
}

.stories-section {
  padding: 130px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.story-card:first-child {
  grid-column: 1 / -1;
}

.story-card:last-child:nth-child(even) {
  grid-column: 1 / -1;
}

.story-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  background: rgb(255 253 247 / 78%);
  box-shadow: 0 12px 38px rgb(8 57 69 / 8%);
}

.story-image {
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.story-image img.story-cover-chia {
  object-position: center 82%;
}

.story-card-featured .story-image img {
  height: 390px;
}

.story-card:hover .story-image img {
  transform: scale(1.025);
}

.story-card-copy {
  padding: 32px;
}

.story-card-copy h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.story-card-copy > p:not(.story-meta) {
  color: var(--muted);
}

.story-meta {
  margin-bottom: 12px;
  color: var(--coral-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.story-footer {
  display: flex;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--sand-200);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.story-footer > span {
  color: var(--ocean-700);
  font-family: var(--display);
  font-weight: 700;
}

.read-story {
  display: inline-flex;
  min-height: 44px;
  padding: 0;
  border: 0;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--coral-600);
  cursor: pointer;
  font-weight: 700;
}

.read-story svg {
  transition: transform 180ms ease;
}

.read-story:hover svg {
  transform: translateX(3px);
}

.quote-band {
  position: relative;
  display: grid;
  min-height: 610px;
  background: var(--ocean-950);
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.quote-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-band blockquote {
  display: flex;
  max-width: 700px;
  margin: 0;
  padding: clamp(54px, 8vw, 120px);
  flex-direction: column;
  justify-content: center;
  background: var(--ocean-900);
  color: white;
}

.quote-band blockquote svg {
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  fill: var(--coral-500);
  stroke: none;
}

.quote-band blockquote p {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(27px, 3.5vw, 47px);
  letter-spacing: -0.035em;
  line-height: 1.5;
}

.quote-band cite {
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.gallery-section {
  padding-block: 130px;
}

.gallery-album-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  grid-column: span 4;
  overflow: hidden;
  background: var(--ocean-900);
  cursor: zoom-in;
}

.gallery-wide {
  grid-column: span 8;
}

.gallery-portrait {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 350ms ease,
    opacity 250ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.9;
  transform: scale(1.035);
}

.ending {
  position: relative;
  display: flex;
  min-height: 720px;
  padding: 100px 20px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ocean-950);
  color: white;
  text-align: center;
}

.ending > img:first-child,
.ending-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ending > img:first-child {
  object-fit: cover;
}

.ending-overlay {
  background: linear-gradient(rgb(3 38 48 / 75%), rgb(3 38 48 / 9%) 45%, rgb(3 38 48 / 86%));
}

.ending-kicker {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: max(20px, calc((100vw - 1160px) / 2));
  margin: 0;
}

.ending-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.ending-content > img {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  border: 4px solid rgb(255 255 255 / 34%);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.ending h2 {
  margin-bottom: 22px;
}

.ending-content > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgb(255 255 255 / 79%);
  font-size: 18px;
}

.button-light {
  background: var(--sand-50);
  color: var(--ocean-950);
}

.button-light:hover {
  background: white;
}

.site-footer {
  display: grid;
  min-height: 130px;
  padding: 24px max(20px, calc((100vw - 1160px) / 2));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  background: #022c37;
  color: rgb(255 255 255 / 64%);
  font-size: 12px;
}

.footer-organizers {
  display: flex;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  grid-column: 1 / -1;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.footer-organizers span {
  color: #ffd1a6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-organizers strong {
  color: white;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.footer-sponsor {
  display: flex;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-sponsor > span {
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer-sponsor a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-sponsor img {
  width: 153px;
  height: 44px;
  object-fit: contain;
}

.footer-brand {
  color: white;
}

.site-footer > a:last-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
}

.story-dialog,
.lightbox {
  width: min(900px, calc(100% - 28px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: var(--sand-50);
  color: var(--ink);
  box-shadow: 0 40px 100px rgb(0 0 0 / 40%);
}

.story-dialog::backdrop,
.lightbox::backdrop {
  background: rgb(2 27 34 / 78%);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: fixed;
  top: max(28px, calc((100dvh - min(900px, 100dvh - 32px)) / 2 + 16px));
  right: max(28px, calc((100vw - min(900px, 100vw - 28px)) / 2 + 16px));
  z-index: 10;
  display: inline-flex;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgb(5 47 60 / 14%);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgb(255 253 247 / 92%);
  color: var(--ocean-950);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.story-dialog article > header {
  padding: 72px clamp(26px, 8vw, 90px) 44px;
  text-align: center;
}

.story-dialog h2 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(37px, 6vw, 62px);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.dialog-author {
  color: var(--muted);
  font-size: 13px;
}

.story-dialog article > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.story-dialog article > img.story-cover-chia {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.story-photo-gallery {
  display: grid;
  max-width: 760px;
  margin: 46px auto 0;
  padding-inline: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-photo-gallery figure {
  display: grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--sand-200);
  border-radius: 18px;
  background: var(--sand-100);
}

.story-photo-gallery figure:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.story-photo-gallery img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.story-body {
  max-width: 690px;
  margin: auto;
  padding: 62px 26px 92px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 2;
}

.story-body section + section {
  margin-top: 58px;
}

.story-body h3 {
  margin-bottom: 22px;
  color: var(--coral-600);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.story-source {
  max-width: 690px;
  margin: -46px auto 0;
  padding: 0 26px 82px;
}

.story-slides {
  padding: 10px clamp(18px, 5vw, 54px) 88px;
}

.story-slides > header {
  margin: 0 auto 30px;
  text-align: center;
}

.story-slides h3 {
  margin-top: 6px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
}

.story-slides-grid {
  display: grid;
  max-width: 760px;
  margin: auto;
  grid-template-columns: 1fr;
  gap: 28px;
}

.story-slides figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  background: white;
}

.story-slides img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox {
  overflow: visible;
  background: #032d38;
  color: white;
}

.lightbox > img {
  width: 100%;
  max-height: calc(100dvh - 110px);
  border-radius: 22px 22px 0 0;
  object-fit: contain;
}

.lightbox-close {
  color: var(--ocean-950);
}

.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settle {
  from {
    opacity: 0.2;
    scale: 1.08;
  }
  to {
    opacity: 1;
    scale: 1.03;
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-stamp {
    display: none;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .day-panel,
  .art-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .screenprint-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .screenprint-intro .section-kicker {
    grid-column: auto;
  }

  .art-card-cyanotype {
    grid-template-columns: 1fr;
  }

  .art-card-cyanotype .art-card-media {
    min-height: 400px;
  }

  .story-card:first-child {
    grid-column: auto;
  }

  .story-card:last-child:nth-child(even) {
    grid-column: auto;
  }

  .story-card-featured .story-image img,
  .story-image img {
    height: min(58vw, 410px);
  }

  .quote-band {
    grid-template-columns: 1fr;
  }

  .quote-band > img {
    max-height: 500px;
  }

  .quote-band blockquote {
    max-width: none;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-wide {
    grid-column: span 12;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 6px 7px 6px 12px;
    border-radius: 15px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .header-album {
    width: 46px;
    min-width: 46px;
    padding: 0;
    font-size: 0;
  }

  .hero {
    min-height: 820px;
    padding: 140px 20px 100px;
    align-items: end;
  }

  .hero-photo img {
    object-position: 62% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgb(3 34 43 / 96%) 0%, rgb(3 34 43 / 75%) 44%, transparent 78%),
      linear-gradient(90deg, rgb(3 34 43 / 32%), transparent);
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-copy br {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }

  .intro,
  .art-section,
  .stories-section,
  .gallery-section {
    padding-block: 90px;
  }

  .intro h2,
  .section-heading h2,
  .ending h2 {
    font-size: 38px;
  }

  .week-stats {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .week-stats strong {
    font-size: 34px;
  }

  .days-section {
    padding-block: 88px;
  }

  .section-heading {
    display: block;
    margin-bottom: 36px;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .gallery-album-links {
    margin-top: 20px;
    justify-content: flex-start;
  }

  .day-tabs {
    min-width: 650px;
  }

  .day-tab {
    min-height: 105px;
  }

  .day-panel {
    margin-top: 44px;
    gap: 46px;
  }

  .day-photo::before {
    inset: -10px 10px 10px -10px;
  }

  .day-number {
    top: -78px;
    font-size: 116px;
  }

  .story-card-copy {
    padding: 26px 22px;
  }

  .art-card-media {
    height: min(112vw, 520px);
  }

  .screenprint-intro {
    padding: 30px 22px 34px;
  }

  .screenprint-intro h3 {
    font-size: 38px;
  }

  .screenprint-intro > p:last-child {
    font-size: 16px;
  }

  .screenprint-gallery {
    grid-auto-rows: 116px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenprint-photo-group,
  .screenprint-photo-detail,
  .screenprint-photo-shirts {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .screenprint-photo-process,
  .screenprint-photo-portrait {
    grid-column: span 1;
    grid-row: span 2;
  }

  .art-card-cyanotype .art-card-media {
    min-height: 0;
  }

  .art-card-copy {
    padding: 28px 22px 32px;
  }

  .story-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .read-story {
    margin-left: -6px;
    padding-inline: 6px;
  }

  .quote-band {
    min-height: 0;
  }

  .quote-band > img {
    height: 360px;
  }

  .quote-band blockquote {
    padding: 62px 24px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .gallery-item,
  .gallery-wide {
    grid-column: span 12;
  }

  .gallery-portrait {
    grid-row: span 2;
  }

  .ending {
    min-height: 680px;
  }

  .ending-content > img {
    width: 94px;
    height: 94px;
  }

  .site-footer {
    padding-block: 28px;
  }

  .footer-organizers {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .story-dialog article > header {
    padding-top: 80px;
  }

  .story-body {
    font-size: 17px;
  }

  .story-photo-gallery {
    grid-template-columns: 1fr;
  }

  .story-photo-gallery figure:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .story-slides-grid {
    grid-template-columns: 1fr;
  }

  .story-slides figure:first-child {
    grid-column: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
