@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════
   ISTANBUL KUYUMCULUK — CHAMPAGNE LUXURY (LIGHT EDITORIAL)
   ═══════════════════════════════════════════ */

:root {
  --bg: #faf8f5;
  --bg-2: #f3eee6;
  --bg-3: #ffffff;
  --bg-4: #ebe4d8;
  --bg-dark: #181512;
  
  --gold: #b8944d;
  --gold-2: #d4af37;
  --gold-3: #8c6d2d;
  --gold-dim: rgba(184,148,77,.06);
  --gold-glow: rgba(184,148,77,.18);
  --gold-gradient: linear-gradient(135deg, #b8944d 0%, #d4af37 50%, #9e7a35 100%);
  --gold-gradient-text: linear-gradient(135deg, #a67c33, #d4af37, #8c6d2d);
  --gold-line: linear-gradient(90deg, transparent, rgba(184,148,77,.3), transparent);
  
  --text: #1c1917;
  --text-2: #44403c;
  --text-muted: #78716c;
  --text-dim: #a8a29e;
  --line: rgba(184,148,77,.15);
  
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
  --max: 1440px;
  --pad: clamp(24px, 5vw, 80px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #fff; }

/* ─── Grain Overlay ─── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 180px;
}

/* ─── Intro / Loading Screen ─── */
.intro-screen {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .8s ease, visibility .8s;
}
.intro-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-logo {
  font-family: var(--serif);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 400; letter-spacing: -.06em;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0; transform: scale(.9);
  animation: intro-reveal 1.6s var(--ease) .2s forwards;
}
.intro-line {
  position: absolute; bottom: 40%; left: 50%; width: 0; height: 1px;
  background: var(--gold-gradient); transform: translateX(-50%);
  animation: intro-line 1.2s var(--ease) .4s forwards;
}
@keyframes intro-reveal { to { opacity: 1; transform: scale(1); } }
@keyframes intro-line { to { width: min(300px, 40vw); } }

/* ─── Sparkle cursor ─── */
.sparkle {
  position: fixed; pointer-events: none; z-index: 9997;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0;
  box-shadow: 0 0 10px rgba(212,175,55,.6);
  animation: sparkle-fade .8s ease forwards;
}
@keyframes sparkle-fade {
  0% { opacity: .9; transform: scale(1) translate(0,0); }
  100% { opacity: 0; transform: scale(0) translate(var(--sx), var(--sy)); }
}

/* ─── Skip Link ─── */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 9100;
  background: var(--gold); color: #fff; padding: 12px 20px;
  font-size: 12px; letter-spacing: .06em; border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; min-height: 84px;
  padding: 0 var(--pad);
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(184,148,77,.18);
  box-shadow: 0 4px 25px rgba(0,0,0,.04);
  transition: all .4s var(--ease);
}
.site-header.scrolled {
  min-height: 64px;
  background: rgba(250,248,245,.98);
  border-bottom-color: rgba(184,148,77,.3);
  box-shadow: 0 6px 30px rgba(0,0,0,.07);
}

.brand-lockup { display: inline-flex; align-items: center; gap: 14px; width: max-content; }
.brand-logo-img {
  height: 42px; width: auto; max-width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(184,148,77,.25));
  transition: transform .4s var(--ease);
}
.brand-lockup:hover .brand-logo-img {
  transform: scale(1.06);
}
.brand-mark {
  width: 44px; height: 44px;
  border: 1px solid rgba(184,148,77,.4);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 500; font-size: 15px;
  letter-spacing: -.03em; color: var(--gold-3);
  transition: all .5s var(--ease); position: relative; overflow: hidden;
  background: #fff;
}
.brand-mark::before {
  content: ''; position: absolute; inset: -50%;
  background: conic-gradient(from 0deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .5s;
  animation: spin 3s linear infinite paused;
}
.brand-lockup:hover .brand-mark::before { opacity: .2; animation-play-state: running; }
.brand-lockup:hover .brand-mark { border-color: var(--gold); box-shadow: 0 0 20px rgba(184,148,77,.2); }
@keyframes spin { to { transform: rotate(360deg); } }
.brand-name {
  font-family: var(--sans); font-size: 10px; letter-spacing: .24em;
  line-height: 1.3; text-transform: uppercase; font-weight: 500; color: var(--text-2);
}

.site-nav {
  display: flex; align-items: center; gap: 36px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}
.site-nav a { position: relative; padding: 10px 0; color: var(--text-muted); transition: color .3s; }
.site-nav a::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: 4px;
  height: 1.5px; background: var(--gold); transition: left .4s var(--ease), right .4s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current='page'] { color: var(--text); }
.site-nav a:hover::after, .site-nav a[aria-current='page']::after { left: 0; right: 0; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.header-link {
  border: 1px solid rgba(184,148,77,.4); border-radius: 999px;
  padding: 11px 24px; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-3); transition: all .4s var(--ease);
  position: relative; overflow: hidden; background: rgba(255,255,255,.6);
  font-weight: 500;
}
.header-link::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-gradient); transform: translateY(105%);
  transition: transform .4s var(--ease); z-index: -1;
}
.header-link:hover { color: #fff; border-color: var(--gold); }
.header-link:hover::before { transform: translateY(0); }

.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 0; position: relative; cursor: pointer; }
.menu-toggle::before, .menu-toggle::after {
  content: ''; position: absolute; left: 8px; right: 8px;
  height: 1.5px; background: var(--gold-3); transition: .35s var(--ease);
}
.menu-toggle::before { top: 17px; }
.menu-toggle::after { top: 26px; }
.menu-open .menu-toggle::before { transform: translateY(4.5px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-4.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO — CHAMPAGNE ELEGANCE
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100svh; padding: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fdfbf7 0%, #f3eee6 100%);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  opacity: .35; animation: float-orb 20s ease-in-out infinite alternate;
}
.hero-bg .orb:nth-child(1) {
  width: 650px; height: 650px; top: -10%; right: -5%;
  background: radial-gradient(circle, #ecdcb9, transparent 70%); animation-duration: 22s;
}
.hero-bg .orb:nth-child(2) {
  width: 550px; height: 550px; bottom: -15%; left: 10%;
  background: radial-gradient(circle, #e4d3b0, transparent 70%); animation-duration: 18s; animation-delay: -5s;
}
.hero-bg .orb:nth-child(3) {
  width: 400px; height: 400px; top: 20%; left: 45%;
  background: radial-gradient(circle, #f5e9d3, transparent 70%); animation-duration: 25s; animation-delay: -10s; opacity: .4;
}

.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 40px;
  width: min(100%, var(--max)); margin: 0 auto;
  padding: 140px var(--pad) 70px;
  min-height: 100svh;
}

.hero-content { position: relative; z-index: 3; }

.hero-kicker {
  display: inline-flex; gap: 12px; align-items: center;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-3); margin-bottom: 28px; font-weight: 600;
  padding: 6px 16px; background: rgba(255,255,255,.8);
  border: 1px solid rgba(184,148,77,.3); border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0,0,0,.03);
  animation: fade-up .8s var(--ease) forwards;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 108px);
  font-weight: 400; line-height: 1.02;
  letter-spacing: -.03em; max-width: 820px;
  margin-bottom: 28px; color: var(--text);
  animation: fade-up .9s var(--ease) forwards;
}
.hero h1 em {
  font-weight: 400; font-style: italic;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  max-width: 560px; font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75; color: var(--text-2); font-weight: 400;
  margin-bottom: 40px;
  animation: fade-up 1s var(--ease) forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fade-up 1.1s var(--ease) forwards;
}

