/* =========================================================================
   PASAJ — yürüyüş dergisi   ·   SAYI 02 · İLKBAHAR 2026
   Editorial-magazine stylesheet
   ========================================================================= */

/* Modern small reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  interpolate-size: allow-keywords;
}
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Crimson Pro', 'Times New Roman', Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
hr { border: 0; height: 1px; background: var(--line); }

/* Variables ------------------------------------------------------------- */
:root {
  --bg: #FAF8F3;
  --bg-2: #F2EEE5;
  --surface: #FFFFFF;
  --surface-2: #F6F1E7;
  --ink: #0A0A0A;
  --ink-soft: #1F1A14;
  --accent: #C8262E;
  --accent-deep: #952028;
  --accent-2: #797065;
  --accent-2-soft: #A39A8B;
  --line: rgba(10,10,10,0.12);
  --line-strong: rgba(10,10,10,0.22);
  --line-accent: rgba(200,38,46,0.28);
  --header-h: 76px;
  --container: 1240px;
  --column-text: 640px;
  --column-margin: 200px;

  --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --body-serif: 'Crimson Pro', 'Times New Roman', Georgia, serif;

  --shadow-soft: 0 18px 50px -32px rgba(20,16,8,0.28);
  --shadow-card: 0 22px 60px -38px rgba(40,30,18,0.30);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-strong: cubic-bezier(.4,0,.2,1);
}

/* Selection & focus ----------------------------------------------------- */
::selection { background: var(--accent); color: #FFF8EE; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip link -------------------------------------------------------------- */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 10px 16px; border-radius: 4px;
  font-family: var(--serif); font-style: italic;
  z-index: 2000;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: 12px; }

/* Container & rhythm ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }
.section--paper { background: var(--surface); }
.section--ink { background: var(--ink); color: #EFE7D6; }
.section--cream { background: var(--bg-2); }

/* Typography ------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.005em;
}
.h-display {
  font-size: clamp(48px, 9.5vw, 138px);
  line-height: 0.94;
  letter-spacing: -0.018em;
}
.h-1 { font-size: clamp(36px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.012em; }
.h-2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.08; }
.h-3 { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.18; }
.h-4 { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.3; }

p { margin: 0 0 1em; }
.lead { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.55; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--ink { color: var(--ink); }
.eyebrow--ink::before { background: var(--ink); }
.eyebrow--cream { color: #DCC79B; }
.eyebrow--cream::before { background: #DCC79B; }

.kunye {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 18px 0 22px;
  border: 0;
}
.rule--center { margin-left: auto; margin-right: auto; }
.rule--ink { background: var(--ink); }
.rule--cream { background: #DCC79B; }
.rule--long { width: 120px; }

em, .italic { font-style: italic; }

/* Editorial reading grid (640 + 200 marginalia) -------------------------- */
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--column-text)) var(--column-margin);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.editorial-grid > .col-text { min-width: 0; }
.editorial-grid > .col-margin {
  position: relative;
  padding-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--accent-2);
}
.editorial-grid > .col-margin::before {
  content: '';
  position: absolute;
  top: 6px; left: -20px;
  width: 1px; height: 80%;
  background: var(--line);
}
.margin-note {
  margin: 0 0 22px;
  padding-left: 4px;
}
.margin-note .ref {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
  margin-right: 6px;
}
.margin-figure {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.margin-figure img,
.margin-figure .figure-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #DDD3C0 0%, #B5A88E 60%, #807766 100%);
  margin-bottom: 8px;
  filter: grayscale(1) contrast(1.05);
}

@media (max-width: 900px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 640px;
  }
  .editorial-grid > .col-margin {
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }
  .editorial-grid > .col-margin::before { display: none; }
}

/* Drop cap --------------------------------------------------------------- */
.dropcap > p:first-of-type::first-letter,
p.dropcap::first-letter {
  font-family: var(--serif);
  font-weight: 700;
  font-style: normal;
  font-size: 5.4em;
  line-height: 0.86;
  float: left;
  margin: 0.06em 0.12em 0 -0.04em;
  padding-right: 8px;
  color: var(--accent);
  letter-spacing: -0.02em;
  animation: dropcap-fade 1200ms var(--ease) both;
}
@keyframes dropcap-fade {
  0% { opacity: 0; transform: translate(-6px, 6px) rotate(-2deg); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: translate(0,0) rotate(0); }
}
@media (max-width: 600px) {
  .dropcap > p:first-of-type::first-letter,
  p.dropcap::first-letter { font-size: 4.4em; }
}

