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

/* =========================================
   CUSTOM PROPERTIES
   ========================================= */
:root {
  --bg:          #FAFAF7;
  --bg-warm:     #F4EFE6;
  --surface:     #EEEAE1;
  --dark:        #18160F;
  --mid:         #6A6055;
  --light:       #ABA198;
  --gold:        #C4A06B;
  --gold-light:  #DFC999;
  --gold-dark:   #8B6840;
  --white:       #FFFEFB;
  --border:      rgba(196,160,107,0.22);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   32px;
  --sp-lg:   60px;
  --sp-xl:   clamp(60px, 8vw, 120px);
  --sp-side: clamp(24px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a  { color: inherit; }
button { font-family: var(--font-body); cursor: none; }

/* =========================================
   BASE
   ========================================= */
body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    /* 🌿 daha modern ahşap tonu (teak + walnut arası) */
    background: #7a5538;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .1s ease, width .3s ease, height .3s ease, background .3s ease;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    /* halka daha soft ahşap */
    border: 1px solid #8a6242;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .15s ease, width .3s ease, height .3s ease, opacity .3s ease;
    opacity: .55;
}

/* hover state */
.cursor.hover {
    width: 16px;
    height: 16px;
    /* biraz daha koyu vurgu */
    background: #5f3f2a;
}

.cursor-ring.hover {
    width: 54px;
    height: 54px;
    opacity: .25;
}

/* default mouse gizle */
body {
    cursor: none;
}
/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-warm); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* =========================================
   LOADER
   ========================================= */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 32px;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--bg-warm);
  letter-spacing: .25em;
  text-transform: uppercase;
}
.loader-logo span { color: var(--gold); font-weight: 300; }
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(196,160,107,.2);
  position: relative; overflow: hidden;
}
.loader-progress {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0;
  background: var(--gold);
  animation: loadProgress 1.4s ease forwards;
}
@keyframes loadProgress { to { width: 100%; } }

/* =========================================
   NAVIGATION
   ========================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px var(--sp-side);
  display: flex; justify-content: space-between; align-items: center;
  transition: all .5s ease;
}
nav.scrolled {
  background: rgba(250,250,247,.95);
  backdrop-filter: blur(20px);
  padding: 18px var(--sp-side);
  border-bottom: 1px solid var(--border);
}

/* İç sayfalar: koyu page-hero üzerinde nav metinleri beyaz */
nav.nav-on-dark:not(.scrolled) .nav-logo { color: var(--bg-warm); }
nav.nav-on-dark:not(.scrolled) .nav-links a { color: rgba(250,234,214,.7); }
nav.nav-on-dark:not(.scrolled) .nav-links a:hover,
nav.nav-on-dark:not(.scrolled) .nav-links a.active { color: var(--gold); }
nav.nav-on-dark:not(.scrolled) .nav-cta { color: var(--bg-warm); border-color: rgba(196,160,107,.6); }
nav.nav-on-dark:not(.scrolled) .hamburger span { background: var(--bg-warm); }
.nav-logo {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); font-weight: 300; }
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: .78rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  transition: color .3s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: .75rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--gold);
  padding: 10px 26px;
  text-decoration: none;
  transition: all .4s ease;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-100%);
  transition: transform .4s ease; z-index: -1;
}
.nav-cta:hover { color: var(--white); }
.nav-cta:hover::before { transform: translateX(0); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 1px;
  background: var(--dark);
  transition: all .3s ease; display: block;
}

/* =========================================
   MOBILE MENU
   ========================================= */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--bg-warm);
  text-decoration: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, color .3s ease;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--gold); }

/* =========================================
   PAGE HERO (İÇ SAYFALAR)
   ========================================= */
.page-hero {
  padding: 180px var(--sp-side) 100px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,160,107,.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}
