/* =====================================================
   DÜNDAR YAPI — STYLESHEET
   Premium yapı / yalıtım / inşaat firması
   Warm off-white · gold accent · editorial layout
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg:           #f6f1e7;       /* warm off-white / kırık beyaz */
  --bg-soft:      #efe8d8;       /* subtle warm beige */
  --bg-alt:       #ede4d2;       /* deeper beige for alt sections */
  --surface:      #fdfaf3;       /* warm white card */
  --surface-2:    #f1ebdc;       /* card alt */

  /* Ink */
  --ink:          #1c1a17;       /* primary text — rich charcoal, not black */
  --ink-2:        #3a352e;       /* secondary text */
  --ink-soft:     #6b6358;       /* muted */
  --ink-faint:    #9a9082;       /* very muted */

  /* Accents */
  --gold:         #a8824a;       /* primary gold — warm, restrained */
  --gold-deep:    #8a6635;       /* darker gold */
  --gold-soft:    #c9a774;       /* soft gold for highlights */
  --gold-faint:   rgba(168, 130, 74, 0.14);
  --gold-line:    rgba(168, 130, 74, 0.35);

  /* Lines */
  --line:         rgba(28, 26, 23, 0.10);
  --line-strong:  rgba(28, 26, 23, 0.18);

  /* Type */
  --serif:        "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:         "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container:    1280px;
  --gutter:       clamp(20px, 4vw, 40px);
  --radius:       4px;
  --radius-lg:    18px;

  /* Motion */
  --ease:         cubic-bezier(.22, .61, .36, 1);
  --ease-in:      cubic-bezier(.4, 0, .2, 1);

  --header-h:     88px;
}

@media (max-width: 720px) {
  :root { --header-h: 70px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;

  /* subtle paper-like grain backdrop */
  background-image:
    radial-gradient(ellipse at top left, rgba(201, 167, 116, 0.07), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(168, 130, 74, 0.05), transparent 60%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

::selection {
  background: var(--gold);
  color: #fff;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg {
  width: 16px; height: 16px;
  transition: transform .35s var(--ease);
}
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ---------- Reveal animation ---------- */
/* Only hide when JS is enabled; no-JS users see everything */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal:nth-child(1) { transition-delay: 0s; }
.js .reveal:nth-child(2) { transition-delay: .08s; }
.js .reveal:nth-child(3) { transition-delay: .16s; }
.js .reveal:nth-child(4) { transition-delay: .24s; }
.js .reveal:nth-child(5) { transition-delay: .32s; }
.js .reveal:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(246, 241, 231, 0.95);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: var(--header-h);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Nav */
.primary-nav .nav-list {
  display: flex;
  gap: 38px;
}
.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 0;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--gold-deep); }
.nav-link:hover { color: var(--gold-deep); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .25s var(--ease);
}
.header-phone:hover { color: var(--gold-deep); }
.header-phone svg {
  width: 18px; height: 18px;
  color: var(--gold);
}
.header-cta {
  padding: 12px 22px;
  font-size: 12px;
}
.header-cta svg { width: 14px; height: 14px; }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--ink);
  transition: all .35s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 25px; }
.menu-toggle.is-open span:nth-child(1) {
  top: 19px; transform: rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) {
  top: 19px; transform: rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  display: none; /* desktop default — shown only on mobile via media query below */
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: calc(100dvh - var(--header-h));
  background: var(--bg);
  padding: 40px var(--gutter);
  transform: translateY(-110%);
  transition: transform .5s var(--ease);
  z-index: 49;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer a {
  display: block;
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color .3s var(--ease);
}
.mobile-drawer a:hover { color: var(--gold); }
.mobile-drawer .drawer-cta {
  margin-top: 18px;
  padding: 18px;
  text-align: center;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--sans);
  font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
}

