/* ============================================
   Hsu Yee Mon (Mavis) — Portfolio
   Cream & nude theme · Fraunces + Figtree
   ============================================ */

:root {
  --bg: #FBF7F5;          /* warm cream */
  --bg-soft: #F7ECEE;     /* soft blush */
  --card: #FFFFFF;
  --ink: #3A2A32;         /* deep plum-brown */
  --ink-soft: #76616C;    /* muted mauve text */
  --primary: #D87C9F;     /* soft pink */
  --primary-dark: #B25578;
  --accent: #EFC2D3;      /* pale rose */
  --accent-soft: #F8E6EC;
  --pill: #FAEDF2;
  --radius: 22px;
  --shadow: 0 8px 30px rgba(178, 85, 120, 0.10);
  --shadow-hover: 0 14px 40px rgba(178, 85, 120, 0.18);
  --pad: clamp(28px, 6vw, 96px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.18; font-weight: 600; }

a { color: var(--primary); text-decoration: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--accent-soft);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.35rem; color: var(--primary-dark); letter-spacing: -0.01em; }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  display: inline-block; color: var(--ink-soft); font-weight: 600; font-size: 0.98rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-links a.active { color: var(--primary-dark); }

/* ---------- Hero ---------- */
.hero { padding: 100px 0 70px; text-align: left; }
.hero .eyebrow {
  display: inline-block; background: var(--pill); color: var(--primary-dark);
  padding: 6px 16px; border-radius: 999px; font-weight: 700; font-size: 0.85rem;
  margin-bottom: 22px; letter-spacing: 0.04em;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 600; margin-bottom: 20px; letter-spacing: -0.015em; }
.hero h1 .flower { color: var(--primary); }
.hero p.lead { max-width: 680px; font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 30px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; transition: all .2s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-ghost { border: 2px solid var(--accent); color: var(--primary-dark); }
.btn-ghost:hover { background: var(--accent-soft); }

/* ---------- Now strip ---------- */
.now-strip {
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 30px 36px; margin: 10px 0 70px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.now-strip h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary); margin-bottom: 8px; font-weight: 800;
}
.now-strip p { font-size: 0.95rem; color: var(--ink-soft); }
.now-strip strong { color: var(--ink); }

/* ---------- Section headings ---------- */
section { padding: 30px 0 60px; }
.section-title { font-size: 1.9rem; font-weight: 600; margin-bottom: 8px; }
.section-sub { color: var(--ink-soft); margin-bottom: 36px; max-width: 620px; }

