/* DIJITAL REKLAM — Brand Stylesheet */
:root {
  /* Light theme — krem/beyaz tabanlı, bordo accent */
  --bg: #F5F2EC;            /* krem zemin */
  --bg-2: #FFFFFF;          /* saf beyaz blok */
  --bg-3: #ECE7DD;          /* sıcak gri-krem */
  --line: #E0DACB;
  --line-2: #C9C0AC;
  --text: #2A0E0E;          /* koyu bordo siyah */
  --text-dim: #6B4848;      /* yumuşak bordo gri */
  --text-mute: #8C7A7A;
  --accent: #5C1A1A;        /* logo bordo */
  --accent-2: #7A2424;      /* açık bordo */
  --paper: #F5F2EC;
  --paper-2: #E8E4DA;
  --on-accent: #F5F2EC;     /* bordo zemin üstü krem */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: clip; height: auto; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.display, .h1, .h2, .h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.display { font-size: clamp(48px, 9vw, 156px); letter-spacing: -0.04em; }
.h1 { font-size: clamp(40px, 6vw, 96px); letter-spacing: -0.03em; }
.h2 { font-size: clamp(28px, 3.6vw, 56px); letter-spacing: -0.02em; }
.h3 { font-size: clamp(20px, 1.8vw, 28px); letter-spacing: -0.01em; }

.mono {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14,14,16,0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(245,242,236,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 14px 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.nav-logo b { font-weight: 700; }
.nav-logo i { font-style: normal; font-weight: 400; color: var(--text-dim); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13.5px;
  color: var(--text-dim);
  transition: color 0.2s;
  font-weight: 450;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.nav-cta::after { content: "→"; transition: transform 0.2s; }
.nav-cta:hover::after { transform: translateX(3px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 800px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(245,242,236,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 105;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 24px; font-weight: 500; }
  .nav-cta { display: none; }
  .nav.scrolled { padding: 12px 20px; }
  .nav { padding: 14px 20px; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-title .ital { color: var(--text-dim); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}
.hero-meta .col { max-width: 360px; }
.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(56px, 11vw, 192px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 36px;
}
.hero-title .word { display: inline-block; }
.hero-title .ital { font-style: italic; font-weight: 300; color: var(--text-dim); }
.hero-title .accent { color: var(--accent); }
.hero-title .stroke {
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 40px;
}
.hero-stat .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat .label {
  margin-top: 8px;
  color: var(--text-mute);
  font-size: 13px;
}
.hero-stat .accent { color: var(--accent); }

.hero-marquee {
  position: absolute;
  bottom: -10px; left: 0; right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--accent);
  overflow: hidden;
  max-width: 100%;
}

/* ============ TICKER ============ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg);
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.ticker-item::after {
  content: "✦";
  color: var(--accent);
  font-size: 12px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION ============ */
.section { padding: 120px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-bottom: 72px;
  align-items: start;
}
.section-head .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 12px;
}
.section-head .label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
}
.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4.4vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.section-head .ital { font-style: italic; font-weight: 300; color: var(--text-dim); }

@media (max-width: 800px) {
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-grid p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.about-grid p strong { color: var(--text); font-weight: 500; }
.about-side {
  position: sticky;
  top: 120px;
}
.about-side .since {
  font-family: "Space Grotesk", sans-serif;
  font-size: 96px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}
.about-side .since-label { color: var(--text-mute); font-size: 13px; margin-top: 8px; margin-bottom: 32px; }
.about-side .timeline { display: flex; flex-direction: column; gap: 18px; padding-top: 32px; border-top: 1px solid var(--line); }
.about-side .tl-item { display: grid; grid-template-columns: 60px 1fr; gap: 16px; }
.about-side .tl-item .y { font-family: "Space Grotesk", sans-serif; color: var(--accent); font-weight: 500; }
.about-side .tl-item .t { color: var(--text-dim); font-size: 14px; line-height: 1.5; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-side { position: relative; top: 0; }
}

/* ============ MISSION ============ */
.mission {
  background: var(--accent);
  color: var(--on-accent);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}
.mission .label { color: var(--on-accent) !important; }
.mission .label::before { background: var(--on-accent) !important; }
.mission .section-head h2 { color: var(--on-accent); }
.mission .section-head h2 .ital { color: rgba(245,242,236,0.6); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245,242,236,0.18);
  margin: 0;
  border: 1px solid rgba(245,242,236,0.18);
}
.mission-card {
  background: var(--accent);
  padding: 64px 48px;
  position: relative;
  color: var(--on-accent);
}
.mission-card .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(245,242,236,0.7);
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.mission-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.05;
}
.mission-card h3 .ital { font-style: italic; font-weight: 300; color: rgba(245,242,236,0.65); }
.mission-card p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245,242,236,0.85);
}

@media (max-width: 800px) { .mission-grid { grid-template-columns: 1fr; } }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 36px 36px;
  position: relative;
  cursor: pointer;
  transition: background 0.35s ease;
  overflow: hidden;
}
.service:hover { background: var(--bg-2); }
.service:hover h3 { color: var(--accent); }
.service h3 { transition: color 0.2s; }
.service .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
}
.service h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 16px;
  margin-bottom: 12px;
}
.service p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 48ch;
  margin-bottom: 24px;
}
.service .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 20px;
}
.service .tag {
  font-size: 11.5px;
  padding: 5px 11px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-dim);
  font-family: "Inter", sans-serif;
  font-weight: 450;
  transition: all 0.2s;
}
.service:hover .tag { border-color: var(--accent); color: var(--accent); }
.service .arrow {
  position: absolute;
  top: 36px; right: 32px;
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  transition: all 0.3s;
  color: var(--text-dim);
}
.service:hover .arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  transform: rotate(-45deg);
}

