/* ==============================
   RRS Design — Açık / Krem Palet
   ============================== */

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

:root {
  /* ── Arka planlar ── */
  --bg:          #E8E2D9;   /* ana krem — kapalı, sıcak */
  --bg-2:        #DFD9CE;   /* hafif koyu bej */
  --bg-3:        #D5CEBC;   /* orta bej / greige */
  --bg-card:     #EDE8DF;   /* kart — kremsi beyaz */

  /* ── Metin ── */
  --dark:        #1A1714;   /* başlıklar için */
  --text:        #29231C;   /* ana metin */
  --text-2:      #5A4F44;   /* ikincil metin */
  --text-muted:  #8A7E72;   /* soluk metin */

  /* ── Gold / Bakır vurgu ── */
  --gold:        #A07040;
  --gold-light:  #C09060;
  --gold-dark:   #6B4A22;
  --gold-pale:   #DDD0B8;   /* çok açık gold bg */

  /* ── Çizgiler / sınırlar ── */
  --border:      rgba(184,147,90,0.18);
  --border-2:    rgba(44,40,32,0.1);
  --border-hover:rgba(184,147,90,0.55);

  /* ── Gölge ── */
  --shadow-sm:   0 2px 12px rgba(44,40,32,0.07);
  --shadow-md:   0 8px 32px rgba(44,40,32,0.1);
  --shadow-lg:   0 20px 60px rgba(44,40,32,0.13);
}

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

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

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Yardımcılar ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}

.gold-line {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.4rem 0;
}
.gold-line.center {
  margin: 1.4rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 70px;
}

/* Butonlar */
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,147,90,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════
   NAVİGASYON
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250,248,243,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.06em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Subtle doku efekti */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(184,147,90,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(184,147,90,0.05) 0%, transparent 50%);
}

/* İnce çizgi grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,147,90,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,90,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block; width: 38px; height: 1px;
  background: var(--gold); opacity: 0.55;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin: 1.8rem 0 2.8rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Köşe süslemeleri */
.hero-corner {
  position: absolute;
  width: 72px; height: 72px;
  border-color: rgba(184,147,90,0.25);
  border-style: solid;
}
.hero-corner.tl { top: 6rem;  left: 3rem;  border-width: 1px 0 0 1px; }
.hero-corner.tr { top: 6rem;  right: 3rem; border-width: 1px 1px 0 0; }
.hero-corner.bl { bottom: 5rem; left: 3rem;  border-width: 0 0 1px 1px; }
.hero-corner.br { bottom: 5rem; right: 3rem; border-width: 0 1px 1px 0; }

/* ══════════════════════════════
   SECTION GENEL
══════════════════════════════ */
.section { padding: 7rem 0; }

.section-alt { background: var(--bg-2); }
.section-bej { background: var(--bg-3); }

.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.2;
  color: var(--dark);
}

.section-header p {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 500px; line-height: 1.85;
  margin-top: 1rem;
}
.section-header.center p { margin: 1rem auto 0; }

/* ══════════════════════════════
   HAKKIMIZDA – ANA SAYFA
══════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  overflow: hidden;
}
.about-image-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-frame {
  position: absolute;
  width: 85%; height: 85%;
  top: -1.5rem; right: -1.5rem;
  border: 1px solid var(--border);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--gold);
  color: #fff;
  padding: 1.5rem; text-align: center;
}
.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600;
  display: block; line-height: 1;
}
.about-badge .label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  display: block; margin-top: 0.3rem;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--dark);
  line-height: 1.2; margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.92rem;
  color: var(--text-2); line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin: 2.5rem 0; padding: 2rem 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 500;
  color: var(--gold); display: block; line-height: 1;
}
.stat-item .lbl {
  font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 0.15em; text-transform: uppercase;
  display: block; margin-top: 0.4rem;
}

/* ══════════════════════════════
   PROJELER
══════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5px;
  background: var(--border-2);
}

.project-card {
  position: relative; overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
  background: var(--bg-3);
  transition: all 0.4s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-img-placeholder { transform: scale(1.04); }

.project-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s ease;
  position: relative;
}
.project-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

.project-empty-icon { font-size: 2.5rem; opacity: 0.18; color: var(--gold); }

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,21,0.88) 0%, rgba(28,25,21,0.3) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.project-overlay .cat {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.4rem;
}
.project-overlay h3 {
  font-size: 1.3rem; font-weight: 400;
  color: #fff; margin-bottom: 1rem;
}
.project-overlay .arrow {
  width: 38px; height: 1px; background: var(--gold-light); position: relative;
}
.project-overlay .arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold-light);
  border-top: 1px solid var(--gold-light);
  transform: rotate(45deg);
}

.project-card.empty .project-img-placeholder {
  border: 1px dashed rgba(184,147,90,0.2);
}

.projects-more { text-align: center; margin-top: 3rem; }

/* ── Projeler carousel (ana sayfa) ── */
.projects-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.carousel-btn {
  width: 46px; height: 46px;
  border: 1.5px solid var(--border-2);
  background: var(--bg-card);
  color: var(--text-2);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

.carousel-wrapper {
  overflow: hidden;
  padding-bottom: 2rem;
  padding-left: max(2rem, calc((100vw - 1200px) / 2 + 2rem));
}

.projects-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: max(2rem, calc((100vw - 1200px) / 2 + 2rem));
}
.projects-carousel::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.carousel-card .c-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
}
.carousel-card .c-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.carousel-card:hover .c-img img { transform: scale(1.04); }