.breadcrumb,
.page-hero-tag,
.page-hero-title,
.page-hero-desc { position: relative; z-index: 2; }
.page-hero-tag {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem,6vw,6rem); font-weight: 300;
  color: var(--bg-warm); line-height: 1.05;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-desc {
  font-size: .95rem; color: var(--light);
  max-width: 500px; margin-top: 28px; line-height: 1.85;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; letter-spacing: .1em;
  color: rgba(171,161,152,.5); margin-bottom: 40px;
}
.breadcrumb a { color: rgba(171,161,152,.5); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { font-size: .6rem; color: var(--gold); }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  background: var(--dark); color: var(--white);
  text-decoration: none;
  padding: 16px 40px;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  transition: all .4s ease;
  position: relative; overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateY(100%);
  transition: transform .4s ease;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .3s ease;
}
.btn-ghost:hover { color: var(--dark); }
.btn-ghost .arrow {
  width: 32px; height: 1px;
  background: currentColor; position: relative;
  transition: width .3s ease;
}
.btn-ghost .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-ghost:hover .arrow { width: 50px; }

.btn-white {
  background: var(--white); color: var(--dark);
  text-decoration: none;
  padding: 18px 48px;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  white-space: nowrap;
  transition: all .4s ease;
  display: inline-block;
}
.btn-white:hover { background: var(--dark); color: var(--white); }

/* =========================================
   SECTION UTILITIES
   ========================================= */
section { position: relative; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header--left { text-align: left; margin-bottom: 40px; }

.section-tag {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 20px;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-tag--left {
  justify-content: flex-start;
}
.section-tag--left::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,4vw,3.8rem); font-weight: 300;
  line-height: 1.15; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px); /* 40px çok sertti, 30'a çektim */
    transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity; /* Tarayıcıyı önceden uyarır, donmayı engeller */
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

    .reveal.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
        opacity: 1;
        transform: translate(0, 0);
    }
/* =========================================
   HOME — HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--sp-side) 80px;
  position: relative;
}
.hero-left::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white); z-index: -1;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem,5vw,5.5rem); font-weight: 300;
  line-height: 1.08; color: var(--dark); margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: .92rem; color: var(--mid);
  max-width: 380px; line-height: 1.9; margin-bottom: 52px;
}
.hero-actions { display: flex; align-items: center; gap: 36px; }
.hero-right { position: relative; overflow: hidden; }

.hero-img-container { width: 100%; height: 100%; position: relative; }
.hero-img-container img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 8s ease;
}
.hero-img-container.loaded img { transform: scale(1); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(24,22,15,.15) 0%,transparent 60%);
}

.hero-scroll {
  position: absolute; bottom: 40px; left: var(--sp-side);
  display: flex; align-items: center; gap: 16px;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--light);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown { to { top: 200%; } }

.hero-stats {
  position: absolute; bottom: 40px; right: 40px;
  display: flex; flex-direction: column; gap: 28px; z-index: 2;
}
.hero-stat { text-align: right; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300;
  color: var(--white); line-height: 1;
}
.hero-stat .label {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(253,250,245,.6);
}

/* =========================================
   STATS ROW
   ========================================= */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
}
.stat-item { background: var(--white); padding: 50px 40px; text-align: center; }
.counter {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300;
  color: var(--dark); line-height: 1;
}
.stat-label {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid); margin-top: 8px;
}

/* =========================================
   SERVICES GRID
   ========================================= */
.services {
  padding: var(--sp-xl) var(--sp-side);
  background: var(--white);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.service-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: none;
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(24,22,15,.9) 0%,rgba(24,22,15,.1) 50%,transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 36px;
  transition: background .4s ease;
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top,rgba(24,22,15,.95) 0%,rgba(24,22,15,.4) 60%,rgba(24,22,15,.1) 100%);
}
.service-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: rgba(196,160,107,.2); line-height: 1; margin-bottom: 8px;
  transition: color .4s ease;
}
.service-card:hover .service-num { color: rgba(196,160,107,.4); }
.service-name {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 300; color: var(--white); margin-bottom: 12px;
}
.service-desc {
  font-size: .82rem; color: rgba(253,250,245,.6); line-height: 1.7;
  transform: translateY(10px); opacity: 0; transition: all .4s ease;
}
.service-card:hover .service-desc { transform: translateY(0); opacity: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; margin-top: 16px;
  transform: translateY(10px); opacity: 0;
  transition: all .4s ease .05s;
}
.service-card:hover .service-link { transform: translateY(0); opacity: 1; }

