/* ============================================================
   Audrey Robert — Portfolio
   Science · Illustration · Comics · Nature & Preservation
   A handmade, bright, editorial design system.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Paper & ink */
  --paper:        #FBF5E9;
  --paper-2:      #F3E9D4;
  --card:         #FFFDF6;
  --ink:          #2B2A26;
  --ink-soft:     #5C584E;
  --ink-faint:    #8A8478;

  /* Nature palette (drawn from Audrey's own work) */
  --forest:       #3C5A43;
  --forest-deep:  #26392C;
  --sage:         #93AE86;
  --sage-soft:    #C9D8BB;
  --clay:         #D26A4C;   /* terracotta */
  --clay-deep:    #B5502F;
  --ochre:        #D9A23A;
  --indigo:       #434C86;   /* from the wetlands comic */
  --indigo-soft:  #7A82B8;

  /* Functional */
  --accent:       var(--clay);
  --line:         #E2D6BC;
  --shadow:       rgba(38, 57, 44, .14);
  --shadow-strong:rgba(38, 57, 44, .28);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  --hand:    "Caveat", "Comic Sans MS", cursive;

  /* Rhythm */
  --maxw: 1200px;
  --gap: clamp(1rem, 3vw, 2.5rem);
  --radius: 14px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1.1em; max-width: 65ch; }
strong { font-weight: 700; }

