/* ============================================================
   Geçgeller Dikim Evi — Premium terzi landing page
   Palet: karbon siyahı + kırık beyaz + ince bakır vurgu
   ============================================================ */

:root {
  --ink: #111112;
  --ink-2: #1c1c1e;
  --ink-3: #2a2a2d;
  --paper: #f6f4ef;
  --paper-2: #ece8df;
  --line: #dcd7cc;
  --muted: #5f5d58;
  --muted-light: #a9a49a;
  --accent: #a97d4f;       /* ince bakır */
  --accent-soft: #c19a6b;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1da851;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius: 5px;
  --shadow: 0 24px 60px -30px rgba(17, 17, 18, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: 0.2px; }

.eyebrow {
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 18px;
}
.eyebrow-light { color: var(--accent-soft); }

.section-title { font-size: clamp(30px, 4.5vw, 52px); }
.section-sub { color: var(--muted); max-width: 60ch; margin: 16px auto 0; font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; font-family: var(--sans); font-size: 15.5px; font-weight: 600;
  letter-spacing: 0.02em; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.4s var(--ease); white-space: nowrap; line-height: 1.2;
}
.btn .ico-wa { flex: none; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(169, 125, 79, 0.6); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); font-size: 14px; padding: 11px 18px; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 244, 239, 0.85); backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent; padding-top: env(safe-area-inset-top, 0px);
  transition: border-color 0.4s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { color: var(--ink); display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 23px; font-weight: 700; letter-spacing: 0.5px; }
.brand-sub { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav { display: flex; gap: 30px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--accent); transition: width 0.4s var(--ease); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call span { display: inline; }
.header-wa { padding: 12px 20px; font-size: 14.5px; }
.header-wa .ico-wa { color: var(--wa); }
.header-wa:hover .ico-wa { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================ HERO */
.hero { position: relative; color: var(--paper); overflow: hidden; background: var(--ink); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(169,125,79,0.20), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 22px),
    linear-gradient(160deg, #171718 0%, #101011 60%, #0c0c0d 100%);
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0.42; }
.hero-photo.ph-hidden { display: none; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,12,13,0.55) 0%, rgba(12,12,13,0.74) 100%),
              radial-gradient(120% 90% at 78% 12%, rgba(169,125,79,0.18), transparent 55%);
}
.hero-inner { position: relative; z-index: 3; padding: clamp(80px, 14vh, 150px) 24px clamp(70px, 12vh, 120px); text-align: center; }
.hero .eyebrow { color: var(--accent-soft); }
.hero-title { font-size: clamp(40px, 7vw, 82px); font-weight: 600; letter-spacing: 0.5px; }
.hero-title em { font-style: italic; color: var(--accent-soft); }
.hero-lead { max-width: 60ch; margin: 26px auto 0; color: rgba(246,244,239,0.85); font-size: 19px; font-weight: 300; }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.hero .btn-primary { background: var(--wa); color: #fff; border-color: var(--wa); }
.hero .btn-primary .ico-wa { color: #fff; }
.hero .btn-primary:hover { background: var(--wa-dark); border-color: var(--wa-dark); box-shadow: 0 14px 34px -12px rgba(37,211,102,0.6); }

.hero-stats { list-style: none; margin: 58px auto 0; padding: 0; display: flex; gap: clamp(28px, 6vw, 72px); justify-content: center; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--paper); display: inline-flex; align-items: baseline; gap: 3px; }
.hero-stats .star { color: var(--accent-soft); font-size: 22px; }
.hero-stats span { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); margin-top: 6px; }

/* ============================================================ TRUST BAND */
.trust { background: var(--ink-2); border-block: 1px solid rgba(255,255,255,0.07); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 8px 18px; color: var(--paper); }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.08); }
.trust-item svg { color: var(--accent-soft); flex: none; }
.trust-item strong { display: block; font-family: var(--sans); font-size: 15.5px; font-weight: 600; }
.trust-item span { font-size: 13px; color: var(--muted-light); }
a.trust-item:hover strong { color: var(--accent-soft); }

