/* ===============================================================
   OZKESER HUKUK & ARABULUCULUK -- Shared Stylesheet
   =============================================================== */

:root {
  --bg: #050505;
  --bg-secondary: #0D0D0D;
  --gold: #C5A059;
  --gold-alt: #D4AF37;
  --gold-border: rgba(212,175,55,0.25);
  --gold-glow: rgba(197,160,89,0.15);
  --text: #ECECEC;
  --muted: #9B9B9B;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* --- CURSOR --- */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(197,160,89,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%,-50%);
}
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none) { .cursor, .cursor-ring { display: none; } }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-border); }

/* --- TYPOGRAPHY --- */
.serif { font-family: var(--font-serif); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold { color: var(--gold); }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.reveal.blur-in {
  filter: blur(8px);
  transition: opacity 1s, transform 1s, filter 1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0);
  will-change: auto;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- LAYOUT --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

/* --- GOLD LINE --- */
.gold-line {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* --- NAVIGATION --- */
nav#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
  width: 100%;
}
nav#navbar.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--gold-border);
}
.nav-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.logo-monogram {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 900px) { .logo-text { display: none; } }

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links li { display: inline-block; }
.nav-links a {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  transform-origin: right;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
@media (max-width: 1024px) { .nav-links { display: none !important; } }

.btn-nav {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold); color: #050505; }
.btn-nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .btn-nav { font-size: 10px; padding: 0.5rem 1rem; letter-spacing: 0.1em; }
}
@media (max-width: 480px) {
  .btn-nav { display: none; }
  .nav-inner { padding: 1rem 1.25rem; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
.mobile-menu a:hover { color: var(--gold); }

/* --- SECTIONS BASE --- */
section { position: relative; isolation: isolate; }

/* --- HERO (index) --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-canvas-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(197,160,89,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(212,175,55,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #050505 50%, #080604 100%);
}
.hero-architecture {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  opacity: 0.18;
  overflow: hidden;
}
.hero-architecture svg { width: 100%; height: 100%; object-fit: cover; }
.hero-marble {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(105deg, transparent 0px, transparent 40px, rgba(197,160,89,0.015) 40px, rgba(197,160,89,0.015) 41px),
    repeating-linear-gradient(195deg, transparent 0px, transparent 60px, rgba(197,160,89,0.01) 60px, rgba(197,160,89,0.01) 61px);
}
.hero-light {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.8s cubic-bezier(0.23,1,0.32,1), top 0.8s cubic-bezier(0.23,1,0.32,1);
  z-index: 1;
}
.hero-line-left {
  position: absolute;
  left: 2.5rem;
  top: 30%; bottom: 30%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-top: 6rem;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 2rem;
}
.hero-headline .gold-line-text { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 1.25rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: #050505;
  padding: 1rem 2rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-alt); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  padding: 1rem 2rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid var(--gold-border);
  transition: color 0.3s, border-color 0.3s;
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold); }
.btn-outline:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0.6;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- HERO SLIDER SOL/SAG OK BUTONLARI --- */
.hero-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(5,5,5,0.55);
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-side-btn:hover  { background: rgba(197,160,89,0.22); transform: translateY(-50%) scale(1.06); }
.hero-side-btn:active { transform: translateY(-50%) scale(0.96); }
.hero-side-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.hero-side-prev { left:  1.5rem; }
.hero-side-next { right: 1.5rem; }
@media (max-width: 600px) {
  .hero-side-btn { width: 40px; height: 40px; }
  .hero-side-prev { left:  0.75rem; }
  .hero-side-next { right: 0.75rem; }
}

/* --- HERO SLIDER --- */
.hero-slider {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1);
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide.active .hero-eyebrow  { animation: hSlideIn 0.7s 0.05s cubic-bezier(0.16,1,0.3,1) both; }
.hero-slide.active .hero-headline { animation: hSlideIn 0.7s 0.15s cubic-bezier(0.16,1,0.3,1) both; }
.hero-slide.active .hero-sub      { animation: hSlideIn 0.7s 0.25s cubic-bezier(0.16,1,0.3,1) both; }
.hero-slide.active .hero-buttons  { animation: hSlideIn 0.7s 0.35s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes hSlideIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.5rem;
  justify-content: center;
  pointer-events: none;
}
.hero-slider-controls > * { pointer-events: auto; }
.hero-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(5,5,5,0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-slider-btn:hover { background: rgba(197,160,89,0.18); transform: scale(1.08); }
.hero-slider-btn:active { transform: scale(0.96); }
.hero-slider-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.hero-slider-btn svg { pointer-events: none; width: 16px; height: 16px; }
.hero-slider-dots { display: flex; align-items: center; gap: 0.4rem; }
.hero-slider-dot {
  display: block;
  width: 24px; height: 14px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1);
}
.hero-slider-dot::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 1px;
  background: var(--gold-border);
  transition: background 0.3s;
}
.hero-slider-dot.active { width: 40px; }
.hero-slider-dot.active::after { background: var(--gold); }
.hero-slider-dot:hover::after { background: rgba(197,160,89,0.5); }
.hero-slider-counter {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-left: 0.375rem;
  user-select: none;
  opacity: 0.75;
}
@media (max-width: 768px) {
  .hero-slider-controls { bottom: 5.5rem; padding: 0 1.5rem; }
}

/* --- PHILOSOPHY (index) --- */
#philosophy { padding: 10rem 0; position: relative; overflow: hidden; }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 900px) { .philosophy-grid { grid-template-columns: 1fr; gap: 4rem; } }
.philosophy-heading { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.05; margin: 1.5rem 0; }
.philosophy-text { font-size: 1.05rem; color: var(--muted); line-height: 1.85; font-weight: 300; max-width: 480px; }
.philosophy-visual { position: relative; height: 500px; }
.philosophy-columns {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 0.75rem; overflow: hidden;
}
.column-pillar {
  flex: 1; max-width: 60px;
  background: linear-gradient(to top, rgba(197,160,89,0.12), rgba(197,160,89,0.03));
  border-top: 2px solid rgba(197,160,89,0.4);
  border-left: 1px solid rgba(197,160,89,0.15);
  border-right: 1px solid rgba(197,160,89,0.15);
  position: relative;
}
.column-pillar::before {
  content: '';
  position: absolute;
  top: -12px; left: -6px; right: -6px;
  height: 12px;
  background: rgba(197,160,89,0.25);
}
.column-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20px;
  background: rgba(197,160,89,0.2);
}
.philosophy-quote {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gold-border);
}
.philosophy-quote p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}
.philosophy-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- SERVICES (index) --- */
#services {
  padding: 10rem 0;
  background: var(--bg-secondary);
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-border);
}
.section-header { text-align: center; margin-bottom: 5rem; }
.section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: rgba(5,5,5,0.8);
  border: 1px solid var(--gold-border);
  padding: 3rem 2.5rem;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,160,89,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(197,160,89,0.12), 0 0 0 1px rgba(197,160,89,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(197,160,89,0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(197,160,89,0.5); }

.service-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.service-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
  position: relative;
  z-index: 1;
}
.service-card:hover .service-cta { gap: 1.25rem; }
.service-cta svg { width: 16px; height: 16px; }

