/* ============================================================
   DEKORATOR YAPI DEKORASYON TASARIM
   Premium Interior Architecture — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  /* Light Mode Palette */
  --c-white:       #f5f2ec;
  --c-cream:       #f5f2ec;
  --c-light-gray:  #f5f2ec;
  --c-soft-gray:   #d9d2c6;
  --c-medium-gray: #b7a996;
  --c-warm-gray:   #8c7864;
  --c-text-gray:   #4e4034;
  --c-dark-gray:   #8c7864;
  --c-charcoal:    #4e4034;
  --c-void:        #4e4034;
  
  /* Accent Colors */
  --c-gold:        #b7a996;
  --c-gold-dark:   #8c7864;
  --c-gold-light:  #d9d2c6;
  --c-bronze:      #8c7864;
  --c-accent:      #8c7864;
  --c-accent-light:#b7a996;

  --f-display:     'Inter', system-ui, sans-serif;
  --f-serif:       'Playfair Display', Georgia, serif;
  --f-body:        'DM Sans', system-ui, sans-serif;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);

  --header-h:      80px;
  --max-w:         1440px;
  --gutter:        clamp(24px, 5vw, 80px);
}

/* ── Preloader / Loading Screen ──────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--c-void);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.preloader-logo {
  display: flex;
  gap: 8px;
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-gold-dark);
  opacity: 0;
  animation: logoFadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
}
.preloader-logo img {
  max-width: min(80vw, 800px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@keyframes logoFadeIn {
  to {
    opacity: 1;
  }
}
.preloader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(-90deg);
  animation: letterDrop 0.6s var(--ease-out) forwards;
}
.preloader-letter:nth-child(1) { animation-delay: 0.1s; }
.preloader-letter:nth-child(2) { animation-delay: 0.15s; }
.preloader-letter:nth-child(3) { animation-delay: 0.2s; }
.preloader-letter:nth-child(4) { animation-delay: 0.25s; }
.preloader-letter:nth-child(5) { animation-delay: 0.3s; }
.preloader-letter:nth-child(6) { animation-delay: 0.35s; }
.preloader-letter:nth-child(7) { animation-delay: 0.4s; }
.preloader-letter:nth-child(8) { animation-delay: 0.45s; }
.preloader-letter:nth-child(9) { animation-delay: 0.5s; }

@keyframes letterDrop {
  0% {
    opacity: 0;
    transform: translateY(30px) rotateX(-90deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-5px) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.preloader-bar {
  width: 280px;
  height: 2px;
  background: var(--c-soft-gray);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.preloader-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-gold-dark), var(--c-gold));
  border-radius: 2px;
  animation: progressBar 2s ease-in-out forwards;
  box-shadow: 0 0 10px rgba(183,169,150,0.4);
}

@keyframes progressBar {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.preloader-text {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-warm-gray);
  opacity: 0;
  animation: fadeInText 0.6s ease forwards 0.8s;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  background: var(--c-white);
  color: var(--c-charcoal);
  overflow-x: hidden;
  cursor: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #3f352d;
}
::-webkit-scrollbar-thumb {
  background: var(--c-gold-light);
  border-radius: 6px;
  border: 2px solid #3f352d;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-white);
}
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--c-gold-light) #3f352d;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Custom Cursor ────────────────────────────────────────── */
.cursor-dot {
  display: none;
  position: fixed;
  width: 8px; height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
}
.cursor-ring {
  display: none;
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(140,120,100,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.4s, height 0.4s, border-color 0.3s;
}
body.hovering .cursor-dot { width: 12px; height: 12px; background: var(--c-gold-light); }
body.hovering .cursor-ring { width: 60px; height: 60px; border-color: rgba(140,120,100,0.8); }

/* ── Noise Texture Overlay ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.15;
}

/* ── Header / Navigation ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.6s var(--ease-out), border-color 0.6s, box-shadow 0.6s;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--c-soft-gray);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  backdrop-filter: blur(20px) saturate(1.2);
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-img {
  height: clamp(22px, 2.5vw, 32px);
  width: auto;
  display: block;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}
.site-header.scrolled .logo-img {
  filter: none;
}
.logo-mark {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-white);
  line-height: 1;
  transition: color 0.6s;
}
.site-header.scrolled .logo-mark {
  color: var(--c-charcoal);
}
.logo-sub {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--c-gold-light);
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.6s;
}
.site-header.scrolled .logo-sub {
  color: var(--c-gold-dark);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}
.site-nav a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-white);
  position: relative;
  transition: color 0.3s;
}
.site-header.scrolled .site-nav a {
  color: var(--c-text-gray);
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--c-gold-light);
  transition: width 0.4s var(--ease-out), background 0.3s;
}
.site-header.scrolled .site-nav a::after {
  background: var(--c-gold-dark);
}
.site-nav a:hover, .site-nav a.active { color: var(--c-gold-light); }
.site-header.scrolled .site-nav a:hover, 
.site-header.scrolled .site-nav a.active { color: var(--c-charcoal); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1010;
}
.menu-toggle span {
  display: block;
  width: 28px; height: 2px;
  background: var(--c-white);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
  transform-origin: center;
}
.site-header.scrolled .menu-toggle span {
  background: var(--c-charcoal);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vh, 36px);
  padding: calc(var(--header-h) + 28px) 24px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--f-display);
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 500;
  color: var(--c-charcoal);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--c-gold-dark); }
.mobile-nav-contact {
  max-width: 100%;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: center;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  color: var(--c-warm-gray);
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  font-weight: 500;
}
.tag::before { content: '— '; }

/* Dark sections override */
.section-featured .tag,
.section-expertise .tag,
.section-philosophy .tag,
.section-projects-full .tag {
  color: var(--c-gold);
}
.rule {
  width: 40px; height: 2px;
  background: var(--c-gold-dark);
  display: block;
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ── IMAGE PLACEHOLDERS ───────────────────────────────────── */
.img-placeholder {
  background: var(--c-light-gray);
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(183,169,150,0.12) 0%, transparent 60%);
}

/* Unsplash-based interior images via URL (CDN - no auth needed) */
/* We'll use CSS background-image for consistent sizing */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--c-void);
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.06);
  transition: transform 8s var(--ease-out), opacity 1.2s;
}
.hero-bg img.loaded { transform: scale(1.0); opacity: 0.55; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(78,64,52,0.78) 0%,
    rgba(78,64,52,0.34) 50%,
    rgba(78,64,52,0.12) 100%
  );
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: var(--header-h) 0 0;
  z-index: 2;
  padding: 0 var(--gutter);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero-content > :first-child {
  grid-column: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--c-white);
  max-width: 900px;
}
.hero-title em {
  font-style: italic;
  color: var(--c-gold-light);
}
.hero-desc {
  grid-column: 2;
  font-size: clamp(18px, 1.45vw, 22px);
  color: var(--c-soft-gray);
  line-height: 1.75;
  max-width: 360px;
  font-weight: 500;
}
.hero-right {
  grid-column: 3;
  align-self: center;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
.hero-scroll {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-warm-gray);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  display: block;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}
.hero-year {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--c-warm-gray);
  text-transform: uppercase;
}
.hero .btn-primary {
  border-color: var(--c-white);
  color: var(--c-white);
  background: rgba(78, 64, 52, 0.34);
  backdrop-filter: blur(6px);
}
.hero .btn-primary::before {
  background: var(--c-white);
}
.hero .btn-primary:hover {
  color: var(--c-charcoal);
}
.hero .btn-arrow,
.hero .hero-scroll,
.hero .hero-year {
  color: var(--c-white);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(78, 64, 52, 0.65);
}
.hero .hero-scroll::after {
  background: linear-gradient(to bottom, var(--c-white), transparent);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 32px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.btn-primary {
  background: transparent;
  border: 2px solid var(--c-gold-dark);
  color: var(--c-gold-dark);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold-dark);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}
