/* ============ TOKENS ============ */
:root {
  --green: #3d4a35;
  --green-deep: #2f3a28;
  --cream: #f4ecd8;
  --cream-2: #efe7d3;
  --mustard: #e8a83a;
  --orange: #ee7644;
  --rust: #a04e2e;
  --ink: #14140f;
  --ink-soft: #6b6859;
  --line: rgba(20, 20, 15, 0.12);

  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;

  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 11vw, 140px);
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--mustard); color: var(--ink); }

/* SVG sparkle default */
svg { fill: currentColor; }

/* Display utility */
.display {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(36px, 5.5vw, 80px);
}
.display--mustard { color: var(--mustard); }
.display--xl { font-size: clamp(56px, 11vw, 180px); }
.mt { margin-top: 60px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  background: color-mix(in srgb, var(--cream) 85%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__spark { width: 22px; height: 22px; color: var(--orange); }
.brand__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "SOFT" 100;
  font-size: 22px;
}
.nav__menu { display: flex; align-items: center; gap: 32px; font-size: 15px; }
.nav__menu a { transition: opacity .2s; }
.nav__menu a:hover { opacity: .6; }
.nav__cta {
  padding: 10px 22px;
  background: var(--mustard);
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink);
  transition: transform .2s ease;
}
.nav__cta:hover { transform: translateY(-2px); opacity: 1 !important; background: var(--orange); color: var(--cream); }

@media (max-width: 720px) {
  .nav__menu a:not(.nav__cta) { display: none; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 110px var(--pad-x) 40px;
  display: grid;
  place-items: center;
}
.hero__panel {
  background: var(--green);
  color: var(--cream);
  border-radius: 18px;
  padding: clamp(40px, 6vw, 80px);
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px 40px;
  min-height: 80vh;
}
.hero__title-wrap {
  grid-column: 1 / -1;
  position: relative;
}
.hero__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(60px, 14vw, 220px);
  line-height: .9;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.hero__title--ghost {
  -webkit-text-stroke: 2px var(--mustard);
  color: transparent;
  margin-top: -0.15em;
  margin-left: 1.5vw;
}
.hero__title--ghost:nth-of-type(3) { margin-left: 3vw; opacity: .6; }

.hero__handles {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: center;
  color: var(--cream);
}

.hero__lede {
  grid-column: 1 / 2;
  max-width: 50ch;
  color: rgba(244, 236, 216, 0.8);
  font-size: 14px;
  align-self: end;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: transform .3s ease;
}
.scroll-cue:hover { transform: translateX(-50%) translateY(4px); }
.scroll-cue svg {
  position: absolute;
  width: 14px; height: 14px;
  color: var(--ink);
  bottom: 12px;
}
.scroll-cue span { line-height: 1; }

/* ============ STAMP CARD (photo replacement) ============ */
.stamp {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  background: var(--cream-2);
  color: var(--green-deep);
  border-radius: 14px;
  padding: 32px 24px;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--mustard);
  overflow: hidden;
}
.stamp__inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.stamp__top, .stamp__bottom {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .02em;
  text-align: center;
  color: var(--rust);
}
.stamp__mono {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(80px, 12vw, 160px);
  line-height: .85;
  text-align: center;
  color: var(--green);
  letter-spacing: -0.06em;
}
.stamp__lines {
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.stamp__spark {
  position: absolute;
  width: 28px; height: 28px;
  color: var(--mustard);
  z-index: 1;
}
.stamp__spark--a { top: 14px; left: 14px; }
.stamp__spark--b { bottom: 14px; right: 14px; transform: rotate(45deg); }
.stamp__spark--c { top: 50%; right: 8px; width: 16px; height: 16px; color: var(--orange); }

@media (max-width: 880px) {
  .hero__panel { grid-template-columns: 1fr; }
  .stamp { grid-column: 1; grid-row: auto; min-height: 380px; }
  .hero__lede { grid-column: 1; }
}

/* ============ ABOUT ============ */
.about {
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__intro h2 {
  margin-bottom: 24px;
}
.about__intro p {
  max-width: 50ch;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
}
.link-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--orange);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  transition: transform .25s ease;
}
.link-pill svg { width: 14px; height: 14px; color: var(--mustard); }
.link-pill:hover { transform: translateY(-2px); }