/* --- EXPERTISE (index) --- */
#expertise { padding: 10rem 0; }
.expertise-header { margin-bottom: 4rem; }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 0.5rem 0;
}
@media (max-width: 1100px) { .expertise-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .expertise-grid { grid-template-columns: 1fr; } }

.expertise-card {
  border: 1px solid var(--gold-border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.4s, opacity 0.5s;
  opacity: 0;
  transform: translateY(20px);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.expertise-card.visible { opacity: 1; transform: translateY(0); }
.expertise-card:hover {
  border-color: var(--gold);
  background: rgba(197,160,89,0.03);
  transform: translateY(-4px);
}
.expertise-card-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(197,160,89,0.08);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
}
.expertise-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 1.5rem; opacity: 0.8; }
.expertise-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; line-height: 1.3; }
.expertise-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.expertise-card:hover .expertise-arrow { opacity: 1; }
.expertise-arrow svg { width: 14px; }

/* --- STATS (index) --- */
#stats {
  padding: 10rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; padding: 3rem 1rem; position: relative; }
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--gold-border);
}
.stat-item:last-child::after { display: none; }
@media (max-width: 768px) {
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(4)::after { display: none; }
}
.stat-number { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; color: var(--gold); line-height: 1; display: block; }
.stat-suffix { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--gold); font-style: italic; }
.stat-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.75rem; display: block; }