.btn-primary:hover { color: var(--c-white); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-arrow {
  background: none;
  border: none;
  padding: 0;
  color: var(--c-text-gray);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s, gap 0.3s;
}
.btn-arrow svg { transition: transform 0.4s var(--ease-out); }
.btn-arrow:hover { color: var(--c-gold-dark); gap: 20px; }
.btn-arrow:hover svg { transform: translateX(6px); }

/* ── Section: Brand Intro ─────────────────────────────────── */
.section-brand-intro {
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--c-cream);
  position: relative;
}
.section-brand-intro .section-title {
  color: var(--c-charcoal);
}
.section-brand-intro .section-title em {
  color: var(--c-gold-dark);
}
.section-brand-intro .tag {
  color: var(--c-gold-dark);
}
.brand-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 0;
  align-items: center;
}
.brand-intro-text {
  padding-right: clamp(40px, 6vw, 100px);
  border-right: 1px solid var(--c-medium-gray);
}
.brand-intro-heading {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--c-charcoal);
  margin: 20px 0 32px;
}
.brand-intro-heading em { font-style: italic; color: var(--c-gold-dark); }
.brand-intro-body {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--c-charcoal);
  font-weight: 500;
}
.brand-intro-stats {
  padding-left: clamp(56px, 6vw, 96px);
  display: grid;
  grid-template-columns: max-content minmax(220px, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: end;
}
.brand-intro-stats-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.85;
  color: var(--c-charcoal);
}
.stat-num sup { font-size: 0.4em; vertical-align: top; margin-top: 0.3em; color: var(--c-gold-dark); }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-warm-gray);
}
.brand-intro-stats-copy {
  max-width: 420px;
  color: var(--c-charcoal);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
  font-weight: 400;
}
.brand-intro-stats-copy p + p {
  margin-top: 18px;
}
.stat-divider { width: 1px; height: 1px; background: var(--c-medium-gray); }

/* ── Section: Featured Projects ──────────────────────────── */
.section-featured {
  padding: clamp(80px, 10vh, 140px) 0;
  background: var(--c-void);
  position: relative;
  overflow: hidden;
}
.section-featured::before {
  content: 'PROJELER';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--f-display);
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(183,169,150,0.12);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 7vh, 80px);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  color: var(--c-charcoal);
  line-height: 1.1;
  margin-top: 16px;
}
.section-title em { font-style: italic; color: var(--c-gold-dark); }