/* Editorial vertical rule on the side */
.hero-rule {
  position: absolute;
  top: 24px;
  right: 0;
  height: 280px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.hero-rule .rule-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.hero-rule .rule-label.rotate {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.4em;
}
.hero-rule .rule-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@media (max-width: 980px) { .hero-rule { display: none; } }

/* Hero content */
.hero-content {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
  padding: 10px 22px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.eyebrow-sep { color: var(--gold-soft); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.hero-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 64px;
}

/* Cinematic figure */
.hero-figure {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px -25px rgba(28, 26, 23, 0.35),
    0 8px 24px -12px rgba(28, 26, 23, 0.15);
}
.hero-figure img {
  width: 100%;
  height: clamp(340px, 56vh, 620px);
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-figure:hover img { transform: scale(1.02); }

.hero-caption {
  position: absolute;
  top: 22px; left: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(28, 26, 23, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.hero-caption .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
}

/* Floating stats */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: -64px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin-inline: auto;
  box-shadow:
    0 20px 50px -30px rgba(28, 26, 23, 0.25);
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-inline: 12px;
  border-left: 1px solid var(--line);
}
.hero-stats li:first-child { border-left: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-num sup {
  font-size: 0.5em;
  color: var(--gold);
  vertical-align: super;
  margin-left: 2px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

@media (max-width: 880px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -32px;
    padding: 24px;
  }
  .hero-stats li {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 14px 0 0;
  }
  .hero-stats li:first-child,
  .hero-stats li:nth-child(2) {
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .hero { padding-bottom: 56px; }
  .hero-actions { gap: 10px; margin-bottom: 44px; }
  .hero-figure img { height: 380px; }
  .btn { padding: 14px 22px; font-size: 12px; }
}

/* ============================================
   ABOUT (Hakkımızda)
   ============================================ */
.about {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 500;
  font-style: italic;
}
.about-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 540px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about-points li {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.point-num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  font-style: italic;
  min-width: 28px;
}
.point-text {
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.005em;
}

.about-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(28, 26, 23, 0.3);
}
.about-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(1.02);
  transition: transform 1.3s var(--ease);
}
.about-figure:hover img { transform: scale(1.03); }
.figure-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  padding: 8px 16px;
  background: var(--bg);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold-line);
}

@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-figure { aspect-ratio: 4 / 3; max-width: 600px; margin: 0 auto; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-soft);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(168, 130, 74, 0.05), transparent 70%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 8vw, 90px);
}
.services-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
}

/* Stage = preview + list */
.services-stage {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  position: relative;
}

/* Sticky preview (desktop only) */
.services-preview {
  position: sticky;
  top: calc(var(--header-h) + 60px);
  height: max-content;
  align-self: start;
}
.preview-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow:
    0 30px 60px -30px rgba(28, 26, 23, 0.4),
    0 6px 20px -10px rgba(28, 26, 23, 0.2);
}
.preview-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .55s var(--ease), transform .9s var(--ease);
}
.preview-frame img.is-swapping {
  opacity: 0;
  transform: scale(1.03);
}
/* corner ticks for editorial detail */
.preview-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
}
.preview-corner.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.preview-corner.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.preview-corner.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.preview-corner.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* Editorial list */
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  gap: 24px;
  align-items: center;
  padding: 32px 12px;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: background .35s var(--ease);
}
.service-row:hover { background: rgba(255, 255, 255, 0.5); }
.service-row::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .6s var(--ease);
}
.service-row:hover::before,
.service-row.is-active::before { width: 100%; }

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform .35s var(--ease);
}
.service-row:hover .service-num { transform: translateX(4px); }

.service-meta {}
.service-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color .35s var(--ease);
}
.service-row:hover .service-title { color: var(--gold-deep); }
.service-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 520px;
}

.service-thumb {
  display: none; /* hidden on desktop — shown via sticky preview */
  margin: 0;
}

.service-arrow {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  opacity: 0.4;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  text-align: right;
}
.service-row:hover .service-arrow {
  opacity: 1;
  transform: translateX(6px);
}

/* Mobile services: stack with inline images */
@media (max-width: 880px) {
  .services-stage { grid-template-columns: 1fr; }
  .services-preview { display: none; }
  .service-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "num meta"
      "thumb thumb";
    padding: 28px 0;
    gap: 14px;
  }
  .service-num { grid-area: num; align-self: start; padding-top: 4px; }
  .service-meta { grid-area: meta; }
  .service-arrow { display: none; }
  .service-thumb {
    display: block;
    grid-area: thumb;
    margin-top: 14px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
  }
  .service-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
}