.carousel-card .c-img-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(160,112,64,0.15);
  font-size: 3rem;
}

.carousel-card .c-body {
  padding: 1.4rem 1.6rem 1.8rem;
}
.carousel-card .c-cat {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.carousel-card .c-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--dark); line-height: 1.3; margin-bottom: 0.5rem;
}
.carousel-card .c-desc {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.65;
}

.carousel-card.empty-slot {
  border-style: dashed;
  border-color: rgba(160,112,64,0.2);
  background: var(--bg-2);
  cursor: default; pointer-events: none;
}

/* ══════════════════════════════
   İLETİŞİM
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400; color: var(--dark);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.contact-info p {
  font-size: 0.9rem; color: var(--text-2);
  line-height: 1.9; margin-bottom: 2rem;
}

.contact-item {
  display: flex; align-items: flex-start;
  gap: 1rem; margin-bottom: 1.5rem;
}

.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border-2);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.contact-item-text { padding-top: 0.2rem; }
.contact-item-text .label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.2rem;
}
.contact-item-text span {
  font-size: 0.87rem; color: var(--text);
}

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: #25D366; color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  padding: 3rem;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.4rem; font-weight: 400;
  color: var(--dark); margin-bottom: 0.4rem;
}
.contact-form .form-sub {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group label {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 0.85rem 1.1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted); opacity: 0.7;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8935A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: #fff; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none; text-align: center; padding: 2rem;
}
.form-success .check {
  font-size: 2.5rem; color: var(--gold);
  margin-bottom: 1rem; display: block;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: #fff; margin-bottom: 1rem;
}
.footer-brand .logo span { color: var(--gold-light); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 240px; }

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.84rem; color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 1.5rem;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════
   PAGE HERO (İç sayfalar)
══════════════════════════════ */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-2);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { max-width: 700px; }

/* Fotoğraflı page hero varyantı */
.page-hero-photo {
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  border-bottom: none;
  padding: 13rem 0 7rem;
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.page-hero-photo::before { display: none; }

.page-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,17,14,0.72) 0%,
    rgba(20,17,14,0.50) 55%,
    rgba(160,112,64,0.15) 100%
  );
  z-index: 1;
}

.page-hero-photo .container { position: relative; z-index: 2; }
.page-hero-photo .page-hero-inner h1 { color: #fff; }
.page-hero-photo .page-hero-inner p  { color: rgba(255,255,255,0.62); }
.page-hero-photo .section-tag        { color: var(--gold-light); }

@media (max-width: 1024px), (hover: none) {
  .page-hero-photo {
    background-attachment: scroll;
    background-position: center center;
  }
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: var(--dark); line-height: 1.1;
}
.page-hero p {
  font-size: 1rem; color: var(--text-2);
  margin-top: 1.2rem; line-height: 1.85;
}

/* ══════════════════════════════
   HAKKIMIZDA SAYFASI
══════════════════════════════ */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}

.about-full-image { position: sticky; top: 6rem; }