/* Dark sections override */
.section-featured .section-title,
.section-expertise .section-title,
.section-philosophy .section-title,
.section-projects-full .section-title {
  color: var(--c-white);
}
.section-featured .section-title em,
.section-expertise .section-title em,
.section-philosophy .section-title em,
.section-projects-full .section-title em {
  color: var(--c-gold-light);
}
.section-featured .btn-arrow {
  color: var(--c-white);
}
.section-featured .btn-arrow:hover {
  color: var(--c-gold-light);
}

/* Projeler sayfası - Portfolio intro section (Her mekânda) */
section[style*="background:var(--c-void)"] .section-title,
section[style*="background:var(--c-void)"] .tag,
section[style*="background:var(--c-void)"] p {
  color: var(--c-white) !important;
}
section[style*="background:var(--c-void)"] .section-title em {
  color: var(--c-gold-light);
}

/* Projeler sayfası - CTA section "Projenizi bize anlatın" metni beyaz */
section[style*="background:var(--c-charcoal)"] h2 {
  color: var(--c-white) !important;
}

/* Hakkımızda sayfası - Değerlerimiz başlığı beyaz */
section[aria-label="Değerlerimiz"] .section-title {
  color: var(--c-white);
}
section[aria-label="Değerlerimiz"] .section-title em {
  color: var(--c-gold-light);
}

/* Hakkımızda sayfası - Değerlerimiz kutu içerikleri */
section[aria-label="Değerlerimiz"] .expertise-card {
  transition: background 0.6s ease, transform 0.6s ease, border-color 0.6s ease !important;
}
section[aria-label="Değerlerimiz"] .expertise-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-gold) !important;
  background: rgba(68, 64, 60, 0.6) !important;
}
section[aria-label="Değerlerimiz"] .expertise-card div {
  color: var(--c-gold-light) !important;
}
section[aria-label="Değerlerimiz"] .expertise-card p {
  color: var(--c-soft-gray) !important;
}

/* Project Showcase — Alternating large/small */
.projects-showcase {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.project-band {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project-band-inner {
  display: grid;
  height: clamp(360px, 45vw, 600px);
}
.project-band.layout-left .project-band-inner {
  grid-template-columns: 1.4fr 1fr;
}
.project-band.layout-right .project-band-inner {
  grid-template-columns: 1fr 1.4fr;
}
.project-img {
  position: relative;
  overflow: hidden;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
  transform: scale(1.04);
}
.project-band:hover .project-img img { transform: scale(1.0); }
.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78,64,52,0.16) 0%, rgba(78,64,52,0.04) 100%);
}
.project-info {
  background: var(--c-charcoal);
  padding: clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.project-num {
  position: absolute;
  top: clamp(24px, 3vw, 40px);
  right: clamp(24px, 3vw, 40px);
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: rgba(183,169,150,0.18);
  line-height: 1;
}
.project-type {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.project-name {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.project-excerpt {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: var(--c-soft-gray);
  font-weight: 400;
  max-width: 320px;
  margin-bottom: 32px;
}
.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 2px solid rgba(183,169,150,0.5);
  padding-bottom: 4px;
  transition: gap 0.3s, border-color 0.3s;
  font-weight: 500;
}
.project-cta:hover { gap: 18px; border-color: var(--c-gold); }

.section-design-detail {
  padding: clamp(80px, 12vh, 150px) 0;
  background: var(--c-white);
}
.design-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.design-detail-media {
  height: clamp(420px, 52vw, 680px);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(78, 64, 52, 0.12);
}
.design-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.design-detail-content .section-title {
  margin: 16px 0 28px;
  color: var(--c-charcoal);
}
.design-detail-text {
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.75;
  color: var(--c-text-gray);
  font-weight: 500;
}
.section-related-projects {
  padding: clamp(80px, 12vh, 150px) 0;
  background: #4E4034;
}
.section-related-projects .section-title,
.section-related-projects .tag {
  color: var(--c-white);
}
.section-related-projects .section-title em {
  color: var(--c-gold-light);
}
.section-related-projects .btn-arrow {
  color: var(--c-white);
}
.related-projects-header {
  margin-bottom: clamp(40px, 6vh, 72px);
}
.related-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
}
.related-project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(245, 242, 236, 0.06);
  border: 1px solid rgba(217, 210, 198, 0.18);
  color: var(--c-white);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out), background 0.45s var(--ease-out);
}
.related-project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 210, 198, 0.42);
  background: rgba(245, 242, 236, 0.1);
}
.related-project-img {
  height: clamp(220px, 22vw, 320px);
  overflow: hidden;
}
.related-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease-out);
}
.related-project-card:hover .related-project-img img {
  transform: scale(1);
}
.related-project-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.related-project-tag {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  font-weight: 600;
}
.related-project-body h3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.15;
}
.related-project-body p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--c-soft-gray);
  font-weight: 500;
}
.related-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 10px;
  font-size: 13px;
  color: var(--c-gold-light);
  font-weight: 500;
}
.section-design-areas-list {
  padding: clamp(80px, 12vh, 150px) 0;
  background: var(--c-white);
}
.design-areas-list-header {
  max-width: 760px;
  margin-bottom: clamp(48px, 8vh, 92px);
}
.design-areas-list-header .section-title {
  margin: 16px 0 0;
  color: var(--c-charcoal);
}
.design-area-category + .design-area-category {
  margin-top: clamp(64px, 9vh, 110px);
}
.design-area-category-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  color: var(--c-charcoal);
  margin-bottom: clamp(28px, 4vh, 44px);
}
.design-area-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}
.design-area-card {
  display: block;
  background: var(--c-cream);
  color: inherit;
  overflow: hidden;
  border: 1px solid rgba(140, 120, 100, 0.18);
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.design-area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140, 120, 100, 0.42);
}
.design-area-card-img {
  height: clamp(220px, 22vw, 320px);
  overflow: hidden;
}
.design-area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease-out);
}
.design-area-card:hover .design-area-card-img img {
  transform: scale(1);
}
.design-area-card-body {
  padding: clamp(24px, 3vw, 36px);
}
.design-area-card-kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 14px;
  font-weight: 600;
}
.design-area-card h4 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  color: var(--c-charcoal);
  line-height: 1.18;
  margin-bottom: 14px;
}
.design-area-card p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--c-text-gray);
  font-weight: 500;
}

