:root {
  --black:     #0a0a0a;
  --white:     #ffffff;
  --red:       #CC2200;
  --red-dark:  #991a00;
  --gray-100:  #f5f5f5;
  --gray-200:  #e0e0e0;
  --gray-400:  #aaaaaa;
  --gray-600:  #555555;
  --gray-800:  #222222;

  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --container: 1200px;
  --gutter:    clamp(1.5rem, 5vw, 4rem);
  --section:   clamp(5rem, 10vw, 9rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* GETMEDIA auto-link style — subtle */
.getmedia-link {
  color: inherit;
  border-bottom: 1px dotted currentColor;
  transition: color 0.2s, border-color 0.2s;
}
.getmedia-link:hover { color: var(--red); border-bottom-color: var(--red); }

/* ============ CONTAINER ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  display: inline-flex;
  align-items: baseline;
}
.site-logo .dot { color: var(--red); }
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gray-600);
  text-transform: uppercase;
  margin-left: 0.6rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* LANG TOGGLE */
.lang-toggle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.lang-toggle a {
  color: var(--gray-600);
  padding: 0.25rem 0.3rem;
  transition: color 0.2s;
  border-radius: 2px;
}
.lang-toggle a:hover { color: var(--gray-400); }
.lang-toggle a.active { color: var(--white); }
.lang-toggle span { color: var(--gray-800); }

/* Mobilde Konuşalım CTA gizlenir — sadece logo + dil toggle kalır */
@media (max-width: 700px) {
  .header-cta { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  border: 1.5px solid transparent;
  text-transform: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 10rem 0 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 40%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(204,34,0,0.12) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.hero-label::before {
  content: '';
  width: 2rem;
  height: 1.5px;
  background: var(--red);
}
.hero-label .pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(204,34,0,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(204,34,0,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(204,34,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,34,0,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.005em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--red); }
.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: var(--gray-400);
  max-width: 38ch;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-portrait {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--black);
  /* Görsel eğer kutunun tam kenarında değilse, etrafı siyaha boyansın — beyaz kenar artefaktına karşı */
}
.hero-portrait img {
  width: 101%;
  height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.6s;
  display: block;
  border: 0;
  outline: 0;
  /* 101% + transform ile 0.5px'lik olası kenar artefaktlarını kırp */
}
.hero-portrait:hover img { filter: grayscale(0%) contrast(1); }
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.9) 100%);
  pointer-events: none;
}
.hero-portrait-meta {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero-portrait-meta .id { color: var(--red); }
.hero-portrait-meta .getmedia-link { color: var(--gray-400); }
.hero-portrait-meta .getmedia-link:hover { color: var(--red); }

.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--black);
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.ticker-item::after {
  content: '●';
  color: var(--red);
  font-size: 0.5rem;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============ DISCLOSURE STRIP ============ */
.disclosure {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--black);
}
.disclosure-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.disclosure-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--red);
  background: rgba(204,34,0,0.08);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.disclosure-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.disclosure-text {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--white);
  flex: 1;
  min-width: 280px;
  line-height: 1.4;
}

/* ============ SECTION ============ */
.section {
  padding: var(--section) 0;
  position: relative;
}
.section + .section {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.section-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.section-lead {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--gray-400);
  max-width: 55ch;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.section-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.about-meta {
  position: sticky;
  top: 6rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  z-index: 1;
}
/* Mobilde sticky KAPATILIR — bu tanım .about-meta kuralından SONRA gelmeli
   çünkü aynı specificity'de son yazılan kazanır. */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem; /* mobilde dikey boşluk net olsun */
  }
  .about-meta {
    position: static !important;
    top: auto !important;
    z-index: auto;
  }
}
.meta-row {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.meta-row:last-child { border-bottom: none; }
.meta-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}
.meta-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.about-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-400);
}
.about-content p strong {
  color: var(--white);
  font-weight: 500;
}
.highlight-block {
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.highlight-block p {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--white);
  font-style: italic;
  line-height: 1.4;
  margin: 0;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service {
  background: var(--black);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  color: inherit;
}
.service:hover { background: rgba(255,255,255,0.025); }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.service-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.service-desc {
  color: var(--gray-400);
  margin-bottom: 2rem;
  flex: 1;
}
.service-arrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.25s, color 0.25s;
  margin-top: auto;
}
.service-arrow .arrow {
  color: var(--red);
  transition: transform 0.25s;
}
.service:hover .service-arrow { gap: 0.85rem; }
.service:hover .service-arrow .arrow { transform: translateX(4px); }

/* ============ METRICS ============ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 4rem;
}
@media (max-width: 700px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
}
.metric {
  background: var(--black);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--white);
}
.metric-value .unit {
  color: var(--red);
  font-size: 0.6em;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* ============ BLOG GRID — MASONRY (CSS columns) ============ */
.blog-grid.blog-masonry {
  column-count: 3;
  column-gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 2rem;
  display: block; /* override grid default */
}
.blog-grid.blog-masonry .blog-card {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 1px;
}
@media (max-width: 900px) {
  .blog-grid.blog-masonry { column-count: 2; }
}
@media (max-width: 600px) {
  .blog-grid.blog-masonry { column-count: 1; }
}

/* Fallback regular grid (non-masonry if ever used) */
.blog-grid:not(.blog-masonry) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .blog-grid:not(.blog-masonry) { grid-template-columns: 1fr; }
}

