/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg-base:     #0c0a07;
  --bg-surface:  #161209;
  --bg-elevated: #211b12;
  --bg-card:     #2a231a;

  --primary:     #c85a20;
  --primary-dim: #9a4218;
  --gold:        #c4882a;
  --gold-light:  #e8b860;

  --cream:       #f0e8d8;
  --cream-dim:   #c4b89e;
  --muted:       #6b6055;
  --hairline:    rgba(240,232,216,0.08);

  --sh: 20, 12, 4;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  48px;
  --space-2xl: 80px;
  --space-3xl: 128px;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--cream);
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── NOISE OVERLAY ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.display { font-family: 'Fraunces', serif; font-optical-sizing: auto; }
h1, h2, h3 { font-family: 'Fraunces', serif; font-optical-sizing: auto; }

/* ── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── NAVIGATION ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--space-xl);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 10, 7, 0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(12, 10, 7, 0.92);
  backdrop-filter: blur(16px);
  border-color: var(--hairline);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { width: 22px; height: 22px; fill: var(--cream); }
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-family: 'Figtree', sans-serif;
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--primary);
  transition: right 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta {
  background: var(--primary);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  box-shadow: 0 2px 4px rgba(var(--sh), 0.3), 0 8px 16px rgba(200, 90, 32, 0.2);
}
.nav-cta:hover {
  background: var(--primary-dim);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 8px rgba(var(--sh), 0.4), 0 16px 32px rgba(200, 90, 32, 0.25);
}
.nav-cta:active { transform: scale(0.98); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(12, 10, 7, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-xl);
  flex-direction: column;
  gap: var(--space-lg);
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  color: var(--cream-dim);
  font-weight: 500;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--cream); }
.mobile-menu .nav-cta { text-align: center; margin-top: var(--space-sm); }

@media (max-width: 768px) {
  nav { padding: 0 var(--space-lg); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: var(--space-3xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200, 90, 32, 0.18) 0%, transparent 60%),
    linear-gradient(to top, rgba(12, 10, 7, 0.97) 0%, rgba(12, 10, 7, 0.6) 50%, rgba(12, 10, 7, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--primary);
}
.hero-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-xl);
}
.hero-headline .line1 {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-headline .line2 {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--primary);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-headline .line3 {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xl);
}
.hero-desc {
  max-width: 380px;
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.btn-primary {
  background: var(--primary);
  color: var(--cream);
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(200, 90, 32, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dim);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(200, 90, 32, 0.4);
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--cream-dim);
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--hairline);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: rgba(240,232,216,0.2);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: scale(0.98); }

@media (max-width: 768px) {
  #hero { align-items: center; padding: 0 var(--space-lg); padding-bottom: var(--space-2xl); padding-top: 100px; }
  .hero-content { padding: 0; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { justify-content: center; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ────────────────────────────────────────── */
.marquee-section {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 0 var(--space-xl);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.9);
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(240, 232, 216, 0.5);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── STATS ──────────────────────────────────────────── */
#stats {
  padding: var(--space-3xl) var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-card {
  background: var(--bg-surface);
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.stat-number .accent { color: var(--primary); }
.stat-label {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 768px) {
  #stats { grid-template-columns: repeat(2, 1fr); margin: 0 var(--space-lg); }
  .stat-card { padding: var(--space-xl) var(--space-lg); }
}
@media (max-width: 480px) {
  #stats { grid-template-columns: 1fr 1fr; }
}

/* ── PRODUCTS ───────────────────────────────────────── */
#urunler {
  padding: var(--space-3xl) var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  gap: var(--space-xl);
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--primary);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary);
}
.section-desc {
  max-width: 360px;
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.75;
}

.products-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--bg-card);
}
.product-card:first-child {
  grid-row: 1 / 3;
}
.product-card-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.product-card:first-child .product-card-img {
  min-height: 500px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}