/* ── Section: Expertise Areas ─────────────────────────────── */
.section-expertise {
  padding: clamp(96px, 14vh, 180px) 0;
  background: #d9d2c6;
}
.services-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
  color: var(--c-void);
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0 0 clamp(56px, 8vh, 92px);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 88px);
  margin-top: 0;
  border: 0;
}
.section-expertise .expertise-card {
  padding: 0;
  background: transparent;
  text-align: center;
  overflow: visible;
  transition: transform 0.4s ease;
}
.section-expertise .expertise-card::before {
  display: none;
}
.section-expertise .expertise-card:hover {
  background: transparent;
  transform: translateY(-4px);
}
.section-expertise .expertise-icon {
  width: clamp(52px, 5vw, 70px);
  height: clamp(52px, 5vw, 70px);
  margin: 0 auto 32px;
  color: var(--c-bronze);
  opacity: 1;
}
.section-expertise .expertise-name {
  color: var(--c-void);
  font-family: var(--f-display);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 18px;
}
.section-expertise .expertise-desc {
  max-width: 390px;
  margin: 0 auto;
  color: var(--c-text-gray);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.8;
  font-weight: 500;
}
.expertise-card {
  padding: clamp(32px, 4vw, 56px);
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
  transition: background 0.6s ease, transform 0.6s ease;
}
.expertise-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-gold);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out);
  transform-origin: left;
}
.expertise-card:hover { background: var(--c-dark-gray); transform: translateY(-2px); }
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
  opacity: 0.7;
}
.expertise-name {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  color: var(--c-gold-light);
  margin-bottom: 16px;
  line-height: 1.2;
}
.expertise-desc {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--c-soft-gray);
  font-weight: 400;
}

/* ── Section: Approach / Process ─────────────────────────── */
.section-approach {
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--c-white);
  color: var(--c-charcoal);
  position: relative;
  overflow: hidden;
}
.section-approach .section-title {
  color: var(--c-charcoal);
}
.section-approach .section-title em {
  color: var(--c-gold-dark);
}
.section-approach .tag {
  color: var(--c-gold-dark);
}
.approach-bg-text {
  position: absolute;
  left: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(100px, 15vw, 200px);
  color: rgba(183,169,150,0.12);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.approach-visual {
  position: relative;
  min-height: clamp(520px, 56vw, 720px);
}
.approach-image-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.approach-step-image {
  position: absolute;
  width: 72%;
  height: 24%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1);
  box-shadow: 0 22px 54px rgba(78, 64, 52, 0.16);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}
