/* Nişanot Kuaför — nisanot.com
 *
 * The original single-file build carried every photo as an inline base64
 * blob. Photos now live in /img/ and every slot declares them as the first
 * background layer over a gradient fallback, so a missing file degrades to
 * the gradient instead of a broken image. Dropping a JPG into /img/ is the
 * only step needed to swap a placeholder for a real photo.
 */

:root {
  --ink: #0d0c0b;
  --ink-soft: #121110;
  --paper: #efe6df;
  --muted: #b8aca2;
  --muted-dim: #998d82;   /* #0d0c0b uzerinde 6.1:1 */
  --muted-faint: #857a70; /* #0d0c0b uzerinde 4.7:1 — AA siniri 4.5 */
  --gold: #e5b8a0;
  --gold-bright: #f2d0bd;
  --line: rgba(229, 184, 160, 0.16);
  --line-strong: rgba(229, 184, 160, 0.25);
  --hairline: rgba(239, 230, 223, 0.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', system-ui, sans-serif;
  --gutter: 5vw;
}

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

html {
  scroll-behavior: smooth;
  /* The fixed nav would otherwise cover the top of each anchored section. */
  scroll-padding-top: 92px;
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  /* Gövde metni 300, arayüz öğeleri 400 — küçük puntolu letterspaced
   * başlıklar 300'de koyu zeminde okunaksızlaşıyor. */
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--gold-bright);
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.rise {
  animation: riseIn 0.9s ease both;
}

.rise-1 { animation-delay: 0.1s; }
.rise-2 { animation-delay: 0.25s; }
.rise-3 { animation-delay: 0.4s; }
.rise-4 { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- shared type ---------- */

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

.wordmark {
  font-family: var(--serif);
  letter-spacing: 0.22em;
  color: var(--paper);
}

.wordmark span {
  font-family: var(--sans);
  letter-spacing: 0.5em;
  color: var(--gold);
  vertical-align: middle;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 34px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

.btn:hover {
  background: var(--gold-bright);
  color: var(--ink);
}

.btn-ghost {
  position: relative;
  display: inline-block;
  color: #cfc4bb;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(229, 184, 160, 0.4);
  padding-bottom: 4px;
}

.btn-ghost:hover {
  color: var(--paper);
}

/* Gorunum ayni kalsin ama dokunma alani 44px'e cikarilsin. */
.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 44px;
  transform: translateY(-50%);
}

/* ---------- photo slots ---------- */

/* Layer order matters: the JPG paints over the gradient when it exists, and
 * the gradient alone shows while /img/ is still empty. */
.slot {
  position: relative;
  overflow: hidden;
  background-color: var(--ink-soft);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(229, 184, 160, 0.14);
}

.slot::before {
  content: '';
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(229, 184, 160, 0.16);
  pointer-events: none;
}

.slot::after {
  /* Fine diagonal weave keeps the empty state from reading as a flat block.
   * It sits under the caption and disappears visually once a photo lands. */
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(229, 184, 160, 0.05) 0 1px,
    transparent 1px 14px
  );
  pointer-events: none;
}

.slot-hero {
  /* Foto degistirilince kirpma bu satirla ayarlanir (ornek: 50% 30%). */
  background-position: 72% center;
  background-image: url('/img/hero/hero.jpg'),
    radial-gradient(120% 90% at 78% 18%, rgba(229, 184, 160, 0.26), transparent 62%),
    linear-gradient(155deg, #2a2320 0%, #16130f 55%, #0d0c0b 100%);
}

.slot-about {
  background-image: url('/img/ekip/ekip.jpg'),
    radial-gradient(100% 80% at 30% 20%, rgba(229, 184, 160, 0.2), transparent 60%),
    linear-gradient(200deg, #241e1b 0%, #14110f 60%, #0d0c0b 100%);
}

.slot-g1 {
  background-image: url('/img/galeri/1-balyaj.jpg'),
    linear-gradient(160deg, #33291f 0%, #191411 70%, #0d0c0b 100%);
}

.slot-g2 {
  background-image: url('/img/galeri/2-fon.jpg'),
    linear-gradient(20deg, #2c2622 0%, #17130f 75%, #0d0c0b 100%);
}

.slot-g3 {
  background-image: url('/img/galeri/3-topuz.jpg'),
    linear-gradient(200deg, #372a24 0%, #1a1512 70%, #0d0c0b 100%);
}

.slot-g4 {
  background-image: url('/img/galeri/4-gelin.jpg'),
    linear-gradient(340deg, #2b2119 0%, #161210 72%, #0d0c0b 100%);
}

.slot-salon-1 {
  background-image: url('/img/salon/oturma.jpg'),
    linear-gradient(150deg, #2e2620 0%, #181310 68%, #0d0c0b 100%);
}

.slot-salon-2 {
  background-image: url('/img/salon/yikama.jpg'),
    linear-gradient(30deg, #262019 0%, #15110f 70%, #0d0c0b 100%);
}

.slot-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.75);
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: linear-gradient(to bottom, rgba(13, 12, 11, 0.92), rgba(13, 12, 11, 0));
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.nav-brand {
  font-size: 22px;
}

.nav-brand span {
  font-size: 10px;
  margin-left: 10px;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  color: #cfc4bb;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid rgba(229, 184, 160, 0.45);
  padding: 10px 22px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-links {
  order: 2;
}

.nav-cta {
  order: 3;
}

.nav-burger {
  display: none;
  order: 4;
  /* Dar ekranda marka ve CTA ile ayni satirda kalirken ezilmesin. */
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid rgba(229, 184, 160, 0.35);
  border-radius: 2px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 168px var(--gutter) 128px;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}

.hero h1 {
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 1.04;
  margin: 0 0 30px;
}

/* .hero-kicker de bir <p>; :not() olmadan bu kural ondan daha yüksek
 * özgüllükte kalıp altın rengi eyebrow'u gövde metnine çevirirdi. */
.hero p:not(.hero-kicker) {
  max-width: 46ch;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 44px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: fadeIn 1.4s ease 0.3s both;
}

.hero-art .slot {
  position: absolute;
  inset: 0;
  box-shadow: none;
}

.hero-art .slot::before {
  content: none;
}

.hero-art-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, var(--ink) 0%, rgba(13, 12, 11, 0.82) 46%, rgba(13, 12, 11, 0.3) 100%),
    linear-gradient(to top, var(--ink) 0%, rgba(13, 12, 11, 0) 34%);
  pointer-events: none;
}

.hero-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  /* Sag bosluk, ayni hizadaki sabit WhatsApp dugmesini (56px + 26px kenar)
   * temizlemek icin; yoksa "Kadinlara Ozel" yazisinin ustune biniyor. */
  padding: 0 max(var(--gutter), 108px) 26px var(--gutter);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-faint);
  z-index: 4;
}

/* ---------- keyword strip ---------- */

.strip {
  display: flex;
  gap: 24px 40px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--gutter);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--muted-dim);
}

.strip b {
  color: var(--gold);
  font-weight: 400;
}

/* Serit zaten alt cizgi tasiyor; hemen ardindan gelen bolumun ust cizgisi
 * cift kalinlik yapardi. */
.strip + .split {
  border-top: 0;
}

/* ---------- hizmet satirlari ---------- */

.service {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}

.service-body {
  flex: 1;
}

.service-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--paper);
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-dim);
  margin-top: 5px;
  line-height: 1.5;
}

