/* Editorial Riviera — Aki Balance Review */
:root {
  --teal: #5B8A8A;
  --teal-deep: #3D6B6B;
  --sand: #E8D5C4;
  --sand-warm: #D4B89A;
  --coral: #C4786A;
  --coral-faded: #D4A090;
  --navy: #1B2A4A;
  --navy-mid: #2A3F66;
  --chalk: #F7F4EF;
  --ivory: #FBF8F3;
  --ink: #1B2A4A;
  --muted: #5C6578;
  --rule: rgba(27, 42, 74, 0.18);
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --wide: 1120px;
  --narrow: 680px;
  --radius: 4px;
  --radius-lg: 12px 4px 12px 4px;
  --shadow-lift: 0 12px 32px rgba(27, 42, 74, 0.08);
  --header-h: 4.25rem;
}

*, *::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.65;
  color: var(--ink);
  background:
    linear-gradient(165deg, var(--chalk) 0%, #eef5f3 42%, var(--sand) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--coral); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none;
  padding: 0.7em 1.25em; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn--ink {
  background: var(--navy); color: var(--chalk); border-color: var(--navy);
}
.btn--ink:hover { background: transparent; color: var(--navy); }
.btn--sand {
  background: transparent; color: var(--navy); border-color: var(--sand-warm);
}
.btn--sand:hover { background: var(--sand); color: var(--navy); border-color: var(--navy); }
.btn--ghost {
  background: transparent; color: var(--chalk); border-color: rgba(247,244,239,0.45);
}
.btn--ghost:hover { background: var(--chalk); color: var(--navy); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(247, 244, 239, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: height 0.3s, background 0.3s, border-color 0.3s;
}
.site-header.is-condensed {
  height: 3.4rem;
  background: rgba(247, 244, 239, 0.92);
  border-bottom-color: var(--rule);
}
.site-header__inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 var(--space);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-header__brand {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 700;
  color: var(--navy); text-decoration: none; letter-spacing: -0.01em; white-space: nowrap;
}
.site-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 1.35rem;
}
.site-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--navy); text-decoration: none;
  letter-spacing: 0.02em;
}
.site-nav a:hover { color: var(--teal-deep); }
.site-nav__cta {
  padding: 0.45em 0.9em; border: 1px solid var(--navy); border-radius: var(--radius);
}
.site-nav__cta:hover { background: var(--navy); color: var(--chalk) !important; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 0.5rem; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.nav-toggle__bar {
  display: block; width: 22px; height: 2px; background: var(--navy);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--rule);
    padding: 1rem var(--space) 1.5rem; display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
}

/* Footer */
.site-footer {
  background: var(--navy); color: var(--sand); margin-top: 4rem;
  padding: 3.5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0; background: var(--grain); opacity: 0.5; pointer-events: none;
}
.site-footer a { color: var(--sand); }
.site-footer a:hover { color: var(--coral-faded); }
.site-footer__inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 var(--space);
  position: relative; z-index: 1;
}
.site-footer__brand { margin-bottom: 2.5rem; max-width: 28rem; }
.site-footer__ornament { font-size: 1.25rem; color: var(--coral-faded); margin: 0 0 0.5rem; }
.site-footer__name {
  font-family: var(--font-display); font-size: 1.75rem; color: var(--chalk); margin: 0 0 0.5rem;
}
.site-footer__tag { color: rgba(232, 213, 196, 0.75); margin: 0; }
.site-footer__cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 2.5rem;
}
.site-footer__col h2 {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-faded); margin-bottom: 1rem;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: 0.45rem; }
.site-footer__col a { text-decoration: none; font-size: 0.95rem; }
.site-footer__contact p { margin: 0 0 0.5rem; font-size: 0.95rem; line-height: 1.5; }
.site-footer__newsletter {
  border-top: 1px solid rgba(232, 213, 196, 0.2); padding-top: 2rem; margin-bottom: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end;
}
.site-footer__newsletter h2 {
  font-size: 1.5rem; color: var(--chalk); margin-bottom: 0.4rem;
}
.site-footer__newsletter p { color: rgba(232, 213, 196, 0.7); margin: 0; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: flex-start; }
.newsletter-form input {
  flex: 1; min-width: 180px; padding: 0.7em 1em;
  border: 1px solid rgba(232, 213, 196, 0.35); background: rgba(255,255,255,0.06);
  color: var(--chalk); border-radius: var(--radius); font: inherit;
}
.newsletter-form input::placeholder { color: rgba(232, 213, 196, 0.5); }
.site-footer__copy {
  font-size: 0.8rem; color: rgba(232, 213, 196, 0.45);
  border-top: 1px solid rgba(232, 213, 196, 0.12); padding-top: 1.5rem; margin: 0;
}
@media (max-width: 800px) {
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .site-footer__newsletter { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--ivory); border-top: 1px solid var(--navy);
  box-shadow: 0 -8px 40px rgba(27, 42, 74, 0.12);
  padding: 1.25rem var(--space);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner {
  max-width: var(--wide); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text h2 {
  font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 0.35rem;
}
.cookie-banner__text p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.cookie-banner__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

/* Layout helpers */
.section {
  max-width: var(--wide); margin: 0 auto; padding: 4rem var(--space);
}
.section--narrow { max-width: calc(var(--narrow) + 2 * var(--space)); }
.section__title { margin-bottom: 0.4em; }
.section__lede { color: var(--muted); max-width: 36rem; margin-bottom: 2rem; }
.eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-deep); margin: 0 0 0.75rem;
}
.lead { font-size: 1.2rem; color: var(--muted); max-width: 34rem; }
.band {
  width: 100%; max-width: none; padding-left: 0; padding-right: 0;
}
.band > * { max-width: var(--wide); margin-left: auto; margin-right: auto; padding-left: var(--space); padding-right: var(--space); }
.band--sand {
  background: linear-gradient(180deg, rgba(232,213,196,0.45), rgba(247,244,239,0.8));
  padding-top: 4rem; padding-bottom: 4rem;
}
.band--teal {
  background: linear-gradient(135deg, var(--teal-deep), var(--navy-mid));
  color: var(--chalk); padding: 4rem 0;
}
.band--teal h2, .band--teal h3 { color: var(--chalk); }
.band--navy {
  background: var(--navy); color: var(--sand); padding: 4rem 0;
}
.band--navy h2 { color: var(--chalk); }