.approach-step-image:nth-child(1) {
  top: 5%;
  left: 0;
}
.approach-step-image:nth-child(2) {
  top: 27%;
  right: 0;
}
.approach-step-image:nth-child(3) {
  top: 51%;
  left: 8%;
}
.approach-step-image:nth-child(4) {
  right: 6%;
  bottom: 2%;
}
.approach-step-image.active {
  opacity: 1;
  filter: saturate(1);
  transform: none;
  box-shadow: 0 22px 54px rgba(78, 64, 52, 0.16);
}
.approach-text .section-title { color: var(--c-charcoal); }
.approach-text .tag { color: var(--c-gold-dark); }
.approach-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.approach-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-soft-gray);
  align-items: start;
}
.approach-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--c-gold-dark);
  line-height: 1;
  opacity: 0.8;
}
.step-label {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-charcoal);
  margin-bottom: 8px;
}
.approach-step.active .step-num,
.approach-step.active .step-label {
  color: var(--c-gold-dark);
}
.step-desc { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.75; color: var(--c-text-gray); font-weight: 400; }
.approach-step:first-child .step-desc {
  padding-right: 18px;
}
.approach-layout {
  position: relative;
  z-index: 1;
}
.approach-heading {
  max-width: 680px;
  margin: 0 0 clamp(48px, 7vh, 84px) clamp(0px, 8vw, 120px);
}
.approach-heading .section-title {
  margin-top: 16px;
}
.approach-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  align-items: start;
}
.approach-flow::before {
  content: '';
  position: absolute;
  left: clamp(40px, 8vw, 120px);
  right: clamp(40px, 8vw, 120px);
  top: clamp(150px, 13vw, 190px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,120,100,0.32), transparent);
  pointer-events: none;
}
.approach-flow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.approach-flow-item-bottom {
  padding-top: clamp(144px, 13vw, 188px);
}
.approach-flow-copy {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-height: clamp(132px, 12vw, 168px);
  position: relative;
  z-index: 2;
}
.approach-flow-copy::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  width: min(64%, 240px);
  height: 1px;
  background: rgba(140,120,100,0.22);
}
.approach-flow-item-bottom .approach-flow-copy {
  margin-top: 22px;
  min-height: 0;
}
.approach-flow-item-bottom .approach-flow-copy::after {
  display: none;
}
.approach-flow-image {
  position: relative;
  height: clamp(180px, 18vw, 260px);
  overflow: hidden;
  background: var(--c-soft-gray);
  box-shadow: 0 18px 48px rgba(78, 64, 52, 0.13);
}
.approach-flow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.7s var(--ease-out);
}
.approach-flow-item:hover .approach-flow-image img {
  transform: scale(1);
}
.approach-flow .step-num {
  font-size: clamp(30px, 3vw, 42px);
}
.approach-flow .step-label {
  font-size: clamp(17px, 1.4vw, 21px);
}
.approach-flow .step-desc {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
}

/* ── Section: Visual Band (CTA) ──────────────────────────── */
.section-visual-cta {
  position: relative;
  height: clamp(320px, 40vh, 500px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--c-void);
}
.visual-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.visual-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(78,64,52,0.72) 0%, rgba(78,64,52,0.3) 100%);
}
.visual-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 var(--gutter);
}
.visual-cta-content h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 32px;
}
.visual-cta-content h2 em { font-style: italic; color: var(--c-gold-light); }
.visual-cta-content p {
  color: var(--c-soft-gray);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
}
.projects-closing-cta {
  height: auto;
  min-height: clamp(440px, 54vh, 620px);
  padding: clamp(72px, 9vh, 110px) 0;
}
.about-projects-cta {
  height: auto;
  min-height: clamp(440px, 54vh, 620px);
  padding: clamp(72px, 9vh, 110px) 0;
}
.about-projects-cta .visual-cta-bg img {
  position: absolute;
  top: -48px;
  left: 0;
  width: 100%;
  height: calc(100% + 96px);
}
.projects-closing-cta .visual-cta-content {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.about-projects-cta .visual-cta-content {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.projects-closing-cta .visual-cta-content h2 {
  margin-bottom: 32px;
}
.projects-closing-cta .tag {
  color: var(--c-white);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(78, 64, 52, 0.75);
}
.projects-closing-cta .btn-primary {
  border-color: var(--c-white);
  color: var(--c-white);
  background: rgba(78, 64, 52, 0.36);
  backdrop-filter: blur(6px);
}
.about-projects-cta .btn-primary {
  border-color: var(--c-white);
  color: var(--c-white);
  background: rgba(78, 64, 52, 0.36);
  backdrop-filter: blur(6px);
}
.projects-closing-cta .btn-primary::before {
  background: var(--c-white);
}
.about-projects-cta .btn-primary::before {
  background: var(--c-white);
}
.projects-closing-cta .btn-primary:hover {
  color: var(--c-charcoal);
}
.about-projects-cta .btn-primary:hover {
  color: var(--c-charcoal);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #4E4034;
  border-top: 1px solid var(--c-dark-gray);
  padding: clamp(60px, 8vh, 100px) 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--c-dark-gray);
  margin-bottom: 40px;
}
.footer-brand .logo-mark { font-size: 22px; margin-bottom: 4px; color: var(--c-white); }
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  max-width: 205px;
  height: auto;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-soft-gray);
  margin-top: 20px;
  max-width: 260px;
}
.footer-col-title {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 15px;
  color: var(--c-soft-gray);
  transition: color 0.3s;
  font-weight: 500;
}
.footer-links a:hover { color: var(--c-white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { font-size: 15px; color: var(--c-soft-gray); font-weight: 500; line-height: 1.7; }
.footer-contact-item a { transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--c-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 14px; color: var(--c-soft-gray); letter-spacing: 0.04em; font-weight: 500; }
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--c-soft-gray);
  transition: color 0.3s;
  font-weight: 600;
}
.footer-social a svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(217,210,198,0.35);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s;
}
.footer-social-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.2;
}
.footer-social-text span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-medium-gray);
}
.footer-social-text strong {
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--c-soft-gray);
}
.footer-social a:hover { color: var(--c-white); }
.footer-social a:hover svg {
  background: rgba(217,210,198,0.08);
  border-color: rgba(245,242,236,0.7);
}
.footer-social a:hover .footer-social-text strong { color: var(--c-white); }

