/* =========================================================================
   Hatice Kuaför & Güzellik Merkezi · "Altın"
   Gold/black luxury look. Real IG media (@hatice_hairmakeup) in tabbed
   Çalışmalar section.
   Palette : warm black · brand gold · champagne accents · ivory text
   Type    : Syne (display) · Source Serif 4 (body)
   ========================================================================= */

:root {
  --paper:     #0B0A08;
  --paper-2:   #12100C;
  --card:      #171510;
  --ink:       #F2EAD8;
  --gold:      #C9A24B;
  --gold-bright:#DBB863;
  --gold-soft: color-mix(in srgb, #C9A24B 14%, transparent);
  --on-gold:   #14110A;
  --clay:      #E6C87E;
  --clay-deep: #C2A152;
  --clay-soft: color-mix(in srgb, #E6C87E 18%, transparent);
  --ochre:     #E2C06C;
  --muted:     #AFA48D;
  --line:      #2C2820;
  --line-2:    #221E17;

  --display: "Syne", system-ui, sans-serif;
  --body: "Source Serif 4", Georgia, serif;
  --label: "Syne", system-ui, sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.15rem, 4.5vw, 3.5rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
  background: var(--paper);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: clamp(1.02rem, 0.4vw + 0.94rem, 1.12rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, .display { font-family: var(--display); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4rem, 8vw, 7rem); }

/* labels · the recurring "card" motif */
.label {
  font-family: var(--label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay-deep);
}

/* chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--label);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: .42rem .85rem;
}
.chip .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--clay); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--label);
  font-weight: 600; font-size: .9rem; letter-spacing: .01em;
  padding: .85rem 1.5rem; border-radius: 8px;
  border: 1.5px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--gold); color: var(--on-gold); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }
.btn-clay { background: var(--clay); color: var(--on-gold); }
.btn-clay:hover { background: var(--clay-deep); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding-block: .6rem; border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; flex: none; border-radius: 9px;
  background: var(--gold); color: var(--on-gold);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.15rem;
}
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink); line-height: 1; letter-spacing: -0.01em; }
.brand-name small { display: block; font-size: .56rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--clay-deep); margin-top: .28rem; }

.nav { display: flex; align-items: center; gap: clamp(.9rem, 2.2vw, 1.9rem); }
.nav a { font-family: var(--label); font-size: .85rem; font-weight: 600; text-decoration: none; color: var(--ink); position: relative; padding-block: .2rem; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--clay); transition: width .3s var(--ease); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .8rem; }
.lang-toggle { display: inline-flex; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; }
.lang-toggle button { font-family: var(--label); font-size: .72rem; font-weight: 700; letter-spacing: .05em; padding: .38rem .6rem; border: 0; background: transparent; color: var(--muted); cursor: pointer; transition: background-color .25s var(--ease), color .25s var(--ease); }
.lang-toggle button[aria-pressed="true"] { background: var(--gold); color: var(--on-gold); }

.nav-toggle { display: none; width: 40px; height: 40px; border: 1.5px solid var(--line); border-radius: 8px; background: transparent; cursor: pointer; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 2px; background: var(--gold); transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.nav-toggle span::before { transform: translate(-50%, -5px); }
.nav-toggle span::after { transform: translate(-50%, 5px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding-top: clamp(6.5rem, 12vw, 9rem); padding-bottom: clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(80% 60% at 85% 0%, color-mix(in srgb, #C9A24B 10%, transparent) 0%, transparent 55%),
  radial-gradient(70% 55% at 0% 100%, color-mix(in srgb, #E6C87E 7%, transparent) 0%, transparent 50%);
  pointer-events: none; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.4rem; }
.hero h1 .clay { color: var(--clay); }
.hero h1 .grn { color: var(--gold); }
.hero-lede { font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.22rem); color: var(--muted); max-width: 44ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }

/* hero entrance (JS-gated: only hidden once html.motion is set, so no-JS shows all) */
html.motion .hero-copy > .hero-anim { opacity: 0; animation: heroUp .8s var(--ease) forwards; }
html.motion .hero-copy > .hero-anim:nth-child(1) { animation-delay: .05s; }
html.motion .hero-copy > .hero-anim:nth-child(2) { animation-delay: .13s; }
html.motion .hero-copy > .hero-anim:nth-child(3) { animation-delay: .21s; }
html.motion .hero-copy > .hero-anim:nth-child(4) { animation-delay: .29s; }
html.motion .hero-copy > .hero-anim:nth-child(5) { animation-delay: .37s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* hero info strip (the facts the removed atelier card used to hold) */
.hero-facts { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2.2rem; }
.hero-facts .fact { flex: 1 1 130px; padding: .78rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: color-mix(in srgb, var(--card) 62%, transparent); }
.fact-k { display: block; font-family: var(--label); font-size: .61rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: .32rem; }
.fact-v { font-family: var(--body); font-size: .95rem; color: var(--ink); font-weight: 500; display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.fact-v .stars { color: var(--ochre); letter-spacing: .05em; }
.fact-v .dim, .rating-badge .dim, .bk-badge .dim, .m-bookbar .dim { opacity: .32; }
.fact-v .pin { color: var(--gold); font-weight: 600; }

/* ===================== RANDEVU WIDGET (self-contained) ===================== */
.booking { position: relative; align-self: start; background: var(--card); border: 1.5px solid var(--line); border-radius: 18px; padding: clamp(1.3rem, 2vw, 1.75rem); box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 12%, transparent), 0 36px 74px -44px rgba(0,0,0,.85); }
.bk-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 1.05rem; border-bottom: 1px solid var(--line-2); margin-bottom: 1.15rem; }
.bk-eyebrow { display: block; font-family: var(--label); font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: .38rem; }
.bk-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.04; }
.bk-title .clay { color: var(--clay); }
.bk-badge { flex: none; display: inline-flex; align-items: center; gap: .38rem; font-family: var(--label); font-weight: 700; font-size: .82rem; color: var(--gold); background: var(--gold-soft); border-radius: 999px; padding: .34rem .72rem; }
.bk-badge .stars { color: var(--ochre); letter-spacing: .04em; font-size: .78rem; }

.bk-step { margin-bottom: 1.2rem; }
.bk-label { display: flex; align-items: center; gap: .5rem; font-family: var(--label); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: .68rem; }
.bk-num { display: grid; place-items: center; width: 21px; height: 21px; flex: none; border-radius: 6px; background: var(--gold); color: var(--on-gold); font-size: .72rem; font-weight: 700; letter-spacing: 0; }

.bk-services { display: flex; flex-wrap: wrap; gap: .45rem; }
.pill { display: inline-flex; align-items: center; min-height: 42px; font-family: var(--label); font-size: .8rem; font-weight: 600; color: var(--muted); background: transparent; border: 1.5px solid var(--line); border-radius: 999px; padding: .35rem .85rem; cursor: pointer; transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.pill:hover { border-color: var(--gold); color: var(--gold); }
.pill.active { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }

.cal { border: 1.5px solid var(--line-2); border-radius: 14px; padding: .9rem; background: color-mix(in srgb, var(--paper) 38%, var(--card)); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .7rem; }
.cal-month { font-family: var(--display); font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.cal-nav { width: 38px; height: 38px; flex: none; border-radius: 9px; border: 1.5px solid var(--line); background: var(--card); font-size: 1.15rem; line-height: 1; color: var(--gold); display: grid; place-items: center; cursor: pointer; transition: background-color .2s var(--ease), border-color .2s var(--ease); }
.cal-nav:hover:not(:disabled) { border-color: var(--gold); background: var(--gold-soft); }
.cal-nav:disabled { opacity: .32; cursor: not-allowed; }
.cal-dows, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dows { margin-bottom: 5px; }
.cal-dows span { text-align: center; font-family: var(--label); font-size: .6rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--muted); }
.cal-day { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; border-radius: 9px; font-family: var(--label); font-size: .86rem; font-weight: 600; color: var(--ink); background: transparent; border: 1.5px solid transparent; cursor: pointer; transition: background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease); }
.cal-day.empty { visibility: hidden; cursor: default; }
.cal-day.disabled, .cal-day.closed { color: color-mix(in srgb, var(--muted) 42%, transparent); cursor: not-allowed; }
.cal-day.closed { text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--clay) 55%, transparent); }
.cal-day.pick:hover { background: var(--gold-soft); border-color: var(--gold); }
.cal-day.selected { background: var(--gold); color: var(--on-gold); border-color: var(--gold); font-weight: 700; }
.cal-day.today { border-color: color-mix(in srgb, var(--clay) 45%, transparent); position: relative; }
.cal-day.today::after { content: ""; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--clay); }
.cal-day.selected.today::after { background: var(--on-gold); }
.cal-legend { display: flex; flex-wrap: wrap; gap: 1rem; margin: .8rem 0 0; font-family: var(--label); font-size: .66rem; font-weight: 600; color: var(--muted); }
.cal-legend .lg { display: inline-flex; align-items: center; gap: .35rem; }
.lg-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.lg-dot.today { background: var(--clay); }
.lg-dot.closed { background: color-mix(in srgb, var(--muted) 42%, transparent); }