/* =========================================
   ABOUT TEASER
   ========================================= */
.about-teaser {
  padding: var(--sp-xl) var(--sp-side);
  background: var(--bg-warm);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 80%; aspect-ratio: 3/4; object-fit: cover;
}
.about-img-accent {
  position: absolute; width: 50%; aspect-ratio: 1/1;
  object-fit: cover; bottom: -40px; right: 0;
  border: 6px solid var(--white);
}
.about-badge {
  position: absolute; top: 40px; right: 0;
  background: var(--gold); color: var(--white);
  padding: 20px 24px; text-align: center;
}
.about-badge .years {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300; line-height: 1; display: block;
}
.about-badge .years-text {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
}
.about-content .section-header {
  text-align: left; margin-bottom: 32px;
}
.about-content .section-tag {
  justify-content: flex-start;
}
.about-content .section-tag::before { display: none; }
.about-text { color: var(--mid); font-size: .92rem; line-height: 1.9; margin-bottom: 24px; }
.about-features {
  margin: 40px 0; display: flex; flex-direction: column; gap: 16px;
}
.about-feature {
  display: flex; align-items: center; gap: 16px;
  font-size: .85rem; color: var(--dark);
}
.feature-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* =========================================
   WORKS GRID
   ========================================= */
.works { padding: var(--sp-xl) var(--sp-side); }
.works-filter {
  display: flex; gap: 8px; margin-bottom: 60px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--border); background: transparent; color: var(--mid);
  cursor: none; transition: all .3s ease;
  font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}
.works-grid {
  display: grid; grid-template-columns: repeat(12,1fr);
  grid-template-rows: auto; gap: 20px;
}
.work-item { position: relative; overflow: hidden; cursor: none; }
.work-item:nth-child(1) { grid-column: 1/8; grid-row: 1; aspect-ratio: 16/10; }
.work-item:nth-child(2) { grid-column: 8/13; grid-row: 1; aspect-ratio: 3/4; }
.work-item:nth-child(3) { grid-column: 1/5; grid-row: 2; aspect-ratio: 1/1; }
.work-item:nth-child(4) { grid-column: 5/9; grid-row: 2; aspect-ratio: 1/1; }
.work-item:nth-child(5) { grid-column: 9/13; grid-row: 2; aspect-ratio: 1/1; }
.work-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.work-item:hover img { transform: scale(1.06); }
.work-overlay {
  position: absolute; inset: 0;
  background: rgba(24,22,15,0);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; transition: background .4s ease;
}
.work-item:hover .work-overlay { background: rgba(24,22,15,.7); }
.work-info { transform: translateY(20px); opacity: 0; transition: all .4s ease; }
.work-item:hover .work-info { transform: translateY(0); opacity: 1; }
.work-category {
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.work-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 300; color: var(--white);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: var(--sp-xl) var(--sp-side);
  background: var(--dark); overflow: hidden;
}
.testimonials .section-title { color: var(--bg-warm); }
.testimonials .section-tag  { color: var(--gold); }
.testimonials-track {
  display: flex; gap: 30px; margin-top: 60px;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.testimonial-card {
  min-width: 400px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,160,107,.15);
  padding: 48px 40px; flex-shrink: 0;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 28px; }