.about-full-image .img-wrap {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  overflow: hidden; position: relative;
}
.about-full-image .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-full-image .img-caption {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 1rem; text-align: center;
}

.about-full-text h2 {
  font-size: 1.8rem; font-weight: 400;
  color: var(--dark); margin-bottom: 1.5rem; line-height: 1.3;
}
.about-full-text p {
  font-size: 0.92rem; color: var(--text-2);
  line-height: 1.95; margin-bottom: 1.5rem;
}

.highlight-box {
  background: var(--gold-pale);
  border-left: 2.5px solid var(--gold);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-dark);
  line-height: 1.7;
}

.education-item {
  display: flex; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-2);
}
.edu-year {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; color: var(--gold);
  white-space: nowrap; padding-top: 0.2rem; min-width: 80px;
}
.edu-content h4 {
  font-size: 0.95rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.3rem;
}
.edu-content p {
  font-size: 0.82rem; color: var(--text-muted);
  margin: 0; line-height: 1.5;
}

/* ══════════════════════════════
   PROJELER SAYFASI
══════════════════════════════ */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
}

.project-page-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  overflow: hidden; cursor: pointer;
  transition: all 0.4s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.project-page-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-page-card .card-img {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-3); position: relative; overflow: hidden;
}
.project-page-card .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.project-page-card:hover .card-img img { transform: scale(1.04); }

.project-page-card .card-body {
  padding: 1.8rem; flex: 1; display: flex; flex-direction: column;
}
.project-page-card .cat {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem; display: block;
}
.project-page-card h3 {
  font-size: 1.2rem; font-weight: 400;
  color: var(--dark); margin-bottom: 0.8rem;
}
.project-page-card p {
  font-size: 0.84rem; color: var(--text-2);
  line-height: 1.75; flex: 1;
}
.project-page-card .card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: 1.5rem;
  transition: gap 0.3s ease;
}
.project-page-card:hover .card-link { gap: 0.8rem; }

.project-page-card.empty-slot {
  border-style: dashed;
  border-color: rgba(184,147,90,0.2);
  cursor: default; pointer-events: none;
  background: var(--bg-2);
}
.project-page-card.empty-slot .card-img {
  display: flex; align-items: center; justify-content: center;
  color: rgba(184,147,90,0.18); font-size: 3rem;
}

/* ══════════════════════════════
   PROJE DETAY
══════════════════════════════ */
.project-detail-hero { padding: 10rem 0 4rem; }

.project-detail-meta {
  display: flex; align-items: center;
  gap: 2rem; margin-bottom: 1.5rem;
}
.project-detail-meta .back-link {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s ease;
}
.project-detail-meta .back-link:hover { color: var(--gold); }
.project-detail-meta .separator {
  width: 1px; height: 18px; background: var(--border-2);
}
.project-detail-meta .cat {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}

.project-detail-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; color: var(--dark);
  line-height: 1.2; max-width: 700px;
}
.project-detail-hero p {
  font-size: 0.95rem; color: var(--text-2);
  margin-top: 1.2rem; max-width: 600px; line-height: 1.85;
}

.project-detail-img {
  width: 100%; aspect-ratio: 16/7;
  background: var(--bg-3); border: 1px solid var(--border-2);
  overflow: hidden; margin: 3rem 0;
}
.project-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.project-gallery {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin: 2rem 0 4rem;
}
.gallery-item {
  aspect-ratio: 1; background: var(--bg-3);
  border: 1px solid var(--border-2); overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════
   ADMIN PANEL
══════════════════════════════ */
.admin-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
}

.admin-login-box {
  width: 400px; background: var(--bg-card);
  border: 1px solid var(--border-2);
  padding: 3rem; box-shadow: var(--shadow-lg);
}
.admin-login-box .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--dark);
  text-align: center; margin-bottom: 0.3rem;
}
.admin-login-box .logo span { color: var(--gold); }
.admin-login-box .subtitle {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-muted); text-align: center; margin-bottom: 2.5rem;
}

.admin-error {
  background: rgba(200,50,50,0.06);
  border: 1px solid rgba(200,50,50,0.25);
  color: #c44; font-size: 0.82rem;
  padding: 0.7rem 1rem; margin-bottom: 1.2rem; display: none;
}

.admin-panel { display: none; min-height: 100vh; background: var(--bg); }