.service-price {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ---------- gallery ---------- */

.gallery {
  padding: 40px var(--gutter) 110px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-head {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-head h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-grid .slot:nth-child(1),
.gallery-grid .slot:nth-child(3) {
  grid-row: span 2;
}

.gallery-foot {
  text-align: center;
  margin: 34px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-dim);
}

.gallery-foot a {
  border-bottom: 1px solid rgba(229, 184, 160, 0.4);
  padding-bottom: 2px;
}

/* ---------- split: gorsel + metin ---------- */

/* "Biz Kimiz" ve "Salonumuz" ayni iskeleti kullanir. .split-alt zebra zemini
 * verir, .split-rev gorseli saga alir. Ters duzende metin kaynakta once
 * gelir; grid onu ilk sutuna yerlestirdigi icin ayrica order gerekmez. */
.split {
  border-top: 1px solid var(--line);
}

.split-alt {
  background: var(--ink-soft);
}

.split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
  padding: 110px var(--gutter);
}

.split-rev .split-inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

/* Tek yuva tam yuksekligi kaplar, iki yuva ustaste boluser. */
.split-media {
  display: grid;
  gap: 14px;
  height: 430px;
}

.split h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  margin: 0 0 26px;
  line-height: 1.15;
}

/* .eyebrow da bir <p>; bkz. .hero p:not(.hero-kicker) */
.split p:not(.eyebrow) {
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 18px;
}

.split-body > p:last-of-type {
  margin-bottom: 40px;
}

.stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-value {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-top: 6px;
}

/* ---------- neden biz ---------- */

.reasons {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px var(--gutter);
}

.reasons-head {
  text-align: center;
  margin-bottom: 60px;
}

.reasons-head h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 50px;
}

@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

.reason {
  border-top: 1px solid var(--line-strong);
  padding-top: 24px;
}

.reason-no {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.reason h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  margin: 12px 0 10px;
  color: var(--paper);
}

.reason p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-dim);
}

/* ---------- musteri yorumlari ---------- */

.quotes {
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}

.quotes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px var(--gutter);
}

.quotes-head {
  text-align: center;
  margin-bottom: 56px;
}

.quotes-head h2 {
  font-size: clamp(32px, 3.2vw, 46px);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.quote {
  margin: 0;
}

.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.55;
  color: var(--paper);
}

.quote blockquote::before {
  content: '\201C';
  color: var(--gold);
}

.quote blockquote::after {
  content: '\201D';
  color: var(--gold);
}

.quote figcaption {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

/* ---------- hizmetler bandi ---------- */

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 54px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px 44px;
  flex-wrap: wrap;
  text-align: center;
}

.band p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--paper);
}

/* ---------- ic sayfa basligi ---------- */