.star { color: var(--gold); font-size: .85rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.2rem; font-style: italic; font-weight: 300;
  color: var(--bg-warm); line-height: 1.7; margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--white);
}
.author-name { font-size: .85rem; color: var(--bg-warm); font-weight: 400; }
.author-role  { font-size: .72rem; color: var(--light); letter-spacing: .1em; }
.testimonials-nav { display: flex; gap: 12px; margin-top: 48px; justify-content: center; }
.nav-dot {
  width: 8px; height: 2px; background: rgba(196,160,107,.3);
  border: none; cursor: none; transition: all .3s ease;
}
.nav-dot.active { width: 32px; background: var(--gold); }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  padding: 100px var(--sp-side);
  background: var(--gold);
  display: flex; justify-content: space-between; align-items: center; gap: 60px;
}
.cta-text {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 300;
  color: var(--white); line-height: 1.2;
}
.cta-text em { font-style: italic; }

/* =========================================
   HAKKIMIZDA — STORY SECTION
   ========================================= */
.story-section {
  padding: var(--sp-xl) var(--sp-side);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  background: var(--white);
}
.story-image-wrapper { position: relative; }
.story-image-wrapper img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.story-image-badge {
  position: absolute; bottom: -30px; left: -30px;
  background: var(--gold); padding: 30px; color: var(--white);
}
.story-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300; line-height: 1;
}
.story-badge-label {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 4px;
}
.story-content .section-tag--left { margin-bottom: 16px; }
.story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 300;
  line-height: 1.15; color: var(--dark);
  margin-top: 16px; margin-bottom: 28px;
}
.story-title em { font-style: italic; color: var(--gold); }
.story-text {
  color: var(--mid); font-size: .92rem; line-height: 1.9; margin-bottom: 20px;
}

/* =========================================
   HAKKIMIZDA — VALUES
   ========================================= */
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 50px; padding: var(--sp-xl) var(--sp-side);
  background: var(--bg-warm);
}
.value-item {
  padding: 40px; border-top: 2px solid var(--border);
  transition: border-color .3s ease;
}
.value-item:hover { border-color: var(--gold); }
.value-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300;
  color: var(--gold); opacity: .3; line-height: 1; margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400; color: var(--dark); margin-bottom: 16px;
}
.value-desc { font-size: .87rem; color: var(--mid); line-height: 1.8; }

/* =========================================
   HAKKIMIZDA — TEAM
   ========================================= */
.team-section { padding: var(--sp-xl) var(--sp-side); background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 30px;
}
.team-card { text-align: center; }
.team-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  margin-bottom: 20px;
  filter: grayscale(20%); transition: filter .4s ease;
}
.team-card:hover .team-img { filter: grayscale(0%); }
.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400; color: var(--dark); margin-bottom: 4px;
}
.team-role {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}

/* =========================================
   HAKKIMIZDA — PROCESS
   ========================================= */
.process-section { padding: var(--sp-xl) var(--sp-side); background: var(--dark); }
.process-section .section-tag  { color: var(--gold); }
.process-section .section-title { color: var(--bg-warm); }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(196,160,107,.1);
  margin-top: 60px;
}
.process-step {
  background: var(--dark); padding: 40px 32px;
  border-top: 2px solid var(--gold);
}
.process-num {
  font-family: var(--font-display);
  font-size: 3rem; color: rgba(196,160,107,.3);
  line-height: 1; margin-bottom: 16px;
}
.process-title {
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--bg-warm); margin-bottom: 12px;
}
.process-desc {
  font-size: .84rem; color: var(--light); line-height: 1.8;
}

/* =========================================
   HAKKIMIZDA — ATÖLYE GALERİSİ
   ========================================= */
.atolye-gallery {
  padding: var(--sp-xl) var(--sp-side);
  background: var(--bg-warm);
}
.atolye-gallery .section-header { margin-bottom: 48px; }
.atolye-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.atolye-item {
  overflow: hidden; position: relative;
}
.atolye-item:first-child {
  grid-row: 1 / 3;
}
.atolye-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.atolye-item:first-child img { min-height: 520px; }
.atolye-item:not(:first-child) img { min-height: 250px; }
.atolye-item:hover img { transform: scale(1.04); }

