/* ==========================================================================
   Akın Yaman Hair Design — Atelier tasarım sistemi
   Editoryal lüks: Playfair Display + Manrope, keskin köşeler, altın vurgu
   ========================================================================== */

/* --- Tokenlar ------------------------------------------------------------ */
:root {
  --ink: #121212;
  --ink-soft: #444748;
  --ink-mute: #747878;
  --gold: #c5a059;
  --gold-deep: #9c7c3c;
  --paper: #f9f8f6;
  --paper-dim: #f2f0ee;
  --white: #ffffff;
  --line: rgba(18, 18, 18, 0.12);
  --line-soft: rgba(18, 18, 18, 0.07);

  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --wrap: 1280px;
  --gutter: 24px;
  --gutter-m: 20px;
  --nav-h: 76px;
  --section: 120px;
}

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --section: 84px;
    --nav-h: 68px;
  }
}

/* Telefon */
@media (max-width: 639px) {
  :root {
    --section: 64px;
    --nav-h: 62px;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

/* --- Yardımcılar --------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter-m);
}

@media (min-width: 900px) {
  .wrap {
    padding-inline: var(--gutter);
  }
}

.section {
  padding-block: var(--section);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.display {
  font-size: clamp(38px, 7vw, 68px);
}

.h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.h3 {
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 58ch;
}

.muted {
  color: var(--ink-soft);
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* --- Butonlar ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 34px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-deep);
}

.btn--light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.btn--wa {
  background: #1f8a4c;
  border-color: #1f8a4c;
  color: #fff;
}

.btn--wa:hover {
  background: #16693a;
  border-color: #16693a;
  color: #fff;
}

.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn[disabled]:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s, border-color 0.3s;
}

.link-arrow:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}

.link-arrow svg {
  transition: transform 0.3s;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* --- Header -------------------------------------------------------------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(249, 248, 246, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-head.is-stuck {
  border-bottom-color: var(--line-soft);
}

.site-head__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

/* Logo şeffaf zeminli PNG; olduğu gibi bindiriliyor. */
.brand__mark {
  flex: none;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__sub {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav {
  display: none;
  align-items: center;
  gap: 38px;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}

.nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: 6px;
  transition: color 0.25s;
}

.nav a:hover {
  color: var(--ink);
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
}

.head-cta {
  display: none;
}

@media (min-width: 1024px) {
  .head-cta {
    display: inline-flex;
    padding: 13px 26px;
  }
}

/* Mobil menü */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.2s;
}

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

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

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

.drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  background: var(--paper);
  padding: 40px var(--gutter-m) 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, transform 0.28s, visibility 0.28s;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (min-width: 1024px) {
  .drawer {
    display: none;
  }
}

.drawer a {
  font-family: var(--serif);
  font-size: 30px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.drawer a[aria-current="page"] {
  color: var(--gold-deep);
}

.drawer .btn {
  margin-top: 28px;
}

body.no-scroll {
  overflow: hidden;
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 640px;
  height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0d1626;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 60% center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  to {
    transform: scale(1.11);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media {
    animation: none;
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(8, 12, 20, 0.88) 0%,
      rgba(8, 12, 20, 0.32) 46%,
      rgba(8, 12, 20, 0.12) 100%
    ),
    linear-gradient(to right, rgba(8, 12, 20, 0.6), transparent 62%);
}

.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 92px);
  color: #fff;
}

.hero__grid {
  display: grid;
  gap: 34px;
  align-items: end;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 64px;
  }
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  font-style: italic;
  font-weight: 500;
}

.hero__aside p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  margin-bottom: 26px;
}

@media (min-width: 1024px) {
  .hero__aside {
    padding-bottom: 10px;
  }
}

.hero__meta {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__meta strong {
  color: var(--gold);
}

/* --- Sayfa başlığı (iç sayfalar) ---------------------------------------- */
.page-head {
  padding-top: calc(var(--nav-h) + 76px);
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.page-head::after {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.16), transparent 68%);
  pointer-events: none;
}

.page-head__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-head .lede {
  margin-top: 22px;
}

/* --- Editoryal ikili ----------------------------------------------------- */
.split {
  display: grid;
  gap: 44px;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 88px;
  }
}

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Kaynak görsel 1408×768; sol üstteki 1024×688'lik alan dışında kalan arayüz
   şeridi kadraj dışında bırakılır. Kapsayıcının oranı bu alanla aynı olduğu
   için görüntü esnemez ve kırpma her ekran genişliğinde aynı kalır. */
