/* ==========================================================================
   MAU CREATIVE HUB : global stylesheet
   --------------------------------------------------------------------------
   BRAND ASSETS NOT YET SUPPLIED.
   Everything brand-specific lives in the :root token block below.
   To apply the real brand:
     1. Replace the color hex values in :root
     2. Replace the Google Fonts import in every page <head> and the
        font-family tokens below
     3. Drop the real logo into /assets/images/ and update the <img> in
        each page header (search for "LOGO PLACEHOLDER")
   ========================================================================== */

/* ---- Design tokens (PLACEHOLDER PALETTE, swap for real brand) ---------- */
:root {
  /* color */
  --ink: #0b2530;        /* deep petrol ink, primary text */
  --ink-soft: #3d5560;   /* secondary text */
  --teal: #0e7c7b;       /* primary action color */
  --teal-deep: #0a5c5b;  /* hover and dark bands */
  --gold: #e9a13b;       /* warm accent, used sparingly */
  --gold-soft: #fdf3e3;  /* gold tint background */
  --paper: #fafbfb;      /* page background */
  --mist: #e7f0ef;       /* light band background */
  --line: #d4e0df;       /* hairlines and card borders */
  --white: #ffffff;

  /* type */
  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Spline Sans Mono", "Courier New", monospace;

  /* rhythm */
  --radius: 14px;
  --radius-lg: 22px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(3.5rem, 9vw, 7rem);
  --shadow: 0 10px 30px rgba(11, 37, 48, 0.08);
}

/* ---- Reset and base ----------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4.2vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

p { margin: 0 0 1em; }

a { color: var(--teal-deep); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap {
  width: min(1160px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

section { padding-block: var(--section-pad); }

/* Eyebrow labels: mono face, encode section role */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  display: block;
  margin-bottom: 0.9rem;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 42rem;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-deep); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
/* Distinct treatment reserved for the kids academy link */
.btn-academy {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}
.btn-academy:hover { background: #f5b556; }

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

/* LOGO PLACEHOLDER: replace the wordmark span with
   <img src="assets/images/logo.svg" alt="Mau Creative Hub" height="34">
   once the real logo file is supplied. */
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo .logo-dot { color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.97rem;
}
.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}
.nav-links a[aria-current="page"] {
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}

.nav-links .btn-academy {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 0.6rem 0; display: block; }
}

/* ---- Hero --------------------------------------------------------------- */
.hero { padding-block: clamp(3rem, 8vw, 6rem) var(--section-pad); }

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; }
}

.hero .lede { margin-bottom: 1.8rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-media {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .hero-media { justify-self: end; margin-inline: 0; }
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

/* IMAGE PLACEHOLDER: replace with real community photography.
   <img src="assets/images/hero-community.jpg" alt="..." loading="eager"> */
.img-placeholder {
  background:
    linear-gradient(135deg, var(--mist) 0%, #cfe3e1 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  min-height: 220px;
  border: 1px dashed var(--line);
}
.hero .img-placeholder { min-height: clamp(260px, 40vw, 460px); }

/* ---- Meridian strip (signature element) ---------------------------------
   Live local-time chips for the four regions the hub operates in.
   Times are filled in by main.js; static labels remain without JS. */
.meridian {
  background: var(--ink);
  color: var(--white);
  padding-block: 1.1rem;
}
.meridian-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  justify-content: space-between;
  align-items: center;
}
.meridian-chip {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.meridian-chip .city { color: var(--gold); text-transform: uppercase; }
.meridian-chip .clock { color: var(--white); font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .meridian-track { justify-content: flex-start; }
}

/* ---- Impact strip ------------------------------------------------------- */
.impact { background: var(--mist); }
.impact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  display: block;
  color: var(--teal-deep);
}
.stat .stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.sdg-tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sdg-tags .tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  border: 1px solid var(--teal);
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  background: var(--white);
}

/* ---- Cards (three doors, regions, services) ----------------------------- */
.card-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card h3 { margin-top: 0.4rem; }
.card p { color: var(--ink-soft); flex-grow: 1; }
.card .card-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--teal-deep);
}
.card .card-link:hover { text-decoration: underline; }

/* The academy door gets the gold treatment: a different world */
.card-academy {
  background: var(--gold-soft);
  border-color: var(--gold);
}
.card-academy .eyebrow { color: #b97b1e; }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mist);
  display: grid;
  place-items: center;
  color: var(--teal-deep);
}
.card-academy .card-icon { background: #f7e3bd; color: #8a5a12; }

/* ---- Showcase grid ------------------------------------------------------ */
.showcase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}
.showcase-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 0;
}
.showcase-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.showcase-grid--landscape {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.showcase-grid--landscape .showcase-item img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  background: none;
}
.showcase-item .img-placeholder { min-height: 200px; border-radius: var(--radius); }
.showcase-item figcaption {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding-top: 0.5rem;
  line-height: 1.45;
}

/* ---- Region cards ------------------------------------------------------- */
.region-card {
  border-left: 4px solid var(--teal);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}
.region-card h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
.region-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.coming-soon {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8a5a12;
  font-weight: 600;
  vertical-align: middle;
}
.region-card .region-time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--teal-deep);
  font-weight: 400;
}
.region-card p { color: var(--ink-soft); margin-bottom: 0; }

