
:root {
  --bg: #FAFAF5;
  --surface: #ECEADE;
  --surface-2: #E2DFD4;
  --ink: #2D2A24;
  --ink-soft: #5C574E;
  --accent: #E07A2F;
  --accent-2: #5B7C5A;
  --line: rgba(45,42,36,0.12);
  --line-strong: rgba(45,42,36,0.25);
  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 14px;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4, h5 {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 10000;
  font-size: 0.875rem;
}
.skip-link:focus { top: 8px; }

/* ============================================
   BARBER POLE STRIPE (top decoration)
   ============================================ */
.barber-pole {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 9998;
  background: repeating-linear-gradient(
    -45deg,
    #C41E3A 0px, #C41E3A 8px,
    #FFFFFF 8px, #FFFFFF 16px,
    #1B4F8A 16px, #1B4F8A 24px,
    #FFFFFF 24px, #FFFFFF 32px
  );
  background-size: 45px 100%;
  animation: pole-spin 2s linear infinite;
}
@keyframes pole-spin {
  to { background-position-x: -45px; }
}
@media (prefers-reduced-motion: reduce) {
  .barber-pole { animation: none; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(250,250,245,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background: rgba(250,250,245,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 64px;
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  transition: width 60ms linear;
  z-index: 1;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg { width: 28px; height: 28px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  transition: color 240ms ease;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop .nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 240ms ease, transform 180ms ease, color 240ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
  transition: background 200ms ease;
}
.nav-toggle:active { background: rgba(45,42,36,0.08); }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================
   MOBILE DRAWER
   ============================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms ease, transform 240ms ease;
}
.drawer a:hover { color: var(--accent); transform: translateX(6px); }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 20px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
}
.drawer .drawer-cta:hover { background: var(--ink); color: #fff; }

/* ============================================
   MAIN
   ============================================ */
main { padding-top: calc(var(--header-h) + 6px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(60px, 12vh, 140px) 0 clamp(40px, 8vh, 100px);
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }
.hero .eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .eyebrow::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.hero h1 {
  margin-bottom: 24px;
  color: var(--ink);
}
.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: charReveal 420ms cubic-bezier(.22,.68,.35,1.04) forwards;
}
@keyframes charReveal {
  60% { opacity: 1; }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 .char-ready .char { opacity: 1; transform: none; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-badges span svg { width: 16px; height: 16px; color: var(--accent-2); }
.hero-badges span {
  transition: background 280ms ease, transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms ease;
}
.hero-badges span:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat { text-align: left; }
.hero-stats .stat-num {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.hero-deco {
  position: absolute;
  top: 20%;
  right: -5%;
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  opacity: 0.06;
  animation: scissors-float 8s ease-in-out infinite;
}
@keyframes scissors-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(3deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  75% { transform: translateY(-10px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-deco { animation: none; }
  .hero h1 .char { opacity: 1; transform: none; animation: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 240ms ease, transform 180ms ease, box-shadow 240ms ease, color 240ms ease;
  border: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(224,122,47,0.35);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid var(--line-strong);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 240ms ease, border-color 240ms ease, transform 180ms ease, color 240ms ease;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: clamp(60px, 10vh, 120px) 0;
}
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.section-eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ============================================
   NASIL ÇALIŞIR — Timeline
   ============================================ */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: var(--surface);
  border-radius: 2px;
  z-index: 0;
}
.timeline-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: background 360ms ease, transform 360ms ease;
}
.timeline-step:hover .timeline-dot {
  background: var(--accent);
  transform: scale(1.08);
}
.timeline-step:hover .timeline-dot svg { color: #fff; }
.timeline-dot svg { width: 22px; height: 22px; color: var(--accent); transition: color 360ms ease; }
.timeline-dot.is-in { animation: dot-pulse 1.5s ease-in-out 1; }
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,122,47,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(224,122,47,0); }
}
.timeline-step h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.timeline-step p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .timeline-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline-grid::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 3px;
    height: 100%;
  }
  .timeline-step {
    text-align: left;
    padding-left: 80px;
    padding-right: 0;
  }
  .timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}

/* ============================================
   GÜNLÜK PROGRAM — Schedule
   ============================================ */
.schedule-section { background: var(--surface); border-radius: var(--radius-lg); }
.schedule-inner { padding: clamp(24px, 4vw, 48px); }

.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
@media (max-width: 640px) {
  .table-scroll > table { min-width: 0; }
  .schedule-table th, .schedule-table td { padding: 10px 12px; font-size: 0.82rem; }
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.schedule-table {
  border-collapse: collapse;
  font-size: 0.88rem;
}
.schedule-table th {
  background: var(--ink);
  color: var(--bg);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
}
.schedule-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tbody tr {
  transition: background 200ms ease;
}
.schedule-table tr:hover td { background: rgba(224,122,47,0.07); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}
.status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-badge--available { background: rgba(91,124,90,0.12); color: var(--accent-2); }
.status-badge--available::before { background: var(--accent-2); }
.status-badge--busy { background: rgba(224,122,47,0.12); color: var(--accent); }
.status-badge--busy::before { background: var(--accent); }
.status-badge--full { background: rgba(45,42,36,0.08); color: var(--ink-soft); }
.status-badge--full::before { background: var(--ink-soft); }

/* ============================================
   HİZMETLER — Services
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(224,122,47,0.25),
              0 0 0 1px rgba(224,122,47,0.06);
}
.service-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(224,122,47,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 22px; height: 22px; color: var(--accent); }
.service-info h4 { margin-bottom: 6px; }
.service-info p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 10px; }
.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(91,124,90,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}
.duration-badge svg { width: 12px; height: 12px; }

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FİYATLAR — Pricing
   ============================================ */
.pricing-section { background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); }
.pricing-inner { padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 48px); }
.pricing-section .section-eyebrow { color: var(--accent); }
.pricing-section .section-title { color: var(--bg); }
.pricing-section .section-desc { color: rgba(250,250,245,0.7); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: rgba(250,250,245,0.06);
  border: 1px solid rgba(250,250,245,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 0 28px -6px rgba(224,122,47,0.25);
}
.price-card.featured {
  background: rgba(224,122,47,0.08);
  border-color: var(--accent);
  position: relative;
}
.price-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-card h4 {
  color: var(--bg);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.price-amount {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 18px;
}
.price-amount small { font-size: 0.5em; font-weight: 400; color: rgba(250,250,245,0.6); }
.price-list {
  margin-bottom: 20px;
}
.price-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(250,250,245,0.08);
  font-size: 0.88rem;
  color: rgba(250,250,245,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-list li svg { width: 16px; height: 16px; color: var(--accent-2); min-width: 16px; }
.price-list li.excluded { color: rgba(250,250,245,0.4); text-decoration: line-through; }
.price-list li.excluded svg { color: rgba(250,250,245,0.3); }

.price-disclaimer {
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(250,250,245,0.5);
  font-style: italic;
}

@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(224,122,47,0.18);
}
.testimonial-card::before {
  content: '\201C';
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 740px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  padding: 20px 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 240ms ease;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  min-width: 24px;
  text-align: center;
}
.faq-item[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq-item .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-item .faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-channels .ch-icon {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 240ms ease, transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channels .ch-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-channels .ch-row {
  display: contents;
  cursor: default;
}
.contact-channels .ch-row:hover .ch-icon {
  background: var(--accent);
  transform: scale(1.08);
}
.contact-channels .ch-row:hover .ch-icon svg { color: #fff; }
.contact-channels .ch-row:hover .ch-text { transform: translateX(4px); }
.contact-channels .ch-text {
  padding-top: 8px;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channels .ch-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-channels .ch-value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,122,47,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}
.kvkk-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.kvkk-group label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250,250,245,0.7);
  padding: clamp(48px, 8vh, 80px) 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--bg); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  color: var(--bg);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 240ms ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(250,250,245,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
.footer-bottom a { transition: color 240ms ease; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.16,1,.3,1), transform 800ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 100ms + 80ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .section-title::after { width: 64px !important; transition: none !important; }
  .service-card,
  .price-card,
  .testimonial-card,
  .team-card,
  .timeline-dot,
  .team-avatar,
  .contact-channels .ch-icon,
  .contact-channels .ch-text,
  .faq-item summary::after { transition: none !important; }
  .service-card::after,
  .btn-primary::after { display: none !important; }
  .service-card:hover .service-icon svg { animation: none !important; }
  .service-card:hover,
  .price-card:hover,
  .price-card.featured:hover,
  .testimonial-card:hover,
  .team-card:hover,
  .timeline-step:hover .timeline-dot,
  .contact-channels .ch-row:hover .ch-icon,
  .team-card:hover .team-avatar,
  .btn-primary:hover,
  .nav-desktop .nav-cta:hover,
  .drawer .drawer-cta:hover { box-shadow: none !important; transform: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .section-title::after { width: 64px; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(250,250,245,0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h6 {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--bg);
}
.cookie-banner p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(250,250,245,0.7);
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btns button {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  min-height: 44px;
  transition: background 240ms ease, color 240ms ease;
}
.cookie-btns .cookie-accept { background: var(--accent); color: #fff; }
.cookie-btns .cookie-accept:hover { background: #c96a24; color: #fff; }
.cookie-btns .cookie-reject {
  background: transparent;
  color: rgba(250,250,245,0.72);
  border: 1px solid rgba(250,250,245,0.28);
}
.cookie-btns .cookie-reject:hover { background: rgba(250,250,245,0.1); color: var(--bg); border-color: rgba(250,250,245,0.5); }
.cookie-btns .cookie-settings {
  background: transparent;
  color: rgba(250,250,245,0.7);
  text-decoration: underline;
}
.cookie-btns .cookie-settings:hover { color: var(--bg); }

@media (max-width: 639px) {
  .cookie-banner { max-width: none; bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px)); }
  .cookie-btns button { flex: 0 0 auto; min-width: 80px; padding: 12px 18px; min-height: 48px; font-size: 0.85rem; }
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============================================
   COUNTER-UP
   ============================================ */
.counter-up {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   NICHE ANIMATIONS — Barber
   ============================================ */
@keyframes scissor-snip {
  0%, 100% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-12deg) scale(1.05); }
  40% { transform: rotate(10deg) scale(1.02); }
  60% { transform: rotate(-6deg) scale(1.04); }
  80% { transform: rotate(4deg) scale(1); }
}
.service-card:hover .service-icon svg {
  animation: scissor-snip 600ms cubic-bezier(.16,1,.3,1);
}

@keyframes razor-slide {
  from { width: 0; }
  to { width: 100%; }
}
.section-title::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 12px;
  transition: width 800ms cubic-bezier(.16,1,.3,1) 200ms;
}
.section-title.is-in::after { width: 64px; }

@keyframes clock-tick {
  0%, 80%, 100% { transform: rotate(0deg); }
  90% { transform: rotate(6deg); }
}
.schedule-table td:first-child {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  color: var(--ink);
}

@keyframes lather-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-12px) scale(1.05); opacity: 0.9; }
}

@keyframes warm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,122,47,0); }
  50% { box-shadow: 0 0 20px -4px rgba(224,122,47,0.2); }
}

.service-card {
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  box-shadow: inset 0 -2px 20px -8px rgba(224,122,47,0.12);
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  transition: background 360ms cubic-bezier(.16,1,.3,1), box-shadow 360ms ease;
}
.service-card:hover .service-icon {
  background: rgba(224,122,47,0.18);
  box-shadow: 0 0 12px -2px rgba(224,122,47,0.25);
}

.price-card.featured {
  transition: transform 240ms cubic-bezier(.16,1,.3,1), border-color 240ms ease, box-shadow 400ms ease;
}
.price-card.featured:hover {
  box-shadow: 0 0 36px -8px rgba(224,122,47,0.3);
}

.testimonial-card:hover::before { opacity: 0.7; }

.team-avatar {
  transition: box-shadow 400ms cubic-bezier(.16,1,.3,1), transform 400ms cubic-bezier(.16,1,.3,1);
}
.team-card:hover .team-avatar {
  box-shadow: 0 0 24px -4px rgba(224,122,47,0.4);
  transform: scale(1.04);
}

.timeline-dot {
  transition: background 360ms cubic-bezier(.16,1,.3,1),
              transform 360ms cubic-bezier(.16,1,.3,1),
              box-shadow 360ms ease;
}
.timeline-step:hover .timeline-dot {
  box-shadow: 0 0 18px -2px rgba(224,122,47,0.35);
}

.contact-channels .ch-row:hover .ch-icon {
  box-shadow: 0 0 16px -4px rgba(224,122,47,0.35);
}

.faq-item summary::after {
  transition: transform 320ms cubic-bezier(.16,1,.3,1), color 240ms ease;
}
.faq-item summary:hover::after { transform: scale(1.15); }
.faq-item[open] summary::after { transform: rotate(180deg); }

.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: rotate(25deg) translateY(-50%);
  transition: left 600ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.btn-primary:hover::after { left: 125%; }
.btn-primary:hover {
  box-shadow: 0 8px 28px -6px rgba(224,122,47,0.4);
}

.nav-desktop .nav-cta:hover {
  box-shadow: 0 6px 20px -6px rgba(45,42,36,0.35);
}

.drawer .drawer-cta {
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}
.drawer .drawer-cta:hover {
  box-shadow: 0 6px 20px -6px rgba(45,42,36,0.35);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-list {
  position: relative;
  padding-left: 40px;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.process-step {
  position: relative;
  padding-bottom: 36px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.process-step .step-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.88rem; color: var(--ink-soft); }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(224,122,47,0.22);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
}
.team-card h4 { margin-bottom: 4px; }
.team-card .team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: clamp(40px, 8vh, 80px) 0 clamp(32px, 6vh, 60px);
  background: var(--surface);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.page-hero .eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; font-size: 1.05rem; }

/* ============================================
   POLICY / CONTENT PAGES
   ============================================ */
.policy-content {
  padding: clamp(40px, 6vh, 80px) 0;
  max-width: 780px;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
}
.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.policy-content p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.policy-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}
.policy-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-section {
  padding: clamp(80px, 15vh, 160px) 0;
  text-align: center;
}
.thankyou-section svg { margin-bottom: 24px; color: var(--accent-2); }
.thankyou-section h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.thankyou-section p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 32px; }

/* ============================================
   404
   ============================================ */
.error-section {
  padding: clamp(80px, 15vh, 160px) 0;
  text-align: center;
}
.error-section .error-code {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--surface);
  line-height: 1;
}
.error-section h1 { margin-bottom: 16px; }
.error-section p { color: var(--ink-soft); margin-bottom: 32px; }

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .barber-pole, .cookie-banner, .drawer, .drawer-backdrop, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   FOCUS
   ============================================ */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list { padding-left: 0; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-list li a {
  font-weight: 600;
  color: var(--ink);
  transition: color 240ms ease;
}
.sitemap-list li a:hover { color: var(--accent); }
.sitemap-list li span { font-size: 0.82rem; color: var(--ink-soft); margin-left: 8px; }

/* ============================================
   BARBER WARM GLOW — MICRO-EFFECTS
   ============================================ */
@keyframes warm-towel-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,122,47,0); }
  50% { box-shadow: 0 0 24px -4px rgba(224,122,47,0.18); }
}