/* Footnote anchors ------------------------------------------------------- */
.fn-ref {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.7em;
  vertical-align: super;
  line-height: 0;
  color: var(--accent);
  margin-left: 1px;
}

/* Pull quote ------------------------------------------------------------- */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
  color: var(--ink);
  margin: clamp(40px, 6vw, 70px) auto;
  max-width: 720px;
  position: relative;
  padding: 28px 0 22px;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  text-align: center;
  letter-spacing: -0.005em;
}
.pull-quote::before {
  content: '“';
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  color: var(--accent);
  font-size: 50px;
  line-height: 1;
  padding: 0 14px;
  font-family: var(--serif);
}
.pull-quote .attribution {
  display: block;
  margin-top: 18px;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms var(--ease), color 240ms var(--ease),
              border-color 240ms var(--ease), transform 240ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF8EE;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-text {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 200ms var(--ease), gap 200ms var(--ease);
}
.btn-text:hover, .btn-text:focus-visible { color: var(--accent); gap: 14px; }
.btn-text .arrow { transition: transform 240ms var(--ease); }
.btn-text:hover .arrow { transform: translateX(4px); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease),
              height 240ms var(--ease);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled {
  background: rgba(250, 248, 243, 1);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 66px;
  border-bottom-color: var(--line-strong);
}
.site-header .scroll-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
  transition: width 120ms linear;
  pointer-events: none;
  z-index: 2;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand .brand-mark {
  width: 30px; height: 30px;
  flex-shrink: 0;
  color: var(--accent);
}
.brand .brand-sub {
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-left: 4px;
}

.nav-desktop {
  display: none;
  justify-self: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
}
.nav-desktop a {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.01em;
  transition: color 200ms var(--ease);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }

.header-cta {
  display: none;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  transition: background 220ms var(--ease), color 220ms var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: #FFF8EE;
  border-color: var(--accent);
}

@media (min-width: 1024px) {
  .nav-desktop { display: inline-flex; }
  .header-cta { display: inline-flex; }
}

/* Hamburger -------------------------------------------------------------- */
.nav-toggle {
  position: relative;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.nav-toggle:hover { background: rgba(10,10,10,0.04); }
.nav-toggle .bar {
  position: absolute;
  left: 12px;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform 320ms var(--ease), top 280ms var(--ease),
              opacity 200ms linear;
}
.nav-toggle .bar:nth-child(1) { top: 16px; }
.nav-toggle .bar:nth-child(2) { top: 21px; }
.nav-toggle .bar:nth-child(3) { top: 26px; }
.nav-toggle.is-active .bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Drawer ----------------------------------------------------------------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.55);
  opacity: 0;
  visibility: hidden;
  z-index: 1040;
  transition: opacity 240ms var(--ease), visibility 0s linear 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 240ms var(--ease), visibility 0s linear 0s;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 12px) 28px 28px;
  overflow-y: auto;
  border-left: 1px solid var(--line);
}
.drawer.is-open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 5;
  transition: background 200ms var(--ease), border-color 200ms var(--ease),
              color 200ms var(--ease), transform 200ms var(--ease);
}
.drawer-close:hover, .drawer-close:focus-visible {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: rotate(90deg);
}
.drawer-close svg { width: 18px; height: 18px; }

.drawer-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
  transition: color 200ms var(--ease), padding-left 200ms var(--ease);
}
.drawer nav a:hover { color: var(--accent); padding-left: 6px; }
.drawer nav a.is-active { color: var(--accent); }
.drawer nav a .num {
  font-style: italic;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.1em;
}
.drawer .nav-cta { margin-top: 18px; align-self: flex-start; }
.drawer-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent-2);
}

