/* ogifotografi — style.css */

/* ============================================
   ogifotografi — tasarım token sistemi (açık/sıcak tema)
   Renk:  #F8F3EA sıcak fildişi zemin
          #F1E8D8 panel
          #EAE0CB panel-2
          #2A241C sıcak koyu mürekkep (ana metin)
          #746B5E sıcak taş grisi (ikincil metin)
          #9C6B18 zengin altın/amber (imza rengi)
   Tipografi: Playfair Display (serif display) + Archivo (gövde) + IBM Plex Mono (EXIF/veri)
   ============================================ */

:root {
  --bg: #F8F3EA;
  --panel: #F1E8D8;
  --panel-2: #EAE0CB;
  --line: #DED0B4;
  --white: #2A241C;
  --steel: #746B5E;
  --steel-dim: #A89B87;
  --accent: #9C6B18;
  --accent-dim: #7A5312;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --max-w: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* subtle film-grain overlay, purely decorative */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 5vw, 56px);
  background: rgba(248, 243, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(42,36,28,0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.brand-logo-img:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg);
}

.hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: -70px auto 0;
}

.viewfinder { position: absolute; inset: 24px; pointer-events: none; opacity: 0.5; }
.vf-corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid var(--steel-dim);
}
.vf-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.vf-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.vf-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.vf-br { bottom: 0; right: 0; border-left: none; border-top: none; }
.vf-reticle {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
  opacity: 0.6;
}
.vf-reticle::before, .vf-reticle::after {
  content: '';
  position: absolute;
  background: var(--accent-dim);
}
.vf-reticle::before { top: -9px; left: 6px; width: 1px; height: 6px; }
.vf-reticle::after { bottom: -9px; left: 6px; width: 1px; height: 6px; }

.hero-exif {
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--steel);
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(248,243,234,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(248,243,234,0.5);
  border-radius: 18px;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 6vw, 64px);
  box-shadow: 0 20px 60px rgba(42,36,28,0.10);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-transform: lowercase;
  color: var(--white);
}
.hero h1 span { color: var(--accent); }

.hero-name {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.6vw, 15px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 28px;
}
.hero-name::before {
  content: '— ';
  color: var(--steel-dim);
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--steel);
  font-size: clamp(15px, 2vw, 18px);
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); font-weight: 700; }
.btn-primary:hover { background: #ff5f44; }
.btn-ghost { border-color: var(--line); color: var(--white); }
.btn-ghost:hover { border-color: var(--steel); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--steel);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--steel), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 100%; height: 40px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* ============ TICKER ============ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: tickerScroll 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--steel);
}
.ticker-track span::before {
  content: '●';
  color: var(--accent);
  margin-right: 40px;
  font-size: 6px;
  vertical-align: middle;
}
.ticker-track span:first-child::before { margin-right: 40px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION SHARED ============ */
section { padding: 120px clamp(20px, 5vw, 56px); max-width: var(--max-w); margin: 0 auto; }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 14px;
}
.section-sub { color: var(--steel); font-size: 16px; margin: 0; }
.back-home {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.back-home:hover { text-decoration: underline; }

/* ============ GALLERY ============ */
.filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
.filter-all-wrapper {
  margin-bottom: 4px;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.filter-group-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.filter-btn:hover { color: var(--white); border-color: var(--steel); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); font-weight: 700; }

.featured-section {
  max-width: 1600px !important;
  width: 100%;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
}

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .featured-grid {
    grid-template-columns: 1fr !important;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.featured-more {
  display: inline-block;
  margin-top: 32px;
}

.photo-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.photo-card:hover { transform: translateY(-4px); border-color: var(--steel-dim); }
.photo-card.hidden-card { display: none; }

.photo-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel);
}
.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-card:hover .photo-img {
  transform: scale(1.04);
}