.cal-hint { font-size: .9rem; color: var(--muted); margin: .1rem 0 0; }
.times { display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem; margin-top: .1rem; }
.time { display: flex; align-items: center; justify-content: center; min-height: 44px; font-family: var(--label); font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--card); border: 1.5px solid var(--line); border-radius: 9px; padding: .5rem .2rem; text-align: center; cursor: pointer; transition: background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease); }
.time:hover { border-color: var(--gold); color: var(--gold); }
.time.selected { background: var(--gold); color: var(--on-gold); border-color: var(--gold); font-weight: 700; }

.bk-field { display: flex; flex-direction: column; gap: .42rem; margin-top: 1.15rem; }
.bk-field span { font-family: var(--label); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.bk-field input { font-family: var(--body); font-size: 1rem; color: var(--ink); background: var(--card); border: 1.5px solid var(--line); border-radius: 10px; padding: .72rem .9rem; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.bk-field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 40%, transparent); }

.bk-summary { font-family: var(--body); font-style: italic; font-size: .96rem; color: var(--muted); margin: 1.2rem 0 .85rem; text-align: center; }
.bk-summary b { display: inline; color: var(--gold); font-style: normal; font-family: var(--label); font-weight: 700; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }
.bk-submit[aria-disabled="true"] { opacity: .5; pointer-events: none; }

