/* ============================================================
   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:       #ffffff;
  --c-cream:       #fafaf9;
  --c-light-gray:  #f5f5f4;
  --c-soft-gray:   #e7e5e4;
  --c-medium-gray: #d6d3d1;
  --c-warm-gray:   #a8a29e;
  --c-text-gray:   #57534e;
  --c-dark-gray:   #44403c;
  --c-charcoal:    #292524;
  --c-void:        #1c1917;
  
  /* Accent Colors */
  --c-gold:        #d4a574;
  --c-gold-dark:   #b8966a;
  --c-gold-light:  #e8c4a0;
  --c-bronze:      #8b6f47;
  --c-accent:      #0891b2;
  --c-accent-light:#06b6d4;

  --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(212,165,116,0.4);
}

@keyframes progressBar {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.preloader-text {
  font-size: 11px;
  letter-spacing: 0.35em;
  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: 16px; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  background: var(--c-white);
  color: var(--c-charcoal);
  overflow-x: hidden;
  cursor: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--c-charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--c-gold-dark);
  border-radius: 6px;
  border: 2px solid var(--c-charcoal);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-gold);
}
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--c-gold-dark) var(--c-charcoal);
}

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(184,150,106,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(184,150,106,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(28px, 3.5vw, 40px);
  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: 9px;
  letter-spacing: 0.35em;
  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: 11px;
  letter-spacing: 0.28em;
  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: 48px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.mobile-nav.open { opacity: 1; }
.mobile-nav a {
  font-family: var(--f-display);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 500;
  color: var(--c-charcoal);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--c-gold-dark); }
.mobile-nav-contact {
  font-size: 11px;
  letter-spacing: 0.3em;
  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: 9px;
  letter-spacing: 0.4em;
  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(212,165,116,0.08) 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;
  display: flex;
  align-items: flex-end;
  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(28,25,23,0.95) 0%,
    rgba(28,25,23,0.4) 50%,
    rgba(28,25,23,0.15) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 40px;
}
.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 {
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--c-soft-gray);
  line-height: 1.8;
  max-width: 360px;
  font-weight: 300;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 8px;
}
.hero-scroll {
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.35em;
  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: 11px;
  letter-spacing: 0.3em;
  color: var(--c-warm-gray);
  text-transform: uppercase;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  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: 11px;
  letter-spacing: 0.25em;
  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: 1fr 1fr;
  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(14px, 1.1vw, 16px);
  line-height: 1.9;
  color: var(--c-text-gray);
  font-weight: 300;
}
.brand-intro-stats {
  padding-left: clamp(40px, 6vw, 100px);
  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: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-warm-gray);
}
.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(212,165,116,0.08);
  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);
}

/* 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(28,25,23,0.2) 0%, rgba(28,25,23,0.05) 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(212,165,116,0.15);
  line-height: 1;
}
.project-type {
  font-size: 9px;
  letter-spacing: 0.4em;
  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: 13px;
  line-height: 1.8;
  color: var(--c-soft-gray);
  font-weight: 300;
  max-width: 320px;
  margin-bottom: 32px;
}
.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 2px solid rgba(212,165,116,0.4);
  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: Expertise Areas ─────────────────────────────── */
.section-expertise {
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--c-void);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 7vh, 80px);
  border: 1px solid var(--c-dark-gray);
}
.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: 13px;
  line-height: 1.8;
  color: var(--c-soft-gray);
  font-weight: 300;
}

/* ── 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(212,165,116,0.08);
  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;
  height: clamp(400px, 55vw, 700px);
}
.approach-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.approach-img-main img { width: 100%; height: 100%; object-fit: cover; }
.approach-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 50%;
  overflow: hidden;
  border: 6px solid var(--c-white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.approach-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.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;
}
.step-desc { font-size: 13px; line-height: 1.8; color: var(--c-text-gray); font-weight: 300; }

/* ── 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(28,25,23,0.85) 0%, rgba(28,25,23,0.4) 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;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--c-void);
  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: 180px;
  height: auto;
}
.footer-tagline {
  font-size: 12px;
  line-height: 1.8;
  color: var(--c-warm-gray);
  margin-top: 20px;
  max-width: 260px;
}
.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 13px;
  color: var(--c-warm-gray);
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--c-white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { font-size: 13px; color: var(--c-warm-gray); font-weight: 300; line-height: 1.6; }
.footer-contact-item a { transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--c-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: var(--c-text-gray); letter-spacing: 0.05em; }
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-gray);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--c-gold); }

/* ── 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(28,25,23,0.9) 0%, rgba(28,25,23,0.3) 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: 9px;
  letter-spacing: 0.3em;
  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(14px, 1.1vw, 16px); line-height: 1.9; color: var(--c-text-gray); font-weight: 300; }
.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: 10px;
  letter-spacing: 0.4em;
  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(28,25,23,0.85) 0%, rgba(28,25,23,0.2) 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: var(--c-void);
}
.project-full-item {
  margin-bottom: clamp(80px, 12vh, 140px);
}
.project-full-item:last-child { margin-bottom: 0; }

.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;
}
.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: var(--c-charcoal);
  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(212,165,116,0.12);
  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: 11px;
  letter-spacing: 0.25em;
  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(13px, 1.1vw, 15px);
  line-height: 1.9;
  color: var(--c-soft-gray);
  font-weight: 300;
  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: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-warm-gray);
  font-weight: 500;
}
.meta-value { font-size: 13px; 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); }

/* ── İ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(14px, 1.1vw, 16px);
  line-height: 1.9;
  color: var(--c-text-gray);
  font-weight: 300;
}
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 8px; }
.contact-detail-label {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  font-weight: 500;
}
.contact-detail-value {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--c-charcoal);
  font-weight: 300;
  line-height: 1.6;
}
.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: 9px;
  letter-spacing: 0.4em;
  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: 14px;
  font-weight: 300;
  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(184,150,106,0.4);
  padding: 18px;
  color: var(--c-gold-light);
  font-size: 11px;
  letter-spacing: 0.35em;
  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);
}
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 45px;
    height: 45px;
  }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .brand-intro-grid,
  .approach-grid,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .brand-intro-text { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(184,150,106,0.15); padding-bottom: 48px; }
  .brand-intro-stats { padding-left: 0; flex-direction: row; flex-wrap: wrap; padding-top: 48px; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .approach-visual { height: clamp(320px, 50vw, 500px); }
  .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: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .project-band.layout-left .project-band-inner,
  .project-band.layout-right .project-band-inner { grid-template-columns: 1fr; height: auto; }
  .project-info { min-height: 320px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr; }
  .project-gallery-strip { grid-template-columns: 1fr 1fr; }
  .project-gallery-strip .strip-img:nth-child(3) { display: none; }
  .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; }
}
