/* Tahtakılıç Saz — atölye sitesi
 * Sazadair'in tasarım sistemine dayalı, atölye/portfolyo odaklı.
 * Palet: krem kağıt, ceviz, saz kırmızısı, altın.
 */

:root {
  --paper:        #f7f1e6;
  --paper-deep:   #efe6d3;
  --paper-deeper: #e6d8be;
  --ink:          #1b1410;
  --ink-soft:     #4a3a30;
  --muted:        #897564;
  --muted-soft:   #b3a08e;
  --walnut:       #6b3d22;
  --walnut-dark:  #4a2a17;
  --saz-red:      #961a14;
  --saz-red-soft: #b13f37;
  --gold:         #c4923a;
  --gold-soft:    #d9b06a;
  --rule:         rgba(107, 61, 34, 0.18);
  --rule-strong:  rgba(107, 61, 34, 0.45);

  --serif: "Cormorant Garamond", "EB Garamond", "Georgia", "Times New Roman", serif;
  --display: "Cormorant Garamond", "Playfair Display", "Georgia", serif;
  --sans: "Inter", "Helvetica Neue", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max-content: 1280px;
  --max-prose:   720px;

  --shadow-sm: 0 1px 2px rgba(27,20,16,0.06);
  --shadow-md: 0 12px 32px -16px rgba(27,20,16,0.22);
  --shadow-lg: 0 30px 60px -30px rgba(27,20,16,0.4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "kern", "liga", "calt";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at top right, rgba(196,146,58,0.07), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(150,26,20,0.05), transparent 55%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--saz-red);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--walnut-dark); }
::selection { background: rgba(150,26,20,0.22); color: var(--paper); }

.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 230, 0.93);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--saz-red); }
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saz-red), var(--walnut-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.brand__tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.nav a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  position: relative;
  font-weight: 500;
}
.nav a:hover { background: rgba(150,26,20,0.08); color: var(--saz-red); }
.nav a.is-active { color: var(--saz-red); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--saz-red);
  transform: translateX(-50%);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem 1.25rem;
    gap: 0;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.75rem 0.5rem; text-align: left; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: var(--saz-red);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--saz-red);
}
.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  color: var(--saz-red);
}
.hero__lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 32em;
}
.hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn:hover { background: var(--saz-red); border-color: var(--saz-red); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--walnut); border-color: var(--walnut); color: var(--paper); }

.hero__meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero__meta-num {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--saz-red);
  font-weight: 500;
}
.hero__meta-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.hero__art::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(247,241,230,0.35);
  border-radius: 4px;
  pointer-events: none;
}
.hero__art-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(247,241,230,0.95);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; margin-inline: auto; aspect-ratio: 3/4; }
  .hero__meta { gap: 1.5rem; }
  .hero__meta-num { font-size: 1.5rem; }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section--alt {
  background:
    linear-gradient(180deg, transparent, rgba(107,61,34,0.04) 50%, transparent),
    var(--paper);
}
.section-heading {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin: 0 0 2.5rem;
}
.section-heading__kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saz-red);
  font-weight: 600;
}
.section-heading h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.section-heading h2 em { font-style: italic; color: var(--saz-red); }
.section-heading__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rule-strong), transparent);
}
.section-heading__more {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}
.section-heading__more:hover { color: var(--saz-red); }
@media (max-width: 660px) {
  .section-heading { flex-wrap: wrap; gap: 0.75rem; }
}

.section-intro {
  max-width: 38em;
  margin-bottom: 3rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-family: var(--serif);
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.work {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.work:hover { transform: translateY(-4px); color: var(--ink); }
.work__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-deep);
  margin-bottom: 1rem;
}
.work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
  filter: saturate(0.92);
}
.work:hover .work__media img { transform: scale(1.06); filter: saturate(1.1); }
.work__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27,20,16,0.7) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: var(--paper);
}
.work:hover .work__overlay { opacity: 1; }
.work__view {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.work__view::after { content: "→"; transition: transform 0.3s; }
.work:hover .work__view::after { transform: translateX(4px); }

.work__type {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saz-red);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.work__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 0.25rem;
  letter-spacing: -0.005em;
}
.work__meta {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
}

/* ============================================
   FEATURE / SPLIT
   ============================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }
.feature__media {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.005em;
}
.feature__title em { font-style: italic; color: var(--saz-red); }
.feature__body {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.feature__body p + p { margin-top: 1.1em; }
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; }
  .feature__media { max-width: 480px; margin-inline: auto; }
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.step {
  position: relative;
  padding-top: 1.5rem;
}
.step__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--saz-red);
  line-height: 0.85;
  display: block;
  margin: 0 0 0.5rem -0.25rem;
  text-shadow: 0 2px 0 var(--paper);
}
.step__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.1rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.step:hover .step__media img { transform: scale(1.04); }
.step__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.005em;
}
.step__body {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================
   QUOTE / PULL
   ============================================ */