/* =========================================================================
   HERO  ·  video-loop placeholder + masthead
   ========================================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: clamp(60px, 7vw, 100px);
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(200,38,46,0.05), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(121,112,101,0.10), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: clamp(36px, 5vw, 60px);
  font-family: var(--serif);
}
.hero-masthead .masthead-l,
.hero-masthead .masthead-r {
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.hero-masthead .masthead-r { text-align: right; }
.hero-masthead .masthead-c {
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hero-masthead { grid-template-columns: 1fr; text-align: center; }
  .hero-masthead .masthead-r { text-align: center; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-title-block { position: relative; max-width: min(20ch, 100%); }
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  color: var(--ink);
}
.hero-title .word {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-rise 900ms var(--ease) forwards;
}
.hero-title .word:nth-child(2) > span { animation-delay: 120ms; }
.hero-title .word:nth-child(3) > span { animation-delay: 240ms; }
.hero-title .accent-letter {
  font-style: italic;
  color: var(--accent);
}
@keyframes word-rise {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 30px;
  letter-spacing: -0.005em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-item .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.hero-meta-item .value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Hero loop frame (B&W footstep loop placeholder) ----------------------- */
.hero-loop {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #15110d;
  overflow: hidden;
  filter: contrast(1.05);
  box-shadow: var(--shadow-card);
}
@media (max-width: 960px) {
  .hero-loop { aspect-ratio: 4 / 3; }
}

.hero-loop__svg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  display: block;
}
.hero-loop__bg {
  fill: #1c1813;
}
.hero-loop__path {
  stroke: rgba(255, 245, 220, 0.10);
  stroke-width: 1;
  stroke-dasharray: 4 8;
  fill: none;
}
.hero-loop__step {
  fill: rgba(245, 235, 215, 0.86);
  filter: blur(0.2px);
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: step-fade 8000ms infinite var(--ease);
}
.hero-loop__step:nth-child(2)  { animation-delay: 0ms; }
.hero-loop__step:nth-child(3)  { animation-delay: 700ms; }
.hero-loop__step:nth-child(4)  { animation-delay: 1400ms; }
.hero-loop__step:nth-child(5)  { animation-delay: 2100ms; }
.hero-loop__step:nth-child(6)  { animation-delay: 2800ms; }
.hero-loop__step:nth-child(7)  { animation-delay: 3500ms; }
.hero-loop__step:nth-child(8)  { animation-delay: 4200ms; }
.hero-loop__step:nth-child(9)  { animation-delay: 4900ms; }
@keyframes step-fade {
  0%   { opacity: 0; transform: scale(0.92); }
  10%  { opacity: 0.95; transform: scale(1); }
  60%  { opacity: 0.55; }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-loop__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: overlay;
  opacity: 0.6;
  animation: grain 1.6s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(2px,-1px); }
  60% { transform: translate(-2px,-1px); }
  80% { transform: translate(1px, 2px); }
  100% { transform: translate(0,0); }
}
.hero-loop__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.hero-loop__caption {
  position: absolute;
  left: 22px; bottom: 22px; right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 235, 215, 0.78);
  pointer-events: none;
}
.hero-loop__caption .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  animation: rec-pulse 1.6s infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-loop__folio {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: rgba(245, 235, 215, 0.88);
  letter-spacing: -0.02em;
}
.hero-loop__folio small {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 235, 215, 0.55);
  margin-top: 6px;
}

/* Drift leaves (ambient hero ornament) ---------------------------------- */
.leaf-drift {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  color: var(--accent-2);
  animation: leaf-fall 14s linear infinite;
}
.leaf-drift:nth-child(1) { left: 6%;  top: -10%; animation-delay: 0s;   color: rgba(121,112,101,.5); }
.leaf-drift:nth-child(2) { left: 22%; top: -16%; animation-delay: -3s;  color: rgba(200,38,46,.35); }
.leaf-drift:nth-child(3) { left: 78%; top: -8%;  animation-delay: -6s;  color: rgba(121,112,101,.45); }
.leaf-drift:nth-child(4) { left: 92%; top: -14%; animation-delay: -9s;  color: rgba(200,38,46,.30); }
@keyframes leaf-fall {
  0%   { transform: translate(0,0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translate(-40px, 60vh) rotate(160deg); opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translate(20px, 120vh) rotate(360deg); opacity: 0; }
}

/* =========================================================================
   EDITORIAL — manifesto / söyleşi
   ========================================================================= */
.editorial-section {
  background: var(--surface);
  position: relative;
}
.editorial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
}
.editorial-head {
  text-align: center;
  margin: 0 auto clamp(40px, 6vw, 70px);
  max-width: 720px;
}
.editorial-head .folio {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
}
.editorial-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  max-width: min(70ch, 1100px);
  margin-left: auto;
  margin-right: auto;
}
.editorial-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}
.editorial-head .standfirst {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--accent-2);
  margin-top: 22px;
  line-height: 1.5;
}
.editorial-head .rule { margin: 22px auto 0; }

