:root {
  --paper: #f7f3eb;
  --paper-2: #fffdf8;
  --mist: #e8eee4;
  --ink: #2a2723;
  --muted: #6b655c;
  --sage: #5c6b56;
  --sage-deep: #3e4a3a;
  --line: rgba(42, 39, 35, 0.1);
  --nav-h: 76px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
[id] { scroll-margin-top: 96px; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
::selection { background: var(--mist); color: var(--ink); }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; z-index: 80; background: #fff; padding: 8px; }

.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.wrap-wide { width: min(1240px, calc(100% - 32px)); margin-inline: auto; }

.kicker,
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 12px;
}

/* NAV */
.nav,
.nav.nav-light,
.nav.is-scrolled {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.nav-inner {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.brand span {
  margin-top: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active {
  box-shadow: inset 0 -1px 0 var(--sage);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: 0.25s var(--ease);
}
.btn-sage,
.btn-bronze {
  background: var(--sage);
  color: #fff;
}
.btn-sage:hover,
.btn-bronze:hover { background: var(--sage-deep); }
.btn-dark {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
}
.btn-dark:hover { background: #1b1916; }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-nav { min-height: 40px; padding: 0 16px; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.menu-btn span::before,
.menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }
body.menu-open .menu-btn span { background: transparent; }
body.menu-open .menu-btn span::before { top: 0; transform: rotate(45deg); }
body.menu-open .menu-btn span::after { top: 0; transform: rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--paper-2);
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  visibility: hidden;
  pointer-events: none;
}
.mobile-panel.is-open {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}
.mobile-panel a {
  font-family: var(--serif);
  font-size: 2rem;
  display: block;
  padding: 8px 0;
}
.mobile-meta { margin-top: 28px; color: var(--muted); }

/* HOME HERO */
.hero {
  padding: calc(var(--nav-h) + 48px) 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  max-width: 14ch;
}
.hero .lede {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-photo { position: relative; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 22px;
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 55% 12%;
  border-radius: var(--radius);
}

.section { padding: 88px 0; }
.section-soft { background: var(--mist); }
.section-ink { background: var(--sage-deep); color: #f7f3eb; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lede { color: var(--muted); max-width: 58ch; }
.section-head .lede { margin-top: 12px; }
.section-ink .lede { color: rgba(247,243,235,0.75); }
.section-ink .kicker { color: #c5d0bc; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 70% 18%;
  border-radius: var(--radius);
}
.split-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.split-copy p { color: var(--muted); }
.split-copy p + p { margin-top: 14px; }

.quote-xl {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 24px 0 8px;
}
.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 14px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.card:hover { border-color: var(--sage); transform: translateY(-2px); }
.card .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage);
  font-size: 1.2rem;
}
.card h3 { font-size: 1.45rem; margin: 8px 0 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

.service-list, .service-item, .service-row { color: inherit; }
.service-list { display: grid; gap: 0; }
.service-item,
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.service-item:last-child,
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-item .num,
.service-row .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage);
  font-size: 1.25rem;
}
.service-item h3,
.service-row h3 { font-size: 1.5rem; }
.service-item p,
.service-row p { color: var(--muted); margin-top: 6px; }
.service-row { grid-template-columns: 64px 1fr auto; align-items: center; }
.service-row .go { color: var(--sage); font-size: 0.82rem; }

.process,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process article,
.process-grid article {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.process .num,
.process-grid .num {
  display: block;
  color: var(--sage);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.process h3,
.process-grid h3 { font-size: 1.3rem; margin-bottom: 8px; }
.process p,
.process-grid p { color: var(--muted); font-size: 0.92rem; }
.process-split { display: block; }
.process-split .section-head { margin-bottom: 32px; }

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-top: 48px;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 16ch; }
.cta-band p { color: var(--muted); margin-top: 8px; }
.cta-band .actions { display: flex; gap: 10px; flex-wrap: wrap; }

.photo-cta {
  margin: 0 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.photo-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.photo-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(62, 74, 58, 0.55);
}
.photo-cta .inner { position: relative; z-index: 1; padding: 56px 24px; }
.photo-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 16ch; margin-inline: auto; }
.photo-cta p { margin: 12px auto 22px; max-width: 46ch; color: rgba(255,255,255,0.86); }
.photo-cta .kicker { color: #d7e0d0; }

.journal, .article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.journal a,
.article-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.journal a:hover,
.article-card:hover { border-color: var(--sage); transform: translateY(-2px); }
.journal img,
.article-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  flex-shrink: 0;
}
.journal img[src*="elestiri"],
.article-card img[src*="elestiri"] {
  object-fit: contain;
  background: #efebe2;
}
.journal .body,
.article-card .body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.journal time,
.article-card time {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journal h3,
.article-card h3 {
  font-size: 1.32rem;
  line-height: 1.25;
  margin: 8px 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.journal p,
.article-card p {
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}
.journal .more,
.article-card .more {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--sage);
  font-size: 0.85rem;
}
.article-card .cover-fallback { display: none; }

.post-hero h1 {
  max-width: none;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.2;
}
.post-hero .lede { font-size: 1.05rem; }

.post-cover {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 28px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 8px;
}
.tags span {
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.78rem;
  color: var(--sage);
}
.related .journal { grid-template-columns: repeat(4, 1fr); }

.archive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.archive strong { color: var(--ink); font-weight: 500; }
.archive a:hover strong { color: var(--sage); }

.info-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.info-tile {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.info-tile span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.info-tile a, .info-tile p { font-size: 1rem; overflow-wrap: anywhere; }
.form-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.form-card h2 { font-size: 1.7rem; margin-bottom: 6px; }
.form-card .lede { margin-bottom: 8px; }

.service-card .more { margin-top: 12px; display: inline-block; color: var(--sage); font-size: 0.85rem; }

.page-hero {
  background: var(--paper);
  color: var(--ink);
  padding: calc(var(--nav-h) + 56px) 0 28px;
}
.page-hero::after { display: none; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--sage); font-weight: 500; }
.page-hero .lede { margin-top: 14px; color: var(--muted); }
.page-hero.post-hero h1 {
  max-width: min(36rem, 100%);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.page-hero.post-hero .lede {
  max-width: 40ch;
  font-size: 1.12rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage);
}
.page-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.page-hero-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 45% 12%;
  border-radius: var(--radius);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}
.bio-photo { position: sticky; top: 100px; }
.bio-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 75% 12%;
  border-radius: var(--radius);
}
.prose { color: var(--muted); font-size: 1.02rem; }
.prose p + p { margin-top: 14px; }
.prose h2 { color: var(--ink); font-size: 1.9rem; margin: 28px 0 12px; }
.prose h3 { color: var(--ink); font-size: 1.3rem; margin: 22px 0 8px; }
.prose a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 18px 0;
  background: #efebe2;
}
.prose ul, .prose ol { margin: 12px 0 12px 1.2em; }

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.panel h3 { font-size: 1.35rem; margin-bottom: 10px; }

