/* ===========================================================
   Duygu Emlak — Lüleburgaz
   El yapımı, profesyonel tek sayfa tanıtım sitesi
   =========================================================== */

:root {
  --ink:        #16202e;
  --ink-soft:   #243245;
  --gold:       #c69749;
  --gold-deep:  #a87c33;
  --paper:      #f7f3ec;
  --paper-2:    #efe9df;
  --white:      #ffffff;
  --text:       #2b3340;
  --muted:      #6b7585;
  --line:       #e4ddd1;
  --shadow-sm:  0 2px 10px rgba(22,32,46,.06);
  --shadow-md:  0 14px 40px rgba(22,32,46,.12);
  --shadow-lg:  0 30px 80px rgba(22,32,46,.22);
  --radius:     16px;
  --radius-lg:  24px;
  --maxw:       1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 .4em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block;
}

.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #d8dde6; }
.section--ink h2, .section--ink h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: .2em 0 0; }
.section--ink .section-head p { color: #aeb7c4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 10px 24px rgba(168,124,51,.32); }
.btn--gold:hover { background: var(--gold-deep); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-soft); }
.btn--wa { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.3); }
.btn--wa:hover { background: #1eb955; }
.btn--ghost { background: transparent; border-color: rgba(22,32,46,.2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--light:hover { background: #fff; color: var(--ink); }

/* ===========================================================
   Header
   =========================================================== */
.topbar {
  background: var(--ink); color: #cfd6e0; font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #cfd6e0; display: inline-flex; align-items: center; gap: .5em; }
.topbar a:hover { color: var(--gold); }
.topbar .topbar-right { display: flex; gap: 22px; }
.topbar svg { width: 15px; height: 15px; opacity: .85; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,236,.82); backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s, background .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(247,243,236,.95); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 12px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: "Fraunces", serif; font-size: 1.32rem; color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
.brand-name span { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 14px; font-weight: 600; font-size: .96rem; color: var(--ink-soft); border-radius: 10px; transition: color .2s, background .2s; }
.nav a:hover { color: var(--ink); background: rgba(22,32,46,.05); }
.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ===========================================================
   Hero
   =========================================================== */
.hero { position: relative; padding: clamp(48px, 7vw, 92px) 0 clamp(64px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 88% -8%, rgba(198,151,73,.14), transparent 60%),
    radial-gradient(700px 600px at -5% 110%, rgba(22,32,46,.06), transparent 55%);
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
.hero-copy h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 30em; margin: 0 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.2rem; }
.hero-rating { display: inline-flex; align-items: center; gap: 14px; padding: 12px 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.hero-rating b { color: var(--ink); }
.hero-rating .g { font-weight: 700; }
.hero-rating small { color: var(--muted); display: block; font-size: .8rem; }

/* hero photo collage */
.hero-art { position: relative; min-height: 440px; }
.hero-art .frame {
  position: absolute; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md);
  border: 6px solid #fff; background: #fff;
}
.hero-art .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .f1 { width: 62%; height: 78%; top: 0; right: 4%; z-index: 2; transform: rotate(2deg); }
.hero-art .f2 { width: 46%; height: 52%; bottom: 0; left: 0; z-index: 3; transform: rotate(-3deg); }
.hero-art .f3 { width: 34%; height: 40%; top: 12%; left: 2%; z-index: 1; transform: rotate(-1deg); }
.hero-badge {
  position: absolute; z-index: 4; bottom: 6%; right: 2%;
  background: var(--ink); color: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; transform: rotate(2deg);
}
.hero-badge b { font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--gold); line-height: 1; }
.hero-badge small { font-size: .74rem; color: #c2cad6; line-height: 1.25; }

/* ===========================================================
   Stats strip
   =========================================================== */
.stats { background: var(--ink); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-top: 40px; padding-bottom: 40px; }
.stat { text-align: center; padding: 8px 10px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: rgba(255,255,255,.12); }
.stat b { display: block; font-family: "Fraunces", serif; font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--gold); line-height: 1; }
.stat span { color: #aeb7c4; font-size: .9rem; margin-top: .5em; display: block; letter-spacing: .02em; }

/* ===========================================================
   About
   =========================================================== */
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-media .tag {
  position: absolute; left: -18px; bottom: 26px; background: #fff; border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; max-width: 78%;
}
.about-media .tag .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--paper-2); display: grid; place-items: center; flex: none; }
.about-media .tag .ic svg { width: 22px; height: 22px; color: var(--gold-deep); }
.about-media .tag b { display: block; color: var(--ink); font-size: .98rem; }
.about-media .tag span { font-size: .82rem; color: var(--muted); }
.about-copy p { color: var(--ink-soft); margin: 0 0 1.1em; }
.about-copy .lead { font-size: 1.18rem; color: var(--text); }
.feature-list { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink-soft); }
.feature-list svg { flex: none; width: 24px; height: 24px; color: var(--gold-deep); margin-top: 1px; }

/* ===========================================================
   Services
   =========================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service .ic { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(150deg, #f3ead8, #e9dcc0); display: grid; place-items: center; margin-bottom: 20px; }
.service .ic svg { width: 28px; height: 28px; color: var(--gold-deep); }
.service h3 { font-size: 1.3rem; margin-bottom: .4em; }
.service p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ===========================================================
   Gallery
   =========================================================== */
.gallery-note {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 18px; font-size: .9rem; color: var(--ink-soft); font-weight: 600; margin-top: 18px;
}
.gallery-note svg { width: 18px; height: 18px; color: var(--gold-deep); }

.gallery {
  columns: 4; column-gap: 16px; margin-top: 12px;
}
.gallery figure {
  margin: 0 0 16px; break-inside: avoid; border-radius: 14px; overflow: hidden; position: relative;
  cursor: zoom-in; background: var(--paper-2); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery img { width: 100%; height: auto; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,32,46,.28), transparent 45%);
  opacity: 0; transition: opacity .35s;
}
.gallery figure:hover::after { opacity: 1; }
.gallery .zoom-ic {
  position: absolute; right: 12px; bottom: 12px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transform: translateY(8px);
  transition: opacity .35s, transform .35s; z-index: 2;
}
.gallery .zoom-ic svg { width: 18px; height: 18px; color: var(--ink); }
.gallery figure:hover .zoom-ic { opacity: 1; transform: translateY(0); }

.gallery-more { text-align: center; margin-top: 34px; }

/* ===========================================================
   Lightbox
   =========================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(14,20,28,.92);
  display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .2s;
  backdrop-filter: blur(4px);
}
.lb-btn:hover { background: rgba(255,255,255,.26); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #d8dde6; font-size: .9rem; font-weight: 600; letter-spacing: .04em; }

/* ===========================================================
   Reviews
   =========================================================== */
.reviews .container { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.google-card {
  background: linear-gradient(160deg, #1d2a3b, #16202e); border-radius: var(--radius-lg); padding: 40px 36px;
  color: #fff; text-align: center; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.google-card::before { content: ""; position: absolute; top: -40%; right: -30%; width: 80%; height: 80%; background: radial-gradient(circle, rgba(198,151,73,.25), transparent 70%); }
.google-card .g-logo { font-size: 1rem; font-weight: 700; letter-spacing: .04em; color: #cfd6e0; margin-bottom: 10px; position: relative; }
.google-card .score { font-family: "Fraunces", serif; font-size: 4.4rem; line-height: 1; color: var(--gold); position: relative; }
.google-card .stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 4px; margin: 8px 0 6px; position: relative; }
.google-card p { color: #aeb7c4; margin: 4px 0 22px; position: relative; }
.review-points { display: grid; gap: 18px; }
.review-point { display: flex; gap: 16px; align-items: flex-start; }
.review-point .q { font-family: "Fraunces", serif; font-size: 2.6rem; color: var(--gold); line-height: .8; flex: none; }
.review-point b { color: var(--ink); display: block; font-size: 1.06rem; margin-bottom: 2px; }
.review-point span { color: var(--muted); font-size: .96rem; }

/* ===========================================================
   Contact
   =========================================================== */
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.contact-list { list-style: none; padding: 0; margin: 28px 0 30px; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--paper-2); display: grid; place-items: center; flex: none; }
.contact-list .ic svg { width: 22px; height: 22px; color: var(--gold-deep); }
.contact-list b { display: block; color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-list a, .contact-list span { color: var(--ink-soft); font-size: 1.06rem; }
.contact-list a:hover { color: var(--gold-deep); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid #fff; min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 368px; border: 0; display: block; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--ink); color: #aeb7c4; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .brand-name b { color: #fff; }
.footer-brand p { margin: 16px 0 0; max-width: 32ch; font-size: .96rem; }
.footer-col h4 { color: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease); animation: fab-in .4s var(--ease) .8s both;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; color: #fff; }
@keyframes fab-in { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1024px) {
  .gallery { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .nav, .header-cta .btn span.hide-sm { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(82vw, 320px);
    background: var(--paper); flex-direction: column; align-items: stretch; gap: 4px;
    padding: 92px 22px 30px; box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform .35s var(--ease); z-index: 55;
  }
  .nav.open { transform: none; display: flex; }
  .nav a { padding: 14px 16px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(14,20,28,.45); z-index: 54; opacity: 0; visibility: hidden; transition: .3s; }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  .hero .container { grid-template-columns: 1fr; }
  /* Telefonda üst üste binen kolaj yerine tek, net çerçeveli fotoğraf */
  .hero-art { min-height: 0; width: 100%; max-width: 440px; margin: 0 auto 6px; order: -1; aspect-ratio: 4 / 3.2; justify-self: center; }
  .hero-art .f1 { position: absolute; inset: 0; width: 100%; height: 100%; transform: none; border-width: 7px; }
  .hero-art .f2, .hero-art .f3 { display: none; }
  .hero-badge { bottom: 14px; right: 14px; transform: none; }
  .about .container, .reviews .container, .contact .container { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; margin: 0 auto; }
  .reviews .google-card { max-width: 420px; margin: 0 auto; }
  .stats .container { grid-template-columns: 1fr 1fr; gap: 22px 10px; }
  .stat:nth-child(3)::before { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar .topbar-right { display: none; }
  .topbar .container { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; column-gap: 12px; }
  .gallery figure { margin-bottom: 12px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .about-media .tag { left: 0; right: 0; max-width: none; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 46px; height: 46px; }
}

@media (max-width: 400px) {
  .gallery { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .fab-wa { animation: none; }
}