/* ============================================
   WHY US
   ============================================ */
.why {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.why-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 30% 40%, #cdb88a 0%, #b89c6a 60%, #8a7345 100%);
  box-shadow: 0 30px 60px -30px rgba(28, 26, 23, 0.35);
}
.why-figure::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,26,23,0) 50%, rgba(28,26,23,0.45) 100%);
  pointer-events: none;
  z-index: 2;
}
.why-figure img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 18% 40%;
  transform: scale(1.6);
  transform-origin: 18% 40%;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 1.3s var(--ease);
  z-index: 1;
}
.why-figure:hover img { transform: scale(1.65); }
.why-figure-tag {
  position: absolute;
  top: 22px; left: 22px;
  padding: 8px 16px;
  background: rgba(28, 26, 23, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  border-radius: 999px;
  z-index: 3;
}

.why-lead {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background .35s var(--ease);
}
.why-item:hover { background: var(--bg-alt); }

.why-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-faint);
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.why-icon svg { width: 22px; height: 22px; }

.why-title-3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.why-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 880px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-figure { aspect-ratio: 4 / 3; max-width: 600px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROJECTS
   ============================================ */
.projects {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-alt);
  position: relative;
}

.projects-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.projects-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 8px;
  max-width: 480px;
  justify-self: end;
}
@media (max-width: 880px) {
  .projects-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .projects-lead { justify-self: start; max-width: none; }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.project {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  cursor: pointer;
}
.project.tall { grid-row: span 2; }
.project img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 26, 23, 0.78) 100%);
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.project:hover img { transform: scale(1.06); }

.project figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  z-index: 2;
}
.proj-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.proj-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.proj-cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

@media (max-width: 880px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .project.tall { grid-row: auto; }
}
@media (max-width: 560px) {
  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
  position: relative;
}

.contact-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(50px, 7vw, 80px);
}
.contact-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}

.contact-card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), border-color .35s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
}
.contact-card.highlight {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.contact-card.highlight .contact-link,
.contact-card.highlight .contact-card-title { color: var(--bg); }
.contact-card.highlight .contact-card-sub { color: rgba(246, 241, 231, 0.7); }
.contact-card.highlight .contact-card-num { color: var(--gold-soft); }
.contact-card.highlight .contact-cta { color: var(--gold-soft); }
.contact-card.highlight .contact-cta:hover { color: #fff; }

.contact-card-num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.contact-card-title {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-weight: 500;
}
.contact-link {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  transition: color .25s var(--ease);
}
.contact-link.not-italic { font-style: normal; font-size: 18px; line-height: 1.5; }
a.contact-link:hover { color: var(--gold-deep); }

.contact-card-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.contact-cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  transition: color .25s var(--ease);
}
.contact-cta:hover { color: var(--ink); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Service areas band */
.service-areas {
  padding: 36px clamp(24px, 4vw, 48px);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}
.areas-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  margin: 0;
  font-weight: 500;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.areas-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--gold-line);
  padding-left: 18px;
}
.areas-list strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.areas-list span {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .service-areas {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .areas-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(246, 241, 231, 0.85);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 380px;
  color: rgba(246, 241, 231, 0.65);
}
.footer-logo {
  width: 56px; height: 56px;
  filter: brightness(1.1);
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(246, 241, 231, 0.7);
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact li { font-size: 14px; color: rgba(246, 241, 231, 0.7); }

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(246, 241, 231, 0.5);
  letter-spacing: 0.06em;
}
.footer-bottom p { margin: 0; }

@media (max-width: 880px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 720px) {
  .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ============================================
   RESPONSIVE — header collapse
   ============================================ */
@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .header-phone span { display: none; }
}
@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .brand-tag { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 18px; }
  .mobile-drawer { display: block; }
}

/* HEADER DROPDOWN FIX */
.primary-nav .nav-list {
  align-items: center;
}