/* ── Page Banner (inner pages) ───────────────────────────── */
.page-banner {
  position: relative;
  height: clamp(360px, 50vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--header-h);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--c-void);
}
.page-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78,64,52,0.76) 0%, rgba(78,64,52,0.24) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(48px, 7vh, 80px);
  width: 100%;
}
.page-banner-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  color: var(--c-white);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.page-banner-title em { font-style: italic; color: var(--c-gold-light); }

/* ── HAKKIMIZDA page ─────────────────────────────────────── */
.section-story {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--c-white);
}
.section-story .section-title {
  color: var(--c-charcoal);
  margin: 16px 0 32px;
}
.section-story .section-title em {
  color: var(--c-gold-dark);
}
.section-story .tag {
  color: var(--c-gold-dark);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-img-wrap {
  position: relative;
  height: clamp(480px, 60vw, 700px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-img-badge {
  position: absolute;
  bottom: 32px; right: -24px;
  background: var(--c-gold-dark);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.story-img-badge .badge-num {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1;
}
.story-img-badge .badge-text {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.story-text .section-title { margin: 16px 0 32px; }
.story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story-body p { font-size: clamp(16px, 1.2vw, 18px); line-height: 1.75; color: var(--c-text-gray); font-weight: 400; }
.story-body p.lead {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--c-charcoal);
  line-height: 1.6;
}

/* Philosophy */
.section-philosophy {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--c-void);
  position: relative;
  overflow: hidden;
}
.philosophy-quote {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  font-style: italic;
  color: var(--c-white);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 var(--gutter);
}
.philosophy-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: calc(var(--gutter) - 20px);
  font-family: var(--f-display);
  font-size: 120px;
  color: var(--c-gold);
  opacity: 0.3;
  line-height: 1;
}
.philosophy-attr {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}

/* Spaces section */
.section-spaces {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--c-white);
}
.section-spaces .section-title {
  color: var(--c-charcoal);
}
.section-spaces .section-title em {
  color: var(--c-gold-dark);
}
.section-spaces .tag {
  color: var(--c-gold-dark);
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: clamp(48px, 7vh, 80px);
}
.space-item {
  position: relative;
  height: clamp(240px, 30vw, 400px);
  overflow: hidden;
}
.space-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  transform: scale(1.04);
}
.space-item:hover img { transform: scale(1.0); }
.space-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78,64,52,0.72) 0%, rgba(78,64,52,0.16) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.space-name {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--c-white);
}

/* ── PROJELER page ───────────────────────────────────────── */
.section-projects-full {
  padding: clamp(80px, 12vh, 140px) 0;
  background: #4E4034;
}
.project-detail-page {
  padding-top: calc(var(--header-h) + clamp(56px, 8vh, 96px));
}
.project-detail-page .project-showcase {
  min-height: auto;
  align-items: start;
}
.project-detail-gallery-panel {
  align-self: start;
  margin-top: clamp(42px, 5.2vw, 76px);
  background: transparent;
  overflow: hidden;
}
.project-detail-page .project-showcase-img {
  height: clamp(340px, 42vw, 540px);
  background: transparent;
}
.project-detail-page .project-showcase-img img {
  object-fit: cover;
  transform: none;
}
.project-detail-page .project-full-item:hover .project-showcase-img img {
  transform: none;
}
.project-detail-back {
  color: var(--c-soft-gray);
  margin-bottom: clamp(28px, 4vh, 48px);
}
.project-detail-note {
  max-width: 900px;
  margin: clamp(48px, 7vh, 80px) auto 0;
  text-align: center;
}
.project-overview-section {
  padding: clamp(72px, 10vh, 120px) 0;
  background: var(--c-cream);
}
.project-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.project-preview-card {
  display: grid;
  grid-template-columns: minmax(180px, 42%) 1fr;
  min-height: 260px;
  color: inherit;
  text-decoration: none;
  background: var(--c-white);
  border: 1px solid rgba(140,120,100,0.18);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s ease, box-shadow 0.45s ease;
}
.project-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140,120,100,0.42);
  box-shadow: 0 24px 70px rgba(78,64,52,0.12);
}
.project-preview-img {
  overflow: hidden;
  background: var(--c-soft-gray);
}
.project-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease-out);
}
.project-preview-card:hover .project-preview-img img {
  transform: scale(1);
}
.project-preview-body {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-preview-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bronze);
  font-weight: 700;
  margin-bottom: 18px;
}
.project-preview-body h3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.12;
  color: var(--c-void);
  font-weight: 600;
  margin-bottom: 14px;
}
.project-preview-body p {
  color: var(--c-text-gray);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 22px;
}
.project-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--c-warm-gray);
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
}
.project-preview-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(140,120,100,0.35);
  color: var(--c-void);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: gap 0.3s ease, color 0.3s ease;
}
.project-full-item {
  position: relative;
  margin-bottom: clamp(72px, 10vh, 120px);
  padding: 0;
  background: transparent;
}
.project-full-item:last-child { margin-bottom: 0; }
.project-full-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(clamp(72px, 10vh, 120px) / -2);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 210, 198, 0.55), transparent);
}
.project-full-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: calc((clamp(72px, 10vh, 120px) / -2) - 4px);
  width: 9px;
  height: 9px;
  border: 1px solid rgba(217, 210, 198, 0.65);
  background: #4E4034;
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: clamp(480px, 60vw, 700px);
}
.project-showcase.reverse { direction: rtl; }
.project-showcase.reverse > * { direction: ltr; }