/* --- ARTICLES (index) --- */
#articles { padding: 10rem 0; }
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.articles-nav { display: flex; gap: 0.5rem; }
.articles-nav-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.articles-nav-btn:hover { background: rgba(197,160,89,0.1); border-color: var(--gold); }
.articles-nav-btn:focus-visible { outline: 2px solid var(--gold); }
.articles-nav-btn svg { width: 16px; }
.articles-slider { overflow: hidden; }
.articles-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.article-card {
  flex-shrink: 0;
  width: calc(25% - 1.125rem);
  border: 1px solid var(--gold-border);
  padding: 2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
@media (max-width: 1200px) { .article-card { width: calc(33.333% - 1rem); } }
@media (max-width: 900px) { .article-card { width: calc(50% - 0.75rem); } }
@media (max-width: 600px) { .article-card { width: calc(100% - 0rem); } }
.article-card:hover { border-color: var(--gold); }
.article-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(197,160,89,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.article-card:hover .article-card-bg { opacity: 1; }
.article-date { font-size: 11px; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.article-category { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; display: block; }
.article-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; line-height: 1.4; margin-bottom: 2rem; }
.article-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s, gap 0.3s;
}
.article-card:hover .article-link { color: var(--gold); gap: 1.25rem; }
.article-link svg { width: 14px; }

/* --- PROJECTS (portfolio: home teaser + /projelerimiz listing) --- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  text-decoration: none;
  color: inherit;
}
.project-card-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(5,5,5,0.6);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.project-card:hover .project-card-bg { transform: scale(1.06); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(5,5,5,0) 40%, rgba(5,5,5,0.92) 100%);
}
.project-card-badge {
  align-self: flex-start;
  background: var(--gold);
  color: #050505;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.75rem;
}
.project-card-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; }
.project-card-location { font-size: 0.8rem; color: var(--muted); }

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .project-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .project-gallery { grid-template-columns: 1fr; } }
.project-gallery-item {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--gold-border);
}

/* --- QUOTES (index) --- */
#quotes {
  padding: 10rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quotes-bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(197,160,89,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  font-style: italic;
}
.quotes-wrapper { max-width: 900px; margin: 0 auto; position: relative; }
.quote-mark { font-family: var(--font-serif); font-size: 10rem; line-height: 0.5; color: var(--gold); opacity: 0.3; display: block; margin-bottom: 2rem; }
.quote-slides { position: relative; }
.quote-slide { display: none; animation: quoteFade 0.6s ease; }
.quote-slide.active { display: block; }
@keyframes quoteFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.quote-text { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--text); margin-bottom: 2rem; }
.quote-author { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.quotes-dots { display: flex; justify-content: center; gap: 0.75rem; margin-top: 3rem; }
.quote-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.quote-dot.active { background: var(--gold); transform: scale(1.5); }

/* --- CONTACT --- */
#contact { padding: 10rem 0; position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 4rem; } }
.contact-left { position: relative; overflow: hidden; }
.contact-watermark {
  position: absolute;
  top: -2rem; left: -2rem;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: rgba(197,160,89,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}
.contact-section-label { margin-bottom: 3rem; position: relative; }
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-text { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }
.contact-info-text strong { color: var(--text); display: block; font-weight: 400; }
.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.btn-maps:hover { border-color: var(--gold); background: rgba(197,160,89,0.06); }
.btn-maps svg { width: 16px; }

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { position: relative; margin-bottom: 2rem; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  -webkit-appearance: none;
}
.form-group select option { background: var(--bg); color: var(--text); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(155,155,155,0.4); }
.form-underline {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.form-group input:focus ~ .form-underline,
.form-group textarea:focus ~ .form-underline,
.form-group select:focus ~ .form-underline { width: 100%; }
.btn-submit {
  align-self: flex-start;
  background: var(--gold);
  color: #050505;
  border: none;
  padding: 1rem 3rem;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 1rem;
}
.btn-submit:hover { background: var(--gold-alt); transform: translateY(-1px); }
.btn-submit:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--gold-border);
  padding: 4rem 0 2rem;
  background: var(--bg-secondary);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 300px;
  margin-top: 1rem;
}
.footer-nav-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-list a { font-size: 0.9rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-nav-list a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 12px; color: rgba(155,155,155,0.5); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-legal a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(155,155,155,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  cursor: pointer;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(197,160,89,0.05); }
.social-link:focus-visible { outline: 2px solid var(--gold); }
.social-link svg { width: 16px; height: 16px; }

/* --- MOBILE NAV --- */
@media (max-width: 768px) {
  .nav-inner { padding: 1rem 1.25rem; }
  #hero .hero-content { padding: 0 1.25rem; padding-top: 5rem; }
  .hero-line-left { display: none; }
  .hero-architecture { opacity: 0.08; }
}

/* ===============================================================
   SUBPAGE STYLES
   =============================================================== */

/* --- PAGE HERO --- */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 60%, rgba(197,160,89,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212,175,55,0.03) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #050505 100%);
  z-index: 0;
}
.page-hero-marble {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(105deg, transparent 0px, transparent 40px, rgba(197,160,89,0.012) 40px, rgba(197,160,89,0.012) 41px),
    repeating-linear-gradient(195deg, transparent 0px, transparent 60px, rgba(197,160,89,0.008) 60px, rgba(197,160,89,0.008) 61px);
  z-index: 0;
}
.page-hero-deco {
  position: absolute;
  right: 6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border: 1px solid rgba(197,160,89,0.08);
  border-radius: 50%;
  z-index: 0;
}
.page-hero-deco::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(197,160,89,0.05);
  border-radius: 50%;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep {
  color: rgba(155,155,155,0.25);
  font-size: 10px;
}
.breadcrumb-current { color: var(--gold); }

/* --- PAGE TITLE --- */
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.page-title em { color: var(--gold); font-style: italic; }
.page-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
}