.admin-sidebar {
  position: fixed; top: 0; left: 0;
  width: 240px; height: 100vh;
  background: var(--bg-card);
  border-right: 1px solid var(--border-2);
  padding: 2rem 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}

.admin-sidebar .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--dark);
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid var(--border-2); margin-bottom: 1.5rem;
}
.admin-sidebar .brand span { color: var(--gold); }
.admin-sidebar .brand .sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  display: block; margin-top: 0.2rem;
}

.admin-nav { list-style: none; }
.admin-nav li a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-2); transition: all 0.3s ease;
}
.admin-nav li a:hover,
.admin-nav li a.active {
  color: var(--gold);
  background: var(--gold-pale);
  border-right: 2px solid var(--gold);
}

.admin-logout { position: absolute; bottom: 1.5rem; left: 0; right: 0; padding: 0 1.5rem; }
.admin-logout button {
  width: 100%; padding: 0.7rem;
  background: transparent;
  border: 1px solid rgba(200,50,50,0.25);
  color: #c44;
  font-family: 'Raleway', sans-serif;
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease;
}
.admin-logout button:hover { background: rgba(200,50,50,0.06); }

.admin-main { margin-left: 240px; padding: 2.5rem; }

.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-2);
}
.admin-header h1 { font-size: 1.5rem; font-weight: 400; color: var(--dark); }

.admin-section { display: none; }
.admin-section.active { display: block; }

.admin-projects-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; margin-bottom: 2rem;
}

.admin-project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm);
}
.admin-project-card.empty {
  border-style: dashed; border-color: rgba(184,147,90,0.25);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3; cursor: pointer;
  transition: all 0.3s ease;
  flex-direction: column; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.78rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--bg-2);
}
.admin-project-card.empty:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.admin-project-card.empty .plus { font-size: 2rem; font-weight: 300; }

.admin-project-card .card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-3); overflow: hidden; position: relative;
}
.admin-project-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.admin-project-card .card-body { padding: 1.2rem; }
.admin-project-card .card-body h3 { font-size: 0.95rem; font-weight: 500; color: var(--dark); margin-bottom: 0.3rem; }
.admin-project-card .card-body .cat { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.admin-project-card .card-actions { display: flex; gap: 0.5rem; padding: 0 1.2rem 1.2rem; }
.admin-project-card .card-actions button {
  flex: 1; padding: 0.5rem;
  font-family: 'Raleway', sans-serif; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.3s ease;
}
.admin-project-card .card-actions .edit-btn { background: var(--gold-pale); color: var(--gold-dark); }
.admin-project-card .card-actions .edit-btn:hover { background: #e8d0a8; }
.admin-project-card .card-actions .del-btn { background: rgba(200,50,50,0.07); color: #c44; }
.admin-project-card .card-actions .del-btn:hover { background: rgba(200,50,50,0.14); }

/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(28,25,21,0.6);
  z-index: 2000; align-items: center; justify-content: center; padding: 2rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-card); border: 1px solid var(--border-2);
  width: 100%; max-width: 650px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem; border-bottom: 1px solid var(--border-2);
}
.modal-header h3 { font-size: 1.1rem; font-weight: 400; color: var(--dark); }
.modal-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer; padding: 0; line-height: 1;
  transition: color 0.3s ease;
}
.modal-close:hover { color: var(--gold); }
.modal-body { padding: 2rem; }

.img-upload-area {
  border: 2px dashed rgba(184,147,90,0.3);
  background: var(--bg-2);
  padding: 2.5rem; text-align: center;
  cursor: pointer; transition: all 0.3s ease;
  margin-bottom: 0.3rem; position: relative;
}
.img-upload-area:hover { border-color: var(--gold); background: var(--gold-pale); }
.img-upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.img-upload-area .upload-icon { font-size: 2rem; color: var(--gold); opacity: 0.6; margin-bottom: 0.5rem; }
.img-upload-area p { font-size: 0.78rem; color: var(--text-muted); }
.img-preview { width: 100%; max-height: 180px; object-fit: cover; display: none; margin-top: 0.5rem; }

/* ── Çoklu görsel grid (admin modal) ── */
.multi-img-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}