/* ============================================================ MARQUEE */
.marquee { background: var(--ink); overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 28px; white-space: nowrap; padding: 16px 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 23px; font-style: italic; color: rgba(246,244,239,0.5); }
.marquee-track span:nth-child(even) { color: var(--accent); font-style: normal; font-size: 15px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================ SECTIONS */
.section { padding-block: clamp(70px, 11vh, 128px); }
.section-head { text-align: center; margin-bottom: 58px; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark .section-title { color: var(--paper); }

/* ---------- Photo placeholder ---------- */
.ph { position: relative; background: linear-gradient(140deg, #1b1b1d 0%, #26262a 55%, #16161a 100%); overflow: hidden; }
.ph::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0.5;
  background:
    repeating-linear-gradient(135deg, rgba(201,154,107,0.06) 0 1px, transparent 1px 16px),
    radial-gradient(60% 60% at 30% 20%, rgba(201,154,107,0.12), transparent 60%);
}
.ph::after {
  content: attr(data-label); position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center; text-align: center; padding: 12px;
  font-family: var(--serif); font-style: italic; font-size: 21px; letter-spacing: 0.04em;
  color: rgba(201,154,107,0.55);
}
.ph > img { position: relative; z-index: 3; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph > img.ph-hidden { display: none; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; z-index: 4; background: var(--accent); transition: width 0.5s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card-media { aspect-ratio: 16 / 10; width: 100%; }
.card-media > img { transition: transform 0.7s var(--ease); }
.card:hover .card-media > img { transform: scale(1.05); }
.card-body { padding: 30px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.card-num { font-family: var(--serif); font-size: 15px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 6px; }
.card h3 { font-size: 27px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 16px; margin: 0 0 20px; }
.card-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.card-list li { position: relative; padding-left: 24px; font-size: 15.5px; color: var(--ink-2); }
.card-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step { position: relative; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.16); }
.step-no { position: absolute; top: 22px; right: 0; font-family: var(--serif); font-size: 40px; font-weight: 600; color: rgba(193,154,107,0.3); line-height: 1; }
.step-ico { color: var(--accent-soft); display: block; margin-bottom: 16px; }
.step h3 { font-size: 25px; color: var(--paper); margin-bottom: 10px; }
.step p { color: rgba(246,244,239,0.7); font-size: 16px; margin: 0; }

/* ---------- Gallery ---------- */
.section-gallery { background: var(--paper-2); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.gallery figure > img { transition: transform 0.8s var(--ease); }
.gallery figure:hover > img { transform: scale(1.06); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.about-visual { display: grid; place-items: center; }
.about-card { width: 100%; aspect-ratio: 4/5; max-width: 440px; border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.about-rating { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; text-align: center; font-family: var(--serif); font-size: 23px; color: var(--paper); margin: 0; padding: 40px 16px 20px; background: linear-gradient(180deg, transparent, rgba(12,12,13,0.85)); }
.about-rating span { font-family: var(--sans); font-size: 13px; color: var(--muted-light); letter-spacing: 0.04em; }
.about-text .section-title { text-align: left; }
.about-text p { color: var(--muted); margin: 18px 0 0; font-size: 17px; }
.about-features { display: flex; flex-wrap: wrap; gap: 30px; margin: 32px 0 34px; }
.about-features div { display: flex; flex-direction: column; }
.about-features strong { font-family: var(--serif); font-size: 22px; }
.about-features span { font-size: 14px; color: var(--muted); }

/* ---------- Reviews ---------- */
.section-reviews { background: var(--paper); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.review { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px 28px; position: relative; display: flex; flex-direction: column; }
.review .stars { color: var(--accent); letter-spacing: 3px; font-size: 17px; margin-bottom: 14px; }
.review blockquote { margin: 0 0 18px; font-family: var(--serif); font-size: 20px; line-height: 1.45; color: var(--ink); font-style: italic; flex: 1; }
.review figcaption { font-size: 15px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.02em; padding-top: 14px; border-top: 1px solid var(--line); }
.review figcaption span { font-weight: 400; font-size: 13px; color: var(--muted-light); }
.reviews-cta { text-align: center; margin-top: 42px; }

/* ---------- Contact ---------- */
.section-contact { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-info { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.info-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 26px; }
.info-list li { display: flex; gap: 16px; }
.info-ico { flex: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--accent); }
.info-list h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.info-list p { margin: 0; font-size: 16px; color: var(--ink-2); }
.info-list a:hover { color: var(--accent); }
.hours { border-collapse: collapse; width: 100%; margin-top: 4px; }
.hours td { padding: 6px 0; font-size: 15px; color: var(--ink-2); }
.hours td:last-child { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours tr:not(:last-child) td { border-bottom: 1px dashed var(--line); }
.hours tr.closed td, .hours tr.closed td:last-child { color: #b23b3b; }

.contact-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.contact-actions .act { padding: 15px 12px; font-size: 15px; }
.contact-actions .btn-primary.act { background: var(--wa); border-color: var(--wa); color: #fff; }
.contact-actions .btn-primary.act .ico-wa { color: #fff; }
.contact-actions .btn-primary.act:hover { background: var(--wa-dark); border-color: var(--wa-dark); }

.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 440px; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; padding-block: clamp(60px, 9vh, 100px); }
.cta-inner h2 { font-size: clamp(28px, 4vw, 46px); }
.cta-inner p { color: rgba(246,244,239,0.75); margin: 14px 0 30px; font-size: 18px; }
.cta-band .btn-light .ico-wa { color: var(--wa); }
.cta-band .btn-light:hover .ico-wa { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: #0c0c0d; color: rgba(246,244,239,0.72); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 25px; color: var(--paper); }
.footer-brand p { margin: 12px 0 0; font-size: 15px; max-width: 36ch; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 15px; padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13.5px; color: var(--muted-light); }
.footer-bottom p { margin: 0; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom, 0px)); z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 34px -8px rgba(37,211,102,0.6); transition: transform 0.35s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wa); opacity: 0.5; animation: waPulse 2.4s ease-out infinite; z-index: -1; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.9); opacity: 0; } }

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

/* ============================================================ RESPONSIVE */
@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 30px; }
}
@media (max-width: 900px) {
  .nav { gap: 22px; }
  .header-call span { display: none; }
  .header-call { padding: 11px; }
  .reviews { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-text .section-title, .about-text .eyebrow { text-align: center; }
  .about-features { justify-content: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 4px 8px; }
  .trust-item:nth-child(3) { border-left: 0; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; transform: translateY(-140%); transition: transform 0.45s var(--ease); box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .header-wa span { display: none; }
  .header-wa { padding: 12px 14px; }
  .cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 540px) {
  .container { padding-inline: 18px; }
  body { font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 28px 22px; }
  .hero-stats { gap: 24px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gallery .g-wide, .gallery .g-tall { grid-column: auto; grid-row: auto; }
  .contact-actions { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-left: 0 !important; justify-content: flex-start; }
  .hero-lead, .section-sub, .cta-inner p { font-size: 17px; }
}

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