.split__media--crop {
  aspect-ratio: 1024 / 688;
}

.split__media--crop img {
  position: absolute;
  top: -11.628%;
  left: 0;
  width: 137.5%;
  height: 111.628%;
  max-width: none;
  object-fit: fill;
}

.split__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.split__body h2 {
  margin-bottom: 22px;
}

.split__body p + p {
  margin-top: 18px;
}

.split__body .link-arrow {
  margin-top: 32px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat__n {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--gold-deep);
}

.stat__l {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* --- Bölüm başlığı ------------------------------------------------------- */
.sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
}

.sec-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --- Hizmet kartları ----------------------------------------------------- */
.cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s, box-shadow 0.45s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -28px rgba(18, 18, 18, 0.4);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.card__body h3 {
  text-align: center;
}

.card__body p {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  flex: 1;
}

.card__foot {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* --- Şerit (koyu) -------------------------------------------------------- */
.band {
  background: var(--ink);
  color: var(--paper);
}

.band .eyebrow {
  color: var(--gold);
}

.band .muted {
  color: rgba(249, 248, 246, 0.72);
}

.band .rule {
  background: rgba(255, 255, 255, 0.16);
}

.strip {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s, transform 0.7s;
}

.strip a:hover img {
  filter: none;
  transform: scale(1.04);
}

.strip a {
  overflow: hidden;
  display: block;
}

/* --- Ekip ---------------------------------------------------------------- */
.team {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.member__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 20px;
}

.member__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s, transform 0.7s;
}

.member:hover .member__media img {
  filter: none;
  transform: scale(1.04);
}

.member h3 {
  font-size: 22px;
}

.member span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* --- Alıntı -------------------------------------------------------------- */
.quote {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.quote blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 36px);
  font-style: italic;
  line-height: 1.35;
}

.stars {
  display: inline-flex;
  gap: 5px;
  color: var(--gold);
  margin-bottom: 20px;
}

/* --- CTA ----------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.26;
  filter: grayscale(0.4);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-inline: auto;
}

.cta-band h2 {
  margin-bottom: 20px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* --- Galeri -------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter {
  padding: 11px 22px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.filter:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.grid-gal {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-auto-flow: dense;
}

.shot {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.4s;
}

.shot:hover img {
  transform: scale(1.05);
}

.shot__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 46px 20px 18px;
  background: linear-gradient(transparent, rgba(8, 8, 8, 0.82));
  color: #fff;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}

.shot:hover .shot__cap,
.shot:focus-visible .shot__cap {
  opacity: 1;
  transform: none;
}

.shot.is-hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 10, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  object-fit: contain;
}

.lightbox__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s;
}

.lb-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lb-prev {
  left: 18px;
}

.lb-next {
  right: 18px;
}

.lb-close {
  top: 18px;
  right: 18px;
  transform: none;
}

/* --- İletişim ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  gap: 56px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 88px;
  }
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.info {
  display: block;
  padding-left: 26px;
  border-left: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s;
}

a.info:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.info__k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.info__v {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.35;
}

.hours {
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--white);
}

.hours h3 {
  margin-bottom: 20px;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}

.hours__row:last-of-type {
  border-bottom: 0;
}

.hours__row span:last-child {
  color: var(--ink-soft);
}

.hours__note {
  margin-top: 18px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
}

.map {
  width: 100%;
  height: 460px;
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.06);
  transition: filter 0.5s;
}

.map:hover {
  filter: none;
}

/* --- Form ---------------------------------------------------------------- */
.booking {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .booking {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
  }
}

/* Yan panel yalnızca iki sütunlu masaüstü düzeninde sabitlenir; tek sütunda
   sabitlenirse formun üzerine biner. */
@media (min-width: 1024px) {
  .booking__aside {
    position: sticky;
    top: calc(var(--nav-h) + 28px);
    align-self: start;
    max-height: calc(100vh - var(--nav-h) - 56px);
    overflow-y: auto;
  }
}

.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
}

.steps b {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 32px 24px 36px;
  box-shadow: 0 30px 60px -46px rgba(18, 18, 18, 0.5);
}

@media (min-width: 700px) {
  .form-card {
    padding: 48px;
  }
}

.fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 40px;
}

.fieldset:last-of-type {
  margin-bottom: 28px;
}