/* card-photo (replacement for portrait) */
.card-photo {
  position: relative;
  background: var(--green);
  border-radius: 14px;
  padding: 24px;
  color: var(--cream);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.card-photo__poster {
  background: var(--cream);
  color: var(--green-deep);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.card-photo__mono {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(72px, 9vw, 130px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--green);
}
.card-photo__mono em {
  font-style: normal;
  color: var(--orange);
  margin: 0 6px;
}
.card-photo__rep {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 12px 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  -webkit-text-stroke: 1px var(--mustard);
  color: transparent;
  letter-spacing: .04em;
}
.card-photo__sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--rust);
}
.chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
}
.chip--mustard { background: var(--mustard); color: var(--ink); }
.chip { top: 14px; left: 14px; z-index: 3; }
.chip--right { top: auto; left: auto; bottom: 220px; right: 14px; }
.card-photo__contact {
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 20px;
}
.card-photo__contact h4 {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 10px;
}
.card-photo__contact ul li {
  font-size: 13px;
  padding: 4px 0;
  color: rgba(244, 236, 216, 0.85);
}

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

/* ============ RESUME ============ */
.resume {
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.dot-list {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.dot-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
  position: relative;
}
.dot-list li::before {
  content: "✦";
  position: absolute;
  left: -22px; top: 0;
  color: var(--orange);
  font-size: 14px;
}
.dot-list__date {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
  font-size: 15px;
}
.dot-list strong { display: block; font-weight: 600; font-size: 15px; }
.dot-list p { color: var(--ink-soft); font-size: 13px; margin-top: 2px; }

.exp-block {
  margin-top: 60px;
  background: var(--mustard);
  color: var(--ink);
  border-radius: 14px;
  padding: 36px 32px;
}
.exp-block .display { color: var(--ink); margin-bottom: 16px; }
.dot-list--inverse li::before { color: var(--rust); }
.dot-list--inverse .dot-list__date { color: var(--rust); }
.dot-list--inverse p { color: rgba(20, 20, 15, 0.65); }

.hashtags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.hashtags span {
  padding: 8px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.skill-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.skill-cols h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.skill-cols small { color: var(--ink-soft); font-size: 12px; display: block; margin-top: 8px; }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 240px;
}
.tool-grid span {
  aspect-ratio: 1;
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
}
.bullets li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.pill-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}
.pill-grid span {
  padding: 8px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
}

.lang-row {
  display: flex; gap: 32px;
  margin-top: 16px;
}
.lang-row strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
}
.lang-row span { color: var(--ink-soft); font-size: 13px; }

.hobbies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.hobbies > div {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
  font-size: 12px;
}
.hobbies svg {
  width: 36px; height: 36px;
  color: var(--orange);
}

@media (max-width: 880px) {
  .resume { grid-template-columns: 1fr; }
  .skill-cols { grid-template-columns: 1fr; }
}

/* ============ CONTENTS BANNER ============ */
.contents-banner {
  background: var(--green);
  color: var(--cream);
  padding: var(--section-y) var(--pad-x);
  text-align: center;
}
.contents-banner .display { color: var(--cream); }
.inline-spark {
  display: inline-block;
  width: clamp(20px, 3vw, 48px);
  height: clamp(20px, 3vw, 48px);
  color: var(--mustard);
  vertical-align: middle;
  margin: 0 12px;
}
.contents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.contents-grid h4 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  color: var(--mustard);
  letter-spacing: -0.02em;
}
.contents-grid p { color: rgba(244, 236, 216, 0.7); font-size: 13px; margin-top: 6px; }

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

/* ============ MARQUEE BANNER ============ */
.banner {
  padding: var(--section-y) 0;
  text-align: center;
  border-block: 1px solid var(--line);
  background: var(--cream-2);
}
.banner .display { padding: 0 var(--pad-x); margin-bottom: 30px; }
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 16px 0;
  background: var(--cream);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 100px);
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ PROJECT ============ */
.project {
  padding: var(--section-y) var(--pad-x);
  position: relative;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}
.project--alt { background: var(--cream); }

.project__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(60px, 8vw, 120px);
  color: var(--mustard);
  position: absolute;
  top: var(--section-y);
  right: var(--pad-x);
  line-height: 1;
}

.project__head {
  max-width: 56ch;
  margin-bottom: 50px;
}
.project__head .display { margin-bottom: 16px; }
.project__handles {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-style: italic;
  color: var(--rust);
  font-size: 16px;
}
.project__head p { color: var(--ink-soft); font-size: 15px; max-width: 50ch; }

.project__sub {
  margin-top: 60px;
  margin-bottom: 20px;
  color: var(--ink);
}

/* IG-style grid mock */
.ig-grid {
  background: var(--green);
  color: var(--cream);
  border-radius: 14px;
  padding: 28px;
  max-width: 720px;
  margin-bottom: 30px;
}
.ig-grid__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.ig-grid__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
}
.ig-grid__meta strong { display: block; font-weight: 600; }
.ig-grid__meta small { color: rgba(244, 236, 216, 0.7); font-size: 12px; }
.ig-grid__follow {
  background: var(--mustard);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.ig-grid__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-block: 1px solid rgba(244, 236, 216, 0.2);
  margin-bottom: 18px;
}
.ig-grid__stats div { text-align: center; }
.ig-grid__stats strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
}
.ig-grid__stats small { font-size: 11px; color: rgba(244, 236, 216, 0.7); }