/* --- CONTENT SECTIONS --- */
.content-section {
  padding: 7rem 0;
  position: relative;
}
.alt-bg {
  background: var(--bg-secondary);
}
.alt-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-border);
}
.alt-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-border);
}

/* --- TWO COLUMN LAYOUT --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 3rem; } }

.two-col-wide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .two-col-wide { grid-template-columns: 1fr; gap: 3rem; } }

/* --- EXPERTISE DETAIL LAYOUT --- */
.expertise-detail-section {
  overflow-x: hidden;
  width: 100%;
}

.expertise-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .expertise-detail-layout {
    grid-template-columns: 1fr;
  }
}

.expertise-sidebar {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .expertise-sidebar > div {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* --- BODY TEXT --- */
.body-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}
.body-text + .body-text { margin-top: 1.5rem; }
.lead-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
}

/* --- PROCESS STEPS --- */
.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gold-border);
  position: relative;
}
.process-item:first-child { padding-top: 0; }
.process-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(197,160,89,0.2);
  flex-shrink: 0;
  width: 60px;
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
}
.process-item:hover .process-num { color: rgba(197,160,89,0.5); }
.process-body h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.process-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* --- FEATURE CARDS --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: rgba(197,160,89,0.5);
  background: rgba(197,160,89,0.02);
  transform: translateY(-4px);
}
.feature-card-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.feature-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.feature-card-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* --- INFO HIGHLIGHT BOX --- */
.info-box {
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(197,160,89,0.03);
  margin: 2.5rem 0;
}
.info-box p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

/* --- VALUES --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--gold-border);
  background: var(--gold-border);
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }
.value-item {
  padding: 3rem 2rem;
  background: var(--bg);
  position: relative;
  transition: background 0.3s;
}
.value-item:hover { background: rgba(197,160,89,0.02); }
.value-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(197,160,89,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.value-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.value-text { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* --- EXPERTISE OVERVIEW GRID --- */
.expertise-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--gold-border);
  background: var(--gold-border);
}
@media (max-width: 1100px) { .expertise-overview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .expertise-overview-grid { grid-template-columns: 1fr; } }