.project-showcase-img {
  position: relative;
  overflow: hidden;
}
button.project-showcase-img {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.project-showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.project-full-item:hover .project-showcase-img img { transform: scale(1.03); }

.project-showcase-content {
  background: #4E4034;
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.project-showcase-num {
  position: absolute;
  top: 40px; right: 48px;
  font-family: var(--f-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(183,169,150,0.16);
  line-height: 1;
}
.project-showcase-tag { margin-bottom: 16px; }
.project-showcase-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.project-showcase-location {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-warm-gray);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-showcase-location::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--c-gold);
}
.project-showcase-desc {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--c-soft-gray);
  font-weight: 400;
  margin-bottom: 32px;
}
.project-showcase-meta {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-dark-gray);
}
.meta-item { display: flex; flex-direction: column; gap: 6px; }
.meta-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-warm-gray);
  font-weight: 500;
}
.meta-value { font-size: 14px; color: var(--c-white); font-weight: 400; }

/* Gallery strip below each project */
.project-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
  height: clamp(180px, 22vw, 300px);
}
.project-gallery-strip .strip-img {
  overflow: hidden;
  position: relative;
}
.project-gallery-strip .strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  transform: scale(1.04);
}
.project-gallery-strip .strip-img:hover img { transform: scale(1.0); }

.project-gallery-slider {
  margin-top: 2px;
  overflow: hidden;
  position: relative;
}
.project-gallery-track {
  display: flex;
  gap: 2px;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}
.project-gallery-slide {
  flex: 0 0 calc((100% - 4px) / 3);
  height: clamp(180px, 22vw, 300px);
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--c-charcoal);
  cursor: pointer;
}
.project-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease-out), opacity 0.3s ease;
}
.project-gallery-slide:hover img {
  transform: scale(1);
}
.project-detail-gallery-panel .project-gallery-slider {
  margin-top: 8px;
}
.project-detail-gallery-panel .project-gallery-slide {
  height: clamp(132px, 11.5vw, 178px);
}
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  background: rgba(20,16,13,0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.project-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.project-lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}
.project-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: clamp(8px, 1.8vw, 22px);
  transform: translateX(-50%);
  min-width: 58px;
  padding: 8px 14px;
  border: 1px solid rgba(245,242,236,0.36);
  background: rgba(78,64,52,0.62);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  z-index: 1;
}
.project-lightbox-close,
.project-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(245,242,236,0.45);
  background: rgba(78,64,52,0.55);
  color: var(--c-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.project-lightbox-close:hover,
.project-lightbox-nav:hover {
  background: rgba(78,64,52,0.82);
  border-color: rgba(245,242,236,0.78);
}
.project-lightbox-close {
  top: clamp(18px, 3vw, 36px);
  right: clamp(18px, 3vw, 36px);
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}
.project-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 46px;
  line-height: 1;
}
.project-lightbox-prev { left: clamp(18px, 3vw, 36px); }
.project-lightbox-next { right: clamp(18px, 3vw, 36px); }

/* ── İLETİŞİM page ───────────────────────────────────────── */
.section-contact {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--c-cream);
}
.section-contact .section-title {
  color: var(--c-charcoal);
}
.section-contact .section-title em {
  color: var(--c-gold-dark);
}
.section-contact .tag {
  color: var(--c-gold-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 48px; }
.contact-intro .section-title { margin: 16px 0 24px; }
.contact-intro-body {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--c-text-gray);
  font-weight: 400;
}
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 8px; }
.contact-detail-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  font-weight: 500;
}
.contact-detail-value {
  font-size: clamp(16px, 1.25vw, 18px);
  color: var(--c-charcoal);
  font-weight: 400;
  line-height: 1.7;
}
.contact-detail-value a { transition: color 0.3s; }
.contact-detail-value a:hover { color: var(--c-gold-dark); }

/* İletişim sayfası - Closing band (koyu arkaplan) telefon numaraları beyaz */
section[style*="background:var(--c-charcoal)"] .contact-detail-value,
section[style*="background:var(--c-charcoal)"] div[style*="color:var(--c-ivory)"],
section[style*="background:var(--c-charcoal)"] div[style*="color:var(--c-taupe)"] {
  color: var(--c-white) !important;
}

/* Projeler sayfası - CTA section "Birlikte Çalışalım" başlığı beyaz */
section[style*="background:var(--c-charcoal)"] h2,
section[style*="background:var(--c-charcoal)"] .tag {
  color: var(--c-white);
}
section[style*="background:var(--c-charcoal)"] h2 em {
  color: var(--c-gold-light);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--c-white);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 2px solid var(--c-gold-dark);
  border-left: 2px solid var(--c-gold-dark);
}
.contact-form-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--c-gold-dark);
  border-right: 2px solid var(--c-gold-dark);
}
.form-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--c-charcoal);
  margin-bottom: 40px;
}
.form-group { margin-bottom: 28px; position: relative; }
.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-warm-gray);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--c-soft-gray);
  padding: 10px 0;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-charcoal);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus { border-bottom-color: var(--c-gold-dark); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--c-warm-gray); }