/* =========================================
   URUNLER — PRODUCTS
   ========================================= */
.products-section { padding: var(--sp-xl) var(--sp-side); background: var(--white); }
.products-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 60px; margin-top: 60px;
}
.products-sidebar {
  position: sticky; top: 100px; align-self: flex-start;
}
.cat-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.cat-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; text-decoration: none;
  font-size: .85rem; color: var(--mid);
  border-left: 2px solid transparent;
  transition: all .3s ease;
}
.cat-list li a:hover, .cat-list li a.active {
  color: var(--dark); border-color: var(--gold); background: var(--bg-warm);
}
.cat-count {
  font-size: .72rem; color: var(--light);
  background: var(--bg-warm); padding: 2px 8px; border-radius: 10px;
}
.sidebar-heading {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; margin-top: 32px;
}
.sidebar-heading:first-child { margin-top: 0; }
.material-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.material-tag {
  padding: 6px 14px; border: 1px solid var(--border);
  font-size: .75rem; color: var(--mid); cursor: none;
  transition: all .3s; background: transparent;
  font-family: var(--font-body);
}
.material-tag.active, .material-tag:hover {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}
.products-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.product-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; transition: box-shadow .4s ease; cursor: none;
}
.product-card:hover { box-shadow: 0 20px 60px rgba(24,22,15,.1); }
.product-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--white);
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 12px;
}
.product-body { padding: 24px; }
.product-cat {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.product-mat { font-size: .78rem; color: var(--mid); margin-bottom: 16px; }
.product-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.product-price {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--dark);
}
.product-link {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--dark); text-decoration: none;
  border-bottom: 1px solid var(--dark); padding-bottom: 2px;
  transition: color .3s ease, border-color .3s ease;
}
.product-link:hover { color: var(--gold); border-color: var(--gold); }

/* Özel Sipariş Banner */
.custom-order-banner {
  padding: var(--sp-xl) var(--sp-side);
  background: var(--bg-warm);
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.custom-order-text .section-tag--left { margin-bottom: 16px; }
.custom-order-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 300;
  line-height: 1.15; color: var(--dark);
}
.custom-order-title em { font-style: italic; color: var(--gold); }
.custom-order-desc {
  color: var(--mid); font-size: .9rem; max-width: 500px;
  line-height: 1.8; margin-top: 20px;
}

/* =========================================
   PROJELER — MASONRY
   ========================================= */
