/* =========================================================
   Tin Tran — Luxury Editorial design system
   Inspired by Fifty Hills / City Real Estate
   Fraunces serif + Inter sans, ivory canvas, brass accent
   ========================================================= */

:root {
  --bg: #F6F2EC;
  --surface: #FFFFFF;
  --ink: #1C1B19;
  --muted: #6E675D;
  --line: #E3DBCF;
  --accent: #9C7A4D;
  --accent-deep: #6F5836;
  --overlay: rgba(28,27,25,0.36);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.rule { width: 64px; height: 1px; background: var(--accent); margin: 18px 0 28px; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }

p { color: var(--muted); }
section p, .prose p { max-width: 68ch; }
section { padding: 96px 0; }

strong, b { color: var(--ink); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border-radius: 0;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn--light { border-color: #fff; color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--accent { border-color: var(--accent); color: var(--accent); }
.btn--accent:hover { background: var(--accent); color: var(--bg); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--bg); }

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.opaque {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  background: rgba(255, 255, 255, 0.96);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(227, 219, 207, 0.6);
  transition: background 0.4s, border-color 0.4s;
}
.brand-mark img { height: 22px; width: auto; display: block; }
header.scrolled .brand-mark, header.opaque .brand-mark {
  background: var(--surface);
  border-color: var(--line);
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.4s;
  line-height: 1;
}
header.scrolled .brand-name, header.opaque .brand-name { color: var(--ink); }
@media (max-width: 600px) {
  .brand-mark img { height: 18px; }
  .brand-name { font-size: 1.2rem; }
  .logo { gap: 10px; }
}
.navlinks { display: flex; gap: 28px; align-items: center; }
.navlinks a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.4s;
}
header.scrolled .navlinks a,
header.opaque .navlinks a { color: var(--ink); }
.navlinks a:hover { color: var(--accent); }
.phone { color: var(--accent) !important; font-weight: 600; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger span { width: 26px; height: 2px; background: #fff; transition: background 0.4s; }
header.scrolled .burger span, header.opaque .burger span { background: var(--ink); }

/* Hero (full-bleed) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 0;
}
.hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,27,25,0.72) 0%, rgba(28,27,25,0.40) 45%, rgba(28,27,25,0.10) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 96px;
  width: 100%;
}
.hero .eyebrow { color: #e8d9c0; }
.hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  margin: 14px 0 30px;
  max-width: 16ch;
  color: #fff;
}
.scrollcue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
}

/* Hero (compact, for inner pages) */
.hero-compact {
  padding: 180px 0 96px;
  background: var(--bg);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero-compact h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin: 14px 0 24px;
  max-width: 18ch;
}
.hero-compact .lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 32px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Intro asymmetric */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro .copy { max-width: 36ch; }
.intro h2 { margin-bottom: 8px; }
.intro p { color: var(--muted); margin-top: 22px; }
.intro .img-frame { overflow: hidden; }
.intro img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.intro .img-frame:hover img { transform: scale(1.04); }

/* Section head */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.sec-head h2 { max-width: 18ch; }

/* Listings grid */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.card { cursor: pointer; }
.card .frame { overflow: hidden; aspect-ratio: 4/3; background: var(--line); }
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card:hover img { transform: scale(1.05); }
.card .meta {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}
.card .price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  transition: color 0.4s;
}
.card:hover .price { color: var(--accent); }
.card .addr { color: var(--muted); font-size: 0.95rem; margin-top: 4px; }
.card .specs {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 14px;
}

/* Stats band */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--ink);
}
.stat .lab {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.stat + .stat { border-left: 1px solid var(--line); }

/* Editorial feature */
.feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
}
.feature .ph { overflow: hidden; }
.feature .ph img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.feature .txt {
  background: var(--surface);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature h2 { margin: 8px 0 22px; }
.feature p { color: var(--muted); margin-bottom: 32px; max-width: 42ch; }

/* Neighborhood tiles */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--line);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.tile:hover img { transform: scale(1.05); }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28,27,25,0.7));
}
.tile span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
}