.panel {
  background: var(--ivory); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.75rem;
  background-image: var(--grain);
  box-shadow: var(--shadow-lift);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.panel:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27, 42, 74, 0.12); }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media (max-width: 700px) { .split { grid-template-columns: 1fr; } }

/* Hero — asymmetrical editorial */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
  min-height: calc(100vh - var(--header-h));
  max-width: none; margin: 0; position: relative;
  background: linear-gradient(120deg, var(--chalk) 0%, #e4ebe8 55%, var(--sand) 100%);
}
.hero__copy {
  padding: clamp(2.5rem, 6vw, 5rem) var(--space) clamp(2.5rem, 6vw, 5rem) clamp(var(--space), 8vw, 6rem);
  display: flex; flex-direction: column; justify-content: center;
  align-self: center; max-width: 560px; margin-left: auto;
}
.hero__brand {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--navy); margin: 0 0 0.35em; letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero__headline {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400; font-style: italic; color: var(--teal-deep); margin: 0 0 1rem;
  line-height: 1.3;
}
.hero__text { color: var(--muted); margin-bottom: 1.75rem; max-width: 28rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__media {
  position: relative; overflow: hidden; min-height: 420px;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; min-height: 100%;
  transform: scale(1.08); will-change: transform;
}
.hero__caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--chalk); background: rgba(27, 42, 74, 0.55);
  padding: 0.6rem 0.9rem; backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { max-width: none; margin: 0; padding: 3rem var(--space) 2rem; }
  .hero__media { min-height: 320px; order: -1; }
}

/* Service cards */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.card {
  background: var(--ivory); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); overflow: hidden;
  background-image: var(--grain);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.card__media { aspect-ratio: 4/3; overflow: hidden; border-bottom: 1px solid var(--rule); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 0.4em; font-size: 1.4rem; }
.card__body h3 a { color: inherit; text-decoration: none; }
.card__body h3 a:hover { color: var(--teal-deep); }
.card__body p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.card__meta {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--coral); margin-top: 0.75rem; text-transform: uppercase;
}
.card__link {
  margin-top: 1rem; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; color: var(--navy);
}
.card__link:hover { color: var(--coral); }

/* Offset feature */
.feature-offset {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center;
  padding: 4rem var(--space); max-width: var(--wide); margin: 0 auto;
}
.feature-offset--flip { direction: rtl; }
.feature-offset--flip > * { direction: ltr; }
.feature-offset__media {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--rule);
}
.feature-offset__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
@media (max-width: 800px) {
  .feature-offset, .feature-offset--flip { grid-template-columns: 1fr; direction: ltr; gap: 1.5rem; }
}

/* Quotes / reviews */
.quote-list { display: flex; flex-direction: column; gap: 2rem; }
.quote {
  border-left: 2px solid var(--teal); padding: 0.5rem 0 0.5rem 1.5rem;
  max-width: 40rem;
}
.quote--wide { max-width: 48rem; }
.quote p { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; line-height: 1.45; margin-bottom: 0.75rem; }
.quote footer { font-size: 0.9rem; color: var(--muted); font-style: normal; font-family: var(--font-body); }
.quote cite { font-style: normal; font-weight: 600; color: var(--navy); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 2rem 0 0; counter-reset: step; }
.steps__item {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--rule);
}
.steps__item:last-child { border-bottom: 0; }
.steps__num {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 600;
  color: var(--coral); line-height: 1;
}
.steps__item h3 { margin-bottom: 0.35em; }
.steps__item p { margin: 0; color: var(--muted); }

.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative; padding-left: 1.4rem; margin-bottom: 0.65rem; color: var(--muted);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--teal);
}
.check-list--muted li::before { background: var(--sand-warm); }