/* ---------- Project cards ---------- */
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; color: var(--ink);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.project-thumb {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.6rem; color: #fff;
  text-align: center; padding: 0 24px;
}
.thumb-tui    { background: linear-gradient(135deg, #1E5C8A, #5BB7E0); }
.thumb-yowza  { background: linear-gradient(135deg, #FF6DC0, #102C5C); }
.thumb-kpop   { background: linear-gradient(135deg, #845EC2, #FF5C8A); }
.thumb-lloyds { background: linear-gradient(135deg, #8FA98F, #BCCDB9); }
.thumb-nestly { background: linear-gradient(135deg, #D88AA5, #F0CBD8); }
.thumb-bloom  { background: linear-gradient(135deg, #9AA68B, #C4CDB4); }
.thumb-gds    { background: linear-gradient(135deg, #7A5C6B, #A8889A); }

.project-body { padding: 26px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
  background: var(--pill); color: var(--primary-dark); font-size: 0.75rem;
  font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.project-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.project-meta { font-size: 0.85rem; color: var(--primary); font-weight: 700; margin-bottom: 12px; }
.project-body p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.project-link { margin-top: 18px; font-weight: 700; font-size: 0.95rem; }
.project-link:hover { text-decoration: underline; }

/* ---------- Logos / previously ---------- */
.logo-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.logo-chip {
  background: var(--card); border: 1px solid var(--accent-soft);
  padding: 10px 22px; border-radius: 14px; font-weight: 700;
  color: var(--ink-soft); font-size: 0.95rem;
}

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }

.timeline { border-left: 3px solid var(--accent-soft); padding-left: 28px; }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item::before {
  content: ''; position: absolute; left: -37px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--accent-soft);
}
.timeline-item .when { font-size: 0.82rem; font-weight: 700; color: var(--primary); letter-spacing: .04em; }
.timeline-item h3 { font-size: 1.12rem; margin: 4px 0 2px; }
.timeline-item .where { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.timeline-item p { font-size: 0.95rem; color: var(--ink-soft); }

.side-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px; margin-bottom: 24px;
}
.side-card h3 { font-size: 1.08rem; margin-bottom: 16px; }
.skill-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-pills span {
  background: var(--pill); color: var(--primary-dark); padding: 6px 14px;
  border-radius: 999px; font-size: 0.85rem; font-weight: 600;
}
.side-card ul { list-style: none; }
.side-card li { padding: 8px 0; border-bottom: 1px solid var(--accent-soft); font-size: 0.92rem; color: var(--ink-soft); }
.side-card li:last-child { border-bottom: none; }
.side-card li strong { color: var(--ink); display: block; }

/* ---------- Case study pages ---------- */
.case-hero { padding: 76px 0 40px; }
.case-hero .tag { margin-bottom: 16px; display: inline-block; }
.case-hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 14px; max-width: 900px; letter-spacing: -0.01em; }
.case-hero p.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 760px; }

.case-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px; background: var(--bg-soft); border-radius: var(--radius);
  padding: 26px 32px; margin: 36px 0 50px;
}
.case-facts h4 { font-family: 'Figtree', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--primary); margin-bottom: 4px; font-weight: 800; }
.case-facts p { font-size: 0.92rem; color: var(--ink); font-weight: 600; }

.case-section { margin-bottom: 60px; }
.case-section h2 { font-size: 1.6rem; margin-bottom: 16px; }
.case-section h3 { font-size: 1.12rem; margin: 24px 0 10px; color: var(--primary-dark); }
.case-section p { color: var(--ink-soft); margin-bottom: 14px; max-width: 820px; }
.case-section ul { margin: 0 0 14px 22px; color: var(--ink-soft); }
.case-section li { margin-bottom: 8px; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin: 26px 0; }
.stat {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 24px; text-align: center;
}
.stat .num { font-family: 'Fraunces', Georgia, serif; font-size: 2.1rem; font-weight: 700; color: var(--primary); }
.stat .label { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }

.quote-block {
  border-left: 4px solid var(--primary); background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px; margin: 26px 0; font-style: italic; color: var(--ink-soft);
  max-width: 780px;
}

.phase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin: 26px 0; }
.phase-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.phase-card .phase-no { font-size: 0.78rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.phase-card h3 { font-size: 1.08rem; margin: 6px 0 8px; }
.phase-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================
   SHOWCASE COMPONENTS (in-page design system)
   Each project sets its own colors via:
   style="--sc:…; --sc-dark:…; --sc-bg:…; --sc-ink:…"
   ============================================ */
.showcase {
  --sc: var(--primary); --sc-dark: var(--primary-dark);
  --sc-bg: var(--bg-soft); --sc-ink: var(--ink);
  background: var(--sc-bg); border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 4vw, 56px); margin: 30px 0;
}
.showcase h3 { color: var(--sc-ink); margin-top: 0; }
.showcase > h3:not(:first-child) { margin-top: 40px; }
.showcase .sc-label {
  display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sc-dark); margin-bottom: 14px;
}

/* Color palette swatches */
.palette-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 10px 0 8px; }
.swatch { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.swatch .chip { height: 92px; }
.swatch .meta { padding: 12px 14px; }
.swatch .meta b { display: block; font-size: 0.88rem; color: var(--ink); }
.swatch .meta span { font-size: 0.78rem; color: var(--ink-soft); font-family: ui-monospace, 'SF Mono', monospace; }

/* Typography scale */
.type-scale { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 26px 30px; margin: 10px 0; }
.type-row { display: flex; align-items: baseline; gap: 20px; padding: 12px 0; border-bottom: 1px dashed var(--accent-soft); }
.type-row:last-child { border-bottom: none; }
.type-row .t-name { flex: 0 0 110px; font-size: 0.75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.type-row .t-sample { color: var(--sc-ink); line-height: 1.2; }

/* UI kit demos */
.ui-kit { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 10px 0; }
.demo-btn {
  display: inline-block; padding: 11px 26px; border-radius: 999px;
  background: var(--sc); color: #fff; font-weight: 700; font-size: 0.92rem; cursor: default;
}
.demo-btn.secondary { background: transparent; border: 2px solid var(--sc); color: var(--sc-dark); }
.demo-btn.dark { background: var(--sc-ink); }
.demo-chip {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--sc); color: var(--sc-dark);
  font-weight: 600; font-size: 0.84rem;
}
.demo-chip.filled { background: var(--sc); color: #fff; border-color: var(--sc); }
.demo-input {
  background: #fff; border: 1.5px solid var(--sc); border-radius: 14px;
  padding: 11px 18px; font-size: 0.9rem; color: var(--ink-soft); min-width: 210px;
}
.demo-card {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow);
  padding: 20px 22px; max-width: 290px;
}
.demo-card b { color: var(--ink); font-size: 0.95rem; }
.demo-card p { font-size: 0.84rem !important; margin: 4px 0 12px !important; }
.demo-card .demo-btn { padding: 8px 18px; font-size: 0.82rem; }

/* Phone mockups */
.phone-row { display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 36px); justify-content: center; margin: 16px 0; }
.phone {
  width: 250px; border-radius: 36px; background: #1c1c1e; padding: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18); flex-shrink: 0;
}
.phone .screen {
  background: #fff; border-radius: 28px; overflow: hidden;
  height: 480px; display: flex; flex-direction: column; position: relative;
  font-family: 'Figtree', sans-serif;
}
.phone .notch { width: 90px; height: 18px; background: #1c1c1e; border-radius: 0 0 14px 14px; margin: 0 auto; flex-shrink: 0; }
.phone .p-body { flex: 1; padding: 14px 16px; overflow: hidden; }
.phone .p-caption { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 12px; font-weight: 600; }
.phone-wrap { text-align: center; }

.p-title { font-weight: 800; font-size: 0.95rem; color: var(--sc-ink); text-align: center; margin-bottom: 10px; }
.p-logo { font-weight: 800; font-size: 1.4rem; text-align: center; color: var(--sc-ink); margin: 8px 0 2px; }
.p-logo em { font-style: normal; color: var(--sc); }
.p-sub { font-size: 0.72rem; color: #8e8e93; text-align: center; margin-bottom: 12px; }
.p-banner {
  border-radius: 12px; padding: 12px 14px; color: #fff; font-weight: 700;
  font-size: 0.8rem; background: linear-gradient(120deg, var(--sc), var(--sc-dark)); margin-bottom: 10px;
}
.p-banner small { display: block; font-weight: 500; opacity: .85; font-size: 0.68rem; }
.p-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f2f2f7; }
.p-row .dot { width: 34px; height: 34px; border-radius: 10px; background: var(--sc-bg); flex-shrink: 0; display:flex; align-items:center; justify-content:center; font-size: 0.9rem; }
.p-row div b { display: block; font-size: 0.74rem; color: #1c1c1e; }
.p-row div span { font-size: 0.66rem; color: #8e8e93; }
.p-btn {
  display: block; text-align: center; background: var(--sc); color: #fff;
  border-radius: 999px; padding: 9px; font-weight: 700; font-size: 0.78rem; margin: 10px 0 4px;
}
.p-btn.ghost { background: #fff; border: 1.5px solid var(--sc); color: var(--sc-dark); }
.p-balance { text-align: center; margin: 6px 0 10px; }
.p-balance small { display: block; font-size: 0.68rem; color: #8e8e93; }
.p-balance b { font-size: 1.5rem; color: var(--sc-ink); }
.p-tabbar {
  display: flex; justify-content: space-around; padding: 9px 6px;
  background: var(--sc); flex-shrink: 0;
}
.p-tabbar span { font-size: 0.62rem; color: #fff; font-weight: 700; opacity: .75; }
.p-tabbar span.on { opacity: 1; background: rgba(255,255,255,.25); padding: 2px 10px; border-radius: 999px; }
.p-qr {
  width: 120px; height: 120px; margin: 10px auto; border-radius: 12px;
  background:
    repeating-linear-gradient(0deg, #1c1c1e 0 6px, transparent 6px 12px),
    repeating-linear-gradient(90deg, #1c1c1e 0 6px, #fff 6px 12px);
  border: 6px solid #fff; outline: 2px solid #e5e5ea;
}
.p-amounts { display: flex; gap: 6px; justify-content: center; margin: 10px 0; flex-wrap: wrap; }
.p-amounts span { background: var(--sc-ink); color: #fff; font-size: 0.66rem; font-weight: 700; padding: 6px 9px; border-radius: 7px; }
.p-input { background: #fff; border: 1.2px solid var(--sc); border-radius: 10px; padding: 8px 10px; font-size: 0.68rem; color: #8e8e93; margin-bottom: 8px; }
.p-map { border-radius: 12px; height: 150px; position: relative; margin-bottom: 10px; overflow: hidden; }
.p-pin { position: absolute; width: 22px; height: 22px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; }
.p-pin::after { content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%; }

/* Stamp tracker */
.stamp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin: 10px 0; }
.stamp-grid .st {
  aspect-ratio: 1; border-radius: 50%; border: 2px dashed var(--sc);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  color: var(--sc-dark); background: #fff;
}
.stamp-grid .st.got { background: var(--sc); border-style: solid; }

/* Horizontal research bars */
.bars { margin: 14px 0; max-width: 720px; }
.bar-item { margin-bottom: 14px; }
.bar-item .bar-label { display: flex; justify-content: space-between; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.bar-item .bar-track { background: #fff; border-radius: 999px; height: 14px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--accent-soft); }
.bar-item .bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--sc), var(--sc-dark)); }

/* Persona + empathy map */
.persona-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 30px 34px; margin: 16px 0; display: grid;
  grid-template-columns: 88px 1fr; gap: 24px; align-items: start; max-width: 860px;
}
.persona-card .avatar {
  width: 88px; height: 88px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 2rem; background: var(--sc-bg); border: 3px solid var(--sc);
}
.persona-card h4 { font-size: 1.15rem; margin-bottom: 2px; }
.persona-card .p-role { font-size: 0.85rem; color: var(--sc-dark); font-weight: 700; margin-bottom: 10px; }
.persona-card p { font-size: 0.92rem; margin-bottom: 10px; }
.persona-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
@media (max-width: 640px) { .persona-cols { grid-template-columns: 1fr; } .persona-card { grid-template-columns: 1fr; } }
.persona-cols h5 { font-family: 'Figtree', sans-serif; font-size: 0.74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: 6px; }
.persona-cols ul { margin-left: 18px; font-size: 0.88rem; color: var(--ink-soft); }
.persona-cols li { margin-bottom: 4px; }

.empathy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
@media (max-width: 640px) { .empathy-grid { grid-template-columns: 1fr; } }
.empathy-cell { border-radius: 18px; padding: 22px 24px; }
.empathy-cell h4 { font-size: 1rem; margin-bottom: 8px; }
.empathy-cell ul { margin-left: 18px; font-size: 0.88rem; color: var(--ink); opacity: .8; }
.empathy-cell li { margin-bottom: 5px; }
.em-says   { background: #DFF3F2; }
.em-feels  { background: #FCE8E0; }
.em-thinks { background: #EAF4DC; }
.em-does   { background: #E9E4F6; }

/* IA tree */
.ia-tree { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin: 16px 0; }
.ia-col { display: flex; flex-direction: column; gap: 8px; }
.ia-col .ia-root {
  background: var(--sc); color: #fff; font-weight: 700; font-size: 0.88rem;
  text-align: center; padding: 9px; border-radius: 999px;
}
.ia-col .ia-leaf {
  background: #fff; border: 1.5px solid var(--sc); color: var(--sc-dark);
  font-size: 0.82rem; font-weight: 600; text-align: center; padding: 7px; border-radius: 999px;
}

/* Do / Don't and misc two-column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 16px 0; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.panel { border-radius: 18px; padding: 24px 26px; }
.panel h4 { font-size: 1rem; margin-bottom: 10px; }
.panel ul { margin-left: 18px; font-size: 0.9rem; }
.panel-pain { background: #F6DCD3; color: #6B3326; }
.panel-gain { background: #DDEDD9; color: #2F4A2C; }
.panel-pain ul, .panel-gain ul { color: inherit; opacity: .85; }

.next-project {
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 36px; text-align: center; margin: 60px 0 30px;
}
.next-project p { color: var(--ink-soft); margin-bottom: 6px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.next-project a { font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; font-weight: 700; }

/* ---------- Contact / footer ---------- */
.contact-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius); color: #fff; text-align: center;
  padding: 64px 30px; margin: 40px 0 60px;
}
.contact-band h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-band p { opacity: 0.9; margin-bottom: 26px; }
.contact-band .btn { background: #fff; color: var(--primary-dark); }
.contact-band .btn:hover { transform: translateY(-2px); }

footer { border-top: 1px solid var(--accent-soft); padding: 30px 0 40px; }
.footer-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: var(--ink-soft); font-size: 0.9rem;
}
.footer-inner a { font-weight: 600; margin-left: 18px; }

@media (max-width: 640px) {
  .nav-links { padding: 4px; }
  .nav-links a { padding: 7px 13px; font-size: 0.85rem; }
  .hero { padding: 64px 0 50px; }
  .stamp-grid { grid-template-columns: repeat(6, 1fr); }
}
