/* ==========================================================================
   İmerek Yapı — site stilleri
   Renk: sıcak taş tonları + markanın turuncusu. Tipografi sistem yazı tipleri.
   ========================================================================== */

:root {
  --ink: #14110f;
  --ink-soft: #3a332e;
  --muted: #6f665f;
  --line: #e3ddd6;
  --paper: #ffffff;
  --sand: #f7f4f0;
  --sand-deep: #efe9e2;
  --accent: #e8480f;
  --accent-dark: #c53a09;
  --accent-soft: #fdf0ea;

  --shell: 1240px;
  --shell-narrow: 760px;
  --radius: 4px;
  --radius-lg: 8px;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    'Noto Sans', sans-serif;
  --font-display: var(--font);

  --shadow-sm: 0 1px 2px rgba(20, 17, 15, .06), 0 4px 12px rgba(20, 17, 15, .05);
  --shadow-md: 0 12px 32px rgba(20, 17, 15, .12);

  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1.1em; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------- düzen ---- */

.shell { width: min(100% - 40px, var(--shell)); margin-inline: auto; }
.shell--narrow { width: min(100% - 40px, var(--shell-narrow)); }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--muted { background: var(--sand); }
.section--dark { background: var(--ink); color: #cfc7c0; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: 12px 24px; margin-bottom: clamp(28px, 4vw, 48px);
}
.section__title { margin: 0; flex: 1 1 320px; }
.section__title--center { text-align: center; margin-bottom: 40px; }
.section__more {
  font-weight: 600; font-size: .95rem; color: var(--accent);
  border-bottom: 1px solid transparent; transition: border-color .2s;
  white-space: nowrap;
}
.section__more:hover { border-color: currentColor; }
.section--dark .section__more { color: #ff7a45; }

.eyebrow {
  flex-basis: 100%;
  margin: 0 0 6px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.section--dark .eyebrow { color: #ff7a45; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* ------------------------------------------------------------ butonlar --- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  cursor: pointer; transition: background .2s var(--ease), color .2s, border-color .2s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 10px 18px; font-size: .875rem; }
.btn--block { width: 100%; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--sand-deep); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }

.link-arrow { color: var(--accent); font-weight: 600; }
.link-arrow::after { content: ' →'; }

/* -------------------------------------------------------------- başlık --- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s, box-shadow .3s;
}
.site-header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 24px;
}

.brand { display: block; flex: 0 0 auto; }
.brand__mark { height: 30px; width: auto; }
.brand__mark--light { display: none; }

.site-header.is-transparent {
  position: fixed; inset: 0 0 auto; background: transparent; border-color: transparent;
}
.site-header.is-transparent .brand__mark--dark { display: none; }
.site-header.is-transparent .brand__mark--light { display: block; }
.site-header.is-transparent .nav__link,
.site-header.is-transparent .langs a { color: #fff; }
.site-header.is-transparent .burger span { background: #fff; }

.site-header.is-stuck {
  position: fixed; background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.4) blur(10px);
  border-color: var(--line); box-shadow: var(--shadow-sm);
}
.site-header.is-stuck .brand__mark--dark { display: block; }
.site-header.is-stuck .brand__mark--light { display: none; }
.site-header.is-stuck .nav__link,
.site-header.is-stuck .langs a { color: var(--ink); }
.site-header.is-stuck .burger span { background: var(--ink); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block; padding: 10px 10px; font-size: .92rem; font-weight: 500; white-space: nowrap;
  color: var(--ink); border-radius: var(--radius); transition: color .2s;
}
.nav__link:hover, .nav__link.is-current { color: var(--accent); }
.nav__toggle { display: none; }

.nav__sub {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); list-style: none; margin: 0; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav__item:hover > .nav__sub,
.nav__item:focus-within > .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a {
  display: block; padding: 9px 14px; font-size: .92rem; color: var(--ink-soft);
  border-radius: var(--radius);
}
.nav__sub a:hover { background: var(--sand); color: var(--accent); }

.nav__meta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .86rem; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.nav__phone svg { color: var(--accent); flex: 0 0 auto; }
.nav__phone:hover { color: var(--accent); }
.site-header.is-transparent .nav__phone { color: #fff; }
.site-header.is-transparent .nav__phone svg { color: #ff9b73; }
@media (max-width: 1330px) { .nav__phone span { display: none; } }
.langs { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.langs a {
  display: block; padding: 6px 8px; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; color: var(--muted); border-radius: 3px;
}
.langs a:hover { color: var(--accent); }
.langs a.is-current { color: var(--accent); background: var(--accent-soft); }
.site-header.is-transparent .langs a.is-current { background: rgba(255, 255, 255, .16); }

.burger { display: none; width: 44px; height: 44px; background: none; border: 0; padding: 10px; cursor: pointer; }
.burger span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------ kahraman --- */

.hero {
  position: relative; min-height: min(88vh, 820px);
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 60px) 0 clamp(56px, 8vw, 96px);
  color: #fff; overflow: hidden; background: var(--ink);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 15, .72) 0%, rgba(20, 17, 15, .25) 38%, rgba(20, 17, 15, .88) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero__eyebrow {
  font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #ffb59a; margin-bottom: 14px;
}
.hero__title { color: #fff; margin-bottom: .4em; text-wrap: balance; }
.hero__lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: #ddd5cf; max-width: 62ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* --------------------------------------------------------------- sayı ---- */

.stats { background: var(--ink); color: #fff; border-top: 1px solid rgba(255, 255, 255, .08); }
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: rgba(255, 255, 255, .1);
}
.stat { background: var(--ink); padding: 34px 26px; text-align: center; }
.stat__value { display: block; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; color: #fff; letter-spacing: -.02em; }
.stat__label { display: block; margin-top: 6px; font-size: .85rem; color: #a89f98; letter-spacing: .02em; }

/* --------------------------------------------------------------- giriş --- */

.intro-section__grid {
  display: grid; grid-template-columns: minmax(260px, 400px) 1fr;
  gap: clamp(24px, 5vw, 72px); align-items: start;
}
.intro-section__grid .section__title { margin: 0; }
.intro-section__text { font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--ink-soft); margin: 0; }

@media (max-width: 860px) {
  .intro-section__grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------- kartlar -- */

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.section--dark .card { background: #1d1917; border-color: rgba(255, 255, 255, .1); }
.card__link { display: flex; flex-direction: column; height: 100%; }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--sand-deep); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 14px, transparent 14px 28px),
    linear-gradient(140deg, #211c19 0%, var(--ink) 55%, #2c2521 100%);
}
.card__media .card__placeholder img {
  width: 52%; max-width: 190px; height: auto; object-fit: contain; opacity: .42;
}
.card:hover .card__media .card__placeholder img { transform: none; }
.card__badge {
  position: absolute; left: 12px; bottom: 12px; padding: 5px 10px;
  background: rgba(20, 17, 15, .78); color: #fff; font-size: .72rem; font-weight: 600;
  border-radius: 3px; backdrop-filter: blur(4px);
}
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__meta { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.card__title { font-size: 1.18rem; margin: 8px 0 8px; }
.section--dark .card__title { color: #fff; }
.card__text { font-size: .93rem; color: var(--muted); margin: 0 0 16px; }
.section--dark .card__text { color: #a89f98; }
.card__more { margin-top: auto; font-size: .88rem; font-weight: 600; color: var(--accent); }
.card__more::after { content: ' →'; transition: margin .2s; display: inline-block; }
.card:hover .card__more::after { margin-left: 4px; }

/* --------------------------------------------------------- sayfa başı ---- */

.page-hero {
  position: relative; background: var(--ink); color: #fff;
  padding: calc(var(--header-h) + 48px) 0 56px;
  display: flex; align-items: flex-end; min-height: 340px;
}
.page-hero.has-image { min-height: min(60vh, 560px); }

/* Fotoğrafı olmayan kurumsal/hukuki sayfalar: sade tipografik başlık */
.page-hero--plain {
  min-height: 0; padding-bottom: 44px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0 16px, transparent 16px 32px),
    linear-gradient(120deg, #1c1815 0%, var(--ink) 60%);
}
.page-hero--plain::after { display: none; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 15, .65) 0%, rgba(20, 17, 15, .35) 45%, rgba(20, 17, 15, .9) 100%);
}
.page-hero__inner { position: relative; z-index: 2; width: min(100% - 40px, var(--shell)); }
.page-hero__title { color: #fff; margin: 0; max-width: 24ch; text-wrap: balance; }
.page-hero__lead { margin-top: 14px; color: #ddd5cf; max-width: 62ch; }

.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 18px; padding: 0; font-size: .82rem; color: #b3aaa3; }
.crumbs li + li::before { content: '/'; margin-right: 8px; opacity: .5; }
.crumbs a:hover { color: #fff; }

.facts {
  display: flex; flex-wrap: wrap; gap: 10px 40px; margin: 28px 0 0;
  padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .18);
}
.facts__item dt { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: #ffb59a; margin: 0 0 4px; }
.facts__item dd { margin: 0; font-size: 1.02rem; font-weight: 600; color: #fff; }

/* ---------------------------------------------------------------- yazı --- */

.prose { font-size: 1.045rem; color: var(--ink-soft); }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 2em; font-size: clamp(1.35rem, 2.6vw, 1.85rem); }
.prose h3 { margin-top: 1.7em; font-size: clamp(1.1rem, 2vw, 1.32rem); }
.prose h4 { margin-top: 1.5em; font-size: 1.05rem; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.3em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--accent); }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(232, 72, 15, .35); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose strong { color: var(--ink); }
.prose img { border-radius: var(--radius-lg); margin: 1.6em 0; }
.prose blockquote {
  margin: 1.8em 0; padding: 4px 0 4px 24px;
  border-left: 3px solid var(--accent); color: var(--ink); font-size: 1.1rem;
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.8em 0; font-size: .95rem; display: block; overflow-x: auto; }
.prose table td, .prose table th { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; }
.prose table tr:first-child td { background: var(--sand); font-weight: 600; color: var(--ink); }
/* İçeriğe yapıştırılan Google yorumlarının yıldızları: SVG'lerde width/height
   tanımsız, global "svg { max-width:100% }" kuralı tam genişliğe büyütüyor. */
.prose [role="img"] { display: inline-flex; gap: 2px; color: #fbbc04; }
.prose [role="img"] svg { width: 16px; height: 16px; fill: currentColor; }

.article__meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: .86rem; color: var(--muted); margin: 0 0 30px;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.article__meta a { color: var(--accent); font-weight: 600; }

.page-cta { margin-top: 32px; }

/* Yazı içi teklif kutusu (hizmet sayfaları) */
.inline-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 48px; padding: 28px 30px;
  background: var(--sand); border-left: 3px solid var(--accent); border-radius: var(--radius);
}
.inline-cta__title { margin: 0 0 4px; font-size: 1.25rem; }
.inline-cta__text { margin: 0; color: var(--muted); font-size: .95rem; max-width: 46ch; }
.inline-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ------------------------------------------------------------- videolar -- */

.videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.video { margin: 0; }
.video__frame {
  display: block; position: relative; width: 100%; padding: 0; border: 0;
  aspect-ratio: 16 / 9; border-radius: var(--radius-lg); cursor: pointer;
  overflow: hidden; background: var(--ink); box-shadow: var(--shadow-sm);
}
.video__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; }
.video__frame:hover img { transform: scale(1.04); opacity: .85; }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__play {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
}
.video__play-bg { fill: rgba(20, 17, 15, .72); transition: fill .2s; }
.video__frame:hover .video__play-bg { fill: var(--accent); }
.video figcaption { margin-top: 12px; font-size: .92rem; font-weight: 600; color: var(--ink); }
.videos__note { margin: 26px 0 0; font-size: .82rem; color: var(--muted); text-align: center; }

/* -------------------------------------------------------------- galeri --- */

.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.gallery__item {
  padding: 0; border: 0; background: var(--sand-deep); cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease), opacity .2s; }
.gallery__item:hover img { transform: scale(1.06); opacity: .92; }

.lightbox {
  border: 0; padding: 0; max-width: 100vw; max-height: 100vh; width: 100%; height: 100%;
  background: rgba(12, 10, 9, .96); color: #fff;
  align-items: center; justify-content: center;
}
.lightbox[open] { display: flex; }
.lightbox::backdrop { background: rgba(12, 10, 9, .9); }
.lightbox__figure { margin: 0; max-width: min(1200px, 92vw); max-height: 88vh; text-align: center; }
.lightbox__figure img { max-height: 80vh; width: auto; margin: 0 auto; border-radius: var(--radius); }
.lightbox__figure figcaption { margin-top: 14px; font-size: .9rem; color: #b3aaa3; }
.lightbox__close {
  position: absolute; top: 16px; right: 20px; width: 46px; height: 46px;
  background: rgba(255, 255, 255, .1); border: 0; color: #fff; font-size: 1.8rem;
  border-radius: 50%; cursor: pointer; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #fff; font-size: 2rem; cursor: pointer; line-height: 1;
}
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(255, 255, 255, .22); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* ------------------------------------------------------------------ sss -- */

.faq__item {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
  font-weight: 600; color: var(--ink); font-size: 1.06rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--accent); transition: transform .2s;
}
.faq__item[open] summary::after { content: '−'; }
.faq__answer { padding: 0 0 22px; color: var(--muted); }
.faq__answer p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- çipler -- */

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .875rem; font-weight: 500; color: var(--ink-soft); transition: all .2s;
}
.chip span { font-size: .74rem; color: var(--muted); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.is-active span { color: rgba(255, 255, 255, .6); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 48px; }
.pagination ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.pagination a {
  display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 10px;
  border: 1px solid var(--line); border-radius: var(--radius); font-size: .9rem; font-weight: 600;
}
.pagination a:hover { border-color: var(--ink); }
.pagination a.is-current { background: var(--ink); border-color: var(--ink); color: #fff; }
.pagination__arrow { border: 0; color: var(--accent); font-weight: 600; }

.empty { text-align: center; color: var(--muted); padding: 60px 0; }

/* ------------------------------------------------------------- iletişim -- */

.contact { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.contact__list { margin: 0 0 28px; }
.contact__list > div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact__list > div:first-child { padding-top: 0; }
.contact__list dt { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact__list dd { margin: 0; font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.contact__list address { font-style: normal; }
.contact__list a:hover { color: var(--accent); }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.field__label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field__req { font-size: .72em; color: var(--accent); margin-left: 3px; }
.field__input {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .97rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.field__input:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
textarea.field__input { resize: vertical; min-height: 130px; }
.field--honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__consent { font-size: .82rem; color: var(--muted); margin: 4px 0 18px; }
.form__consent a { color: var(--accent); text-decoration: underline; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 22px; font-size: .95rem; }
.alert--success { background: #edf7ee; color: #21663a; border: 1px solid #c6e5cd; }
.alert--error { background: #fdecea; color: #a02012; border: 1px solid #f6c8c2; }

/* ------------------------------------------------------------- cta/alt --- */

.cta-band { background: var(--accent); color: #fff; padding: clamp(40px, 6vw, 64px) 0; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta-band__title { color: #fff; margin: 0 0 6px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band__text { margin: 0; color: rgba(255, 255, 255, .9); max-width: 56ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.site-footer { background: var(--ink); color: #a89f98; padding: clamp(48px, 6vw, 76px) 0 0; font-size: .93rem; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, minmax(120px, .9fr)) 1.2fr; gap: 36px;
  padding-bottom: 48px;
}
.site-footer__brand img { height: 30px; width: auto; }
.site-footer__tagline { margin: 18px 0 20px; color: #cfc7c0; }
.site-footer h3 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col li { margin-bottom: 9px; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; }

.socials { display: flex; flex-wrap: wrap; gap: 8px; }
.socials a {
  display: inline-block; padding: 7px 13px; border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
}
.socials a:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .84rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom ul { display: flex; gap: 18px; }

.whatsapp-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  width: 54px; height: 54px; display: grid; place-items: center;
  background: #25d366; color: #fff; border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  transition: transform .2s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.07); }

/* --------------------------------------------------------------- hata ---- */

.error-page { text-align: center; padding-top: calc(var(--header-h) + 60px); }
.error-page__code { font-size: clamp(4rem, 14vw, 8rem); font-weight: 700; color: var(--sand-deep); margin: 0; line-height: 1; }
.error-page__title { margin-top: -.2em; }
.error-page__text { color: var(--muted); margin-bottom: 28px; }

/* ------------------------------------------------------------ duyarlı ---- */

@media (max-width: 1080px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .contact { grid-template-columns: 1fr; }
  .burger { display: block; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px);
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: calc(var(--header-h) + 12px) 24px 32px;
    transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y: auto; box-shadow: -20px 0 40px rgba(20, 17, 15, .16);
  }
  body.nav-open .nav { transform: none; }
  body.nav-open { overflow: hidden; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line); position: relative; }
  .nav__link,
  .site-header.is-transparent .nav__link { color: var(--ink); padding: 15px 0; font-size: 1.05rem; }
  .nav__toggle {
    display: block; position: absolute; right: 0; top: 6px;
    width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  }
  .nav__toggle span { display: block; width: 11px; height: 11px; margin: 0 auto;
    border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
    transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s; }
  .nav__toggle[aria-expanded="true"] span { transform: rotate(225deg) translate(-2px, -2px); }
  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; padding: 0 0 12px 12px; min-width: 0;
    display: none;
  }
  .nav__toggle[aria-expanded="true"] + .nav__sub { display: block; }
  .nav__meta { flex-direction: row; justify-content: space-between; margin-top: 24px; }
  .site-header.is-transparent .langs a { color: var(--muted); }
  .site-header.is-transparent .langs a.is-current { color: var(--accent); background: var(--accent-soft); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .form__row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 78vh; }
  .facts { gap: 14px 26px; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.6rem; }
}

@media print {
  .site-header, .site-footer, .cta-band, .whatsapp-fab, .gallery, .lightbox { display: none !important; }
  body { color: #000; }
}