/* ---- Trainings catalog -------------------------------------------------- */
.filter-bar {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.filter-bar label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 0.35rem;
}
.filter-bar select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.course-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.course-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.course-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.course-tags .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}
.tag-category { background: var(--mist); color: var(--teal-deep); }
.tag-format { background: var(--gold-soft); color: #8a5a12; }
.tag-region { border: 1px solid var(--line); color: var(--ink-soft); }
.course-card h3 { margin: 0; font-size: 1.15rem; }
.course-card p { color: var(--ink-soft); font-size: 0.95rem; flex-grow: 1; }
.course-card .btn { align-self: flex-start; padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.catalog-empty {
  font-family: var(--font-mono);
  color: var(--ink-soft);
  padding: 2rem 0;
}

/* ---- Alternating feature rows (business page) --------------------------- */
.feature-row {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: var(--section-pad);
}
.feature-row:last-child { margin-bottom: 0; }
@media (min-width: 860px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.flip > .feature-media { order: 2; }
}
.feature-media .img-placeholder { min-height: 280px; }

/* ---- Timeline (about page) ---------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  position: relative;
  padding: 0 0 2.2rem 2rem;
  border-left: 2px solid var(--line);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--paper);
}
.timeline .tl-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--teal-deep);
  letter-spacing: 0.1em;
}
.timeline h3 { margin: 0.2rem 0 0.3rem; font-size: 1.1rem; }
.timeline p { color: var(--ink-soft); margin: 0; }

/* ---- Team grid ----------------------------------------------------------- */
.team-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  margin-bottom: 0.8rem;
}
.team-card .img-placeholder {
  min-height: 200px;
  border-radius: var(--radius-lg);
  margin-bottom: 0.8rem;
}
.team-card h3 { margin-bottom: 0.15rem; font-size: 1.05rem; }
.team-card .role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---- Forms (contact) ----------------------------------------------------- */
.form-grid { display: grid; gap: 1.1rem; max-width: 560px; }
.form-grid label { font-weight: 600; font-size: 0.95rem; }
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  margin-top: 0.3rem;
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---- Section bands ------------------------------------------------------- */
.band-mist { background: var(--mist); }
.band-ink { background: var(--ink); color: var(--white); }
.band-ink .eyebrow { color: var(--gold); }
.band-ink .lede, .band-ink p { color: #b9cdd4; }
.band-ink h2 { color: var(--white); }

/* ---- Footer CTA and footer ------------------------------------------------ */
.footer-cta { text-align: center; }
.footer-cta .btn { margin-top: 0.5rem; }

.site-footer {
  background: var(--ink);
  color: #b9cdd4;
  padding-block: 3rem 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: #b9cdd4; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

/* ---- Impact stories (community page) ------------------------------------- */
.story-block {
  max-width: 44rem;
}
.story-block p {
  font-size: 1.08rem;
  line-height: 1.75;
}
.story-block .story-open {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--ink);
  font-weight: 500;
}

/* Large pulled statistics inside a story */
.pull-stats {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 2.5rem 0;
}
.pull-stat {
  border-top: 3px solid var(--gold);
  padding-top: 1rem;
}
.pull-stat .pull-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.pull-stat .pull-label {
  color: var(--ink-soft);
  font-size: 0.95rem;
  display: block;
  margin-top: 0.5rem;
}
.pull-stat .pull-source {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-deep);
  display: block;
  margin-top: 0.4rem;
}

/* Quotes from students and partners */
.story-quote {
  margin: 2.5rem 0;
  padding: 1.8rem 2rem;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.story-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.story-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
  letter-spacing: 0.05em;
}

/* Award recognition banner */
.award-banner {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}
@media (min-width: 820px) {
  .award-banner { grid-template-columns: auto 1fr auto; }
}
.award-banner .award-medal {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.award-banner h3 { color: var(--white); margin-bottom: 0.3rem; }
.award-banner h2 { color: var(--white); font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 0.6rem; }
.award-banner p { color: #b9cdd4; margin: 0; }
.award-banner--winner .btn { margin-top: 0; }

.awards-section { padding-block: var(--section-pad); }
.awards-section > .wrap > .eyebrow { margin-bottom: 1rem; }

/* Award photo bento grid */
.award-gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
.award-gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 200px;
  background: var(--ink);
}
.award-gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}
.award-gallery__item:hover img { transform: scale(1.03); }
.award-gallery__item--hero {
  grid-column: span 2;
  min-height: 260px;
}
.award-gallery__item--wide {
  grid-column: span 2;
  min-height: 320px;
}
@media (min-width: 900px) {
  .award-gallery {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 210px 210px 240px;
    gap: 1rem;
  }
  .award-gallery__item { min-height: 0; }
  .award-gallery__item img { min-height: 0; }
  .award-gallery__item--hero {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
  }
  .award-gallery__item:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
  }
  .award-gallery__item:nth-child(3) {
    grid-column: 8 / span 5;
    grid-row: 2;
  }
  .award-gallery__item:nth-child(4) {
    grid-column: 1 / span 4;
    grid-row: 3;
  }
  .award-gallery__item--wide {
    grid-column: 5 / span 8;
    grid-row: 3;
    min-height: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .award-gallery__item:hover img { transform: none; }
}

.press-card {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}
.press-card h3 {
  font-size: 1.15rem;
  margin: 0.35rem 0 0.4rem;
}
.press-card h3 a {
  color: var(--ink);
  text-decoration: none;
}
.press-card h3 a:hover { color: var(--teal-deep); text-decoration: underline; }
.press-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-deep);
  font-weight: 600;
}

/* ---- Motion -------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