@media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }

/* ============ WORK / GALLERY ============ */
.work {
  background: var(--bg);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.work-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
  display: block;
}
.work-item:hover img { transform: scale(1.05); }

.work-item.half-w { grid-column: span 6; aspect-ratio: 4/3; }
.work-item.quarter { grid-column: span 3; aspect-ratio: 3/4; }

.work-item .meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(42,14,14,0.92), transparent);
  color: var(--on-accent);
  display: flex;
  justify-content: space-between;
  align-items: end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.work-item .meta .cat { color: #FFB89C !important; }
.work-item:hover .meta { opacity: 1; transform: translateY(0); }
.work-item .meta .title { font-family: "Space Grotesk", sans-serif; font-size: 20px; font-weight: 500; }
.work-item .meta .cat { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--accent); text-transform: uppercase; }

@media (max-width: 900px) {
  .work-item.half-w { grid-column: span 12; aspect-ratio: 4/3; }
  .work-item.quarter { grid-column: span 6; aspect-ratio: 3/4; }
}

/* ============ PROCESS ============ */
.process {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.process-step .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}
.process-step h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-step p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

/* ============ CTA STRIP ============ */
.cta-strip {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-strip h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 8vw, 128px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 40px;
}
.cta-strip h2 .ital { font-style: italic; font-weight: 300; color: var(--text-dim); }
.cta-strip h2 .accent { color: var(--accent); }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.3s;
}
.cta-btn:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }
.cta-btn .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-grid; place-items: center;
  font-size: 12px;
  transition: transform 0.2s;
}
.cta-btn:hover .arrow { background: rgba(0,0,0,0.12); transform: rotate(-45deg); }

/* ============ CONTACT ============ */
.contact {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-block .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.contact-block .val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.contact-block .val a { transition: color 0.2s; border-bottom: 1px solid transparent; }
.contact-block .val a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.contact-block .sub { color: var(--text-dim); font-size: 15px; line-height: 1.6; max-width: 30ch; margin-top: 6px; }

.form {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.field {
  border-bottom: 1px solid var(--line);
  padding: 24px 0 16px;
  position: relative;
}
.field label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  outline: none;
  padding: 4px 0;
  resize: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); font-family: "Inter", sans-serif; font-size: 15px; }