.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 36px; border-radius: 999px;
  background: var(--gold-gradient); color: #fff;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600;
  box-shadow: 0 8px 30px rgba(184,148,77,.35); transition: all .4s var(--ease);
}
.hero-btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 12px 40px rgba(184,148,77,.5); color: #fff;
}
.hero-btn-primary i {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.25);
  display: grid; place-items: center; font-style: normal; font-size: 12px;
}

.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line-gold);
  color: var(--text); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
  transition: all .4s var(--ease);
}
.hero-btn-secondary:hover {
  background: #fff; border-color: var(--gold); color: var(--gold-3); transform: translateY(-2px);
}

.hero-bottom-pills {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.pill-chip {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}

/* ── Hero Visual Showcase (3D Stage) ── */
.hero-visual {
  position: relative; width: 100%; display: grid; place-items: center;
  z-index: 2;
}
.hero-3d-stage {
  position: relative; width: 100%; max-width: 480px; aspect-ratio: 1;
  display: grid; place-items: center;
}

.orbit-glow {
  position: absolute; inset: 10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,201,138,.35) 0%, rgba(250,248,245,0) 70%);
  filter: blur(40px); animation: pulse-glow 6s ease-in-out infinite alternate;
}

/* Ambient Gold Rings (Subtle Luxury Studio Aura) */
.ambient-gold-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.ambient-gold-ring.inner { width: 340px; height: 340px; border: 1px solid rgba(184,148,77,.18); opacity: .7; }
.ambient-gold-ring.outer { width: 440px; height: 440px; border: 1px dashed rgba(184,148,77,.12); opacity: .5; }

