/* ============================================
   THE DAILY REFLECTION — v2
   Cesur / Sanatsal editorial sistem
   ============================================ */

:root {
  --paper: #FAF8F4;
  --paper-deep: #F3EEE6;
  --ink: #1E1B18;
  --ink-soft: #72695E;
  /* 2025 editorial soft palette — Kinfolk / Anthropologie tarzı */
  --travel: #B87355;        /* Warm terracotta — toprak, sıcak */
  --transform: #8B7BA8;     /* Dusty lavender — farkındalık, derinlik */
  --longevity: #5C8C78;     /* Sage green — denge, doğa */
  --business: #5B7A8C;      /* Slate blue — güven, netlik */
  --travel-tint: #F4EAE2;
  --transform-tint: #EDE8F5;
  --longevity-tint: #E0EDEA;
  --business-tint: #E0E9EF;
  --line: rgba(30,27,24,0.11);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* UI elements use DM Sans */
.nav-links, .nav-right, .btn-sub, .btn-ghost,
.pill, .cat-chip, .row-chip, .row-idx,
.section-head .tag, .hero-kicker,
.cat-tile .idx, .cat-tile .count,
.footer-cats, .footer-bottom,
.m-meta, .post-meta-row, .about-kicker,
.about-stat .label, .about-roles span,
.spotlight-mark, .spotlight .roles,
.form-note, .sub-form button {
  font-family: 'DM Sans', sans-serif;
}

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding: 0 28px; }

::selection { background: var(--ink); color: var(--paper); }

/* ===== Top bar ===== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,246,238,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  text-decoration: none;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.logo-name::after {
  content: '';
  display: inline-flex;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--travel);
  box-shadow: 12px 0 0 var(--transform), 24px 0 0 var(--business);
  margin-left: 6px;
  flex-shrink: 0;
}
.logo-by {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.025em;
}
.footer-logo .logo-name { font-size: 18px; }
.logo .dot { display: none; }
.nav-links { display: flex; gap: 34px; font-weight: 600; font-size: 14px; }
.nav-links a { position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a[data-cat="travel"]:hover { color: var(--travel); }
.nav-links a[data-cat="transform"]:hover { color: var(--transform); }
.nav-links a[data-cat="longevity"]:hover { color: var(--longevity); }
.nav-links a[data-cat="business"]:hover { color: var(--business); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.btn-sub {
  background: var(--ink); color: var(--paper);
  padding: 11px 22px; border-radius: 999px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.01em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s;
  display: inline-block;
}
.btn-sub:hover { transform: translateY(-2px) rotate(-1deg); background: var(--transform); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--ink);
  padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 13px;
}
@media (max-width: 880px) { .nav-links { display: none; } }
@media (max-width: 560px) {
  .topbar-inner { padding: 14px 0; }
  .logo { font-size: 17px; }
  .logo .dot { display: none; }
  .nav-right a[href="about.html"] { display: none; }
  .btn-sub { padding: 9px 16px; font-size: 12px; }
}

/* ===== Hero — typographic riot ===== */
.hero {
  position: relative;
  padding: 30px 0 0;
  overflow: hidden;
}
.hero-kicker {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.hero-kicker .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--travel);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,90,54,.5); }
  50% { box-shadow: 0 0 0 7px rgba(255,90,54,0); }
}