.certs { columns: 2; gap: 24px; margin: 0; padding: 0; list-style: none; }
.certs li {
  break-inside: avoid;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.certs strong { color: var(--ink); font-weight: 500; }

.faq { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 1.35rem;
  padding: 18px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sage); }
.faq details[open] summary::after { content: "?"; }
.faq details p { color: var(--muted); padding: 0 0 18px; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.info-card { padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-card span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.info-card a, .info-card p { font-size: 1.05rem; }
.map-wrap {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.form { display: grid; gap: 12px; margin-top: 24px; }
.form label { font-size: 0.82rem; color: var(--muted); }
.form input, .form textarea {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--sage); }
.form textarea { min-height: 130px; resize: vertical; }

.legal { width: min(780px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 72px; }
.legal.post-body { padding-bottom: 28px; }
.prose a.btn { text-decoration: none; }

.post-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.related {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.related .kicker { margin-bottom: 6px; }
.related h2 { font-size: clamp(1.55rem, 3vw, 2.05rem); margin-bottom: 22px; }

.footer {
  background: var(--sage-deep);
  color: #e8eee4;
  padding: 64px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr; gap: 32px; }
.footer h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c5d0bc;
  margin-bottom: 14px;
}
.footer p, .footer a { color: rgba(232,238,228,0.78); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 7px 0; }
.footer a:hover { color: #fff; }
.footer .brand span { color: #c5d0bc; }
.socials { display: flex; gap: 8px; margin-top: 16px; }
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(232,238,228,0.55);
}
.kvkk { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.disclaimer {
  width: min(1120px, calc(100% - 40px));
  margin: 20px auto 0;
  color: rgba(232,238,228,0.45);
  font-size: 0.78rem;
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.cookie {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 55;
  width: min(380px, calc(100% - 32px));
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: none;
}
.cookie.is-visible { display: block; }
.cookie p { font-size: 0.88rem; color: var(--muted); margin: 8px 0 14px; }
.cookie a { text-decoration: underline; color: var(--sage); }

.reveal { animation: rise 0.7s var(--ease) both; }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .16s; }
.d3 { animation-delay: .24s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
}

@media (max-width: 1100px) {
  .related .journal { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav-links, .btn-nav { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .hero-grid, .split, .bio-grid, .contact-grid, .pair, .footer-grid,
  .cards, .article-grid, .process, .process-grid, .page-hero-split {
    grid-template-columns: 1fr;
  }
  .journal {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-tiles, .archive { grid-template-columns: 1fr 1fr; }
  .certs { columns: 1; }
  .hero-photo img, .split-photo img, .bio-photo img { height: 420px; }
  .bio-photo { position: static; }
  .section { padding: 64px 0; }
  .service-row { grid-template-columns: 56px 1fr; }
  .service-row .go { display: none; }
  .post-cover { height: 220px; }
}

@media (max-width: 640px) {
  .wrap, .wrap-wide { width: min(100% - 28px, 1120px); }
  .hero h1 { font-size: 2.15rem; }
  .hero-photo::after { display: none; }
  .info-tiles, .archive { grid-template-columns: 1fr; }
  .journal, .related .journal { grid-template-columns: 1fr; }
  .footer { padding: 48px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