/* Ultra-Luxury Corporate Emblem (Tiffany/Cartier Style) */
.hero-brand-emblem {
  width: 295px; padding: 32px 26px; border-radius: 28px;
  background: linear-gradient(160deg, #ffffff 0%, #faf5ea 100%);
  border: 1px solid rgba(184,148,77,.38);
  box-shadow: 0 30px 80px rgba(184,148,77,.2), 0 4px 20px rgba(0,0,0,.03);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  text-align: center; position: relative; z-index: 5; overflow: hidden;
  transition: all .5s var(--ease);
}
.hero-brand-emblem:hover {
  transform: translateY(-6px);
  border-color: var(--gold); box-shadow: 0 40px 100px rgba(184,148,77,.32);
}
.emblem-shine {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.6) 0%, transparent 60%);
  pointer-events: none; opacity: .4;
}
.emblem-inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.emblem-badge {
  font-size: 8px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-3); font-weight: 700; background: rgba(255,255,255,.9);
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(184,148,77,.25);
  margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.02);
}
.hero-official-logo {
  width: 100%; max-width: 210px; height: auto; max-height: 165px;
  object-fit: contain; margin: 4px 0 10px;
  filter: drop-shadow(0 10px 30px rgba(184,148,77,.3));
  transition: transform .5s var(--ease);
}
.hero-brand-emblem:hover .hero-official-logo {
  transform: scale(1.05);
}
.emblem-title {
  font-family: var(--sans); font-size: 11px; letter-spacing: .22em; font-weight: 700;
  color: var(--text); text-transform: uppercase; line-height: 1.3; margin-bottom: 4px;
}
.emblem-sub {
  font-size: 9px; color: var(--text-muted); font-weight: 500; letter-spacing: .08em;
}

/* Real Sub-Brand Orbit Cards (Human Senior Designer Touch) */
.brand-orbit-card {
  position: absolute; z-index: 10;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 22px; background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184,148,77,.28); border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,.06), 0 2px 8px rgba(184,148,77,.1);
  animation: float-slow 7s ease-in-out infinite alternate;
  transition: all .4s var(--ease);
}
.brand-orbit-card:hover {
  border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 45px rgba(184,148,77,.2);
}
.brand-orbit-card.top-right { top: 4%; right: -8%; animation-delay: 0s; }
.brand-orbit-card.bottom-left { bottom: 6%; left: -8%; animation-delay: -3.5s; }
.brand-orbit-card.center-bottom { bottom: -6%; right: 12%; animation-delay: -5s; border-radius: 999px; }

.orbit-logo {
  height: 28px; width: auto; max-width: 100px; object-fit: contain;
  filter: contrast(1.05);
}
.vector-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--line-gold);
  display: grid; place-items: center; color: var(--gold-3); flex: 0 0 auto;
}
.orbit-card-info strong {
  display: block; font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.2;
}
.orbit-card-info small {
  display: block; font-size: 10px; color: var(--text-muted); font-weight: 500; margin-top: 2px;
}

@keyframes rotate-orbit { to { transform: rotate(360deg); } }
@keyframes pulse-glow { 0% { opacity: .4; transform: scale(.95); } 100% { opacity: .8; transform: scale(1.05); } }
@keyframes float-slow { 0% { transform: translateY(0px); } 100% { transform: translateY(-12px); } }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 130px; gap: 60px; }
  .hero-visual { display: flex; justify-content: center; }
  .float-badge.top-right { right: 0; }
  .float-badge.bottom-left { left: 0; }
}

/* ─── Marquee ─── */
.marquee-band {
  padding: 22px 0; background: #fff;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.02);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span {
  white-space: nowrap; padding: 0 40px;
  font-family: var(--serif); font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-2);
}
.marquee-track span b { font-weight: 600; color: var(--gold-3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
  padding: clamp(100px, 12vw, 200px) var(--pad);
  position: relative; background: var(--bg);
}
.section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold-line);
}
.section-inner { width: min(100%, var(--max)); margin: 0 auto; }

.eyebrow {
  display: inline-flex; gap: 14px; align-items: center;
  margin-bottom: 28px; font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold-3); font-weight: 600;
}
.eyebrow::before { content: '◆'; font-size: 6px; }

.display {
  margin: 0; font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 92px); line-height: 1.02;
  font-weight: 400; letter-spacing: -.035em; color: var(--text);
}
.display em {
  font-style: italic;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: 80px; align-items: end;
}
.section-intro p {
  margin: 0; font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.85; color: var(--text-2); font-weight: 400;
}

