:root {
  --ink: #17110f;
  --ink-soft: #241916;
  --paper: #f1e9dc;
  --paper-deep: #dfd1bd;
  --ember: #d46336;
  --ember-dark: #9f3e24;
  --gold: #d5a356;
  --wine: #4a1721;
  --muted: #71655c;
  --line: rgba(23, 17, 15, 0.18);
  --light-line: rgba(241, 233, 220, 0.18);
  --display: "Barlow Condensed", sans-serif;
  --serif: "Cormorant Garamond", serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.6; }
body::before { content: ""; position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E"); }
a { color: inherit; text-decoration: none; }
button, a { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
p { margin-top: 0; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 10px 14px; background: var(--paper); color: var(--ink); transform: translateY(-160%); transition: transform 0.2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.topbar { min-height: 36px; padding: 8px 4.5vw; display: flex; justify-content: space-between; gap: 20px; background: var(--ink); color: rgba(241, 233, 220, 0.68); font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase; }
.topbar p { margin: 0; }
.topbar span { color: var(--ember); padding: 0 8px; }

.site-header { height: 92px; padding: 0 4.5vw; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(241, 233, 220, 0.94); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: 56px; border-radius: 50%; object-fit: cover; }
.brand strong { display: block; font-family: var(--serif); font-size: 25px; line-height: 0.9; letter-spacing: 0.02em; }
.brand small { display: block; margin-top: 5px; font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.site-header nav { display: flex; align-items: center; gap: 30px; font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.site-header nav a:not(.nav-cta), footer nav a { position: relative; }
.site-header nav a:not(.nav-cta)::after, footer nav a::after { content: ""; position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.25s ease; }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after, footer nav a:hover::after, footer nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 19px; border: 1px solid var(--ink); transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.nav-cta:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px 0; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; }
.menu-toggle i { display: inline-block; width: 21px; height: 1px; margin-left: 8px; vertical-align: middle; position: relative; background: currentColor; transition: background 0.2s ease; }
.menu-toggle i::before, .menu-toggle i::after { content: ""; position: absolute; left: 0; width: 21px; height: 1px; background: currentColor; transition: transform 0.2s ease; }
.menu-toggle i::before { transform: translateY(-6px); }
.menu-toggle i::after { transform: translateY(6px); }
.menu-toggle.active i { background: transparent; }
.menu-toggle.active i::before { transform: rotate(45deg); }
.menu-toggle.active i::after { transform: rotate(-45deg); }

.hero { min-height: calc(100vh - 128px); padding: clamp(70px, 8vw, 130px) 5vw 75px 7vw; display: grid; grid-template-columns: minmax(0, 1.07fr) minmax(390px, 0.93fr); align-items: center; gap: 4vw; position: relative; overflow: hidden; background: var(--ink); color: var(--paper); }
.hero::before { content: ""; position: absolute; width: 44vw; height: 44vw; left: -21vw; bottom: -30vw; border: 1px solid rgba(213, 163, 86, 0.22); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(213, 163, 86, 0.025), 0 0 0 16vw rgba(213, 163, 86, 0.018); }
.hero-copy { position: relative; z-index: 2; }
.kicker { margin-bottom: 22px; display: flex; align-items: center; gap: 12px; color: var(--gold); font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.kicker span { width: 34px; height: 1px; background: currentColor; }
.kicker.dark { color: var(--ember-dark); }
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.035em; text-transform: uppercase; }
h1 { max-width: 850px; margin-bottom: 28px; font-size: clamp(70px, 8.2vw, 136px); line-height: 0.82; }
h1 em, h2 em { color: var(--ember); font-family: var(--serif); font-weight: 500; letter-spacing: -0.045em; text-transform: none; }
.hero-intro { max-width: 650px; color: rgba(241, 233, 220, 0.72); font-family: var(--serif); font-size: clamp(21px, 2vw, 29px); line-height: 1.35; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { min-height: 53px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease; }
.button:hover { transform: translateY(-3px); }
.primary { background: var(--ember); color: var(--ink); }
.primary:hover { background: var(--gold); }
.text-link { padding-bottom: 4px; border-bottom: 1px solid rgba(241, 233, 220, 0.45); font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.text-link span { margin-left: 8px; color: var(--ember); }
.dark-link { border-color: var(--line); }
.hero-visual { position: relative; z-index: 2; justify-self: end; width: min(100%, 620px); padding: 0 26px 38px 0; }
.hero-frame { position: relative; overflow: hidden; aspect-ratio: 0.96; background: var(--ink-soft); }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(23, 17, 15, 0.5)); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.06); transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.hero-frame:hover img { transform: scale(1.025); }
.hero-visual::before { content: ""; position: absolute; right: 0; bottom: 12px; width: calc(100% - 26px); height: calc(100% - 38px); border: 1px solid rgba(213, 163, 86, 0.5); }
.seal { width: 128px; height: 128px; position: absolute; left: -53px; bottom: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--wine); color: var(--paper); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28); transform: rotate(-9deg); }
.seal::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(241, 233, 220, 0.5); border-radius: 50%; }
.seal span { font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.seal strong { font-family: var(--serif); font-size: 37px; line-height: 1; }
.visual-caption { margin: 13px 0 0; color: rgba(241, 233, 220, 0.5); font-family: var(--serif); font-size: 15px; font-style: italic; line-height: 1.25; text-align: right; }
.hero-index { position: absolute; left: 1.4vw; bottom: 75px; color: rgba(241, 233, 220, 0.32); font-family: var(--display); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left bottom; }

.ticker { overflow: hidden; background: var(--ember); color: var(--ink); }
.ticker div { min-width: max-content; padding: 16px 5vw; display: flex; align-items: center; justify-content: space-around; gap: 30px; font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.ticker i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

.section { padding: clamp(90px, 10vw, 155px) 7vw; }
.section-number { padding-bottom: 17px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.light-number { border-color: var(--light-line); color: rgba(241, 233, 220, 0.5); }
.about { background: var(--paper); }
.about-grid { margin-top: 76px; display: grid; grid-template-columns: 1.08fr 0.75fr; gap: 11vw; align-items: start; }
h2 { margin-bottom: 30px; font-size: clamp(58px, 7.2vw, 108px); line-height: 0.88; }
.about-copy { padding-top: 40px; }
.about-copy .lead { color: var(--ink); font-family: var(--serif); font-size: clamp(26px, 2.6vw, 38px); line-height: 1.2; }
.about-copy > p:not(.lead) { color: var(--muted); }
.about-copy .text-link { display: inline-block; margin-top: 22px; }

.manifesto { min-height: 650px; padding: clamp(90px, 10vw, 145px) 7vw; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr); align-items: center; gap: 10vw; position: relative; overflow: hidden; background: var(--wine); color: var(--paper); }
.manifesto::after { content: "D"; position: absolute; right: -2vw; top: -31vw; color: rgba(241, 233, 220, 0.035); font-family: var(--serif); font-size: 67vw; line-height: 1; }
.definition-heading, .diaspora-poem { position: relative; z-index: 1; }
.definition-label { margin-bottom: 40px; color: var(--gold); font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.definition-label span { margin: 0 10px; color: rgba(241, 233, 220, 0.55); font-family: var(--serif); font-size: 16px; font-style: italic; letter-spacing: 0.03em; text-transform: none; }
.manifesto h2 { max-width: 800px; margin-bottom: 36px; font-size: clamp(58px, 7.5vw, 112px); }
.manifesto h2 em { color: var(--gold); }
.definition-copy { max-width: 610px; margin: 0; color: rgba(241, 233, 220, 0.7); font-size: 15px; }
.diaspora-poem { margin: 0; padding: 45px 0 20px 45px; border-left: 1px solid rgba(213, 163, 86, 0.7); color: var(--paper); font-family: var(--serif); font-size: clamp(30px, 3.5vw, 52px); font-style: italic; line-height: 0.95; }
.diaspora-poem::before { content: "“"; position: absolute; top: -24px; left: 24px; color: var(--ember); font-size: 130px; font-style: normal; line-height: 1; }
.diaspora-poem p { margin: 0 0 22px; }
.diaspora-poem p:nth-child(even) { padding-left: clamp(14px, 3vw, 58px); }

.lineup { background: var(--ink); color: var(--paper); }
.lineup-head { margin: 70px 0 65px; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.lineup-head h2 { margin-bottom: 0; }
.lineup-head > p { max-width: 340px; color: rgba(241, 233, 220, 0.55); font-size: 13px; }
.schedule { border-top: 1px solid var(--light-line); }
.schedule article { min-height: 126px; padding: 24px 0; display: grid; grid-template-columns: 90px minmax(0, 1fr) 120px; gap: 25px; align-items: center; border-bottom: 1px solid var(--light-line); transition: padding 0.3s ease, background-color 0.3s ease; }
.schedule article:hover { padding-right: 24px; padding-left: 24px; background: var(--ink-soft); }
.schedule .day { margin: 0; color: var(--ember); font-family: var(--display); font-size: 18px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.schedule h3 { margin-bottom: 3px; font-family: var(--display); font-size: clamp(27px, 3vw, 42px); line-height: 1; text-transform: uppercase; }
.schedule article div p { margin: 0; color: rgba(241, 233, 220, 0.55); font-family: var(--serif); font-size: 18px; }
.schedule article > span { color: var(--gold); font-family: var(--serif); font-size: 18px; font-style: italic; text-align: right; }

.flyer-section { min-height: 920px; display: grid; grid-template-columns: minmax(280px, 0.64fr) minmax(520px, 1fr); gap: 6vw; align-items: center; position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--paper); }
.flyer-section::before { content: ""; position: absolute; inset: -3%; z-index: -2; background: url("diaspora-sign.jpg") center 46% / cover no-repeat; filter: saturate(0.6) contrast(1.05); transform: scale(1.04); }
.flyer-section::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(23, 17, 15, 0.96) 0%, rgba(23, 17, 15, 0.84) 38%, rgba(23, 17, 15, 0.42) 72%, rgba(23, 17, 15, 0.68) 100%); }
.flyer-copy { position: relative; z-index: 4; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.38); }
.flyer-copy .section-number { margin-bottom: 70px; }
.flyer-copy > p:not(.kicker) { max-width: 520px; color: rgba(241, 233, 220, 0.74); }
.dark-button { margin-top: 28px; background: var(--ink); color: var(--paper); }
.dark-button:hover { background: var(--wine); }
.flyer-gallery { min-height: clamp(680px, 57vw, 820px); position: relative; z-index: 2; }
.flyer { width: 58%; margin: 0; position: absolute; transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.flyer:first-child { left: 0; top: 4%; z-index: 2; transform: rotate(-4deg); }
.flyer:nth-child(2) { right: 0; top: 24%; z-index: 3; transform: rotate(4deg); }
.flyer:first-child:hover { transform: rotate(-2deg) translateY(-10px); }
.flyer:nth-child(2):hover { transform: rotate(2deg) translateY(-10px); }
.flyer img { position: relative; z-index: 2; width: 100%; border: 7px solid rgba(241, 233, 220, 0.92); box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55); }
.flyer-shadow { position: absolute; inset: 3% -4% -4% 4%; border: 1px solid rgba(213, 163, 86, 0.8); background: rgba(74, 23, 33, 0.26); }
.flyer:nth-child(2) .flyer-shadow { inset: 4% 4% -3% -4%; }
.flyer figcaption { position: absolute; right: -12px; bottom: 18px; z-index: 4; max-width: 88%; padding: 9px 13px; background: var(--paper); color: var(--ink); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-align: right; text-transform: uppercase; }
.flyer:nth-child(2) figcaption { right: auto; left: -12px; text-align: left; }

.experience { background: var(--wine); color: var(--paper); }
.experience-title { margin: 70px 0; display: grid; grid-template-columns: 0.8fr 1.2fr; }
.experience-title > * { grid-column: 2; }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--light-line); border-left: 1px solid var(--light-line); }
.experience-grid article { min-height: 370px; padding: 34px 28px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); position: relative; transition: background-color 0.3s ease, transform 0.3s ease; }
.experience-grid article:hover { z-index: 2; background: var(--ink); transform: translateY(-8px); }
.experience-grid article.featured { background: var(--ember-dark); transform: translateY(-26px); }
.experience-grid article.featured:hover { transform: translateY(-34px); }
.experience-grid article > span { position: absolute; top: 28px; left: 28px; color: var(--gold); font-family: var(--display); font-size: 11px; letter-spacing: 0.15em; }
.experience-grid h3 { margin-bottom: 12px; font-family: var(--serif); font-size: clamp(35px, 3.4vw, 53px); font-weight: 500; line-height: 1; }
.experience-grid p { margin: 0; color: rgba(241, 233, 220, 0.62); font-size: 13px; }