.projects-section { padding: var(--sp-xl) var(--sp-side); }
.projects-masonry { columns: 3; column-gap: 20px; margin-top: 20px; }
.masonry-item {
  break-inside: avoid; margin-bottom: 20px;
  position: relative; overflow: hidden; cursor: none;
  transition: opacity .28s ease, transform .28s ease;
  transform-origin: top center;
}
.masonry-item.is-hiding {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
.masonry-item.is-hidden {
  display: none;
}
.masonry-item.is-showing {
  opacity: 0;
  transform: scale(0.96);
}
.masonry-item img {
  width: 100%; display: block; transition: transform .6s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(24,22,15,0);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transition: background .4s ease;
}
.masonry-item:hover .masonry-overlay { background: rgba(24,22,15,.75); }
.masonry-info { transform: translateY(16px); opacity: 0; transition: all .4s ease; }
.masonry-item:hover .masonry-info { transform: translateY(0); opacity: 1; }
.masonry-cat {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.masonry-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 300; color: var(--white);
}
.masonry-loc { font-size: .75rem; color: rgba(253,250,245,.6); margin-top: 4px; }

/* =========================================
   PROJELER — MODAL
   ========================================= */
.project-modal {
  position: fixed; inset: 0; background: rgba(24,22,15,.92);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .4s ease; padding: 40px;
}
.project-modal.open { opacity: 1; visibility: visible; }
.modal-inner {
  background: var(--white); max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(30px); transition: transform .4s ease;
}
.project-modal.open .modal-inner { transform: translateY(0); }
.modal-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.modal-body { padding: 48px; }
.modal-body .section-tag--left { margin-bottom: 12px; }
.modal-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; margin-bottom: 8px; color: var(--dark);
}
.modal-loc { font-size: .82rem; color: var(--gold); margin-bottom: 24px; letter-spacing: .1em; }
.modal-desc { font-size: .92rem; color: var(--mid); line-height: 1.9; }
.modal-close {
  position: absolute; top: 24px; right: 24px;
  background: none; color: var(--white);
  font-size: 1.5rem; cursor: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.modal-close:hover { background: var(--gold); border-color: var(--gold); }

/* =========================================
   ILETISIM — CONTACT
   ========================================= */
.contact-main {
  padding: var(--sp-xl) var(--sp-side);
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; background: var(--white);
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300;
  margin-bottom: 24px; color: var(--dark);
}
.contact-info-title em { font-style: italic; color: var(--gold); }
.contact-info-intro {
  font-size: .9rem; color: var(--mid); line-height: 1.9; margin-bottom: 48px;
}
.info-block { margin-bottom: 32px; }
.info-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 12px;
}
.info-label {
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.info-value { font-size: .95rem; color: var(--dark); font-weight: 400; }
.info-sub  { font-size: .82rem; color: var(--mid); margin-top: 2px; }

.contact-action-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; text-decoration: none;
  font-weight: 600; font-size: 1rem;
  color: var(--white);
  transition: filter .2s, transform .15s;
  border: none;
}
.contact-action-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.contact-action-btn--call {
  background: var(--dark);
  border: 2px solid var(--gold);
}
.contact-action-btn--wa {
  background: #25D366;
}
.contact-action-btn--ig {
  background: linear-gradient(45deg, #FCAF45 0%, #F77737 25%, #E1306C 55%, #833AB4 100%);
}
.cab-icon { font-size: 1.5rem; flex-shrink: 0; }
.cab-label {
  font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 3px;
  opacity: .75;
}
.cab-num { font-size: 1rem; font-weight: 600; letter-spacing: .03em; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 8px 0; font-size: .83rem; color: var(--mid); }
.hours-table td:last-child { text-align: right; color: var(--dark); }
.hours-table tr:last-child { border-bottom: none; }

.form-section { background: var(--bg-warm); padding: 48px; }
.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300; color: var(--dark); margin-bottom: 8px;
}
.form-sub { font-size: .83rem; color: var(--mid); margin-bottom: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent; border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: var(--font-body); font-size: .9rem; font-weight: 300; color: var(--dark);
  outline: none; transition: border-color .3s ease; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light); }
.submit-btn {
  width: 100%; padding: 16px;
  background: var(--dark); color: var(--white);
  border: none; font-family: var(--font-body);
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  cursor: none; transition: background .4s ease;
}
.submit-btn:hover { background: var(--gold); }
.success-msg {
  display: none; padding: 16px 20px;
  background: rgba(107,138,94,.1); border-left: 3px solid #6B8A5E;
  font-size: .87rem; color: #4a6b40; margin-top: 16px;
}

/* =========================================
   ILETISIM — MAP
   ========================================= */