.bk-success { text-align: center; padding: 1.4rem .4rem .8rem; animation: bkFade .5s var(--ease) both; }
@keyframes bkFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.bk-check { display: inline-grid; place-items: center; width: 66px; height: 66px; margin-bottom: 1rem; }
.bk-check svg { width: 66px; height: 66px; }
.bk-check-circle { stroke: var(--gold); stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: bkCircle .6s var(--ease) forwards; }
.bk-check-mark { stroke: var(--gold); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: bkMark .35s var(--ease) .5s forwards; }
@keyframes bkCircle { to { stroke-dashoffset: 0; } }
@keyframes bkMark { to { stroke-dashoffset: 0; } }
.bk-success h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; color: var(--gold); margin-bottom: .55rem; }
.bk-success-sum { font-family: var(--label); font-weight: 700; font-size: .9rem; color: var(--ink); background: var(--gold-soft); border-radius: 10px; padding: .6rem .9rem; display: inline-block; margin: 0 0 .9rem; line-height: 1.5; }
.bk-success-note { font-size: .98rem; color: var(--muted); max-width: 34ch; margin: 0 auto 1.4rem; }

.bk-demo { margin: 1.15rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line-2); font-size: .76rem; line-height: 1.5; color: var(--muted); }

/* dark button (on the gold about band) */
.btn-light { background: #14110A; color: #E6C87E; }
.btn-light:hover { background: #000000; transform: translateY(-2px); }
.about-cta { margin-top: 1.7rem; }

/* ---------- section heads ---------- */
.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .label { display: inline-block; margin-bottom: .9rem; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -0.025em; }
.section-head h2 .clay { color: var(--clay); }
.section-head h2 .grn { color: var(--gold); }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-top: .9rem; max-width: 52ch; }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.svc {
  background: var(--card); border: 1.5px solid var(--line); border-radius: 14px;
  padding: clamp(1.5rem, 2.4vw, 2rem); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.svc:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 26px 50px -36px rgba(0,0,0,.7); }
.svc-ico { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; margin-bottom: 1.2rem; }
.svc-ico svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .55rem; letter-spacing: -0.02em; }
.svc h3 .clay { color: var(--clay); }
.svc p { color: var(--muted); font-size: .98rem; margin: 0 0 1.3rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: auto; }
.svc-tags span { font-family: var(--label); font-size: .68rem; font-weight: 600; letter-spacing: .04em; color: var(--clay-deep); background: var(--clay-soft); border-radius: 6px; padding: .3rem .6rem; }
.svc-note { margin-top: 1.8rem; color: var(--muted); font-size: .98rem; }
.svc-note a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- çalışmalar / IG media tabs ---------- */
.tabbar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.tabbar .tab { min-height: 46px; padding: .4rem 1.15rem; }
.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.7rem, 1.6vw, 1.1rem); }
.media { margin: 0; position: relative; aspect-ratio: 9 / 16; border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--card); transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.media:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 26px 50px -36px rgba(0,0,0,.7); }
.media video, .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media video { cursor: pointer; }
.media-note { margin-top: 1.6rem; text-align: center; color: var(--muted); font-size: .92rem; }
.media-note a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.media-note a:hover { color: var(--gold-bright); }