.kicker {
  font-family: var(--hand);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--clay);
  line-height: 1;
  display: inline-block;
  transform: rotate(-2.5deg);
  margin-bottom: .2rem;
}
.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.section--tint { background: var(--paper-2); }
.section--forest { background: var(--forest-deep); color: #F1ECDD; }
.section--forest h2, .section--forest h3 { color: #fff; }
.center { text-align: center; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* hand-drawn divider */
.squiggle { display: block; width: 130px; height: 14px; margin: .6rem 0; color: var(--sage); }
.center .squiggle, .squiggle--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: .8rem 1.5rem; border-radius: 999px;
  background: var(--clay); color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  box-shadow: 0 6px 18px rgba(178, 80, 47, .28);
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 12px 26px rgba(178, 80, 47, .36); background: var(--clay-deep); }
.btn--ghost { background: transparent; color: var(--forest); box-shadow: none; border: 2px solid var(--forest); }
.btn--ghost:hover { background: var(--forest); color: #fff; box-shadow: 0 10px 22px var(--shadow); }
.btn--light { background: #fff; color: var(--forest-deep); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: .65rem;
}
.site-header.is-solid {
  background: rgba(251, 245, 233, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(38,57,44,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--ink); }
.brand img { width: 46px; height: 46px; border-radius: 50%; box-shadow: 0 3px 10px var(--shadow); }
.brand small { display: block; font-family: var(--hand); font-size: .95rem; color: var(--clay); line-height: .9; }
.brand .brand-name { line-height: 1.05; }

.nav-links { display: flex; align-items: center; gap: clamp(.6rem, 1.8vw, 1.7rem); }
.nav-links a {
  font-weight: 600; font-size: .98rem; color: var(--ink-soft);
  position: relative; padding: .3rem 0; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='7'%3E%3Cpath d='M1 4 C 20 1, 30 6, 45 3 S 70 1, 79 4' stroke='%23D26A4C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.lang-toggle { display: inline-flex; align-items: center; border: 2px solid var(--sage); border-radius: 999px; overflow: hidden; }
.lang-toggle button { padding: .25rem .6rem; font-weight: 800; font-size: .82rem; color: var(--ink-soft); transition: background .2s, color .2s; }
.lang-toggle button.active { background: var(--forest); color: #fff; }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; position: relative; margin-inline: auto;
  transition: transform .3s, opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.4rem; padding: 2rem 2.2rem;
    transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: -10px 0 40px rgba(38,57,44,.18); z-index: 90;
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; font-family: var(--display); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(7rem, 14vw, 10rem); padding-bottom: clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: .25em; }
.hero h1 .accent { color: var(--clay); font-style: italic; }
.hero .lead { max-width: 46ch; }
.hero-roles { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.4rem 0; }
.chip {
  font-family: var(--hand); font-size: 1.15rem; line-height: 1;
  padding: .4rem .9rem; border-radius: 999px; background: var(--sage-soft); color: var(--forest-deep);
  transform: rotate(-1.5deg);
}
.chip:nth-child(2) { transform: rotate(1.5deg); background: #F3D9A8; }
.chip:nth-child(3) { transform: rotate(-1deg); background: #EBC3B4; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }

.hero-art { position: relative; }
.hero-art .frame { transform: rotate(2deg); }
.hero-art .frame.alt { position: absolute; width: 46%; bottom: -8%; left: -7%; transform: rotate(-5deg); z-index: 3; }
.hero-blob {
  position: absolute; z-index: -1; inset: -12% -10% auto auto; width: 78%; aspect-ratio: 1;
  background: radial-gradient(circle at 40% 35%, var(--sage-soft), transparent 70%);
  filter: blur(8px); opacity: .8;
}

/* deckled / taped picture frame */
.frame { position: relative; background: #fff; padding: 12px; border-radius: 6px; box-shadow: 0 18px 40px var(--shadow-strong); }
.frame img { border-radius: 3px; }
.frame::after {
  content: ""; position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 92px; height: 30px; background: rgba(217,162,58,.55);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}
.frame--notape::after { display: none; }

/* floating botanical accents */
.leaf-accent { position: absolute; color: var(--sage); opacity: .55; pointer-events: none; z-index: 0; }

/* ============================================================
   FEATURE STRIP (stat / mission band)
   ============================================================ */
.mission { background: var(--forest-deep); color: #F1ECDD; }
.mission .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); text-align: center; }
.mission .stat .num { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ochre); display: block; line-height: 1; }
.mission .stat p { margin: .5rem auto 0; color: #D8E0CF; max-width: 28ch; }
@media (max-width: 760px) { .mission .wrap { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   COMIC CARDS (centerpiece)
   ============================================================ */
.comic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.5rem, 4vw, 2.8rem); }
.comic-card {
  position: relative; background: var(--card); border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow); overflow: hidden; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column; text-align: left;
}
.comic-card:hover { transform: translateY(-8px); box-shadow: 0 22px 46px var(--shadow-strong); }
.comic-cover { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper-2); }
.comic-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s var(--ease); }
.comic-card:hover .comic-cover img { transform: scale(1.05); }
.comic-pages-badge {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  background: rgba(43,42,38,.82); color: #fff; font-size: .78rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.comic-read {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(38,57,44,.7), rgba(38,57,44,.05) 55%, transparent);
  opacity: 0; transition: opacity .3s;
}
.comic-card:hover .comic-read { opacity: 1; }
.comic-read span { background: #fff; color: var(--forest-deep); font-weight: 800; padding: .6rem 1.2rem; border-radius: 999px; transform: translateY(10px); transition: transform .3s var(--ease); }
.comic-card:hover .comic-read span { transform: translateY(0); }
.comic-body { padding: 1.1rem 1.3rem 1.5rem; }
.comic-tag { font-family: var(--hand); color: var(--clay); font-size: 1.1rem; line-height: 1; }
.comic-body h3 { margin: .15rem 0 .4rem; }
.comic-body p { font-size: .96rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   MASONRY GALLERIES (illustrations + design)
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter-btn {
  padding: .45rem 1.1rem; border-radius: 999px; font-weight: 700; font-size: .92rem;
  color: var(--forest); border: 2px solid var(--sage); background: transparent; transition: all .2s;
}
.filter-btn:hover { border-color: var(--forest); }
.filter-btn.active { background: var(--forest); color: #fff; border-color: var(--forest); }

.masonry { column-count: 3; column-gap: clamp(.9rem, 2vw, 1.4rem); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 540px) { .masonry { column-count: 1; } }

.tile {
  break-inside: avoid; margin-bottom: clamp(.9rem, 2vw, 1.4rem);
  position: relative; border-radius: 10px; overflow: hidden; cursor: pointer;
  background: var(--card); box-shadow: 0 8px 22px var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tile:hover { transform: translateY(-5px) rotate(-.4deg); box-shadow: 0 18px 38px var(--shadow-strong); }
.tile img { width: 100%; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.04); }
.tile-cap {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem .95rem .85rem;
  background: linear-gradient(to top, rgba(38,57,44,.88), transparent);
  color: #fff; transform: translateY(8px); opacity: 0; transition: all .3s var(--ease);
}
.tile:hover .tile-cap { transform: translateY(0); opacity: 1; }
.tile-cap .t { font-family: var(--display); font-weight: 600; font-size: 1.05rem; display: block; }
.tile-cap .m { font-size: .82rem; color: var(--sage-soft); }
.tile-chip {
  position: absolute; top: .7rem; left: .7rem; font-family: var(--hand); font-size: 1rem; line-height: 1;
  background: rgba(255,253,246,.92); color: var(--forest-deep); padding: .25rem .65rem; border-radius: 999px;
  opacity: 0; transition: opacity .3s;
}
.tile:hover .tile-chip { opacity: 1; }
.is-hidden { display: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-portrait { position: relative; }
.about-portrait .frame { transform: rotate(-2deg); }
.about-portrait .cap { font-family: var(--hand); color: var(--ink-soft); font-size: 1.2rem; text-align: center; margin-top: 1rem; transform: rotate(-1deg); }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .hero-grid { grid-template-columns: 1fr; } .hero-art { order: -1; max-width: 460px; } }

.timeline { position: relative; margin-top: 1rem; padding-left: 1.6rem; border-left: 2px dashed var(--sage); }
.timeline li { position: relative; padding: 0 0 1.5rem .4rem; }
.timeline li::before {
  content: ""; position: absolute; left: -2.15rem; top: .35rem; width: 14px; height: 14px;
  background: var(--clay); border-radius: 50%; box-shadow: 0 0 0 4px var(--paper);
}
.timeline .yr { font-weight: 800; color: var(--forest); font-size: .9rem; letter-spacing: .03em; }
.timeline .role { font-family: var(--display); font-size: 1.15rem; font-weight: 600; display: block; }
.timeline .org { color: var(--ink-soft); font-size: .95rem; }

.tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .6rem; }
.tags li { background: var(--sage-soft); color: var(--forest-deep); padding: .35rem .85rem; border-radius: 999px; font-weight: 600; font-size: .9rem; }

.about-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.2rem; }
.mini-card { background: var(--card); border-radius: var(--radius); padding: 1.4rem; box-shadow: 0 8px 22px var(--shadow); }
.mini-card h3 { font-size: 1.2rem; color: var(--forest); }
.mini-card .ico { font-size: 1.6rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 700; margin-bottom: .35rem; color: var(--forest); }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 10px; border: 2px solid var(--line);
  background: var(--card); font-family: inherit; font-size: 1rem; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(147,174,134,.25); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .9rem; color: var(--ink-faint); }

.contact-cards { display: grid; gap: 1rem; }
.contact-line { display: flex; align-items: center; gap: .9rem; background: var(--card); border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: 0 6px 18px var(--shadow); transition: transform .25s var(--ease); }
.contact-line:hover { transform: translateX(4px); }
.contact-line .ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; background: var(--sage-soft); border-radius: 12px; color: var(--forest-deep); }
.contact-line .lbl { font-size: .8rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .06em; }
.contact-line .val { font-weight: 700; color: var(--ink); word-break: break-word; }

.socials { display: flex; gap: .8rem; margin-top: .4rem; }
.socials a { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--forest); color: #fff; transition: transform .25s var(--ease), background .25s; }
.socials a:hover { transform: translateY(-4px) rotate(-6deg); background: var(--clay); }
.socials svg { width: 22px; height: 22px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; }
.lightbox.open { display: block; }
.lightbox-bg { position: absolute; inset: 0; background: rgba(26,38,29,.94); backdrop-filter: blur(6px); }
.lightbox-stage { position: relative; height: 100%; display: flex; flex-direction: column; }
.lightbox-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem clamp(1rem,4vw,2.5rem); color: #F1ECDD; position: relative; z-index: 3; }
.lightbox-title { font-family: var(--display); font-size: clamp(1.1rem, 2.4vw, 1.6rem); }
.lightbox-title .meta { display: block; font-family: var(--hand); color: var(--ochre); font-size: 1.05rem; line-height: 1; }
.lb-close { font-size: 1.6rem; color: #fff; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); transition: background .2s, transform .2s; flex: none; }
.lb-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }
.lightbox-body { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; padding: 0 clamp(.5rem, 5vw, 4.5rem) .5rem; min-height: 0; }
.lightbox-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.5); background: #fff; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 1.6rem; display: grid; place-items: center; transition: background .2s, transform .2s; z-index: 3; }
.lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-prev { left: clamp(.4rem, 2vw, 1.6rem); }
.lb-next { right: clamp(.4rem, 2vw, 1.6rem); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox-foot { text-align: center; color: #D8E0CF; padding: .7rem 1rem 1.2rem; font-size: .95rem; position: relative; z-index: 3; }
.lightbox-foot .counter { font-weight: 800; color: #fff; }
.lightbox-foot .desc { max-width: 60ch; margin: .2rem auto 0; color: #C7D2BC; }
@media (max-width: 600px) { .lb-nav { width: 44px; height: 44px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-deep); color: #D8E0CF; padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--gap); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer h4 { color: #fff; font-size: 1.2rem; }
.site-footer a { color: #C7D2BC; transition: color .2s; }
.site-footer a:hover { color: var(--ochre); }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer-brand .n { font-family: var(--display); font-size: 1.3rem; color: #fff; }
.footer-links li { margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.3rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .85rem; color: #9DB68F; }
.footer-bottom .hand { font-family: var(--hand); font-size: 1.15rem; color: var(--ochre); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .tile:hover img, .comic-card:hover .comic-cover img { transform: none; }
}

/* ---------- page intro band ---------- */
.page-hero { padding-top: clamp(7rem, 13vw, 9.5rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); position: relative; }
.page-hero .kicker { margin-bottom: .1rem; }
.page-hero p { max-width: 60ch; }

/* utility */
.mt-2 { margin-top: 2rem; } .mt-1 { margin-top: 1rem; }
.text-clay { color: var(--clay); } .text-forest { color: var(--forest); }