.btn-primary:hover svg {
  transform: translateX(3px);
  transition: transform 280ms cubic-bezier(.16,1,.3,1);
}

.hero-badges span:hover svg {
  animation: scissor-snip 600ms cubic-bezier(.16,1,.3,1);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.16,1,.3,1);
}
.testimonial-card:hover::after { transform: scaleX(1); }

.faq-item[open] { background: rgba(224,122,47,0.02); border-radius: var(--radius); }

.schedule-table tr:hover td:first-child {
  box-shadow: inset 3px 0 0 var(--accent);
}

.price-card {
  position: relative;
}
.price-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(.16,1,.3,1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.price-card:hover::after { transform: scaleX(1); }
.price-card.featured::after { transform: scaleX(1); }

.team-card {
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.16,1,.3,1);
}
.team-card:hover::after { transform: scaleX(1); }

.contact-channels .ch-icon {
  position: relative;
}
.contact-channels .ch-row:hover .ch-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  background: rgba(224,122,47,0.08);
  animation: warm-towel-glow 1.5s ease-in-out infinite;
  pointer-events: none;
}

.process-step::before {
  transition: box-shadow 360ms ease, transform 360ms ease;
}
.process-step:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(224,122,47,0.15), 0 0 16px -2px rgba(224,122,47,0.3);
}

.drawer a {
  position: relative;
}
.drawer a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.16,1,.3,1);
}
.drawer a:hover::before { width: 48px; }
.drawer a.drawer-cta::before { display: none; }

@media (prefers-reduced-motion: reduce) {
  .testimonial-card::after,
  .price-card::after,
  .team-card::after,
  .drawer a::before { transition: none !important; }
  .hero-badges span:hover svg { animation: none !important; }
  .btn-primary:hover svg { transform: none !important; transition: none !important; }
  .contact-channels .ch-row:hover .ch-icon::after { animation: none !important; display: none !important; }
  .process-step:hover::before { transform: none !important; box-shadow: none !important; }
}