.legend {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legend i {
  font-style: normal;
  color: var(--gold-deep);
}

.field-row {
  display: grid;
  gap: 30px;
}

@media (min-width: 640px) {
  .field-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  position: relative;
}

.field > label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-size: 17px;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder {
  color: #b9b9b7;
}

.field input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field input[type="date"] {
  min-height: 46px;
}

.field.has-error input {
  border-bottom-color: #ba1a1a;
}

.err {
  display: none;
  margin-top: 8px;
  font-size: 12.5px;
  color: #ba1a1a;
}

.field.has-error .err {
  display: block;
}

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
}

.slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.slot {
  position: relative;
  display: block;
}

.slot span {
  display: block;
  padding: 13px 6px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.slot span:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.slot input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.slot input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.preview {
  background: var(--paper-dim);
  border-left: 2px solid var(--gold);
  padding: 22px 24px;
  margin-bottom: 26px;
}

.preview__k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}

.preview__msg {
  margin: 0;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--ink);
}

.form-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
}

.btn--block {
  width: 100%;
}

/* --- Footer -------------------------------------------------------------- */
.site-foot {
  background: var(--ink);
  color: rgba(249, 248, 246, 0.72);
  padding-block: 76px 0;
}

.foot-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.site-foot .brand__name,
.site-foot h4 {
  color: var(--paper);
}

.site-foot h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.foot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.foot-list a:hover {
  color: var(--gold);
}

.foot-hours {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
}

.foot-bottom {
  margin-top: 60px;
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- Sabit WhatsApp butonu ---------------------------------------------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s;
}

.wa-float:hover {
  transform: scale(1.07);
}

/* --- Görünürlük animasyonu ---------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- Erişilebilirlik ----------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

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

.skip:focus {
  left: 8px;
  top: 8px;
}


/* ==========================================================================
   Duyarlı düzen — telefon / tablet / masaüstü
   Kırılım noktaları: ≤639 telefon · 640–1023 tablet · ≥1024 masaüstü
   ========================================================================== */

/* --- Tablet ve altı (≤1023px) ------------------------------------------- */
@media (max-width: 1023px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__media {
    background-position: 62% 10%;
  }

  .hero__body {
    padding-top: 38vh;
  }

  .hero__scrim {
    background: linear-gradient(
      to top,
      rgba(8, 12, 20, 0.93) 0%,
      rgba(8, 12, 20, 0.78) 36%,
      rgba(8, 12, 20, 0.2) 64%,
      rgba(8, 12, 20, 0.08) 100%
    );
  }

  .page-head {
    padding-top: calc(var(--nav-h) + 52px);
    padding-bottom: 48px;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .strip,
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map {
    height: 380px;
  }

  .booking__aside {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
}

/* --- Telefon (≤639px) ---------------------------------------------------- */
@media (max-width: 639px) {
  .hero__body {
    padding-top: 46vh;
  }

  .hero__meta {
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions .btn {
    flex: 1 1 100%;
  }

  .btn {
    padding: 16px 24px;
  }

  .strip {
    grid-template-columns: 1fr 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .map {
    height: 300px;
  }

  .stat-row {
    gap: 26px;
  }

  .filters {
    gap: 8px;
  }

  .filter {
    padding: 10px 16px;
    letter-spacing: 0.12em;
  }

  .grid-gal {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .shot__cap {
    font-size: 10px;
    padding: 32px 12px 12px;
    opacity: 1;
    transform: none;
  }

  .slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .hours {
    padding: 24px 20px;
  }

  .form-card {
    padding: 28px 20px 32px;
  }

  .lb-btn {
    width: 44px;
    height: 44px;
  }

  .lb-prev {
    left: 6px;
  }

  .lb-next {
    right: 6px;
  }

  .lightbox {
    padding: 12px;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

/* --- Çok dar ekranlar (≤380px) ------------------------------------------ */
@media (max-width: 380px) {
  .grid-gal {
    gap: 8px;
  }

  .slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Dokunmatik cihazlarda hover'a bağlı gizli içerik kalmasın */
@media (hover: none) {
  .shot__cap {
    opacity: 1;
    transform: none;
  }

  .map {
    filter: none;
  }

  .strip img,
  .member__media img {
    filter: none;
  }
}

/* --- Randevu: gün etiketi ve saat ipucu ---------------------------------- */
.legend em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}

.slots-hint {
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink-mute);
}

.slots-hint[hidden] {
  display: none;
}

/* Dar telefonlarda logo biraz küçülsün, başlık taşmasın */
@media (max-width: 639px) {
  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }
}

/* Tablette galeri üç sütun — auto-fill 270px eşiği burada ikide kalıyordu */
@media (min-width: 640px) and (max-width: 1023px) {
  .grid-gal {
    grid-template-columns: repeat(3, 1fr);
  }
}