.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,7,0.85) 0%, rgba(12,10,7,0.2) 50%, transparent 100%);
  transition: opacity 0.4s ease;
}
.product-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
}
.product-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-sm);
}
.product-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
.product-desc {
  font-size: 0.82rem;
  color: rgba(240,232,216,0.7);
  line-height: 1.5;
}
.product-arrow {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(240,232,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(8px);
}
.product-arrow svg { width: 16px; height: 16px; stroke: var(--cream); }
.product-card:hover .product-arrow {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card:first-child { grid-row: 1; }
}
@media (max-width: 768px) {
  #urunler { padding: var(--space-2xl) var(--space-lg); }
  .section-header { flex-direction: column; align-items: flex-start; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card:first-child .product-card-img { min-height: 300px; }
}

/* ── ABOUT ──────────────────────────────────────────── */
#hakkinda {
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: var(--bg-surface);
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(var(--sh), 0.2), 0 12px 24px rgba(var(--sh), 0.35), 0 40px 80px rgba(var(--sh), 0.45);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 140px;
  height: 140px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(200, 90, 32, 0.4);
  transform: translate(24px, 24px);
}
.about-badge-num {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.about-badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  color: rgba(240,232,216,0.85);
}

.about-content { padding: var(--space-xl) 0; }
.about-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--cream-dim);
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
  border-left: 2px solid var(--primary);
}
.about-text {
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.value-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--bg-elevated);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.value-icon svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.value-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 2px;
}
.value-sub {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .about-img-main img { height: 360px; }
  .about-badge { transform: translate(16px, 16px); width: 120px; height: 120px; }
}
@media (max-width: 768px) {
  #hakkinda { padding: var(--space-2xl) 0; }
  .about-inner { padding: 0 var(--space-lg); }
  .about-values { grid-template-columns: 1fr; }
}

/* ── PROCESS ────────────────────────────────────────── */
#surec {
  padding: var(--space-3xl) var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
}
.process-header { text-align: center; margin-bottom: var(--space-2xl); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--primary), var(--primary), var(--primary));
  opacity: 0.25;
}
.process-card {
  background: var(--bg-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--space-xl);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.process-card:hover {
  border-color: rgba(200, 90, 32, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(var(--sh), 0.2), 0 16px 32px rgba(var(--sh), 0.3);
}
.process-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: var(--space-lg);
  display: block;
}
.process-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-elevated);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: background 0.3s ease;
}
.process-card:hover .process-icon { background: rgba(200, 90, 32, 0.15); }
.process-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.process-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}
.process-text {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.75;
}

@media (max-width: 768px) {
  #surec { padding: var(--space-2xl) var(--space-lg); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-header { text-align: left; }
}

/* ── GALLERY ────────────────────────────────────────── */
#galeri {
  padding: var(--space-3xl) 0;
  overflow: hidden;
}
.gallery-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 200px 200px;
  gap: var(--space-sm);
  padding: 0 var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--r-sm);
  position: relative;
}
.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(4) {
  grid-column: 4 / 6;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,7,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 180px 180px; }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: auto; }
}
@media (max-width: 768px) {
  #galeri { padding: var(--space-2xl) 0; }
  .gallery-header, .gallery-grid { padding: 0 var(--space-lg); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 160px; }
}

/* ── TESTIMONIALS ───────────────────────────────────── */
#referanslar {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--bg-surface);
}
.testi-header {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.testi-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.testi-card {
  background: var(--bg-elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--space-xl);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.testi-card:hover {
  border-color: rgba(200, 90, 32, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(var(--sh), 0.15), 0 20px 40px rgba(var(--sh), 0.3);
}
.testi-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: var(--space-md);
  display: block;
  font-weight: 900;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--bg-card);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cream);
}
.testi-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1px;
}
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}
.testi-stars svg { width: 14px; height: 14px; fill: var(--gold-light); }

@media (max-width: 768px) {
  #referanslar { padding: var(--space-2xl) var(--space-lg); }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-header { text-align: left; }
}