/* CTA band */
.cta-band {
  text-align: center; padding: 4.5rem var(--space);
  background: linear-gradient(135deg, rgba(91,138,138,0.15), rgba(196,120,106,0.12));
}
.cta-band__inner { max-width: 32rem; margin: 0 auto; }
.cta-band p { color: var(--muted); }

/* Page heroes (interior) */
.page-hero {
  padding: 3.5rem var(--space) 2.5rem;
  max-width: var(--wide); margin: 0 auto;
}
.page-hero--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: end;
  padding-bottom: 0;
}
.page-hero--split .page-hero__media {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
  border: 1px solid var(--rule); border-bottom: 0;
}
.page-hero--split .page-hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 800px) {
  .page-hero--split { grid-template-columns: 1fr; }
}

/* Service detail */
.service-detail__hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 70vh;
}
.service-detail__copy {
  padding: 4rem var(--space); display: flex; flex-direction: column; justify-content: center;
  max-width: 520px; margin-left: auto;
}
.service-detail__price {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--coral); margin: 0 0 1.5rem;
}
.service-detail__media { overflow: hidden; min-height: 400px; }
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; min-height: 100%; }
@media (max-width: 800px) {
  .service-detail__hero { grid-template-columns: 1fr; }
  .service-detail__copy { max-width: none; }
}

/* Article */
.article { max-width: var(--narrow); margin: 0 auto; padding: 3rem var(--space) 4rem; }
.article__meta { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.article__title { margin-bottom: 1.5rem; }
.article__cover { margin: 0 0 2rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--rule); }
.article__cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose blockquote {
  border-left: 2px solid var(--coral); margin: 1.5rem 0; padding-left: 1.25rem;
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--navy-mid);
}

/* Forms */
.form { max-width: 36rem; }
.form__row { margin-bottom: 1.25rem; }
.form label {
  display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--navy);
}
.form input, .form select, .form textarea {
  width: 100%; padding: 0.75em 1em; font: inherit;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--ivory); color: var(--ink);
  transition: border-color 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--teal);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__error {
  display: none; color: var(--coral); font-size: 0.85rem; margin-top: 0.35rem;
}
.form__row.is-invalid .form__error { display: block; }
.form__row.is-invalid input,
.form__row.is-invalid select,
.form__row.is-invalid textarea { border-color: var(--coral); }
.form-status {
  margin-top: 1rem; padding: 0.85rem 1rem; border-radius: var(--radius); font-size: 0.95rem;
}
.form-status[hidden] { display: none !important; }
.form-status--success { background: rgba(91,138,138,0.15); color: var(--teal-deep); border: 1px solid var(--teal); }
.form-status--error { background: rgba(196,120,106,0.12); color: #8B3A30; border: 1px solid var(--coral); }

.contact-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem;
  max-width: var(--wide); margin: 0 auto; padding: 2rem var(--space) 4rem;
}
.contact-card {
  background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 1.75rem; background-image: var(--grain);
}
.contact-card h2 { font-size: 1.35rem; margin-bottom: 1rem; }
.contact-card p { margin: 0 0 0.75rem; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* Pricing */
.rate-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.rate-table th, .rate-table td {
  text-align: left; padding: 1rem 1.1rem; border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.rate-table th {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 600;
}
.rate-table td:last-child { font-family: var(--font-display); font-size: 1.15rem; color: var(--coral); white-space: nowrap; }

/* Legal */
.legal { max-width: var(--narrow); margin: 0 auto; padding: 3rem var(--space) 4rem; }
.legal h1 { margin-bottom: 0.5rem; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal h2 { margin-top: 2.25rem; font-size: 1.5rem; }
.legal table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 1.25rem 0; }
.legal th, .legal td { border: 1px solid var(--rule); padding: 0.65rem 0.75rem; text-align: left; }
.legal th { background: rgba(91,138,138,0.1); }

/* 404 */
.error-page {
  min-height: 60vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 4rem var(--space);
}
.error-page__code {
  font-family: var(--font-display); font-size: 6rem; color: var(--sand-warm); line-height: 1; margin: 0;
}

/* Story / case */
.case {
  background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 2rem; background-image: var(--grain);
}
.case h3 { margin-bottom: 0.5rem; }
.case__meta { font-size: 0.85rem; color: var(--teal-deep); font-weight: 600; margin-bottom: 1rem; }

/* Post list */
.post-list { list-style: none; padding: 0; margin: 0; }
.post-list__item {
  display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--rule);
}
.post-list__thumb { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); }
.post-list__thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.post-list__meta { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.post-list__item h2 { font-size: 1.5rem; margin: 0.35rem 0; }
.post-list__item h2 a { color: inherit; text-decoration: none; }
.post-list__item h2 a:hover { color: var(--teal-deep); }
@media (max-width: 600px) {
  .post-list__item { grid-template-columns: 1fr; }
  .post-list__thumb { max-width: 280px; }
}

/* Motion */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

.parallax-wrap { overflow: hidden; }
.parallax-img { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .parallax-img { transform: none !important; }
}