.photo-ph {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    repeating-linear-gradient(45deg, var(--panel-2), var(--panel-2) 10px, var(--panel) 10px, var(--panel) 20px);
  color: var(--steel-dim);
  position: relative;
  overflow: hidden;
}
.photo-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(156,107,24,0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.photo-card:hover .photo-ph::after { opacity: 1; }
.photo-ph.tall { aspect-ratio: 3 / 4; border-radius: 8px; border: 1px solid var(--line); }
.ph-icon { font-size: 28px; opacity: 0.5; filter: grayscale(1); }
.ph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.photo-card figcaption {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cap-title { font-size: 14px; font-weight: 600; }
.cap-exif { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.04em; }

/* ============ ABOUT ============ */
/* ============ ROADMAP ============ */
/* ============ INSTAGRAM ============ */
.instagram-section { border-top: 1px solid var(--line); text-align: left; }
.ig-handle { color: var(--accent); font-weight: 600; }
.ig-handle:hover { text-decoration: underline; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.ig-embed-frame {
  width: 100%;
  height: 480px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 4px 16px rgba(42, 36, 28, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ig-embed-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(42, 36, 28, 0.1);
}
.ig-placeholder {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(45deg, var(--panel-2), var(--panel-2) 10px, var(--panel) 10px, var(--panel) 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--steel-dim);
}
.instagram-grid blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
}
.ig-fallback {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.ig-fallback a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.ig-fallback a:hover { background: var(--accent); color: var(--white); }
.ig-cta { display: inline-block; }

.roadmap-section { border-top: 1px solid var(--line); }
.roadmap-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.roadmap-step:first-child { padding-top: 0; }
.roadmap-step:last-child { border-bottom: none; }
.rs-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel-dim);
  padding-top: 4px;
  min-width: 32px;
}
.roadmap-step.done .rs-num,
.roadmap-step.current .rs-num { color: var(--accent); }
.rs-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--steel);
}
.roadmap-step.done .rs-body h3,
.roadmap-step.current .rs-body h3 { color: var(--white); }
.rs-body p { margin: 0; color: var(--steel-dim); font-size: 15px; max-width: 560px; }
.roadmap-step.done .rs-body p,
.roadmap-step.current .rs-body p { color: var(--steel); }
.roadmap-step.current::after {
  content: 'ŞU AN BURADAYIM';
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
  position: absolute;
  right: 0;
  top: 28px;
}

/* ============ SCROLL REVEAL ============ */
.section-head,
.photo-card,
.roadmap-step,
.about-photo,
.about-text,
.contact-form,
.contact-side {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-head.in-view,
.photo-card.in-view,
.roadmap-step.in-view,
.about-photo.in-view,
.about-text.in-view,
.contact-form.in-view,
.contact-side.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hero *, .ticker * { opacity: 1; transform: none; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 12, 15, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: fit-content;
  max-width: 90vw;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: visible;
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-photo {
  width: 100%;
  max-height: 78vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--steel-dim);
  overflow: hidden;
  border-radius: 9px 9px 0 0;
}
.lightbox-photo.has-ph {
  aspect-ratio: 16 / 10;
  width: 900px;
  max-width: 100%;
  background: repeating-linear-gradient(45deg, var(--panel-2), var(--panel-2) 10px, var(--panel) 10px, var(--panel) 20px);
}
.lightbox-info {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--panel);
  border-radius: 0 0 9px 9px;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(20, 16, 12, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  z-index: 540;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}
.lightbox-close:hover {
  background: var(--accent);
  color: #120F0C;
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(197, 143, 44, 0.5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(20, 16, 12, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 530;
  transition: all 0.25s ease;
  user-select: none;
  padding-bottom: 4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }
.lightbox-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #120F0C;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 22px rgba(197, 143, 44, 0.5);
}
@media (max-width: 1040px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}
@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.photo-card { cursor: zoom-in; }

/* ============ NAV SCROLL-SPY ============ */
.main-nav a.active { color: var(--white); }
.main-nav a.active::after { width: 100%; }

.about-section { border-top: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(42, 36, 28, 0.08);
}
.about-portrait-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.4s ease;
}
.about-photo:hover .about-portrait-img {
  transform: scale(1.03);
}
.about-text h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); margin: 0 0 20px; }
.about-text p { color: var(--steel); font-size: 16px; margin: 0 0 16px; }
.gear-line {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel-dim);
  letter-spacing: 0.02em;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; max-width: 200px; }
.stat-num { font-family: var(--font-display); font-size: 17px; line-height: 1.25; color: var(--accent); }
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }

/* ============ CONTACT ============ */
.contact-section { border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 56px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}
.field input, .field textarea {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form .btn { align-self: flex-start; border: none; }
.form-note { font-size: 12px; color: var(--steel-dim); margin: 0; }

.contact-side { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; flex-direction: column; gap: 6px; }
.ci-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-dim);
}
.contact-item a { font-size: 16px; transition: color 0.2s ease; }
.contact-item a:hover { color: var(--accent); }
.social-links { display: flex; gap: 16px; }
.social-links a { font-size: 15px; color: var(--steel); }
.social-links a:hover { color: var(--accent); }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 56px) 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .brand { font-size: 20px; }
.footer-tagline {
  margin: 16px 0 0;
  max-width: 320px;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-col a, .footer-plain {
  font-size: 14px;
  color: var(--steel);
}
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px clamp(20px, 5vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-dim);
}
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 700px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============ FOCUS VISIBILITY ============ */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .hero-exif { display: none; }
}

@media (max-width: 700px) {
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  section { padding: 90px 20px; }
}
