:root {
  --ink: #1e242b;
  --ink-soft: #3d4650;
  --forest: #3f4a56;
  --forest-deep: #2b333c;
  --pistachio: #c9b7ab;
  --pistachio-deep: #9c7d6e;
  --copper: #9c4d3f;
  --copper-hot: #834136;
  --cream: #f3f1ee;
  --paper: #f6f5f2;
  --white: #fcfcfb;
  --line: rgba(30, 36, 43, 0.1);
  --muted: #66707a;
  --shadow: 0 20px 48px rgba(30, 36, 43, 0.08);
  --radius: 22px;
  --header-h: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--copper);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
}

h1,
h2,
h3,
.display {
  font-family: "Fraunces", serif;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-copper {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 8px 18px rgba(156, 77, 63, 0.22);
}

.btn-copper:hover {
  background: var(--copper-hot);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 252, 247, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 252, 247, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--forest);
}

.phone-link {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Header */
.topbar {
  background: var(--forest-deep);
  color: #d8dde3;
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--pistachio);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 252, 251, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--forest-deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.logo-text strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.logo-text span {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--muted);
  max-width: 28ch;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav a,
.nav-drop > button {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.nav a:hover,
.nav-drop > button:hover,
.nav a.is-active {
  background: rgba(63, 74, 86, 0.08);
  color: var(--ink);
}

.nav-drop {
  position: relative;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  z-index: 50;
  min-width: 280px;
  padding: 18px 10px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease, visibility 0.12s ease;
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-drop-menu a {
  display: block;
  border-radius: 12px;
  padding: 12px 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-btn,
.menu-btn {
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: var(--forest);
}

.search-btn {
  padding: 0 16px;
  border-radius: 999px;
}

.menu-btn {
  width: 44px;
  border-radius: 50%;
}

.header-phone {
  background: var(--forest);
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

.menu-btn {
  display: none;
}

/* Search */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(22, 26, 31, 0.5);
  display: none;
  padding: 8vh 20px 20px;
}

.search-modal.open {
  display: block;
}

.search-panel {
  width: min(720px, 100%);
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.search-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1.05rem;
  background: var(--cream);
}

.search-results {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  max-height: 50vh;
  overflow: auto;
}

.search-results a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--paper);
}

.search-results a:hover {
  background: #eceae6;
}

.search-results small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.search-empty {
  color: var(--muted);
  padding: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 26, 31, 0.72) 0%, rgba(22, 26, 31, 0.42) 52%, rgba(22, 26, 31, 0.18) 100%),
    linear-gradient(180deg, rgba(22, 26, 31, 0.12), rgba(22, 26, 31, 0.5));
}

.hero-content {
  position: relative;
  padding: 80px 0 72px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  max-width: 14ch;
  margin: 14px 0 18px;
}

.hero p {
  max-width: 52ch;
  color: #e6e9ed;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 18px;
  margin-top: 48px;
}

.hero-stats strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
}

.hero-stats span {
  color: #c5ccd4;
  font-size: 0.9rem;
}

.page-hero {
  min-height: 62vh;
}

.page-hero h1 {
  max-width: 16ch;
}

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 8px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.photo-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 460px;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}

.photo-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(252, 252, 251, 0.95);
  padding: 16px 18px;
  border-radius: 18px;
  max-width: 240px;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card span {
  margin-top: auto;
  color: var(--copper);
  font-weight: 600;
  font-size: 0.92rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Features / districts */
.feature-grid,
.district-grid,
.brand-grid,
.faq-grid,
.review-grid,
.problem-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  margin-top: 0;
}

.district-grid {
  grid-template-columns: repeat(4, 1fr);
}

.district-grid article {
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 3px solid var(--copper);
}

.district-grid article p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article {
  padding: 24px;
  border-radius: 22px;
  background: var(--cream);
}

.steps em {
  font-family: "Fraunces", serif;
  font-style: normal;
  font-size: 1.8rem;
  color: var(--copper);
}

.brand-grid {
  grid-template-columns: repeat(6, 1fr);
}

.disclaimer {
  margin-top: 28px;
  padding: 28px 28px 26px 26px;
  border-radius: 22px;
  background: #f7f5f2;
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  box-shadow: none;
}

.disclaimer-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.disclaimer h3 {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.disclaimer p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 78ch;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

.brand-grid span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: var(--white);
  font-weight: 600;
  color: var(--forest);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stars {
  color: var(--copper);
  letter-spacing: 2px;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

details summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  color: var(--muted);
  margin: 10px 0 0;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(32, 38, 45, 0.88), rgba(50, 58, 68, 0.72)),
    url("../img/mutfak-banner.jpg") center/cover;
  color: var(--white);
  border-radius: 32px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid article {
  background: var(--white);
  border-top: 3px solid var(--pistachio);
  border-radius: 18px;
  padding: 22px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card {
  background: var(--forest-deep);
  color: #e8eaed;
  border-radius: 28px;
  padding: 32px;
}

.contact-card a {
  color: var(--pistachio);
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--white);
  font-size: 1rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  display: none;
  background: #eef2e8;
  color: var(--forest);
  padding: 12px 14px;
  border-radius: 12px;
}

.form-note.show {
  display: block;
}

footer {
  background: var(--ink);
  color: #d5d9de;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

footer a:hover {
  color: var(--pistachio);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: #9aa3ad;
}

.mobile-nav {
  display: none;
}

@media (max-width: 1080px) {
  .service-grid,
  .related-grid,
  .district-grid,
  .steps,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-wrap,
  .faq-grid,
  .footer-grid,
  .feature-grid,
  .review-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .mobile-nav.open {
    display: grid;
    gap: 8px;
    padding: 8px 20px 18px;
  }

  .mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats,
  .service-grid,
  .related-grid,
  .district-grid,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-band {
    padding: 28px;
  }

  .hero {
    min-height: 78vh;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}