/* ─── Reveal System ─── */
.reveal {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-stagger > * {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

/* ═══════════════════════════════════════════
   METRICS
   ═══════════════════════════════════════════ */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 80px; gap: 0;
}
.metric {
  padding: 50px 30px 30px; text-align: center;
  position: relative; cursor: default; transition: background .5s;
}
.metric::after {
  content: ''; position: absolute; top: 20%; bottom: 20%; right: 0; width: 1px;
  background: var(--gold-line);
}
.metric:last-child::after { display: none; }
.metric:hover { background: var(--gold-dim); }
.metric strong {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 6vw, 110px); letter-spacing: -.05em;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; transition: filter .6s;
}
.metric strong.counting { filter: blur(4px); }
.metric span {
  display: block; margin-top: 16px; max-width: 210px; margin-inline: auto;
  color: var(--text-2); font-size: 11px; line-height: 1.6;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 500;
}

/* ═══════════════════════════════════════════
   DARK ACCENT SECTION (LUXURY CONTRAST)
   ═══════════════════════════════════════════ */
.dark {
  background: var(--bg-dark); color: #f5f0e8;
}
.dark .eyebrow { color: #d4af37; }
.dark .display { color: #faf8f5; }
.dark .display em {
  background: linear-gradient(135deg, #d4af37, #f5e9d3, #b8944d);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dark .section-intro p { color: rgba(245,240,232,.75); }
.dark .timeline-item h3 { color: #faf8f5; }
.dark .timeline-item p { color: rgba(245,240,232,.65); }
.dark .timeline-year {
  background: linear-gradient(135deg, #f5e9d3, #d4af37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */
.timeline {
  margin-top: 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-line);
}
.timeline-item {
  padding: 48px 36px 24px 0; min-height: 270px;
  position: relative; transition: background .5s;
}
.timeline-item::after {
  content: ''; position: absolute; top: 20%; bottom: 20%; right: 0; width: 1px;
  background: var(--gold-line);
}
.timeline-item:last-child::after { display: none; }
.timeline-item:not(:first-child) { padding-left: 36px; }

.timeline-item::before {
  content: ''; position: absolute; top: -5px; left: 36px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #d4af37; box-shadow: 0 0 16px rgba(212,175,55,.6);
}
.timeline-item:first-child::before { left: 0; }

.timeline-year {
  font-family: var(--serif); font-size: 64px; font-weight: 400;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.timeline-item h3 {
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; margin: 18px 0; color: var(--text);
}
.timeline-item p {
  color: var(--text-2); line-height: 1.75; font-size: 14px; font-weight: 400;
}

/* ═══════════════════════════════════════════
   BRAND CARDS
   ═══════════════════════════════════════════ */
.brands-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 80px; gap: 36px;
}
.brand-card {
  min-height: 620px; padding: 56px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(184,148,77,.2);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,.03);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
  transform-style: preserve-3d; perspective: 800px;
}

.brand-card .card-glow {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(184,148,77,.12), transparent 70%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity .4s;
}
.brand-card:hover .card-glow { opacity: 1; }
.brand-card:hover {
  box-shadow: 0 20px 60px rgba(184,148,77,.12), 0 4px 20px rgba(0,0,0,.05);
  border-color: rgba(184,148,77,.4);
}

.brand-card-number {
  font-size: 11px; color: var(--gold-3); letter-spacing: .2em; font-weight: 600;
  position: relative; z-index: 1;
}
.brand-card-logo {
  width: min(70%, 400px); height: 180px;
  object-fit: contain; object-position: left center;
  position: relative; z-index: 1; filter: contrast(1.05);
}
.brand-card.onegram .brand-card-logo { width: min(50%, 300px); }
.brand-card h3 {
  font-family: var(--serif); font-size: clamp(28px, 2.6vw, 48px);
  font-weight: 400; margin: 0 0 14px; position: relative; z-index: 1; color: var(--text);
}
.brand-card p {
  max-width: 500px; color: var(--text-2); line-height: 1.8;
  font-weight: 400; font-size: 14px; position: relative; z-index: 1;
}

.text-link {
  display: inline-flex; gap: 10px; align-items: center; margin-top: 22px;
  text-transform: uppercase; font-size: 11px; letter-spacing: .16em;
  color: var(--gold-3); font-weight: 600; position: relative; z-index: 1; transition: gap .3s;
}
.text-link::after { content: '↗'; font-size: 16px; transition: transform .3s var(--ease); }
.text-link:hover { gap: 14px; color: var(--gold); }
.text-link:hover::after { transform: translate(3px, -3px); }

/* ═══════════════════════════════════════════
   CAPABILITIES
   ═══════════════════════════════════════════ */
.capabilities {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: 80px; gap: 1px;
  background: var(--line);
}
.capability {
  min-height: 320px; padding: 36px 28px;
  background: #ffffff;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: background .4s;
}
.capability::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.capability:hover { background: #faf7f2; }
.capability:hover::before { transform: scaleX(1); }

.capability-index {
  font-family: var(--serif); font-size: 28px;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.capability h3 {
  margin: 0 0 12px; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; color: var(--text);
}
.capability p {
  margin: 10px 0 0; color: var(--text-2); font-size: 13px;
  line-height: 1.75; font-weight: 400; opacity: 1; max-height: none;
}

/* ═══════════════════════════════════════════
   QUOTE
   ═══════════════════════════════════════════ */
.quote-section {
  min-height: 80svh; display: grid; place-items: center;
  text-align: center; overflow: hidden;
  background: #f4efe6; position: relative;
}
.quote-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,148,77,.08), transparent);
}
.quote-wrap { max-width: 1100px; position: relative; padding: 0 var(--pad); }
.quote-wrap::before {
  content: '❝'; position: absolute; left: 50%; top: -80px;
  transform: translateX(-50%); font-size: 200px; line-height: 1;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: .15;
}
.quote {
  font-family: var(--serif); font-size: clamp(32px, 4.8vw, 82px);
  line-height: 1.1; letter-spacing: -.03em; margin: 0; font-weight: 300; color: var(--text);
}
.quote .shimmer {
  display: inline;
  background: linear-gradient(90deg, var(--text) 0%, var(--text) 40%, var(--gold) 50%, var(--text) 60%, var(--text) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { background-position: 100% 0; } 50% { background-position: -100% 0; } }
.quote small {
  display: block; margin-top: 40px; font-family: var(--sans); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase; -webkit-text-fill-color: var(--gold-3); font-weight: 600;
}

/* ═══════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════ */
.cta-band {
  padding: 0; overflow: hidden; background: #ffffff;
  position: relative; border-top: 1px solid var(--line);
}
.cta-band::after { display: none; }
.cta-band a {
  min-height: 280px; padding: 60px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; color: var(--text); position: relative; overflow: hidden; transition: color .4s;
}
.cta-band a::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-gradient); transform: translateY(100%);
  transition: transform .6s var(--ease);
}
.cta-band a:hover::before { transform: translateY(0); }
.cta-band a:hover { color: #fff; }

.cta-band strong {
  font-family: var(--serif); position: relative;
  font-size: clamp(40px, 6.5vw, 110px); font-weight: 400; letter-spacing: -.04em;
}
.cta-arrow {
  width: 90px; height: 90px; border: 1px solid var(--gold-3); border-radius: 50%;
  display: grid; place-items: center; font-size: 34px; color: var(--gold-3);
  transition: all .4s var(--ease); flex: 0 0 auto; position: relative; background: #fff;
}
.cta-band a:hover .cta-arrow { transform: rotate(-45deg) scale(1.1); color: var(--gold-3); border-color: #fff; }

/* ═══════════════════════════════════════════
   INTERIOR PAGE HERO
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 200px var(--pad) 100px; position: relative;
  background: linear-gradient(180deg, #fdfbf7 0%, #f3eee6 100%); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 80%, rgba(184,148,77,.08), transparent);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-line);
}
.page-hero .section-inner {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: 80px; align-items: end; position: relative;
}
.page-title {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(46px, 7vw, 124px); line-height: .92;
  letter-spacing: -.04em; color: var(--text);
}
.page-lead {
  margin: 0; font-size: 16px; line-height: 1.85;
  color: var(--text-2); max-width: 520px; font-weight: 400;
}

/* ═══════════════════════════════════════════
   STORY / ABOUT
   ═══════════════════════════════════════════ */
.story-grid {
  display: grid; grid-template-columns: .75fr 1.25fr;
  gap: 100px; align-items: start;
}
.sticky-label { position: sticky; top: 120px; }
.story-copy p {
  font-size: clamp(17px, 1.4vw, 22px); line-height: 1.8;
  margin: 0 0 30px; color: var(--text-2); font-weight: 400;
}
.story-copy p:first-child::first-letter {
  float: left; font-family: var(--serif); font-size: 88px;
  line-height: .78; padding: 8px 14px 0 0;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 80px;
}
.value-card {
  background: #ffffff; border: 1px solid var(--line);
  padding: 56px; min-height: 380px;
  position: relative; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.02);
  transition: border-color .5s, transform .5s var(--ease), box-shadow .5s;
}
.value-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: center; transition: transform .6s var(--ease);
}
.value-card:hover { border-color: rgba(184,148,77,.3); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(184,148,77,.08); }
.value-card:hover::before { transform: scaleX(1); }
.value-card h3 {
  font-family: var(--serif); font-size: 44px; font-weight: 400;
  margin: 0 0 24px; position: relative; color: var(--text);
}
.value-card p {
  color: var(--text-2); line-height: 1.85; font-weight: 400; position: relative;
}

/* ═══════════════════════════════════════════
   BRAND DETAIL
   ═══════════════════════════════════════════ */
.brand-detail {
  display: grid; grid-template-columns: .86fr 1.14fr;
  gap: 80px; padding: 100px 0;
  border-top: 1px solid var(--line); align-items: start;
}
.brand-detail:first-of-type { margin-top: 70px; }
.brand-detail:nth-child(even) { grid-template-columns: 1.14fr .86fr; }
.brand-detail:nth-child(even) .brand-visual { order: 2; }

.brand-visual {
  min-height: 540px; background: #ffffff;
  padding: 56px; display: grid; place-items: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0,0,0,.03);
}
.brand-visual::before {
  content: ''; position: absolute; width: 380px; height: 380px;
  border: 1px solid var(--line); border-radius: 50%;
  animation: orbit 40s linear infinite;
}
.brand-visual::after {
  content: ''; position: absolute; width: 260px; height: 260px;
  border: 1px solid rgba(184,148,77,.08); transform: rotate(45deg);
}
.brand-visual img {
  position: relative; z-index: 1; width: min(82%, 470px);
  max-height: 230px; object-fit: contain;
}
.brand-visual.one img { width: min(62%, 330px); }
@keyframes orbit { to { transform: rotate(360deg); } }

.brand-content { padding-top: 24px; }
.brand-content h2 {
  font-family: var(--serif); font-size: clamp(42px, 5vw, 74px);
  margin: 0 0 18px; font-weight: 400; letter-spacing: -.03em; color: var(--text);
}
.brand-tagline {
  color: var(--gold-3); text-transform: uppercase;
  letter-spacing: .2em; font-size: 11px; font-weight: 600;
}
.brand-content p { color: var(--text-2); line-height: 1.85; font-size: 15px; font-weight: 400; }
.fact-list { list-style: none; padding: 0; margin: 36px 0 0; border-top: 1px solid var(--line); }
.fact-list li {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 13px;
}
.fact-list span:first-child { color: var(--gold-3); font-weight: 600; letter-spacing: .05em; }

/* ═══════════════════════════════════════════
   PROCESS LIST
   ═══════════════════════════════════════════ */
.process-list { margin-top: 80px; border-top: 1px solid var(--line); }
.process-item {
  display: grid; grid-template-columns: 100px 1fr .7fr;
  gap: 40px; padding: 44px 0; border-bottom: 1px solid var(--line);
  align-items: start; position: relative; transition: all .4s;
}
.process-item::before {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .6s var(--ease);
}
.process-item:hover { padding-left: 20px; }
.process-item:hover::before { width: 100%; }

.process-number {
  font-family: var(--serif); font-size: 42px; font-weight: 400;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.process-item h3 {
  font-size: clamp(20px, 2.2vw, 34px);
  font-family: var(--serif); font-weight: 400; margin: 0; color: var(--text);
}
.process-item p { color: var(--text-2); line-height: 1.8; font-size: 14px; font-weight: 400; }

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-layout {
  display: grid; grid-template-columns: .72fr 1.28fr;
  gap: 100px; align-items: start;
}
.contact-card { position: sticky; top: 120px; }
.contact-card h2 { font-family: var(--serif); font-size: 50px; font-weight: 400; margin: 0 0 30px; color: var(--text); }
.contact-list { display: grid; gap: 30px; }
.contact-item small {
  display: block; color: var(--gold-3); text-transform: uppercase;
  letter-spacing: .18em; font-size: 11px; margin-bottom: 8px; font-weight: 600;
}
.contact-item a, .contact-item p {
  margin: 0; line-height: 1.75; font-size: 15px;
  color: var(--text-2); font-weight: 400;
}
.contact-item a:hover { color: var(--gold-3); }

.form-panel { border-top: 1.5px solid var(--gold); padding-top: 32px; }
.form-panel h3 { font-family: var(--serif); font-size: 42px; margin: 0 0 38px; font-weight: 400; color: var(--text); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 28px; }
.field { display: grid; gap: 10px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-3); font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; border: 0; border-bottom: 1px solid rgba(184,148,77,.3);
  background: transparent; border-radius: 0; padding: 14px 0;
  color: var(--text); outline: none; font-weight: 400;
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--gold);
  box-shadow: 0 2px 10px rgba(184,148,77,.1);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23b8944d'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px;
}
.field select option { background: #fff; color: var(--text); }

.file-drop {
  border: 1px dashed rgba(184,148,77,.35); padding: 32px; min-height: 130px;
  display: grid; place-items: center; text-align: center; cursor: pointer;
  transition: all .4s var(--ease); background: #ffffff;
}
.file-drop:hover { border-color: var(--gold); background: rgba(184,148,77,.04); box-shadow: 0 0 30px rgba(184,148,77,.08); }
.file-drop input { position: absolute; opacity: 0; pointer-events: none; }
.file-drop strong { display: block; font-size: 13px; font-weight: 500; color: var(--text-2); }
.file-drop span { display: block; margin-top: 6px; color: var(--text-muted); font-size: 12px; }

.check-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--text-2); line-height: 1.65; cursor: pointer;
}
.check-row input { margin-top: 3px; accent-color: var(--gold); }
.check-row a { color: var(--gold-3); text-decoration: underline; text-underline-offset: 2px; }