.primary-nav .has-dropdown {
  position: relative;
}

.primary-nav .has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.primary-nav .has-dropdown > .nav-link::before {
  content: "⌄";
  order: 2;
  font-size: 13px;
  color: var(--gold);
  transform: translateY(-1px);
}

.primary-nav .dropdown {
  position: absolute;
 top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 320px;
  padding: 14px;
  background: rgba(253, 250, 243, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(28, 26, 23, 0.16);
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .28s var(--ease);
  z-index: 999;
}

.primary-nav .has-dropdown:hover .dropdown,
.primary-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.primary-nav .dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(253, 250, 243, 0.98);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.primary-nav .dropdown li + li {
  border-top: 1px solid rgba(28, 26, 23, 0.07);
}

.primary-nav .dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: all .22s var(--ease);
}

.primary-nav .dropdown a:hover {
  background: var(--gold-faint);
  color: var(--gold-deep);
  padding-left: 18px;
}

.primary-nav .has-dropdown {
  position: relative;
  padding-bottom: 0px;
}
.primary-nav .dropdown {
  margin-top: -3px; /* boşluk hissi ama hover kopmaz */
}

.about-page-hero {
  padding-top: calc(var(--header-h) + 90px);
  padding-bottom: clamp(60px, 8vw, 110px);
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(168,130,74,.08), transparent 65%),
    var(--bg);
}

.services-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 8px;
}

.services-cta {
  margin-top: 80px;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: #f8f6f2;
}

.page-title {
  font-size: 48px;
  font-weight: 500;
  margin: 20px 0;
}

.page-lead {
  max-width: 700px;
  margin: auto;
  color: #666;
}

.service-detail {
  padding: 80px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
}

.service-text h2 {
  margin-bottom: 20px;
}

.service-list {
  margin-top: 20px;
}

.service-list li {
  margin-bottom: 10px;
}

.service-cta {
  padding: 80px 0;
  text-align: center;
  background: #f1ede7;
}

.contact-page-hero {
  padding-top: calc(var(--header-h) + 90px);
  padding-bottom: 90px;
  background:
    radial-gradient(ellipse at 78% 20%, rgba(168,130,74,.10), transparent 45%),
    var(--bg);
}

.contact-page-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.contact-page-title {
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 112px);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--ink);
}

.contact-page-title em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}

.contact-page-lead {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
}

.contact-page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.contact-info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 30px 70px -40px rgba(28,26,23,.35);
}

.contact-info-panel article {
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.contact-info-panel article:last-child {
  border-bottom: 0;
}

.contact-info-panel span {
  display: block;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-info-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-info-panel a,
.contact-info-panel p {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0;
}

.contact-map-block {
  padding: 90px 0;
  background: var(--bg-soft);
}

.contact-map-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.map-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 52px);
}

.map-copy h2,
.areas-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 20px;
}

.map-copy p {
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 30px;
}

.map-frame {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -45px rgba(28,26,23,.35);
}

.contact-areas-block {
  padding: 90px 0 120px;
  background: var(--bg);
}

.areas-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.areas-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.areas-cards article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  min-height: 210px;
  transition: .3s var(--ease);
}

.areas-cards article:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 24px 54px -38px rgba(28,26,23,.35);
}

.areas-cards span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.areas-cards strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  margin: 18px 0 10px;
}

.areas-cards p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .contact-page-inner,
  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .areas-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-frame {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .areas-cards {
    grid-template-columns: 1fr;
  }

  .contact-page-hero {
    padding-top: calc(var(--header-h) + 50px);
  }
}

.projects-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
}

.projects-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1;
  margin-bottom: 20px;
}

.projects-title em {
  color: var(--gold-deep);
  font-style: italic;
}

.projects-lead {
  max-width: 700px;
  margin: 0 auto;
  color: var(--ink-2);
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .4s ease;
}

/* HOVER */
.project-card:hover img {
  transform: scale(1.08);
  filter: brightness(.85);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px){
  .projects-grid {
    grid-template-columns: 1fr;
  }
}