.editorial-body p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 1.1em;
}
.editorial-body p .smallcaps {
  font-variant: small-caps;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.editorial-byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 38px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.editorial-byline strong {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  margin-right: 8px;
}

/* =========================================================================
   WALKS — bu sezon dört yürüyüş
   ========================================================================= */
.walks-section { background: var(--bg); position: relative; }
.walks-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
}

.walks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 28px;
}
@media (max-width: 760px) { .walks-grid { grid-template-columns: 1fr; } }

.walk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 42px) clamp(40px, 5vw, 60px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background 320ms var(--ease),
              transform 320ms var(--ease),
              box-shadow 320ms var(--ease);
  min-height: 460px;
}
.walk-card:hover {
  background: var(--surface-2);
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -28px rgba(200,38,46,0.32);
}
.walk-card:hover .walk-bg { opacity: 1; transform: scale(1.04); }

.walk-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 80% 20%, rgba(200,38,46,0.06), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(121,112,101,0.07), transparent 60%);
  opacity: 0;
  transition: opacity 480ms var(--ease), transform 600ms var(--ease);
  pointer-events: none;
  z-index: 0;
}

.walk-folio {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.walk-folio .walk-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.walk-folio .km-page {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  justify-self: end;
}
.walk-folio .km-page small {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 12px;
  color: var(--accent-2);
  margin-left: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.walk-card::after {
  content: '';
  position: absolute;
  top: calc(clamp(28px, 4vw, 48px) + 70px);
  right: clamp(24px, 3.5vw, 42px);
  width: 80px; height: 1px;
  background: var(--accent-2);
  z-index: 1;
}

.walk-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 12px 0 18px;
  position: relative;
  z-index: 1;
}
.walk-title em { font-style: italic; color: var(--accent); }

.walk-byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}
.walk-byline strong {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.walk-excerpt {
  font-family: var(--body-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 26px;
  max-width: 46ch;
  position: relative;
  z-index: 1;
}

.walk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  position: relative;
  z-index: 1;
}
.walk-meta div span {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0;
  margin-top: 2px;
}

.walk-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  align-self: flex-start;
  padding-bottom: 4px;
  transition: color 200ms var(--ease), gap 220ms var(--ease);
  position: relative;
  z-index: 1;
}
.walk-link:hover { color: var(--accent); gap: 14px; }

/* footprint stagger marker — corner ornament */
.walk-card .walk-prints {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex;
  gap: 4px;
  opacity: 0.32;
  z-index: 1;
}
.walk-card .walk-prints .pr {
  width: 10px; height: 14px;
  background: var(--accent-2);
  border-radius: 50% 50% 40% 40%;
  transform: rotate(-12deg);
}
.walk-card .walk-prints .pr:nth-child(2) { transform: rotate(8deg); margin-top: 6px; }
.walk-card .walk-prints .pr:nth-child(3) { transform: rotate(-4deg); }

/* =========================================================================
   INTERVIEW (söyleşi)
   ========================================================================= */
.interview-section {
  background: var(--ink);
  color: #EFE7D6;
  position: relative;
  overflow: hidden;
}
.interview-section::before {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,38,46,0.18), transparent 60%);
  filter: blur(20px);
}
.interview-section h2 { color: #FBF4E2; }
.interview-section h2 em { color: #E76A6E; font-style: italic; }
.interview-section .rule { background: var(--accent); }
.interview-section .editorial-head .folio { color: #E76A6E; }
.interview-section .editorial-head .standfirst { color: #BFB29A; }

.interview-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .interview-grid { grid-template-columns: 1fr; gap: 24px; }
}
.interview-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%),
    linear-gradient(135deg, #6f655a 0%, #382f25 60%, #1a140e 100%);
  filter: grayscale(0.7) contrast(1.04);
}
.interview-photo .photo-caption {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #DCC79B;
}
.interview-photo .photo-no {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: #DCC79B;
  letter-spacing: -0.01em;
}

.interview-body {
  font-size: 18px;
  line-height: 1.7;
  color: #DDD2BC;
  max-width: 640px;
}
.interview-body .qa { margin-bottom: 26px; }
.interview-body .q {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #E76A6E;
  margin-bottom: 8px;
}
.interview-body .a { margin: 0; }
.interview-body .a strong { color: #FBF4E2; font-weight: 600; }
.interview-body .pull-quote {
  background: transparent;
  color: #FBF4E2;
  border-color: rgba(231,106,110,0.6);
}
.interview-body .pull-quote::before { background: var(--ink); }

.interview-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BFB29A;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 240, 210, 0.18);
}

/* =========================================================================
   COLOPHON (künye) + SUBSCRIBE
   ========================================================================= */
.kunye-section { background: var(--bg-2); position: relative; }
.kunye-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
}