.primary-button {
  border: 1px solid var(--gold-3); background: #fff; color: var(--gold-3);
  padding: 18px 34px; min-width: 200px; cursor: pointer;
  text-transform: uppercase; letter-spacing: .14em; font-size: 11px;
  position: relative; overflow: hidden; transition: color .4s; font-weight: 600;
  box-shadow: 0 4px 20px rgba(184,148,77,.1);
}
.primary-button::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-gradient); transform: scaleX(0);
  transform-origin: left; transition: transform .5s var(--ease); z-index: -1;
}
.primary-button:hover { color: #fff; border-color: var(--gold); }
.primary-button:hover::before { transform: scaleX(1); }
.primary-button:disabled { opacity: .4; cursor: wait; }
.form-status { min-height: 22px; font-size: 13px; margin-top: 16px; font-weight: 500; }
.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

/* ─── Map & Location Card ─── */
.map-card {
  margin-top: 80px; padding: 48px;
  background: #ffffff; border: 1px solid var(--line);
  border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,.03);
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; position: relative; overflow: hidden;
}
.map-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: var(--gold-gradient);
}
.map-card-info h3 {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  margin: 10px 0 12px; color: var(--text);
}
.map-card-info p {
  color: var(--text-2); font-size: 14px; line-height: 1.7; max-width: 540px; margin-bottom: 20px;
}
.map-card-badge {
  padding: 24px 32px; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 4px; text-align: center; flex: 0 0 auto;
}
.map-card-badge span {
  display: block; font-size: 12px; letter-spacing: .15em; font-weight: 600; color: var(--gold-3);
}
.map-card-badge small {
  display: block; margin-top: 4px; font-size: 11px; color: var(--text-muted);
}
@media (max-width: 720px) {
  .map-card { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .map-card-badge { width: 100%; }
}

/* ─── Legal ─── */
.legal-copy { max-width: 920px; }
.legal-copy h2 { font-family: var(--serif); font-size: 40px; font-weight: 400; margin: 56px 0 18px; color: var(--text); }
.legal-copy p, .legal-copy li { color: var(--text-2); line-height: 1.85; font-weight: 400; }
.legal-copy a { color: var(--gold-3); text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark); color: #faf8f5;
  padding: 80px var(--pad) 36px; border-top: 1px solid var(--line);
}
.footer-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .8fr .8fr;
  gap: 60px; padding-bottom: 80px; border-bottom: 1px solid rgba(245,240,232,.12);
}
.footer-name {
  font-family: var(--serif); font-size: clamp(34px, 4.5vw, 66px);
  letter-spacing: -.03em; margin: 0 0 24px; font-weight: 400; color: #faf8f5;
}
.footer-intro { max-width: 500px; color: rgba(245,240,232,.65); line-height: 1.8; font-size: 14px; font-weight: 400; }
.footer-col h4 { margin: 0 0 22px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #d4af37; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: rgba(245,240,232,.75); font-size: 14px; line-height: 1.95; margin: 0; font-weight: 400; transition: color .3s; }
.footer-col a:hover { color: #d4af37; }
.footer-bottom {
  width: min(100%, var(--max)); margin: 0 auto; padding-top: 28px;
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,240,232,.4);
}
.footer-bottom a { transition: color .3s; }
.footer-bottom a:hover { color: #d4af37; }

/* ═══════════════════════════════════════════
   ADMIN
   ═══════════════════════════════════════════ */
.admin-shell { min-height: 100vh; background: var(--bg-2); padding: 40px; color: var(--text); }
.admin-head { max-width: 1400px; margin: 0 auto 32px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.admin-head h1 { font-family: var(--serif); font-size: 48px; font-weight: 400; margin: 0; }
.admin-tabs { display: flex; gap: 8px; }
.admin-tabs button { border: 1px solid var(--gold); background: #fff; color: var(--gold-3); padding: 10px 16px; cursor: pointer; font-size: 11px; letter-spacing: .08em; transition: all .3s; font-weight: 600; }
.admin-tabs button.active { background: var(--gold); color: #fff; }
.admin-table-wrap { max-width: 1400px; margin: 0 auto; overflow: auto; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.03); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 960px; }
.admin-table th, .admin-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 13px; vertical-align: top; }
.admin-table th { text-transform: uppercase; letter-spacing: .1em; font-size: 11px; color: var(--gold-3); background: var(--bg-2); position: sticky; top: 0; font-weight: 600; }
.admin-table a { color: var(--gold-3); text-decoration: underline; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1050px) {
  /* backdrop-filter, fixed konumlu menü panelinin kapsayıcı bloğunu header'a çevirip
     paneli 64px'e hapsediyor; mobilde kapatılmalı (bkz. CSS containing block kuralı) */
  .site-header { grid-template-columns: 1fr auto; backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(250,248,245,.98); }
  .site-nav {
    position: fixed; inset: 0; background: var(--bg); z-index: 89;
    flex-direction: column; justify-content: center; gap: 24px;
    font-family: var(--serif); font-size: 34px; letter-spacing: .02em; text-transform: none;
    transform: translateY(-102%); transition: transform .55s var(--ease);
  }
  .site-nav a { color: var(--text-2); }
  .site-nav a:hover, .site-nav a[aria-current='page'] { color: var(--gold-3); }
  .menu-open .site-nav { transform: translateY(0); }
  .header-actions .header-link { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 91; }
  .hero { min-height: 90svh; }
  .hero h1 { font-size: clamp(44px, 10vw, 90px); }
  .section-intro, .page-hero .section-inner, .story-grid, .form-layout { grid-template-columns: 1fr; gap: 44px; }
  .sticky-label, .contact-card { position: static; }
  .capabilities { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-detail, .brand-detail:nth-child(even) { grid-template-columns: 1fr; }
  .brand-detail:nth-child(even) .brand-visual { order: 0; }
}

@media (max-width: 720px) {
  :root { --pad: 22px; }
  .site-header { min-height: 64px; }
  .brand-name { font-size: 9px; }
  .brand-mark { width: 36px; height: 36px; font-size: 12px; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(40px, 14vw, 72px); margin-bottom: 24px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { flex-wrap: wrap; gap: 10px 20px; }
  /* Dar ekranda yüzen kartlar çakışıyor: alt iki kart panonun altına akışa alınır */
  .hero-3d-stage { aspect-ratio: auto; gap: 14px; padding: 4px 0; }
  .brand-orbit-card { padding: 10px 16px; gap: 10px; position: static; animation: none; width: max-content; justify-self: center; }
  .orbit-card-info strong { font-size: 12.5px; }
  .orbit-card-info small { font-size: 10.5px; }
  .orbit-logo { height: 22px; }
  .vector-icon { width: 26px; height: 26px; }
  .marquee-track span { font-size: 13px; padding: 0 24px; }
  .section { padding: 80px var(--pad); }
  .section-intro { gap: 28px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2)::after, .metric:nth-child(4)::after { display: none; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item, .timeline-item:not(:first-child) { padding: 40px 0 24px; min-height: 0; }
  .timeline-item::after { display: none; }
  .timeline-item::before { left: 0 !important; top: 0; }
  .brands-grid { gap: 20px; margin-top: 50px; }
  .brand-card { min-height: 500px; padding: 36px 28px; }
  .brand-card-logo { height: 140px; }
  .capabilities { grid-template-columns: 1fr; gap: 1px; }
  .capability { min-height: 200px; padding: 28px 20px; }
  .capability p { max-height: none; opacity: 1; }
  .page-hero { padding: 130px var(--pad) 60px; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .value-card { padding: 36px; min-height: 0; }
  .brand-detail { padding: 72px 0; gap: 36px; }
  .brand-visual { min-height: 340px; padding: 32px; }
  .process-item { grid-template-columns: 60px 1fr; gap: 18px; }
  .process-item p { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .cta-band a { min-height: 220px; }
  .cta-arrow { width: 64px; height: 64px; font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .footer-bottom { flex-direction: column; }
  .admin-shell { padding: 18px; }
  .admin-head { align-items: flex-start; flex-direction: column; }
  .intro-logo { font-size: clamp(60px, 20vw, 120px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    scroll-behavior: auto !important; transition-duration: .01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .hero h1 .char { opacity: 1; transform: none; }
  .intro-screen { display: none; }
  body::after { display: none; }
}
