/* Görsev Kocaman — Brand: taupe on light/dark */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Syne:wght@500;600;700;800&display=swap');

:root {
  --bg: #f6f5f2;
  --bg-elev: #ffffff;
  --bg-soft: #eeece7;
  --text: #1a1814;
  --text-muted: #6b655c;
  --accent: #b8956a;
  --accent-hover: #a07d52;
  --accent-soft: rgba(184, 149, 106, 0.14);
  --line: rgba(26, 24, 20, 0.08);
  --frame: #c9b08a;
  --shadow: 0 18px 50px rgba(26, 24, 20, 0.08);
  --radius: 18px;
  --nav-h: 76px;
  --font: 'Figtree', sans-serif;
  --display: 'Syne', sans-serif;
  --whatsapp: #25d366;
}

[data-theme="dark"] {
  --bg: #0c0b0a;
  --bg-elev: #161412;
  --bg-soft: #1e1b18;
  --text: #f2ebe1;
  --text-muted: #a59a8b;
  --accent: #c9a87c;
  --accent-hover: #dbb98f;
  --accent-soft: rgba(201, 168, 124, 0.16);
  --line: rgba(242, 235, 225, 0.1);
  --frame: #c9a87c;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, var(--accent-soft), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(184,149,106,0.07), transparent 50%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }

/* Nav */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand img {
  height: 52px; width: auto;
  border-radius: 8px;
}
[data-theme="light"] .brand img {
  box-shadow: 0 0 0 1px var(--line);
}
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 1.25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-controls { display: flex; align-items: center; gap: .5rem; }
.chip {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text-muted);
  border-radius: 999px;
  padding: .35rem .7rem;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  transition: .2s;
}
.chip:hover, .chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  width: 42px; height: 42px; border-radius: 10px;
  cursor: pointer; color: var(--text);
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-copy .eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-copy .slogan {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}
.hero-copy .desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36ch;
  margin: 0 0 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: .2s;
}
.btn-primary { background: var(--accent); color: #1a1814; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Instagram frame */
.ig-frame {
  position: relative;
  background: var(--bg-elev);
  border-radius: calc(var(--radius) + 6px);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.ig-frame::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, var(--frame), transparent 40%, var(--frame));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.ig-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .9rem; padding: 0 .25rem;
}
.ig-head h2 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0;
}
.ig-head a { color: var(--accent); font-size: .85rem; font-weight: 600; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
}
.ig-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  display: block;
}
.ig-item img, .ig-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.ig-item:hover img, .ig-item:hover video { transform: scale(1.06); }
.ig-badge {
  position: absolute; top: 8px; right: 8px;
  width: 22px; height: 22px;
  background: rgba(0,0,0,.55);
  color: #fff;
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: .65rem;
}
.ig-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: .95rem;
}

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-head {
  margin-bottom: 2.25rem;
  max-width: 40rem;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin: 0 0 .5rem;
  letter-spacing: -0.02em;
}
.section-head p { margin: 0; color: var(--text-muted); }

.services-list { display: flex; flex-direction: column; gap: 1.25rem; }
.service-item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  transition: border-color .25s, transform .25s;
}
.service-item:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  transform: translateY(-2px);
}
.service-item .num {
  font-family: var(--display);
  color: var(--accent);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  margin-bottom: .4rem;
}
.service-item h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin: 0 0 .45rem;
}
.service-item .svc-slogan {
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 .85rem;
  font-size: .98rem;
}
.service-item .label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  font-weight: 700;
  margin: 1rem 0 .35rem;
}
.service-item .approach { margin: 0; color: var(--text-muted); }
.service-item ul {
  margin: .35rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}
.service-item li { margin-bottom: .35rem; }

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.about-block p {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0;
}

.blog-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card, .review-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.blog-card h3, .review-card .name {
  font-family: var(--display);
  margin: 0 0 .5rem;
  font-size: 1.1rem;
}
.blog-card p, .review-card p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.stars { color: var(--accent); letter-spacing: 2px; margin-bottom: .5rem; font-size: .9rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
}
.contact-list {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-row {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}
.contact-row span {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: .25rem;
}
.contact-row a, .contact-row strong {
  font-weight: 600;
  font-size: 1.02rem;
}
.maps-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--bg-soft);
}
.maps-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: .9rem;
  text-align: center;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* Admin overlay */
.admin-gate, .admin-panel {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.admin-gate.open, .admin-panel.open { display: flex; }
.admin-card {
  background: var(--bg-elev);
  color: var(--text);
  width: min(420px, 100%);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.admin-card h2 { font-family: var(--display); margin: 0 0 .35rem; }
.admin-card p { color: var(--text-muted); margin: 0 0 1.25rem; font-size: .95rem; }
.admin-card label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.admin-card input[type="password"],
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: .7rem .85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  margin-bottom: 1rem;
}
.admin-error { color: #c0392b; font-size: .85rem; margin: -.5rem 0 1rem; display: none; }
.admin-shell {
  background: var(--bg);
  width: min(1100px, 100%);
  height: min(90vh, 900px);
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.admin-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.admin-tabs {
  display: flex; gap: .35rem; flex-wrap: wrap;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.admin-tab {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  padding: .45rem .8rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
}
.admin-tab.active {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}
.admin-body {
  flex: 1; overflow: auto; padding: 1.25rem;
}
.admin-pane { display: none; }
.admin-pane.active { display: block; }
.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.admin-field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--text-muted);
}
.admin-actions {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem;
}
.admin-list-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: .75rem;
  background: var(--bg-elev);
}
.admin-list-item h4 { margin: 0 0 .5rem; font-family: var(--display); }
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--text); color: var(--bg);
  padding: .7rem 1.2rem; border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.toast.show { opacity: 1; }

@media (max-width: 960px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .brand-text { display: none; }
  .hero-grid, .about-block, .contact-grid, .admin-grid-2 {
    grid-template-columns: 1fr;
  }
  .blog-grid, .reviews-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy, .ig-frame { animation: fadeUp .7s ease both; }
.ig-frame { animation-delay: .12s; }
.service-item { animation: fadeUp .55s ease both; }