/* Hero gibi 100vh degil: sabit nav'i temizleyecek kadar ust bosluk yeter. */
.page-head {
  padding: 170px var(--gutter) 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-head h1 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 0 0 24px;
}

/* .eyebrow da bir <p>; bkz. .hero p:not(.hero-kicker) */
.page-head p:not(.eyebrow) {
  margin: 0;
  max-width: 56ch;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- hizmet kategorileri ---------- */

.cats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter) 40px;
}

.cat {
  border-top: 1px solid var(--line);
  padding: 54px 0 10px;
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 20px 60px;
}

.cat-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  margin: 0;
  color: var(--paper);
}

.cat-note {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted-dim);
}

/* ---------- contact ---------- */

.contact {
  padding: 110px var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: clamp(36px, 4vw, 58px);
  margin: 0 0 22px;
}

.contact-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.contact .btn {
  padding: 18px 46px;
  font-size: 13px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.contact-card {
  border-top: 1px solid var(--line-strong);
  padding-top: 26px;
}

.contact-card dt {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 12px;
}

.contact-card dd {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--paper);
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer .wordmark {
  font-size: 18px;
}

.site-footer .wordmark span {
  font-size: 9px;
  margin-left: 8px;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  color: var(--muted-faint);
}

/* ---------- floating whatsapp ---------- */

.fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s, background 0.25s;
}

.fab:hover {
  transform: scale(1.06);
  background: var(--gold-bright);
  color: var(--ink);
}

/* ---------- mobile ---------- */

@media (max-width: 1024px) {
  /* JS yoksa acilir panel de yok: baglantilar tam genislikte ikinci satira
     sarilir. Script yuklendiginde nav tek satira kilitlenir, cunku
     sarmalayinca burger alt satira dusuyor ve panel cok asagidan basliyordu. */
  .nav {
    padding: 11px 16px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .js .nav {
    flex-wrap: nowrap;
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 4px 16px;
    font-size: 11px;
    justify-content: flex-start;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .nav-brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 18px;
    white-space: nowrap;
  }

  .nav-brand span {
    font-size: 8px;
    margin-left: 7px;
  }

  /* 44px dokunma yuksekligi icin dikey dolgu; 11px'te 39px kaliyordu. */
  .nav-cta {
    padding: 14px 14px;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    white-space: nowrap;
    order: 2;
  }

  /* Script yuklendiyse baglantilar acilir panele taşınır. Yuklenmediyse
     asagidaki kurallar hic uygulanmaz ve eski satir gorunur. */
  .js .nav-burger {
    display: inline-flex;
    order: 3;
  }

  .js .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-basis: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0 18px;
    font-size: 13px;
    letter-spacing: 0.16em;
    background: var(--ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .js .nav-links[data-open='true'] {
    max-height: 340px;
  }

  .js .nav-links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid var(--hairline);
  }

  .js .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-copy {
    padding: 118px 20px 92px;
  }

  .slot-hero {
    background-position: center;
  }

  .hero-art-fade {
    background:
      linear-gradient(to top, var(--ink) 0%, rgba(13, 12, 11, 0.55) 46%, rgba(13, 12, 11, 0.7) 100%);
  }

  .hero-meta {
    display: none;
  }

  /* Mobilde govde metni buyutulur: 13-14.5px tarayici varsayilaninin altinda. */
  .reason p {
    font-size: 15.5px;
  }

  .service-desc,
  .cat-note,
  .gallery-foot {
    font-size: 14px;
  }

  .contact-card dd {
    font-size: 16px;
  }

  .gallery {
    padding: 24px 20px 64px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
  }

  /* Masaustunde 1. ve 3. kutu iki satir kapliyor; o kural nth-child oldugu
     icin daha yuksek ozgullukte, burada ayni bicimde geri alinmali. */
  .gallery-grid .slot,
  .gallery-grid .slot:nth-child(1),
  .gallery-grid .slot:nth-child(3) {
    grid-row: auto;
    height: 46vw;
    min-height: 150px;
  }

  /* Dar kutuda basligin iki satira sarmasi icin yer birakilir. */
  .gallery-grid .slot-caption {
    left: 18px;
    right: 18px;
    bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.22em;
    line-height: 1.4;
  }

  .slot::before {
    inset: 9px;
  }

  .split-inner,
  .split-rev .split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 20px;
  }

  .split-media {
    height: auto;
  }

  .split-media .slot {
    height: 78vw;
    min-height: 300px;
  }

  .reasons {
    padding: 64px 20px;
  }

  .reasons-head {
    margin-bottom: 38px;
  }

  .reasons-grid {
    gap: 34px;
  }

  .quotes-inner {
    padding: 64px 20px;
  }

  .quotes-head {
    margin-bottom: 34px;
  }

  .quotes-grid {
    gap: 34px;
  }

  .band {
    padding: 40px 20px;
  }

  .page-head {
    padding: 130px 20px 44px;
  }

  .cats {
    padding: 0 20px 24px;
  }

  .cat {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 40px 0 6px;
  }

  .contact {
    padding: 64px 20px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 52px;
  }

  .site-footer {
    padding: 26px 20px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 888px) {
  .quotes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .nav-brand span {
    display: none;
  }
}