.img-slot {
  position: relative;
  aspect-ratio: 3/4;
  border: 1.5px dashed rgba(160,112,64,0.25);
  background: var(--bg-2);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.img-slot:hover { border-color: var(--gold); background: var(--gold-pale); }

.img-slot input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
  z-index: 2;
}

.img-slot-empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.3rem; pointer-events: none;
}
.img-slot-empty .slot-num {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; color: var(--text-muted);
}
.img-slot-empty .slot-plus {
  font-size: 1.4rem; color: var(--gold); opacity: 0.5; line-height: 1;
}

.img-slot-preview {
  position: absolute; inset: 0;
  display: none;
}
.img-slot-preview img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Kapak rozeti */
.img-slot-cover-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(20,17,14,0.75);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0;
  gap: 0.35rem;
  z-index: 3;
  cursor: pointer;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
}
.img-slot-cover-btn:hover { background: rgba(160,112,64,0.85); color: #fff; }
.img-slot-cover-btn.is-cover {
  background: var(--gold);
  color: #fff;
  display: flex;
}

/* Sil butonu */
.img-slot-del {
  position: absolute;
  top: 0.3rem; right: 0.3rem;
  width: 22px; height: 22px;
  background: rgba(20,17,14,0.7);
  border: none; color: #fff;
  font-size: 0.75rem; line-height: 1;
  cursor: pointer; z-index: 4;
  display: none;
  align-items: center; justify-content: center;
  border-radius: 0;
  transition: background 0.2s ease;
}
.img-slot-del:hover { background: rgba(200,50,50,0.85); }

.modal-footer {
  display: flex; gap: 1rem; justify-content: flex-end;
  padding: 1.5rem 2rem; border-top: 1px solid var(--border-2);
  background: var(--bg-2);
}

/* Admin mesajlar */
.admin-messages-list { display: flex; flex-direction: column; gap: 1rem; }
.admin-message-item {
  background: var(--bg-card); border: 1px solid var(--border-2);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.admin-message-item .msg-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
.admin-message-item .msg-name { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.admin-message-item .msg-date { font-size: 0.7rem; color: var(--text-muted); }
.admin-message-item .msg-cat {
  display: inline-block; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); background: var(--gold-pale);
  padding: 0.2rem 0.6rem; margin-bottom: 0.6rem;
}
.admin-message-item .msg-body { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }
.admin-message-item .msg-contact {
  display: flex; gap: 1.5rem; margin-top: 0.8rem; padding-top: 0.8rem;
  border-top: 1px solid var(--border-2);
  font-size: 0.77rem; color: var(--text-muted);
}

.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state .icon { font-size: 2.5rem; opacity: 0.25; margin-bottom: 1rem; }

/* ══════════════════════════════
   PHOTO BREAK (Parallax)
══════════════════════════════ */
.photo-break {
  position: relative;
  height: 65vh;
  min-height: 420px;
  background-image: var(--photo-url);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,17,14,0.72) 0%,
    rgba(20,17,14,0.55) 50%,
    rgba(20,17,14,0.48) 100%
  );
}

.photo-break-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 680px;
}

.photo-break-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.6rem;
  padding: 0.4rem 1.2rem 1.4rem;
  position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.photo-break-tag::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1.5px;
  background: #fff;
  opacity: 0.7;
}

.photo-break-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.55),
    0 6px 30px rgba(0,0,0,0.35);
}

.photo-break-author {
  display: block;
  margin-top: 1.4rem;
  text-align: right;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* Scroll animasyon */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
/* Mobilde parallax kapatılır — iOS/Android'de background-attachment:fixed bozuk çalışır */
@media (max-width: 1024px), (hover: none) {
  .photo-break {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 900px) {
  .about-grid, .about-full-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 400px; margin: 0 auto; }
  .about-full-image { position: static; }
  .projects-grid, .projects-page-grid, .admin-projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-corner { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 260px;
    background: var(--bg-card);
    flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 2rem;
    border-left: 1px solid var(--border-2);
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
  }
  .nav-links.open { right: 0; }
  .admin-sidebar { position: static; width: 100%; height: auto; border-right: none; border-bottom: 1px solid var(--border-2); }
  .admin-main { margin-left: 0; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .contact-form { padding: 2rem; }
  .admin-login-box { width: calc(100% - 2rem); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