/* ---------- about band (gold) ---------- */
.about { background: linear-gradient(160deg, #D8B25E 0%, #B8923F 100%); color: #241C09; border-radius: 0; }
.about .wrap { position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about .label { color: #4A360C; margin-bottom: 1rem; display: inline-block; }
.about-quote { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.18; letter-spacing: -0.02em; color: #1C1507; }
.about-quote .ochre { color: #5C430E; }
.about-body p { color: color-mix(in srgb, #241C09 88%, transparent); margin: 0 0 1.1rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-sign { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(20,17,10,.25); }
.about-sign .nm { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: #1C1507; }
.about-sign .rl { font-family: var(--label); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #4A360C; margin-top: .3rem; }

/* ---------- testimonials (light cards) ---------- */
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.voice { background: var(--card); border: 1.5px solid var(--line); border-radius: 14px; padding: clamp(1.5rem, 2.4vw, 2rem); border-top: 4px solid var(--clay); display: flex; flex-direction: column; }
.voice .stars { color: var(--ochre); letter-spacing: .14em; font-size: .9rem; margin-bottom: 1rem; }
.voice blockquote { margin: 0 0 1.4rem; font-size: 1.08rem; line-height: 1.5; color: var(--ink); }
.voice figcaption { margin-top: auto; font-family: var(--label); font-weight: 700; font-size: .82rem; color: var(--gold); }
.voice figcaption span { display: block; font-family: var(--label); font-weight: 600; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.map-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--line); min-height: 400px; background: var(--card); order: -1; }
.map-card iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; filter: saturate(.85) contrast(1.02); }
.visit-info { display: flex; flex-direction: column; }
.vrow { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.vrow:first-of-type { padding-top: 0; }
.vrow .label { display: block; margin-bottom: .4rem; }
.vrow .v { font-size: 1.06rem; color: var(--ink); }
.vrow .v a { color: var(--gold); text-decoration: none; border-bottom: 1.5px solid var(--gold-soft); }
.vrow .v a:hover { border-color: var(--gold); }
.vrow small { display: block; color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.visit-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.6rem; }

/* ---------- footer ---------- */
.site-footer { background: #070604; color: color-mix(in srgb, var(--ink) 80%, transparent); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 1.8rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); }
.footer-brand .brand-name { color: var(--ink); }
.footer-brand p { color: color-mix(in srgb, var(--ink) 60%, transparent); max-width: 32ch; font-size: .93rem; margin-top: 1rem; }
.footer-col h4 { font-family: var(--label); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); margin: 0 0 1rem; }
.footer-col a, .footer-col p { color: color-mix(in srgb, var(--ink) 70%, transparent); text-decoration: none; font-size: .93rem; display: block; margin-bottom: .5rem; }
.footer-col a:hover { color: var(--gold-bright); }
.rating-badge { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink); font-size: .92rem; }
.rating-badge .stars { color: var(--ochre); letter-spacing: .1em; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 1.7rem; font-size: .8rem; color: color-mix(in srgb, var(--ink) 50%, transparent); }
.footer-review { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid var(--line); }
.footer-review .btn { min-height: 44px; }
.disclaimer { max-width: 64ch; line-height: 1.6; }

/* ---------- reveal ---------- */
.will-reveal { opacity: 0; transform: translateY(22px); }
.will-reveal.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.will-reveal[data-reveal="stagger"] > * { opacity: 0; transform: translateY(18px); }
.will-reveal[data-reveal="stagger"].in > * { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.will-reveal[data-reveal="stagger"].in > *:nth-child(2) { transition-delay: .08s; }
.will-reveal[data-reveal="stagger"].in > *:nth-child(3) { transition-delay: .16s; }

/* ---------- services / reviews CTA rows ---------- */
.svc-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.4rem; margin-top: 1.9rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.svc-cta .svc-note { margin: 0; flex: 1 1 320px; }
.voices-note { margin-top: 1.9rem; color: var(--muted); font-size: .98rem; text-align: center; }
.voices-note a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- mobile sticky "Randevu Al" bar ---------- */
.nav-cta-mobile { display: none; }
.m-bookbar { display: none; }
.m-bookbar-info { display: flex; flex-direction: column; line-height: 1.12; }
.m-bookbar-info .stars { color: var(--ochre); font-size: .78rem; letter-spacing: .04em; }
.m-bookbar-rating { font-family: var(--label); font-weight: 700; font-size: 1.02rem; color: var(--ink); display: flex; align-items: baseline; gap: .4rem; }
.m-bookbar-rating small { font-family: var(--label); font-weight: 600; font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.m-bookbar.is-hidden { transform: translateY(120%); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .svc-grid, .voices-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .map-card { order: 0; min-height: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .booking { max-width: 520px; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .svc-grid, .voices-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .m-bookbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; align-items: center; justify-content: space-between; gap: .8rem; padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--card) 96%, transparent); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -12px 30px -22px rgba(0,0,0,.7); transition: transform .35s var(--ease); }
  .m-bookbar .btn { flex: none; padding: .8rem 1.35rem; min-height: 46px; }
  body { padding-bottom: 74px; }
}
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); flex-direction: column; align-items: stretch; justify-content: center; gap: 1.3rem; padding: 2rem var(--pad); background: var(--card); border-left: 1.5px solid var(--line); transform: translateX(100%); transition: transform .4s var(--ease); }
  body.nav-open .nav { transform: translateX(0); }
  /* hotfix: menü açıkken arka plan scroll kilidi (menü + kayan sayfa buglanması) */
  body.nav-open { overflow: hidden; }
  /* hotfix: backdrop-filter fixed .nav'ın containing-block'unu header'a hapsediyor → menü açıkken kapat */
  body.nav-open .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; }
  /* hotfix: menü açıkken sayfayı karart */
  body.nav-open::before { content: ""; position: fixed; inset: 0; z-index: 40; background: rgba(0, 0, 0, .55); }
  .nav > a:not(.btn) { font-size: 1.25rem; font-weight: 700; color: var(--gold); }
  .nav a::after { display: none; }
  .nav-cta-mobile { display: inline-flex; justify-content: center; margin-top: .4rem; font-size: .95rem; }
  .header-desktop-cta { display: none; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .times { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html.motion .hero-copy > .hero-anim { animation: none; opacity: 1; transform: none; }
  .bk-success { animation: none; }
  .bk-check-circle, .bk-check-mark { animation: none; stroke-dashoffset: 0; }
  .m-bookbar { transition: none; }
}