.quote {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}
.quote::before {
  content: "❝";
  display: block;
  font-family: var(--display);
  font-size: 5rem;
  color: var(--saz-red);
  line-height: 0.5;
  margin: 0 auto 1rem;
  opacity: 0.6;
}
.quote__text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 32em;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.005em;
}
.quote__attr {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================
   MATERIALS / WOOD STRIP
   ============================================ */
.materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.material {
  text-align: center;
}
.material__media {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  width: 140px;
  height: 140px;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--rule), var(--shadow-sm);
}
.material__media img { width: 100%; height: 100%; object-fit: cover; }
.material__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}
.material__origin {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
.card {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:hover { transform: translateY(-3px); color: var(--ink); }
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: var(--paper-deep);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.92);
}
.card:hover .card__media img { transform: scale(1.05); filter: saturate(1.1); }
.card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.card__meta .cat { color: var(--saz-red); font-weight: 600; }
.card__meta .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}
.card:hover .card__title { color: var(--saz-red); }
.card__excerpt {
  font-family: var(--serif);
  color: var(--ink-soft);
  margin: 0;
  font-size: 1rem;
}

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-page { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem); }
.article-header { max-width: var(--max-prose); margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.article-header__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.article-header__meta .dot { width: 4px; height: 4px; background: var(--saz-red); border-radius: 50%; }
.article-header__meta .cat { color: var(--saz-red); font-weight: 600; }
.article-header__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.article-header__title em { font-style: italic; color: var(--saz-red); }
.article-header__rule { width: 60px; height: 1px; background: var(--saz-red); margin: 1.5rem auto 0; }

.article-body {
  max-width: var(--max-prose);
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--ink);
}
.article-body p { margin: 0 0 1.4em; }
.article-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 500;
  font-size: 3.5em;
  line-height: 0.9;
  float: left;
  padding: 0.06em 0.12em 0 0;
  color: var(--saz-red);
  font-style: italic;
}
.article-body h2, .article-body h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.25;
  margin: 2em 0 0.7em;
}
.article-body h2 { font-size: 1.7rem; }
.article-body h3 { font-size: 1.35rem; }
.article-body blockquote {
  font-style: italic;
  border-left: 3px solid var(--saz-red);
  margin: 1.8em 0;
  padding: 0.4em 0 0.4em 1.3em;
  color: var(--ink-soft);
  font-size: 1.1em;
}
.article-body figure {
  margin: 2em auto;
  text-align: center;
}
.article-body figure img {
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.article-body figcaption {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.7em;
  font-style: italic;
}

/* ============================================
   PAGE (about / contact)
   ============================================ */
.page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.page-hero__kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--saz-red);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.page-hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  margin: 0;
  letter-spacing: -0.01em;
}
.page-hero__title em { font-style: italic; color: var(--saz-red); }
.page-hero__lede {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 36em;
  margin: 1.5rem auto 0;
  line-height: 1.65;
}
.page-hero__rule {
  width: 60px;
  height: 1px;
  background: var(--saz-red);
  margin: 1.5rem auto 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 3rem;
}
.contact__info h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
}
.contact__list li:last-child { border-bottom: 0; }
.contact__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(150,26,20,0.08);
  color: var(--saz-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
  font-weight: 600;
}
.contact__value {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
}
.contact__value a { color: var(--ink); }
.contact__value a:hover { color: var(--saz-red); }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background:
    linear-gradient(180deg, transparent, rgba(107,61,34,0.06)),
    var(--paper);
  border-top: 1px solid var(--rule);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.75rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 600;
}
.site-footer__brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
  display: inline-block;
}
.site-footer__motto {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 32em;
  margin: 0;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer li a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.site-footer li a:hover { color: var(--saz-red); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
}
.site-footer__social { display: inline-flex; gap: 0.5rem; }
.site-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(150,26,20,0.08);
  color: var(--saz-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.site-footer__social a:hover { background: var(--saz-red); color: var(--paper); }
@media (max-width: 760px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 0.75rem; }
}
@media (max-width: 440px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   READING PROGRESS / FLOAT BTN
   ============================================ */
.reading-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--saz-red);
  z-index: 100;
  transition: width 0.1s linear;
}
.to-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 60;
  border: 0;
  cursor: pointer;
}
.to-top:hover { background: var(--saz-red); }
.to-top.is-visible { display: inline-flex; }

/* ============================================
   PILLS / TAGS
   ============================================ */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}
.pill {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(150,26,20,0.08);
  color: var(--saz-red);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
}
.pill:hover { background: var(--saz-red); color: var(--paper); }

/* ============================================
   INSTAGRAM GRID (home)
   ============================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }
.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-deep);
  display: block;
}
.insta-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), filter 0.3s ease;
  filter: saturate(0.95);
}
.insta-tile:hover img { transform: scale(1.06); filter: saturate(1.1); }
.insta-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,20,16,0.4) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.insta-tile:hover::after { opacity: 1; }
.insta-tile__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(247,241,230,0.92);
  color: var(--saz-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: var(--sans);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}
.insta-tile:hover .insta-tile__play { transform: translate(-50%, -50%) scale(1.1); }

/* ============================================
   ATÖLYEDEN GRID (gallery page)
   ============================================ */
.atelye-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .atelye-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .atelye-grid { grid-template-columns: repeat(2, 1fr); } }
.atelye-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-deep);
  display: block;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.3s ease;
}
.atelye-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.atelye-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.92);
}
.atelye-tile:hover img { transform: scale(1.05); filter: saturate(1.1); }
.atelye-tile__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(247,241,230,0.95);
  color: var(--saz-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: var(--sans);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 2;
  padding-left: 4px;
}
.atelye-tile__label {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(27,20,16,0.7);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* ============================================
   VIDEO LIGHTBOX
   ============================================ */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: lb-fade 0.25s ease-out;
}
.video-lightbox.is-open { display: flex; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.video-lightbox__player {
  max-width: min(960px, 95vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  background: black;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.video-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.video-lightbox__close:hover { background: var(--saz-red); color: var(--paper); }

/* ============================================
   UTIL
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