/* ── FAQ ────────────────────────────────────────────── */
#sss {
  padding: var(--space-3xl) var(--space-xl);
  max-width: 960px;
  margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: var(--space-2xl); }
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--cream-dim); }
.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--cream-dim); fill: none; stroke-width: 2; }
.faq-item.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { stroke: var(--cream); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 0 var(--space-lg);
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

@media (max-width: 768px) {
  #sss { padding: var(--space-2xl) var(--space-lg); }
  .faq-header { text-align: left; }
}

/* ── CTA ────────────────────────────────────────────── */
#iletisim-cta {
  position: relative;
  padding: var(--space-3xl) var(--space-xl);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200, 90, 32, 0.15) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(12,10,7,0.85) 0%, rgba(12,10,7,0.75) 100%);
}
.cta-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}
.cta-title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}
.cta-title em { font-style: italic; font-weight: 300; color: var(--primary); }
.cta-text {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}
.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin-top: var(--space-xl);
  justify-content: center;
}
.cta-phone svg { width: 16px; height: 16px; stroke: var(--primary); fill: none; }
.cta-phone a { color: var(--cream); font-weight: 600; transition: color 0.2s; }
.cta-phone a:hover { color: var(--primary); }

@media (max-width: 768px) {
  #iletisim-cta { padding: var(--space-2xl) var(--space-lg); }
  .cta-actions { flex-direction: column; }
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--hairline);
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--hairline);
}
.footer-brand .nav-logo { margin-bottom: var(--space-lg); }
.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.footer-social {
  display: flex;
  gap: var(--space-sm);
}
.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-elevated);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.social-link:active { transform: scale(0.95); }
.social-link svg { width: 16px; height: 16px; stroke: var(--cream-dim); fill: none; stroke-width: 1.5; }
.social-link:hover svg { stroke: var(--cream); }
.footer-col-title {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: var(--space-lg);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--primary); fill: none; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: var(--space-xl);
}
.footer-legal a { font-size: 0.78rem; color: var(--muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--cream-dim); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  footer { padding: var(--space-2xl) var(--space-lg) var(--space-lg); }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── FOCUS VISIBLE ──────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  padding: 160px var(--space-xl) var(--space-2xl);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--hairline);
}
.page-hero-content {
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}
.page-hero-desc {
  color: var(--cream-dim);
  font-size: 1.1rem;
  max-width: 600px;
}

@media (max-width: 768px) {
  .page-hero { padding: 120px var(--space-lg) var(--space-xl); }
}

/* ── PRODUCTS PAGE ──────────────────────────────────── */
.products-page {
  padding: var(--space-2xl) 0;
}
.products-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.products-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.products-grid-full .product-card {
  grid-row: auto;
}
.products-grid-full .product-card-img {
  min-height: 280px;
}

@media (max-width: 1024px) {
  .products-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .products-container { padding: 0 var(--space-lg); }
  .products-grid-full { grid-template-columns: 1fr; }
}

/* ── GALLERY PAGE ──────────────────────────────────── */
.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.gallery-grid-full .gallery-item {
  height: 250px;
  grid-column: auto;
  grid-row: auto;
}

@media (max-width: 768px) {
  .gallery-grid-full { grid-template-columns: 1fr 1fr; padding: 0 var(--space-lg); }
  .gallery-grid-full .gallery-item { height: 180px; }
}

/* ── CONTACT PAGE ──────────────────────────────────── */
.contact-section {
  padding: var(--space-2xl) 0;
}
.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}
.contact-info h2 {
  margin-bottom: var(--space-xl);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}
.contact-icon.whatsapp { background: #25D366; }
.contact-icon.whatsapp svg { stroke: #fff; }
.contact-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item p {
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.contact-item a {
  color: var(--cream);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--primary); }

.contact-cta {
  display: flex;
  align-items: center;
}
.contact-cta-inner {
  background: var(--bg-surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--space-2xl);
}
.contact-cta-inner h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}
.contact-cta-inner p {
  color: var(--cream-dim);
  margin-bottom: var(--space-xl);
}
.contact-cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contact-container { grid-template-columns: 1fr; padding: 0 var(--space-lg); }
  .contact-cta-buttons { flex-direction: column; }
}