.expertise-link-card {
  display: block;
  padding: 2.5rem 2rem;
  background: var(--bg);
  text-decoration: none;
  color: var(--text);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.expertise-link-card:hover { background: rgba(197,160,89,0.03); }
.expertise-link-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.expertise-link-card:hover::after { transform: scaleX(1); }
.expertise-link-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(197,160,89,0.12);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.expertise-link-icon {
  width: 36px; height: 36px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.expertise-link-card:hover .expertise-link-icon { opacity: 1; }
.expertise-link-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.expertise-link-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.expertise-link-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.expertise-link-card:hover .expertise-link-arrow { opacity: 1; transform: translateX(0); }
.expertise-link-arrow svg { width: 12px; }

/* --- ARTICLES FULL PAGE GRID --- */
.articles-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .articles-full-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .articles-full-grid { grid-template-columns: 1fr; } }

.article-full-card {
  border: 1px solid var(--gold-border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.article-full-card:hover {
  border-color: rgba(197,160,89,0.5);
  background: rgba(197,160,89,0.02);
  transform: translateY(-4px);
}
.article-full-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,160,89,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.article-full-card:hover .article-full-card-bg { opacity: 1; }

/* --- CTA SECTION --- */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  position: relative;
}
.cta-text {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- CONTACT PAGE --- */
.contact-page-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--gold-border);
  background: var(--gold-border);
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .contact-page-info { grid-template-columns: 1fr; } }
.contact-page-info-item {
  padding: 2.5rem 2rem;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: background 0.3s;
}
.contact-page-info-item:hover { background: rgba(197,160,89,0.02); }
.contact-page-info-icon { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  border: 1px solid var(--gold-border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.team-card:hover { border-color: rgba(197,160,89,0.4); background: rgba(197,160,89,0.02); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  background: rgba(197,160,89,0.05);
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.team-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* --- SERVICES PAGE --- */
.services-page-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-page-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gold-border);
}
@media (max-width: 900px) {
  .service-page-item { grid-template-columns: 1fr; gap: 1.5rem; }
}
.service-page-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(197,160,89,0.12);
  line-height: 1;
  width: 100px;
  flex-shrink: 0;
}
.service-page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.service-page-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 2rem;
}
.service-page-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 4px;
  transition: border-color 0.3s, gap 0.3s;
}
.service-page-link:hover { border-color: var(--gold); gap: 1.25rem; }
.service-page-link svg { width: 14px; }
.service-page-icon-wrap {
  width: 80px; height: 80px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-page-icon-wrap svg { width: 36px; height: 36px; color: var(--gold); opacity: 0.7; }

/* --- CMS CONTENT (Quill editor output) --- */
.cms-content { color: var(--text); line-height: 1.85; }
.cms-content h1,.cms-content h2,.cms-content h3,.cms-content h4 {
  font-family: var(--font-serif);
  color: var(--text);
  margin: 2rem 0 1rem;
  line-height: 1.3;
}
.cms-content h2 { font-size: 1.6rem; }
.cms-content h3 { font-size: 1.3rem; color: var(--gold); }
.cms-content p  { color: #c0c0c0; margin-bottom: 1.25rem; }
.cms-content ul,.cms-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: #c0c0c0; }
.cms-content li { margin-bottom: .4rem; }
.cms-content a  { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-border); transition: border-color .2s; }
.cms-content a:hover { border-color: var(--gold); }
.cms-content strong { color: var(--text); font-weight: 600; }
.cms-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(197,160,89,.05); color: var(--muted); font-style: italic; }
.cms-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.cms-content th,.cms-content td { padding: .75rem 1rem; border: 1px solid var(--gold-border); font-size: .9rem; }
.cms-content th { background: rgba(197,160,89,.08); color: var(--gold); font-weight: 600; text-align: left; }
.cms-content img { max-width: 100%; border-radius: 2px; margin: 1rem 0; }