.visit { min-height: 720px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr); align-items: center; gap: 8vw; position: relative; overflow: hidden; background: var(--ink); color: var(--paper); }
.visit::after { content: ""; position: absolute; right: -17vw; bottom: -26vw; width: 52vw; height: 52vw; border: 1px solid rgba(213, 163, 86, 0.3); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(213, 163, 86, 0.025), 0 0 0 14vw rgba(213, 163, 86, 0.018); }
.visit-copy, .visit-details { position: relative; z-index: 2; }
.visit-copy > p:last-child { max-width: 620px; color: rgba(241, 233, 220, 0.62); font-family: var(--serif); font-size: 21px; }
.visit-mark { position: absolute; left: 45%; top: 50%; color: rgba(241, 233, 220, 0.025); font-family: var(--serif); font-size: 55vw; line-height: 0; transform: translate(-50%, -50%); }
.visit-details { margin: 0; font-style: normal; }
.visit-details div { padding: 22px 0; border-bottom: 1px solid var(--light-line); }
.visit-details span { display: block; margin-bottom: 8px; color: var(--ember); font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.visit-details strong { font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.2; }

footer { padding: 48px 4.5vw 34px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; background: #0e0a09; color: rgba(241, 233, 220, 0.66); }
.footer-brand { color: var(--paper); }
footer > p { margin: 0; justify-self: end; font-family: var(--serif); font-size: 18px; font-style: italic; }
footer nav { display: flex; gap: 25px; font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
footer > small { justify-self: end; font-family: var(--display); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { height: auto; min-height: 92px; flex-wrap: wrap; }
  .site-header nav { width: 100%; padding: 0 0 20px; flex-wrap: wrap; }
  .js .menu-toggle { display: block; }
  .js .site-header nav { display: none; position: absolute; top: 92px; right: 0; left: 0; padding: 30px 5vw; flex-direction: column; align-items: flex-start; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 25px 45px rgba(23, 17, 15, 0.12); }
  .js .site-header nav.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
  .hero { grid-template-columns: 1fr 0.82fr; padding-left: 5vw; }
  .seal { left: -30px; }
  .about-grid { gap: 7vw; }
  .manifesto { gap: 6vw; }
  .flyer-section { min-height: auto; grid-template-columns: 1fr; gap: 45px; }
  .flyer-section::after { background: linear-gradient(180deg, rgba(23, 17, 15, 0.96) 0%, rgba(23, 17, 15, 0.78) 43%, rgba(23, 17, 15, 0.52) 100%); }
  .flyer-gallery { width: min(100%, 700px); min-height: 780px; justify-self: center; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid article.featured { transform: none; }
  .experience-grid article.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 760px) {
  .topbar { justify-content: center; }
  .topbar p:last-child { display: none; }
  .site-header { min-height: 80px; }
  .js .site-header nav { top: 80px; }
  .brand img { width: 45px; height: 46px; }
  .brand strong { font-size: 22px; }
  .hero { min-height: auto; padding: 78px 6vw 70px; grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { padding-right: 0; }
  h1 { font-size: clamp(62px, 19vw, 105px); }
  .hero-visual { width: 90%; justify-self: end; }
  .hero-index { display: none; }
  .seal { width: 105px; height: 105px; left: -32px; }
  .seal strong { font-size: 30px; }
  .visual-caption { font-size: 13px; }
  .ticker div { justify-content: flex-start; }
  .section { padding-right: 6vw; padding-left: 6vw; }
  .about-grid, .manifesto, .lineup-head, .flyer-section, .visit { grid-template-columns: 1fr; }
  .about-grid { margin-top: 55px; gap: 20px; }
  .about-copy { padding-top: 0; }
  .manifesto { min-height: 0; gap: 70px; }
  .diaspora-poem { width: min(100%, 560px); justify-self: end; }
  .lineup-head { display: grid; margin-top: 55px; }
  .schedule article { grid-template-columns: 65px 1fr; }
  .schedule article > span { display: none; }
  .flyer-gallery { width: 94%; min-height: 720px; justify-self: center; }
  .experience-title { display: block; }
  .experience-grid article { min-height: 320px; }
  .visit { min-height: auto; gap: 40px; }
  .visit-details { max-width: 500px; }
  footer { grid-template-columns: 1fr; }
  footer > p, footer > small { justify-self: start; }
}

@media (max-width: 520px) {
  .topbar { font-size: 9px; letter-spacing: 0.12em; }
  .topbar span { padding: 0 3px; }
  .brand small { letter-spacing: 0.12em; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { width: 94%; padding-right: 14px; }
  .hero-visual::before { width: calc(100% - 14px); }
  .seal { left: -20px; bottom: 5px; }
  h2 { font-size: clamp(52px, 16vw, 76px); }
  .manifesto { padding-right: 5vw; padding-left: 5vw; }
  .definition-label span { display: block; margin: 4px 0 0; }
  .diaspora-poem { padding-left: 28px; font-size: clamp(31px, 10vw, 44px); }
  .schedule article { min-height: 115px; padding: 20px 0; grid-template-columns: 45px 1fr; gap: 14px; }
  .schedule .day { font-size: 14px; }
  .schedule article div p { font-size: 16px; }
  .flyer-section::before { background-position: 58% center; }
  .flyer-gallery { width: 92%; min-height: 0; display: grid; gap: 38px; }
  .flyer { width: 92%; position: relative; }
  .flyer:first-child { left: auto; top: auto; justify-self: start; transform: rotate(-2.5deg); }
  .flyer:nth-child(2) { right: auto; top: auto; justify-self: end; transform: rotate(2.5deg); }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid article { min-height: 270px; }
  footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