.map-section { background: var(--dark); overflow: hidden; }
.map-visual {
  position: relative; height: 400px;
  background: linear-gradient(135deg,#1e1c18 0%,#252118 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,160,107,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,160,107,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.map-pin-wrapper { position: relative; z-index: 2; text-align: center; }
.map-pin-big {
  width: 60px; height: 60px; background: var(--gold);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  margin: 0 auto 16px; position: relative;
  box-shadow: 0 8px 32px rgba(196,160,107,.4);
  animation: pinBounce 2s ease-in-out infinite;
}
.map-pin-big::after {
  content: ''; position: absolute; width: 26px; height: 26px;
  background: var(--white); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
@keyframes pinBounce {
  0%,100% { transform: rotate(-45deg) translateY(0); }
  50%      { transform: rotate(-45deg) translateY(-8px); }
}
.map-pulse {
  position: absolute; top: 50%; left: 50%;
  width: 100px; height: 100px;
  border: 2px solid rgba(196,160,107,.4); border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  animation: pulse 2.5s ease-out infinite;
}
.map-pulse:nth-child(2) { animation-delay: .8s; }
.map-pulse:nth-child(3) { animation-delay: 1.6s; }
@keyframes pulse { to { transform: translate(-50%,-50%) scale(3); opacity: 0; } }
.map-label-name {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--bg-warm); margin-top: 8px; letter-spacing: .05em;
}
.map-label-sub { font-size: .75rem; color: var(--light); margin-top: 4px; }
.map-address-card {
  position: absolute; bottom: 40px; right: 60px;
  background: var(--white); padding: 24px 28px;
}
.mac-label {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.mac-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--dark); margin-bottom: 4px; }
.mac-addr { font-size: .8rem; color: var(--mid); }

/* =========================================
   ILETISIM — FAQ
   ========================================= */
.faq-section { padding: var(--sp-xl) var(--sp-side); background: var(--bg-warm); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 24px 28px;
  background: none; border: none;
  font-family: var(--font-body); font-size: .95rem; color: var(--dark);
  cursor: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-icon { color: var(--gold); font-size: 1.2rem; transition: transform .3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-a p { padding: 0 28px 24px; font-size: .87rem; color: var(--mid); line-height: 1.8; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--dark);
  padding: 80px var(--sp-side) 40px;
  border-top: 1px solid rgba(196,160,107,.1);
}
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 20px; color: var(--bg-warm); }
.footer-desc {
  font-size: .85rem; color: var(--light); line-height: 1.9;
  max-width: 280px; margin-bottom: 32px;
}
.footer-social { display: flex; gap: 16px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(196,160,107,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--light); text-decoration: none; font-size: .75rem;
  transition: all .3s ease;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .85rem; color: var(--light); text-decoration: none;
  transition: color .3s ease;
}
.footer-links a:hover { color: var(--bg-warm); }
.footer-contact-item { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.contact-label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.contact-value { font-size: .85rem; color: var(--light); }
.footer-bottom {
  border-top: 1px solid rgba(196,160,107,.1); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: .75rem; color: rgba(171,161,152,.5); letter-spacing: .05em; }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a {
  font-size: .72rem; color: rgba(171,161,152,.4);
  text-decoration: none; letter-spacing: .1em; transition: color .3s ease;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 60px; }
  .story-section { grid-template-columns: 1fr; }
  .story-image-badge { bottom: -20px; left: -20px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-banner { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-main { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; }
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .map-address-card { bottom: 20px; right: 20px; padding: 16px 20px; }
  .projects-masonry { columns: 2; }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-teaser { padding: 80px 24px; }
  .works { padding: 80px 24px; }
  .works-grid { grid-template-columns: 1fr; }
  .work-item { grid-column: 1/-1 !important; grid-row: auto !important; aspect-ratio: 16/10; }
  .testimonials { padding: 80px 24px; }
  .testimonial-card { min-width: 300px; }
  .cta-banner { padding: 60px 24px; }
  footer { padding: 60px 24px 32px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: 120px 24px 60px; }
  .products-section { padding: 60px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .projects-section { padding: 60px 24px; }
  .projects-masonry { columns: 1; }
  .contact-main { padding: 60px 24px; gap: 40px; }
  .form-section { padding: 32px 24px; }
  .faq-section { padding: 60px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .custom-order-banner { flex-direction: column; padding: 60px 24px; }
  .atolye-gallery { padding: 60px 24px; }
  .atolye-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .atolye-item:first-child { grid-column: 1 / -1; grid-row: 1; }
  .atolye-item:first-child img { min-height: 260px; }
  .atolye-item:not(:first-child) img { min-height: 180px; }
}