.kunye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 880px) { .kunye-grid { grid-template-columns: 1fr; } }

.kunye-block h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 16px;
}
.kunye-block h3 em { font-style: italic; color: var(--accent); }

.kunye-list {
  list-style: none;
  padding: 0; margin: 0;
}
.kunye-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
}
.kunye-list li .role {
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.kunye-list li .who {
  font-weight: 600;
  color: var(--ink);
}
.kunye-list li .who span {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: var(--accent-2);
}

.subs-card {
  background: var(--ink);
  color: #EFE7D6;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.subs-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(40px);
}
.subs-card h3 { color: #FBF4E2; font-size: 30px; margin-bottom: 12px; }
.subs-card h3 em { font-style: italic; color: #E76A6E; }
.subs-card p {
  color: #C9BDA3;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 32ch;
}
.subs-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 24px;
  background: var(--accent);
  color: #FFF8EE;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  border: 1px solid var(--accent);
  transition: background 260ms var(--ease), color 260ms var(--ease),
              gap 260ms var(--ease), transform 260ms var(--ease),
              box-shadow 260ms var(--ease);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.subs-cta:hover, .subs-cta:focus-visible {
  background: #FFF8EE;
  color: var(--ink);
  border-color: #FFF8EE;
  gap: 16px;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(200,38,46,0.45);
}
.subs-cta span { transition: transform 260ms var(--ease); }
.subs-cta:hover span { transform: translateX(4px); }

.subs-pricing {
  list-style: none;
  padding: 0; margin: 18px 0 0;
  display: grid;
  gap: 8px;
}
.subs-pricing li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-family: var(--serif);
  font-size: 14px;
  color: #C9BDA3;
  border-bottom: 1px dashed rgba(255, 240, 210, 0.2);
}
.subs-pricing li span { color: #FBF4E2; font-weight: 600; }

/* =========================================================================
   ILETISIM strip (homepage preview)
   ========================================================================= */
.iletisim-strip {
  background: var(--surface);
  border-top: 1px solid var(--ink);
  padding: clamp(60px, 8vw, 120px) 0;
}
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) { .iletisim-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: #DDD2BC;
  padding: clamp(60px, 8vw, 100px) 0 28px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 240, 210, 0.18);
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

.footer-brand { max-width: 320px; }
.footer-brand .brand { color: #FBF4E2; }
.footer-brand .brand .brand-mark { color: #E76A6E; }
.footer-brand .brand .brand-sub { color: #BFB29A; }
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: #BFB29A;
  margin: 18px 0 0;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E76A6E;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 240, 210, 0.18);
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.footer-col a {
  font-family: var(--serif);
  font-size: 15px;
  color: #DDD2BC;
  transition: color 200ms var(--ease), padding-left 200ms var(--ease);
  display: inline-block;
}
.footer-col a:hover { color: #FBF4E2; padding-left: 4px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: #8C7E62;
}
.footer-bottom a:hover { color: #FBF4E2; }

/* =========================================================================
   FORMS (contact)
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(28px, 4vw, 44px);
}
.contact-info h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.contact-info h2 em { font-style: italic; color: var(--accent); }
.contact-info > p { color: var(--accent-2); font-style: italic; margin-bottom: 24px; }

.contact-channels {
  list-style: none; padding: 0; margin: 0;
}
.contact-channels > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 12px;
  margin: 0 -12px;
  border-bottom: 1px dashed var(--line);
  border-radius: 2px;
  transition: background 240ms var(--ease-strong), transform 240ms var(--ease-strong);
}
.contact-channels > li:last-child { border-bottom: 0; }
.contact-channels > li:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.contact-channels > li:hover .ch-ic { color: var(--accent); transform: scale(1.08); }
.ch-ic {
  width: 22px; height: 22px;
  color: var(--ink);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 240ms var(--ease-strong), transform 240ms var(--ease-strong);
}
.ch-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 2px;
}
.ch-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.4;
}
.ch-value a { border-bottom: 1px solid transparent; transition: border-color 220ms var(--ease); }
.ch-value a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.ch-value small {
  display: block;
  font-style: italic;
  color: var(--accent-2);
  font-size: 13px;
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
}
.contact-form-wrap h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.contact-form-wrap h2 em { font-style: italic; color: var(--accent); }
.contact-form-wrap > p { color: var(--accent-2); font-style: italic; margin-bottom: 24px; }

.field {
  display: block;
  margin-bottom: 18px;
}
.field > label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.field > label .req { color: var(--accent); margin-left: 2px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 14px 16px;
  font-family: var(--body-serif);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,38,46,0.12);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; font-family: var(--body-serif); }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .field-grid { grid-template-columns: 1fr; } }

.field-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.field-check label { cursor: pointer; }
.field-check label a { border-bottom: 1px solid var(--accent); }
.field-check label a:hover { color: var(--accent); }

.honeypot {
  position: absolute;
  left: -9999px; top: -9999px;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

.form-feedback {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  margin-top: 10px;
  min-height: 18px;
}
.form-feedback.is-ok { color: #2F7A2F; }
.form-feedback.is-error { color: var(--accent); }

.form-row-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Field error states */
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--accent);
  background: rgba(200,38,46,0.04);
}
.field-error {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-top: 6px;
}
.field.has-error .field-error { display: block; }

/* =========================================================================
   COOKIE BANNER
   ========================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-card);
  padding: 22px 24px;
  z-index: 1100;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; margin: 0; }
}
.cookie-banner h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
}
.cookie-banner h4 em { font-style: italic; color: var(--accent); }
.cookie-banner p {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.cookie-banner p a { border-bottom: 1px solid var(--accent); }
.cookie-banner p a:hover { color: var(--accent); }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1 1 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  padding: 12px 18px;
  cursor: pointer;
  border: 1px solid var(--ink);
  min-height: 44px;
  background: var(--surface);
  color: var(--ink);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.cookie-actions button[data-consent="accept"] {
  background: var(--ink);
  color: var(--bg);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF8EE;
}
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="settings"]:hover {
  background: var(--ink);
  color: var(--bg);
}

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal-stagger.is-in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-title .word > span { animation: none !important; transform: none !important; }
  .hero-loop__step { animation: none !important; opacity: 0.6 !important; }
  .hero-loop__grain { animation: none !important; }
  .leaf-drift { animation: none !important; opacity: 0 !important; }
  .dropcap > p:first-of-type::first-letter, p.dropcap::first-letter { animation: none !important; }
  html { scroll-behavior: auto; }
}
html.no-js .reveal,
html.no-js .reveal-stagger > * { opacity: 1; transform: none; }

/* =========================================================================
   PARALLAX cards (small)
   ========================================================================= */
.parallax-card { transition: transform 600ms var(--ease); }

/* =========================================================================
   TABLES
   ========================================================================= */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--surface);
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body-serif);
  font-size: 16px;
}
.table-scroll th, .table-scroll td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--bg-2);
}
.table-scroll tr:last-child td { border-bottom: 0; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

/* =========================================================================
   POLICY pages
   ========================================================================= */
.policy-section { padding: clamp(40px, 6vw, 100px) 0; background: var(--bg); }
.policy-hero {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: clamp(40px, 6vw, 70px);
  background: var(--surface);
  border-bottom: 1px solid var(--ink);
}
.policy-hero .eyebrow { color: var(--accent); }
.policy-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  margin: 16px 0 14px;
  letter-spacing: -0.018em;
  max-width: min(70ch, 1100px);
}
.policy-hero h1 em { color: var(--accent); font-style: italic; }
.policy-hero .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-2);
  max-width: 720px;
}
.policy-content {
  max-width: 760px;
  margin: 0 auto;
}
.policy-content h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  margin: 50px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--accent);
  position: relative;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h2 .num {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 14px;
  vertical-align: middle;
}
.policy-content h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  margin: 24px 0 8px;
  color: var(--ink);
}
.policy-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.policy-content ul, .policy-content ol {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-left: 22px;
  margin-bottom: 18px;
}
.policy-content li { margin-bottom: 6px; }