.hero-type {
  position: relative;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.035em;
  font-size: clamp(58px, 11vw, 168px);
  padding: 6px 0 0;
}
.hero-type .row { display: block; white-space: nowrap; }
.hero-type .row.r2 {
  font-size: clamp(46px, 8.5vw, 132px);
  margin-left: clamp(20px, 9vw, 130px);
  margin-top: 6px;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.hero-type .row.r3 { margin-left: clamp(0px, 1vw, 14px); }

/* ===== Ransom note / newspaper clipping title effect ===== */
.hero-type .row.r1.ransom {
  font-size: clamp(38px, 6.4vw, 100px);
  flex-wrap: wrap;
  max-width: 100%;
}
.ransom { display: inline-flex; flex-wrap: wrap; align-items: center; row-gap: 6px; }
.rs {
  position: relative;
  display: inline-block;
  padding: 0.08em 0.16em;
  margin: 0 0.045em 0.1em;
  background: var(--paper);
  box-shadow:
    0 2px 5px rgba(24,20,32,0.18),
    0 1px 0 rgba(255,255,255,0.5) inset;
  border-radius: 2px;
  line-height: 1;
  vertical-align: middle;
}
.rs::before {
  /* torn paper edge illusion via subtle border + noise gradient */
  content: '';
  position: absolute; inset: 0;
  border-radius: 2px;
  background: linear-gradient(170deg, rgba(0,0,0,0.03), rgba(0,0,0,0) 40%, rgba(0,0,0,0.04) 100%);
  pointer-events: none;
}
.rs-sp { display: inline-block; width: 0.32em; }

/* tape strip on a few letters for the clipped/taped look */
.rs.tape::after {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  width: 46%; height: 14px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(24,20,32,0.06);
  transform: translateX(-50%) rotate(var(--tape-rot, -4deg));
  box-shadow: 0 1px 2px rgba(24,20,32,0.12);
}

/* Per-letter font/size/rotation/color variety — cycles through 10 letters */
.rs:nth-child(10n+1) { font-family: 'Archivo Black', sans-serif; font-size: 0.92em; color: var(--ink); transform: rotate(-4deg); background: #FBF6EE; }
.rs:nth-child(10n+2) { font-family: 'Fraunces', serif; font-weight: 900; font-style: italic; font-size: 1.05em; color: var(--travel); transform: rotate(3deg); background: #FBF6EE; }
.rs:nth-child(10n+3) { font-family: 'Special Elite', monospace; font-size: 0.88em; color: var(--ink); transform: rotate(-2deg) translateY(2px); background: #F4ECDC; }
.rs:nth-child(10n+4) { font-family: 'Bebas Neue', sans-serif; font-size: 1.15em; color: var(--transform); transform: rotate(5deg); background: #FBF6EE; letter-spacing: 0.02em; }
.rs:nth-child(10n+5) { font-family: 'Caveat', cursive; font-weight: 700; font-size: 1.25em; color: var(--ink); transform: rotate(-6deg) translateY(-3px); background: #F4ECDC; }
.rs:nth-child(10n+6) { font-family: 'Courier Prime', monospace; font-weight: 700; font-size: 0.85em; color: var(--ink); transform: rotate(4deg); background: #FBF6EE; }
.rs:nth-child(10n+7) { font-family: 'Archivo Black', sans-serif; font-size: 0.95em; color: var(--business); transform: rotate(-3deg) translateY(2px); background: #F4ECDC; }
.rs:nth-child(10n+8) { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1em; color: var(--ink); transform: rotate(2deg); background: #FBF6EE; }
.rs:nth-child(10n+9) { font-family: 'Bebas Neue', sans-serif; font-size: 1.1em; color: var(--ink); transform: rotate(-5deg); background: #F4ECDC; letter-spacing: 0.02em; }
.rs:nth-child(10n+0) { font-family: 'Special Elite', monospace; font-size: 0.86em; color: var(--travel); transform: rotate(3deg) translateY(-2px); background: #FBF6EE; }

@media (max-width: 560px) {
  .rs { padding: 0.06em 0.13em; margin: 0 0.03em 0.08em; }
}

.hero-sub-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  margin-top: 36px;
  padding-bottom: 56px;
  align-items: end;
}
.hero-sub-row .lead {
  font-size: 18px; line-height: 1.65; color: var(--ink-soft);
  max-width: 48ch;
}
.hero-cats { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: 12.5px;
  transition: transform .2s ease;
  border: 1px solid transparent;
}
.pill:hover { transform: translateY(-2px) scale(1.02); }
.pill.travel { background: var(--travel-tint); color: #A8341A; }
.pill.transform { background: var(--transform-tint); color: #4D2B9C; }
.pill.longevity { background: var(--longevity-tint); color: #146B41; }
.pill.business { background: var(--business-tint); color: #0E36A3; }

/* hero collage — asymmetric, overlapping */
.hero-collage {
  position: relative;
  height: 360px;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}
.collage-card {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 30px 60px -24px rgba(24,20,32,0.35);
  display: flex; align-items: flex-end; padding: 18px;
  font-family: 'Fraunces', serif; font-weight: 600; color: white; font-size: 16px;
  line-height: 1.2;
  overflow: hidden;
}
.collage-card::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.4)); }
.collage-card span { position: relative; z-index: 1; }
.collage-card.c1 {
  width: 62%; height: 64%; top: 0; left: 0;
  background: linear-gradient(150deg, #FF9466, var(--travel) 70%);
  transform: rotate(-6deg);
  z-index: 2;
  animation: drift1 8s ease-in-out infinite;
}
.collage-card.c2 {
  width: 48%; height: 46%; top: 6%; right: 0;
  background: linear-gradient(150deg, #9C7CF0, var(--transform) 70%);
  transform: rotate(5deg);
  z-index: 3;
  animation: drift2 9s ease-in-out infinite;
}
.collage-card.c3 {
  width: 46%; height: 42%; bottom: 0; left: 10%;
  background: linear-gradient(150deg, #49C98A, var(--longevity) 70%);
  transform: rotate(4deg);
  z-index: 1;
  animation: drift3 10s ease-in-out infinite;
}
.collage-card.c4 {
  width: 40%; height: 38%; bottom: 4%; right: 4%;
  background: linear-gradient(150deg, #5A82F5, var(--business) 70%);
  transform: rotate(-5deg);
  z-index: 2;
  animation: drift4 8.5s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:rotate(-6deg) translateY(0)} 50%{transform:rotate(-3deg) translateY(-9px)} }
@keyframes drift2 { 0%,100%{transform:rotate(5deg) translateY(0)} 50%{transform:rotate(2deg) translateY(8px)} }
@keyframes drift3 { 0%,100%{transform:rotate(4deg) translateY(0)} 50%{transform:rotate(6deg) translateY(-7px)} }
@keyframes drift4 { 0%,100%{transform:rotate(-5deg) translateY(0)} 50%{transform:rotate(-7deg) translateY(9px)} }

@media (max-width: 980px) {
  .hero-sub-row { grid-template-columns: 1fr; }
  .hero-collage { justify-self: start; max-width: 380px; margin-top: 20px; }
}
@media (max-width: 560px) {
  .hero-type .row.r2 { margin-left: 12px; }
  .hero-collage { height: 300px; }
}

/* ===== Section pattern ===== */
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head .head-left { display: flex; align-items: center; gap: 18px; }
.section-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.section-icon svg { width: 100%; height: 100%; position: relative; z-index: 1; }
.section-icon.ic-featured { background: linear-gradient(150deg, #FFD9CB, #DFA88A); }
.section-icon.ic-categories { background: linear-gradient(150deg, #E3D6FB, #B8A8D8); }
.section-icon.ic-author { background: linear-gradient(150deg, #181420, #423A55); }
.section-icon.ic-allposts { background: linear-gradient(150deg, #D2E0FF, #8AABCC); }
.section-icon.ic-newsletter { background: linear-gradient(150deg, #CDEEDC, #9CD6B8); }
@media (max-width: 560px) {
  .section-icon { width: 44px; height: 44px; border-radius: 13px; }
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1;
}
.section-head .tag {
  font-weight: 700; font-size: 12.5px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  padding-bottom: 8px;
}

/* ===== Asymmetric featured mosaic ===== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 14px;
  gap: 22px;
}
.m-item {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  position: relative;
}
.m-item:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: 0 30px 56px -28px rgba(24,20,32,0.3); }
.m-item.tilt-r:hover { transform: translateY(-6px) rotate(0.6deg); }

.m-media {
  position: relative;
  flex: 1;
  display: flex; align-items: flex-end; padding: 22px;
  min-height: 160px;
}
.m-media::before { content:''; position:absolute; inset:0; opacity:.95; }
.m-media[style*="background-image"]::before { opacity: 0.35; background: linear-gradient(to top, rgba(30,27,24,0.7) 0%, transparent 60%) !important; }
.m-media[style*="background-image"] { background-color: var(--ink); }
.m-media.travel::before { background: radial-gradient(135% 135% at 18% 12%, #DFA88A, var(--travel) 55%, #A05E42); }
.m-media.transform::before { background: radial-gradient(135% 135% at 18% 12%, #B8A8D8, var(--transform) 55%, #5E4F82); }
.m-media.longevity::before { background: radial-gradient(135% 135% at 18% 12%, #9CD6B8, var(--longevity) 55%, #4A8A68); }
.m-media.business::before { background: radial-gradient(135% 135% at 18% 12%, #8AABCC, var(--business) 55%, #2D5070); }

.cat-chip {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.95); color: var(--ink);
  font-weight: 800; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.m-body { padding: 22px 24px 26px; }
.m-body h3 {
  font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.18;
  letter-spacing: -0.01em;
}
.m-body p {
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin-top: 8px;
  text-align: justify; hyphens: auto; -webkit-hyphens: auto;
}
.m-meta {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  font-size: 12.5px; color: var(--ink-soft); font-weight: 600;
}
.avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--ink), #423A55); flex-shrink: 0; }
.dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-soft); opacity: .5; }

/* mosaic placements: editorial, uneven */
.m-item.span-a { grid-column: 1 / 8; grid-row: span 24; }
.m-item.span-b { grid-column: 8 / 13; grid-row: span 13; align-self: start; margin-top: 18px; }
.m-item.span-c { grid-column: 8 / 13; grid-row: span 13; margin-top: 18px; }
.m-item.span-b .m-body h3, .m-item.span-c .m-body h3 { font-size: 18px; }
.m-item.span-a .m-body h3 { font-size: 30px; }
.m-item.span-a .m-media { min-height: 240px; }
.m-item.span-b .m-media, .m-item.span-c .m-media { min-height: 130px; }

@media (max-width: 980px) {
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .m-item.span-a, .m-item.span-b, .m-item.span-c { grid-column: 1; grid-row: auto; margin-top: 0; }
}

/* ===== Category band — diagonal cut cards ===== */
.cat-strip { background: var(--paper-deep); position: relative; }
.cat-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-tile {
  border-radius: 22px;
  padding: 30px 26px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.cat-tile:nth-child(2) { margin-top: 26px; }
.cat-tile:nth-child(3) { margin-top: -14px; }
.cat-tile:hover { transform: translateY(-8px) rotate(-1deg); }
.cat-tile.travel { background: linear-gradient(155deg, #DFA88A, var(--travel) 75%); }
.cat-tile.transform { background: linear-gradient(155deg, #B8A8D8, var(--transform) 75%); }
.cat-tile.business { background: linear-gradient(155deg, #8AABCC, var(--business) 75%); }
.cat-tile .idx { font-family: 'Fraunces', serif; font-style: italic; font-size: 13px; opacity: .85; }
.cat-tile h4 { font-family: 'Fraunces', serif; font-size: 25px; font-weight: 600; margin-top: 8px; line-height: 1.1; }
.cat-tile .count { font-size: 12.5px; font-weight: 700; opacity: .9; margin-top: 5px; }
.cat-tile .arrow {
  align-self: flex-end; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .2s, transform .2s;
}
.cat-tile:hover .arrow { background: rgba(255,255,255,0.4); transform: translateX(4px) rotate(45deg); }
.cat-motif {
  position: absolute; top: 16px; right: 16px;
  width: 52px; height: 52px;
  opacity: 0.9;
}
.cat-motif svg { width: 100%; height: 100%; }

@media (max-width: 880px) {
  .cat-rail { grid-template-columns: 1fr 1fr; }
  .cat-tile:nth-child(n) { margin-top: 0; }
  .cat-tile h4 { font-size: 21px; white-space: nowrap; }
}
@media (max-width: 540px) {
  .cat-rail { grid-template-columns: 1fr; }
  .cat-tile { padding: 24px 20px; min-height: auto; }
  .cat-tile .idx { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
  .cat-tile h4 { font-size: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* ===== Spotlight — single flowing narrative ===== */
.spotlight {
  position: relative;
  background: var(--ink);
  border-radius: 32px;
  padding: 72px 64px;
  color: var(--paper);
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--travel), var(--transform), var(--business), var(--longevity), var(--travel));
  filter: blur(120px);
  opacity: .32;
  top: -260px; right: -200px;
}
.spotlight-mark {
  font-family: 'Fraunces', serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(251,246,238,0.55);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 30px;
}
.spotlight-mark .sw { display:flex; gap:4px; }
.spotlight-mark .sw span { width: 18px; height: 4px; border-radius: 2px; }
.spotlight blockquote {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 600; font-style: normal;
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 42ch;
}
.spotlight .full-name {
  font-family: 'Fraunces', serif;
  margin-top: 34px;
  font-size: 19px; font-weight: 600;
}
.spotlight .roles {
  margin-top: 8px;
  font-size: 14px; color: rgba(251,246,238,0.6); font-weight: 600;
}
.spotlight-cta {
  margin-top: 30px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px;
  color: var(--paper);
  border-bottom: 1.5px solid rgba(251,246,238,0.4);
  padding-bottom: 3px;
  transition: border-color .2s, gap .2s;
}
.spotlight-cta:hover { border-color: var(--paper); gap: 12px; }

@media (max-width: 700px) {
  .spotlight { padding: 44px 28px; border-radius: 24px; }
}

/* ===== Index list (all posts) — numbered editorial rows ===== */
.post-rows { border-top: 2px solid var(--ink); }
.post-row {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease, background .25s ease;
}
.post-row:hover { padding-left: 12px; background: rgba(24,20,32,0.025); }
.post-row .row-idx {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 15px; color: var(--ink-soft);
}
.post-row .row-main h3 {
  font-family: 'Fraunces', serif; font-size: clamp(19px, 2.4vw, 25px); font-weight: 600; letter-spacing: -0.01em;
}
.post-row .row-main p {
  font-size: 15px; color: var(--ink-soft); margin-top: 4px;
  max-width: 60ch;
  line-height: 1.6;
  text-align: justify; hyphens: auto; -webkit-hyphens: auto;
}
.row-chip {
  font-weight: 800; font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}
.row-chip.travel { background: var(--travel-tint); color: #A8341A; }
.row-chip.transform { background: var(--transform-tint); color: #4D2B9C; }
.row-chip.longevity { background: var(--longevity-tint); color: #146B41; }
.row-chip.business { background: var(--business-tint); color: #0E36A3; }
.row-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.post-row:hover .row-arrow { background: var(--ink); color: var(--paper); transform: rotate(45deg); border-color: var(--ink); }

@media (max-width: 700px) {
  .post-row { grid-template-columns: 32px 1fr; row-gap: 10px; }
  .row-chip, .row-arrow { display: none; }
}

/* ===== Newsletter — bold split ===== */
.newsletter {
  border-radius: 32px;
  background: linear-gradient(115deg, var(--travel-tint), var(--transform-tint) 35%, var(--business-tint) 68%, var(--longevity-tint));
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.04;
}
.newsletter p { margin-top: 16px; color: var(--ink-soft); max-width: 42ch; font-size: 16.5px; line-height: 1.7; }
.sub-form { display: flex; flex-direction: column; gap: 10px; }
.sub-form .row { display: flex; gap: 10px; }
.sub-form input {
  flex: 1; padding: 15px 18px; border-radius: 999px; border: 1.5px solid var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 16px; background: white;
}
.sub-form input:focus { outline: 3px solid var(--business); outline-offset: 2px; }
.sub-form button {
  background: var(--ink); color: var(--paper); border: none;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
  cursor: pointer; transition: background .2s, transform .2s; white-space: nowrap;
}
.sub-form button:hover { background: var(--transform); transform: translateY(-2px); }
.form-note { font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 820px) {
  .newsletter { grid-template-columns: 1fr; padding: 36px 28px; border-radius: 24px; }
  .sub-form .row { flex-direction: column; }
}

/* ===== Footer ===== */
footer { border-top: 1px solid var(--line); padding: 52px 0 32px; margin-top: 20px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-cats { display: flex; gap: 22px; font-weight: 600; font-size: 13px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.footer-bottom {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .collage-card, .hero-kicker .pulse { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ===== Focus visibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--transform);
  outline-offset: 2px;
}

/* ===== Mobile readability pass =====
   Justified text relies on hyphenation to avoid ugly gaps; Turkish
   hyphenation support is inconsistent across mobile browsers, so on
   narrow columns we switch to left-aligned text, which reads more
   evenly on phones regardless of hyphenation support. */
@media (max-width: 640px) {
  .m-body p,
  .post-row .row-main p {
    text-align: left;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}

/* Prevent iOS Safari from auto-zooming when a form field is focused
   (triggered by any input font-size under 16px). */
@media (max-width: 480px) {
  input, textarea, select { font-size: 16px; }
}