.form-textarea { resize: vertical; min-height: 120px; }rea { resize: none; height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.btn-submit {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(140,120,100,0.45);
  padding: 18px;
  color: var(--c-gold-light);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--f-body);
  transition: background 0.4s, color 0.4s;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.btn-submit:hover { color: var(--c-void); }
.btn-submit:hover::before { transform: translateY(0); }
.btn-submit span { position: relative; z-index: 1; }

/* Map Container with Overlay */
.contact-map-container {
  position: relative;
  overflow: hidden;
}
.contact-map-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250, 250, 249, 0.15) 0%, transparent 30%, transparent 70%, rgba(250, 250, 249, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Page transition ─────────────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--c-void);
  z-index: 9990;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}
.page-transition.active { transform: translateY(0); }
.page-transition.exit { transform: translateY(-100%); }

/* ── Scroll to Top Button ────────────────────────────────── */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--c-gold-dark);
  border: none;
  border-radius: 50%;
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.scroll-to-top:active {
  transform: translateY(-2px);
}
.fixed-call-button {
  position: fixed;
  left: 40px;
  bottom: 40px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--c-gold-dark);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 12px 36px rgba(30,24,20,0.24);
  border: 1px solid rgba(217,210,198,0.34);
  transition: transform 0.35s var(--ease-out), background 0.35s ease, box-shadow 0.35s ease;
}
.fixed-call-button:hover {
  background: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(30,24,20,0.3);
}
.fixed-call-button svg {
  position: relative;
  z-index: 1;
}
.fixed-call-pulse {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(183,169,150,0.55);
  animation: callPulse 2.2s ease-out infinite;
}
@keyframes callPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.78);
  }
  70% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 45px;
    height: 45px;
  }
  .fixed-call-button {
    left: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
  }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .brand-intro-grid,
  .approach-grid,
  .story-grid,
  .design-detail-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .brand-intro-text { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(140,120,100,0.18); padding-bottom: 48px; }
  .brand-intro-stats { padding-left: 0; grid-template-columns: max-content minmax(260px, 1fr); padding-top: 48px; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .design-area-card-grid { grid-template-columns: 1fr 1fr; }
  .approach-heading { margin-left: 0; }
  .approach-visual { min-height: clamp(480px, 70vw, 620px); }
  .design-detail-media { height: clamp(320px, 58vw, 520px); }
  .story-img-badge { right: 0; }
  .project-showcase { grid-template-columns: 1fr; min-height: auto; }
  .project-showcase.reverse { direction: ltr; }
  .project-showcase-img { height: clamp(300px, 50vw, 500px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: none; }
  .mobile-nav.open { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-desc { grid-column: 1; }
  .hero-right { display: none; }
  .brand-intro-stats { grid-template-columns: 1fr; }
  .brand-intro-stats-list { flex-direction: row; flex-wrap: wrap; }
  .project-band.layout-left .project-band-inner,
  .project-band.layout-right .project-band-inner { grid-template-columns: 1fr; height: auto; }
  .project-band .project-img { order: 1; }
  .project-band .project-info { order: 2; }
  .project-info { min-height: 320px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .design-area-card-grid { grid-template-columns: 1fr; }
  .related-projects-grid { grid-template-columns: 1fr; }
  .project-overview-grid { grid-template-columns: 1fr; }
  .project-preview-card { grid-template-columns: 1fr; }
  .project-preview-img { height: 260px; }
  .approach-flow {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .approach-flow::before,
  .approach-flow-copy::after {
    display: none;
  }
  .approach-flow-item,
  .approach-flow-item-bottom {
    padding-top: 0;
  }
  .approach-flow-copy {
    order: 1;
    min-height: 0;
  }
  .approach-flow-image {
    order: 2;
    height: clamp(220px, 58vw, 340px);
    margin-top: 18px;
  }
  .approach-visual { min-height: 0; }
  .approach-image-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-height: 0;
  }
  .approach-step-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(150px, 32vw, 220px);
    transform: none;
  }
  .approach-step-image.active {
    transform: translateY(-4px);
  }
  .spaces-grid { grid-template-columns: 1fr; }
  .project-gallery-strip { grid-template-columns: 1fr 1fr; }
  .project-gallery-strip .strip-img:nth-child(3) { display: none; }
  .project-gallery-slide {
    flex-basis: 100%;
    height: clamp(240px, 68vw, 360px);
  }
  .project-detail-page .project-showcase-img {
    height: clamp(320px, 70vw, 480px);
  }
  .project-lightbox-nav {
    width: 42px;
    height: 54px;
    font-size: 38px;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
  .project-showcase-meta { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  :root { --header-h: 64px; }
  .hero-title { font-size: clamp(40px, 12vw, 60px); }
  .project-band-inner { height: auto; }
  .mobile-nav { gap: 22px; padding-left: 18px; padding-right: 18px; }
  .mobile-nav a { font-size: clamp(24px, 7.5vw, 32px); }
}