/* Sitemap page */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 40px auto 0;
}
.sitemap-grid section {
  border-top: 1px solid var(--accent);
  padding-top: 18px;
}
.sitemap-grid h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--ink);
}
.sitemap-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sitemap-grid a {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.sitemap-grid a:hover { color: var(--accent); border-color: var(--accent); }

/* 404 page */
.notfound-section {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  background: var(--bg);
}
.notfound-section .err-no {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.notfound-section h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  margin: 0 0 16px;
}
.notfound-section h1 em { font-style: italic; color: var(--accent); }
.notfound-section p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-2);
  max-width: 540px;
  margin: 0 auto 28px;
}

/* =========================================================================
   ABOUT page extras
   ========================================================================= */
.about-hero {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: clamp(48px, 6vw, 80px);
  background: var(--bg);
  border-bottom: 1px solid var(--ink);
}
.about-hero .eyebrow { color: var(--accent); }
.about-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
  max-width: min(20ch, 100%);
}
.about-hero h1 em { font-style: italic; color: var(--accent); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 70px;
  margin-top: 30px;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 28px; } }

.about-side {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  font-family: var(--serif);
}
@media (max-width: 920px) { .about-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 22px; } }
.about-side h3 {
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.about-side p {
  font-style: italic;
  font-size: 14px;
  color: var(--accent-2);
  line-height: 1.6;
  margin-bottom: 22px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 32px;
}
.principle {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  transition: background 240ms var(--ease);
}
.principle:hover { background: var(--surface-2); }
.principle .pic-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.principle .ic {
  width: 28px; height: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}
.principle h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}
.principle h4 em { font-style: italic; color: var(--accent); }
.principle p {
  font-family: var(--body-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Timeline (about) */
.timeline {
  margin: 50px 0;
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--accent);
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px; top: 8px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  transition: background 240ms var(--ease);
}
.timeline-item:hover::before { background: var(--accent); }
.timeline-item .yr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.timeline-item h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  margin: 4px 0 6px;
}
.timeline-item p {
  font-family: var(--body-serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =========================================================================
   FAQ accordion (pure CSS)
   ========================================================================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  transition: color 200ms var(--ease);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ''; }
.faq-item > summary:hover { color: var(--accent); }
.faq-item .marker {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-item .marker::before,
.faq-item .marker::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 280ms var(--ease);
}
.faq-item .marker::before {
  top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%);
}
.faq-item .marker::after {
  left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%);
}
.faq-item[open] .marker::after { transform: translateX(-50%) rotate(90deg); }
.faq-item > .answer {
  height: 0;
  overflow: hidden;
  padding: 0 0;
  transition: height 360ms var(--ease-strong),
              padding-block-end 360ms var(--ease-strong);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item > .answer p {
  font-family: var(--body-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* =========================================================================
   ICON helpers
   ========================================================================= */
.ic-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================================
   UTIL
   ========================================================================= */
.text-center { text-align: center; }
.no-wrap { white-space: nowrap; }
.dim { color: var(--accent-2); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 22px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 50px; }

/* Responsive global tail */
@media (max-width: 540px) {
  .brand .brand-sub { display: none; }
  .header-inner { gap: 12px; }
}
@media (max-width: 480px) {
  body { font-size: 17px; }
  .hero { padding-top: calc(var(--header-h) + 18px); }
  .pull-quote::before { font-size: 36px; top: -14px; }
  .hero-loop__folio { font-size: 40px; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }
  .editorial-head h2 { font-size: clamp(28px, 7vw, 44px); }
  .walk-folio .km-page { font-size: 32px; }
  .walks-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { font-size: 12px; flex-direction: column; align-items: flex-start; }
}

/* Long content guard — only on text-heavy elements */
p, li, dd, td, .ch-value, .ch-value a, .field-error {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* === Brand/logo hover effect (universal) === */
.brand, .logo, .footer-brand .brand {
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease, letter-spacing 220ms ease;
}
header .brand:hover,
header a.brand:hover,
.site-header .brand:hover,
.site-header a:hover,
.header-inner .brand:hover {
  color: var(--accent) !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}
.brand:hover .brand__num,
.brand:hover .brand-mark { transform: scale(1.06); transition: transform 220ms ease; }
.brand:active, .logo:active { transform: translateY(0) scale(0.98); }