/* --- CSS variables alias --- */
:root { --border: rgba(255,255,255,0.08); --text-secondary: #b0b0b0; }

/* --- Agency Signature --- */
.footer-agency {
  text-align: center;
  padding: .875rem 0 .25rem;
  margin-top: .875rem;
  border-top: 1px solid rgba(197,160,89,.07);
}
.agency-signature {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.signature-text {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(155,155,155,.28);
  font-weight: 400;
}
.tasarim-devi-3d {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(
    to bottom,
    #f5e08a 0%,
    #d4af37 22%,
    #c5a059 50%,
    #9e7f3d 72%,
    #c9a84c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(1px 1px 0 rgba(100,65,0,.85))
    drop-shadow(2px 2px 0 rgba(65,40,0,.65))
    drop-shadow(3px 3px 5px rgba(0,0,0,.55));
  transition: filter .3s ease, transform .3s ease, letter-spacing .35s ease;
}
.tasarim-devi-3d:hover {
  filter:
    drop-shadow(1px 1px 0 rgba(120,80,0,.9))
    drop-shadow(2px 2px 0 rgba(90,55,0,.75))
    drop-shadow(4px 4px 0 rgba(60,35,0,.55))
    drop-shadow(5px 5px 10px rgba(0,0,0,.65));
  transform: translate(-1px,-1px);
  letter-spacing: .32em;
}

/* ===============================================================
   RESPONSIVE -- MOBILE FIX
   =============================================================== */

/* -- Global image / SVG safety -- */
img { max-width: 100%; height: auto; }

/* -- Tablet (<= 900px) -- */
@media (max-width: 900px) {

  /* Section & content padding */
  #philosophy,
  #services,
  #expertise,
  #stats,
  #articles,
  #quotes,
  #contact    { padding: 5rem 0; }
  .cta-section { padding: 4.5rem 0; }
  .content-section { padding: 4.5rem 0; }
  .section-header { margin-bottom: 3rem; }

  /* Page hero */
  .page-hero { padding: 130px 0 60px; min-height: auto; }
  .page-hero-deco { width: 200px; height: 200px; right: 2rem; }

  /* Contact watermark -- limit font so it doesn't overflow right */
  .contact-watermark {
    font-size: clamp(4.5rem, 14vw, 8rem);
    left: -1rem;
  }

  /* Philosophy visual less tall */
  .philosophy-visual { height: 340px; }

  /* Stats */
  .stat-item { padding: 2rem 0.5rem; }
}

/* -- Large phone (<= 768px) -- */
@media (max-width: 768px) {

  /* Section padding */
  #philosophy,
  #services,
  #expertise,
  #stats,
  #articles,
  #quotes,
  #contact    { padding: 4rem 0; }
  .cta-section { padding: 3.5rem 0; }
  .content-section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* Page hero */
  .page-hero { padding: 110px 0 50px; }
  .page-hero-deco { display: none; }

  /* Philosophy */
  .philosophy-heading { margin: 1rem 0; }
  .philosophy-visual { height: 260px; }

  /* Hero slider buttons */
  .hero-side-btn { display: none; }

  /* Articles header -- stack on mobile */
  .articles-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Service page item -- icon wrap can be left out */
  .service-page-icon-wrap { display: none; }

  /* Footer bottom -- stack vertically */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-legal { gap: 1.25rem; }

  /* CTA buttons -- full-width on mobile */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline { justify-content: center; }

  /* Process items -- tighter gap */
  .process-item { gap: 1.25rem; }
  .process-num { width: 44px; font-size: 2rem; }

  /* Breadcrumb -- wrap nicely */
  .breadcrumb { flex-wrap: wrap; row-gap: 0.25rem; }
}

/* -- Small phone (<= 480px) -- */
@media (max-width: 480px) {

  /* Section padding -- tightest */
  #philosophy,
  #services,
  #expertise,
  #stats,
  #articles,
  #quotes,
  #contact    { padding: 3rem 0; }
  .cta-section { padding: 2.5rem 0; }
  .content-section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Page hero */
  .page-hero { padding: 100px 0 40px; }

  /* Philosophy visual -- hide decorative columns entirely */
  .philosophy-visual { display: none; }

  /* Expertise cards -- reduce padding on small screens */
  .expertise-card { padding: 2rem 1.5rem; }

  /* Stats -- reduce padding */
  .stat-item { padding: 1.5rem 0.25rem; }

  /* Service cards -- reduce padding */
  .service-card { padding: 2rem 1.5rem; }
  .service-num { font-size: 2.5rem; }

  /* Hero buttons -- stack */
  .hero-buttons { flex-direction: column; gap: 1rem; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  /* Mobile menu -- allow text wrap */
  .mobile-menu a { white-space: normal; text-align: center; max-width: 280px; }

  /* Feature cards -- already 1fr, just reduce padding */
  .feature-card { padding: 2rem 1.25rem; }

  /* Footer bottom -- center text */
  .footer-bottom { align-items: center; text-align: center; }
  .footer-legal { justify-content: center; gap: 1rem; }

  /* Footer brand tagline */
  .footer-brand p { max-width: 100%; }

  /* Contact watermark -- very small on tiny screens */
  .contact-watermark {
    font-size: clamp(3rem, 18vw, 5rem);
    opacity: 0.5;
  }

  /* Lang switcher -- hide on very small screens to prevent nav overflow */
  .lang-switcher { display: none !important; }

  /* Info box -- reduce padding */
  .info-box { padding: 1.5rem 1.25rem; }

  /* Page title line-height adjustment */
  .page-title { line-height: 1.1; }

  /* Agency signature -- tighten */
  .footer-agency { padding: .625rem 0 .125rem; margin-top: .625rem; }
  .tasarim-devi-3d { font-size: 9px; letter-spacing: .18em; }
}