/* Testimonial */
.quote { text-align: center; max-width: 880px; margin: 0 auto; }
.quote .q {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.3;
  color: var(--ink);
}
.quote .who {
  margin-top: 30px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.qdots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.qdots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.qdots button.on { background: var(--accent); }

/* CTA */
.cta { text-align: center; }
.cta h2 { margin-bottom: 18px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta p { margin: 0 auto 34px; max-width: 50ch; }

/* Prose (long-form, used on buyer guides, market posts) */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 { margin: 64px 0 16px; }
.prose h3 { margin: 40px 0 12px; font-size: 1.4rem; }
.prose p { margin-bottom: 20px; color: var(--ink); font-size: 1.05rem; line-height: 1.7; }
.prose ul, .prose ol { margin: 0 0 24px 1.2em; color: var(--ink); }
.prose ul li, .prose ol li { padding: 4px 0; line-height: 1.7; }
.prose .dropcap::first-letter {
  font-family: var(--serif);
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  color: var(--accent);
}
.prose blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
}
.prose img { margin: 32px 0; }

/* Step list (buyer guide) */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}
.steps > li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.steps h3 { margin: 0 0 8px; font-size: 1.3rem; }
.steps p { color: var(--muted); margin: 0; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--accent);
}
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* Forms — underline-only inputs */
.form { display: grid; gap: 28px; max-width: 640px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 18px 0 12px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--accent); }
.field label {
  position: absolute;
  top: 18px;
  left: 0;
  font-size: 1rem;
  color: var(--muted);
  pointer-events: none;
  transition: top 0.3s var(--ease), font-size 0.3s var(--ease), color 0.3s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select.has-value + label {
  top: -8px;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.field textarea { min-height: 120px; resize: vertical; padding-top: 20px; }
.form .helper {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -8px;
}
.form-success {
  background: var(--surface);
  border: 1px solid var(--accent);
  padding: 48px 40px;
  text-align: center;
}
.form-success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.form-success p { color: var(--muted); max-width: 36em; margin: 0 auto; }
.form-error {
  color: #8b3a1f;
  padding: 14px 18px;
  border-left: 2px solid #8b3a1f;
  background: rgba(139, 58, 31, 0.06);
  font-size: 0.9rem;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-aside h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 24px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 600;
}
.map-frame {
  margin-top: 32px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--line);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Market reports index */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 768px) { .reports-grid { grid-template-columns: 1fr; } }
.report-card .frame { overflow: hidden; aspect-ratio: 16/10; background: var(--line); }
.report-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.report-card:hover img { transform: scale(1.04); }
.report-card .body { padding: 24px 0; }
.report-card .date {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.report-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.4s;
}
.report-card:hover h3 { color: var(--accent); }
.report-card .excerpt { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* Market post hero (article) */
.article-hero {
  padding: 180px 0 64px;
  text-align: center;
  background: var(--bg);
}
.article-hero .date {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.article-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 22ch;
  margin: 0 auto 24px;
}
.article-hero .byline {
  font-size: 0.95rem;
  color: var(--muted);
}
.article-figure {
  width: 100%;
  max-width: 1280px;
  margin: 48px auto 96px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--line);
}
.article-figure img { width: 100%; height: 100%; object-fit: cover; }

/* Stats inline (market post / area page) */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 48px 0;
}
.stat-row .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--ink);
}
.stat-row .lab {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
@media (max-width: 768px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* About — agent card */
.agent-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.agent-card .portrait { overflow: hidden; aspect-ratio: 4 / 5; background: var(--line); }
.agent-card .portrait img { width: 100%; height: 100%; object-fit: cover; }
.agent-card .copy { padding-top: 24px; }
.agent-card h1 { margin-bottom: 16px; }
.agent-card .credentials {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.agent-card .credentials dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
  font-weight: 600;
}
.agent-card .credentials dd { color: var(--ink); margin-top: 6px; }
@media (max-width: 900px) { .agent-card { grid-template-columns: 1fr; gap: 48px; } }

/* Instagram strip */
.insta { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding-bottom: 0; }
.insta a { overflow: hidden; aspect-ratio: 1; background: var(--line); }
.insta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.6s;
  filter: saturate(0.9);
}
.insta a:hover img { transform: scale(1.08); filter: saturate(1.1); }

/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--accent);
  padding: 80px 0 40px;
}
.fcols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
footer .logo { color: var(--ink); font-size: 1.7rem; }
footer p { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 36ch; }
.fcol h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.fcol a { display: block; color: var(--muted); font-size: 0.92rem; padding: 6px 0; }
.fcol a:hover { color: var(--ink); }
.legal {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--muted);
}
.legal .eho { display: flex; align-items: center; gap: 10px; }
.eho b { font-family: var(--serif); }
.brokerage-logo {
  margin-top: 24px;
  background: var(--surface);
  padding: 8px 12px;
  display: inline-block;
  border: 1px solid var(--line);
}
.brokerage-logo img { height: 28px; width: auto; }

/* Responsive */
@media (max-width: 1024px) {
  .navlinks { display: none; }
  .burger { display: flex; }
  .feature { grid-template-columns: 1fr; }
  .feature .ph img { min-height: 340px; }
  .feature .txt { padding: 56px 32px; }
}
@media (max-width: 760px) {
  section { padding: 72px 0; }
  .wrap { padding: 0 22px; }
  .intro, .grid3, .grid2, .stats .row { grid-template-columns: 1fr; gap: 36px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); padding-top: 36px; }
  .insta { grid-template-columns: repeat(3, 1fr); }
  .fcols { grid-template-columns: 1fr; gap: 36px; }
  .hero-compact { padding: 140px 0 72px; }
  .article-hero { padding: 140px 0 48px; }
  .article-figure { margin: 32px auto 64px; }
}

/* Market report: stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-band .stat {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}
.stats-band .stat:last-child { border-right: 0; }
.stats-band .stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-band .stat-l {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
@media (max-width: 760px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band .stat:nth-child(2) { border-right: 0; }
  .stats-band .stat:nth-child(3) { border-top: 1px solid var(--line); }
  .stats-band .stat:nth-child(4) { border-top: 1px solid var(--line); border-right: 0; }
}

/* Market report: post card (index listing) */
.post-card {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 36px 0 40px;
  margin-bottom: 24px;
}
.post-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.post-card__link:hover .post-card__title { color: var(--accent); }
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.post-card__sep { color: var(--line); }
.post-card__tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.post-card__title {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 14px;
  transition: color 0.3s;
}
.post-card__excerpt {
  color: var(--muted);
  max-width: 68ch;
  margin: 0 0 20px;
  line-height: 1.65;
}
.post-card__cta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

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