.blog-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 280px;
  color: inherit;
}
.blog-card:hover { background: rgba(255,255,255,0.025); }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  flex-wrap: wrap;
}
.blog-meta .category { color: var(--red); }
.blog-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.blog-excerpt {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray-400);
  margin: 0;
}
.blog-read {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s, gap 0.25s;
  margin-top: auto;
}
.blog-card:hover .blog-read { color: var(--white); gap: 0.85rem; }
.blog-read .arrow { color: var(--red); }
.blog-empty {
  background: var(--black);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--gray-400);
}

.view-all {
  margin-top: 3rem;
  text-align: center;
}

/* ============ SINGLE POST / ARCHIVE ============ */
.page-wrap {
  padding: 10rem 0 var(--section);
}
.post-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}
.post-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.post-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.post-featured {
  max-width: 1000px;
  margin: 0 auto 4rem;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-content {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-200);
}
.post-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 3rem 0 1.5rem;
  line-height: 1.2;
}
.post-content h3 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}
.post-content p { margin-bottom: 1.5rem; }
.post-content a {
  color: var(--red);
  border-bottom: 1px solid rgba(204,34,0,0.3);
  transition: border-color 0.2s;
}
.post-content a:hover { border-bottom-color: var(--red); }
.post-content blockquote {
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  font-style: italic;
}
.post-content ul, .post-content ol { margin: 0 0 1.5rem 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content img { margin: 2rem 0; }
.post-content code {
  background: var(--gray-800);
  padding: 0.15em 0.4em;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.9em;
}
.post-content pre {
  background: var(--gray-800);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.06);
}
.post-content pre code { background: transparent; padding: 0; }

.post-footer {
  max-width: 720px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.post-tags a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: all 0.2s;
}
.post-tags a:hover { border-color: var(--red); color: var(--red); }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 700px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav a {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  transition: background 0.2s, border-color 0.2s;
}
.post-nav a:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.15); }
.post-nav .nav-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.post-nav .nav-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.post-nav .next { text-align: right; }

.archive-header {
  padding: 10rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.archive-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
}
.archive-desc {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray-400);
  max-width: 55ch;
  margin: 1.5rem auto 0;
}
.archive-grid {
  padding: var(--section) 0;
}

.pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  transition: all 0.2s;
  border-radius: 2px;
}
.pagination a:hover { border-color: var(--red); color: var(--white); }
.pagination .current { background: var(--red); border-color: var(--red); color: var(--white); }

/* ============ CONTACT ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 2rem;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-main { background: var(--black); padding: 4rem 3rem; }
.contact-side {
  background: var(--black);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  color: var(--white);
  transition: color 0.2s;
  word-break: break-all;
}
.contact-email:hover { color: var(--red); }

.form-row { margin-bottom: 1.75rem; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.6rem;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-bottom-color: var(--red);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row select { color: var(--white); background: var(--black); }

.contact-social {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}
.contact-social-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.social-links { display: flex; flex-direction: column; gap: 0.85rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--gray-400);
  transition: color 0.2s, padding-left 0.2s;
}
.social-link:hover { color: var(--white); padding-left: 0.5rem; }
.social-link .handle { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray-600); }
.social-link:hover .handle { color: var(--red); }

.form-notice {
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
.form-notice.success { background: rgba(34,170,51,0.1); border: 1px solid rgba(34,170,51,0.3); color: #7fd195; }
.form-notice.error { background: rgba(204,34,0,0.08); border: 1px solid var(--red); color: var(--red); }

/* ============ CTA STRIP ============ */
.cta-strip {
  padding: var(--section) 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 80%; height: 150%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(204,34,0,0.1) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(50px);
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  margin-bottom: 2rem;
}
.cta-title .accent { color: var(--red); }
.cta-sub {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--gray-400);
  max-width: 45ch;
  margin: 0 auto 3rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; } }
.footer-about { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.footer-brand .dot { color: var(--red); }
.footer-tagline {
  font-family: var(--font-body);
  color: var(--gray-400);
  max-width: 35ch;
  font-size: 0.95rem;
  margin: 0;
}

/* Footer social ICON row */
.footer-socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-400);
  transition: all 0.2s var(--ease-out);
  border-radius: 2px;
}
.footer-social-icon:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}
.footer-social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.footer-col a {
  color: var(--gray-400);
  transition: color 0.2s;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.footer-bottom a { color: var(--gray-400); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-credits p { line-height: 1.8; margin: 0; }

/* ============ FADE ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

.hero .fade-in-stack > * {
  opacity: 0;
  transform: translateY(20px);
  animation: stackIn 0.9s var(--ease-out) forwards;
}
.hero .fade-in-stack > *:nth-child(1) { animation-delay: 0.1s; }
.hero .fade-in-stack > *:nth-child(2) { animation-delay: 0.25s; }
.hero .fade-in-stack > *:nth-child(3) { animation-delay: 0.4s; }
.hero .fade-in-stack > *:nth-child(4) { animation-delay: 0.55s; }
@keyframes stackIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-portrait.fade-portrait {
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out) 0.3s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* Masonry fade-up can't rely on transform (breaks column flow) — simpler opacity only */
.blog-masonry .fade-up { transform: none !important; }
.blog-masonry .fade-up.visible { transform: none !important; }

/* ============ WP CORE CLASSES ============ */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin: 1.5rem auto; display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  text-align: center;
  margin-top: 0.5rem;
}
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}