.field textarea { min-height: 90px; line-height: 1.5; }
.field:focus-within label { color: var(--accent); }
.field:focus-within { border-bottom-color: var(--accent); }
.field select { appearance: none; cursor: pointer; }
.field.has-arrow::after {
  content: "▾";
  position: absolute;
  right: 4px; bottom: 22px;
  color: var(--text-mute);
  pointer-events: none;
  font-size: 13px;
}
.form-actions {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.form-actions .submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
}
.form-actions .submit:hover { background: var(--text); color: var(--bg); }
.form-actions .submit:disabled { opacity: 0.5; cursor: wait; }
.form-actions .note { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--text-mute); letter-spacing: 0.1em; }
.form-success {
  padding: 24px 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent);
  font-size: 18px;
  border-bottom: 1px solid var(--accent);
  display: flex; align-items: center; gap: 12px;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { font-family: "Space Grotesk", sans-serif; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.footer-brand .dim { color: var(--text-dim); font-weight: 400; }
.footer-tag { color: var(--text-dim); font-size: 14px; line-height: 1.55; max-width: 30ch; margin-top: 12px; }
.footer-col h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col li a { font-size: 14px; color: var(--text-dim); transition: color 0.2s; }
.footer-col li a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.footer-bigword {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(56px, 13vw, 180px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 64px 0 24px;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
}
.footer-bigword .ital { font-style: italic; font-weight: 300; color: var(--text-dim); }
.footer-bigword .stroke {
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
}

@media (max-width: 900px) {
  .footer-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============ MODAL ============ */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(42,14,14,0.92);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal-bg .modal-close { color: var(--on-accent); border-color: rgba(245,242,236,0.4); background: rgba(0,0,0,0.3); }
.modal-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--line);
}
.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text);
  background: rgba(0,0,0,0.5);
  font-size: 18px;
}
.modal-meta {
  position: absolute;
  bottom: 32px; left: 40px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex; gap: 16px; align-items: center;
}
.modal-meta .accent { color: var(--accent); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Hero */
  .hero { min-height: auto; padding: 110px 0 48px; }
  .hero-title { font-size: clamp(36px, 10vw, 72px); margin-bottom: 24px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
  .hero-meta .col { text-align: left !important; }
  .hero-bottom { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; padding-top: 24px; }
  .hero-stat .num { font-size: 32px; }
  .hero-stat .label { font-size: 11px; }
  .hero-marquee { font-size: clamp(60px, 14vw, 120px); }

  /* Ticker */
  .ticker { padding: 12px 0; }
  .ticker-item { font-size: 13px; gap: 24px; }
  .ticker-track { gap: 24px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 42px); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-side { position: relative; top: 0; }
  .about-side .since { font-size: 64px; }
  .about-grid p { font-size: 15px; }

  /* Mission */
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { padding: 36px 24px; }
  .mission-card h3 { font-size: 28px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 28px 20px 24px; }
  .service h3 { font-size: 24px; }
  .service .arrow { top: 24px; right: 20px; width: 32px; height: 32px; font-size: 12px; }

  /* Gallery */
  .work-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .work-item.half-w { grid-column: span 2; aspect-ratio: 4/3; }
  .work-item.quarter { grid-column: span 1; aspect-ratio: 3/4; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-step .num { font-size: 40px; margin-bottom: 12px; }

  /* CTA */
  .cta-strip { padding: 64px 0; }
  .cta-strip h2 { font-size: clamp(32px, 8vw, 56px); margin-bottom: 28px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-block .val { font-size: 20px; }
  .contact-block .val[style] { font-size: 16px !important; }
  .form-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .form-actions .submit { justify-content: center; }

  /* Footer */
  .footer-bigword { font-size: clamp(36px, 10vw, 72px); margin: 36px 0 16px; }
  .footer-row { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Modal */
  .modal-bg { padding: 16px; }
  .modal-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 14px; }
  .modal-meta { bottom: 16px; left: 16px; font-size: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero { padding: 100px 0 36px; }
  .hero-title { font-size: clamp(30px, 9vw, 56px); }
  .hero-bottom { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stat .num { font-size: 28px; }
  .section-head h2 { font-size: clamp(22px, 6.5vw, 36px); }
  .about-side .since { font-size: 48px; }
  .mission-card h3 { font-size: 24px; }
  .service h3 { font-size: 20px; }
  .work-grid { gap: 6px; }
  .contact-block .val { font-size: 18px; }
  .footer-bigword { font-size: clamp(28px, 9vw, 56px); }
  .cta-btn { padding: 14px 24px; font-size: 14px; }
}