.ig-grid__cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.cell {
  aspect-ratio: 1;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.cell small { font-size: 10px; opacity: .8; font-style: normal; font-family: var(--sans); }
.cell--green { background: var(--green-deep); color: var(--mustard); }
.cell--cream { background: var(--cream); color: var(--green-deep); }
.cell--cream2 { background: var(--cream-2); color: var(--rust); }
.cell--mustard { background: var(--mustard); color: var(--ink); }
.cell--rust { background: var(--rust); color: var(--cream); }
.cell--ink { background: var(--ink); color: var(--mustard); }
.cell--orange { background: var(--orange); color: var(--cream); }

/* Goals */
.goals {
  display: grid; gap: 12px;
  max-width: 60ch;
}
.goals li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
}
.goals li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--orange);
}

/* Tasks 3-cols */
.tasks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
}
.tasks__cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.tasks__cell:last-child { border-right: 0; }
.tasks__cell span {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}
.tasks__cell h5 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
}
.tasks__cell p { color: var(--ink-soft); font-size: 14px; }

@media (max-width: 720px) { .tasks { grid-template-columns: 1fr; } .tasks__cell { border-right: 0; border-bottom: 1px solid var(--line); } }

/* Results split */
.results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.results__copy {
  background: var(--rust);
  color: var(--cream);
  border-radius: 12px;
  padding: 36px 32px;
}
.results__copy p { margin-bottom: 16px; opacity: .85; }
.results__copy ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(244, 236, 216, 0.18);
}
.results__copy strong { color: var(--mustard); font-weight: 700; }
.results__panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  padding: 32px;
}
.results__panel h6 {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--mustard);
}
.results__panel p { color: rgba(244, 236, 216, 0.7); font-size: 13px; margin-bottom: 16px; }
.results__panel em { color: var(--mustard); font-style: normal; font-weight: 700; }
.results__panel ul li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 236, 216, 0.12);
  font-size: 14px;
}
.results__panel strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
}

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

.project__foot {
  display: flex; justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Project 02 specifics */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.poster {
  aspect-ratio: 3 / 4;
  background: var(--green);
  color: var(--cream);
  border-radius: 10px;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
}
.poster span { font-size: clamp(28px, 4vw, 56px); line-height: 1; }
.poster small { font-style: normal; font-family: var(--sans); font-size: 12px; opacity: .7; font-weight: 400; }
.poster--mustard { background: var(--mustard); color: var(--ink); }
.poster--rust { background: var(--rust); color: var(--cream); }
.poster--cream { background: var(--cream); color: var(--green-deep); }

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.kpi-row > div {
  padding: 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.kpi-row > div:last-child { border-right: 0; }
.kpi-row strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--orange);
  display: block;
  letter-spacing: -0.02em;
}
.kpi-row span { font-size: 12px; color: var(--ink-soft); margin-top: 4px; display: block; }

@media (max-width: 720px) {
  .poster-grid { grid-template-columns: 1fr 1fr; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .kpi-row > div:nth-child(2) { border-right: 0; }
  .kpi-row > div { border-bottom: 1px solid var(--line); }
}

/* ============ CONTACT ============ */
.contact {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: var(--section-y) var(--pad-x);
}
.contact .display { color: var(--cream); }
.contact__lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--mustard);
  margin-top: 16px;
  margin-bottom: 40px;
}
.contact__mail {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(36px, 8vw, 130px);
  line-height: 1;
  letter-spacing: -0.04em;
  word-break: break-word;
  color: var(--cream);
  transition: color .3s ease;
}
.contact__mail em {
  font-style: normal;
  color: var(--mustard);
}
.contact__mail:hover { color: var(--mustard); }
.contact__row {
  margin-top: 50px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: rgba(244, 236, 216, 0.8);
}
.contact__row a:hover { color: var(--mustard); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 28px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
}
.footer > div { display: flex; align-items: center; gap: 10px; }
.footer svg { width: 16px; height: 16px; color: var(--mustard); }

@media (max-width: 720px) { .footer { flex-direction: column; gap: 8px; text-align: center; } }

/* ============ REVEAL ============ */
[data-fade] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
[data-fade].is-in { opacity: 1; transform: none; }

/* spinning sparkle decoration */
.scroll-cue { animation: spin 16s linear infinite; }
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }
.scroll-cue:hover { animation-play-state: paused; }
.scroll-cue span, .scroll-cue svg { animation: spinReverse 16s linear infinite; }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
.scroll-cue svg { animation-name: spinReverseShift; }
@keyframes spinReverseShift { to { transform: rotate(-360deg); } }
