:root {
  interpolate-size: allow-keywords;
  --bg: #F5F0E8;
  --surface: #FFFFFF;
  --surface-2: #EDE8DF;
  --ink: #1E1E1E;
  --ink-soft: #5A5A5A;
  --accent: #D94F30;
  --accent-2: #2E6B4F;
  --line: rgba(30,30,30,0.12);
  --line-strong: rgba(30,30,30,0.25);
  --header-h: 72px;
  --container-max: 1320px;
  --container-pad: clamp(16px, 4vw, 32px);
  --radius: 12px;
  --radius-sm: 8px;
  --ff-heading: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-mono: ui-monospace, 'SF Mono', 'Cascadia Code', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--ff-heading);
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { max-width: 65ch; line-height: 1.65; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
a:hover { color: var(--accent-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

main { padding-top: var(--header-h); }

section[id], [id="form"] { scroll-margin-top: calc(var(--header-h) + 16px); }

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.section-heading { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-heading .eyebrow { display: block; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(245, 240, 232, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  padding: 8px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.025em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }
.logo:hover { color: var(--accent); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1025px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms ease;
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after {
  width: 100%;
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a:not(.nav-cta).is-active {
  color: var(--accent);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease, transform 180ms ease;
}
.nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 4px 16px -2px rgba(217, 79, 48, 0.3);
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 5px;
}
@media (min-width: 1025px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms linear 320ms;
  padding: calc(var(--header-h) + 32px) 28px 32px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms linear 0ms;
}
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background 200ms ease, color 200ms ease;
  text-decoration: none;
}
.drawer nav a:hover,
.drawer nav a.is-active { background: var(--surface-2); color: var(--accent); }
.drawer nav .btn-primary { margin-top: 16px; text-align: center; }

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: wordReveal 800ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(var(--i, 0) * 110ms + 200ms);
}
@keyframes wordReveal {
  to { opacity: 1; transform: none; }
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero .btn-lg { margin-bottom: 2rem; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.trust-strip svg { width: 14px; height: 14px; color: var(--accent-2); flex-shrink: 0; }

.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  position: relative;
  z-index: 2;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--ff-mono);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.hero-stripe {
  position: absolute;
  top: -10%;
  right: clamp(20px, 10vw, 140px);
  width: 70px;
  height: 120%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(217, 79, 48, 0.08) 10px,
    rgba(217, 79, 48, 0.08) 12px,
    transparent 12px,
    transparent 22px,
    rgba(46, 107, 79, 0.06) 22px,
    rgba(46, 107, 79, 0.06) 24px
  );
  pointer-events: none;
  z-index: 1;
  animation: poleSlide 12s linear infinite;
}
@keyframes poleSlide {
  to { background-position: 0 34px; }
}

.hero-icon-float {
  position: absolute;
  bottom: 15%;
  right: clamp(80px, 16vw, 260px);
  width: clamp(60px, 10vw, 100px);
  height: clamp(60px, 10vw, 100px);
  color: var(--accent);
  opacity: 0.14;
  z-index: 1;
  animation: breathe 8s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(217, 79, 48, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
@keyframes breathe {
  0%, 100% { transform: scale(1) rotate(-8deg); opacity: 0.14; }
  50% { transform: scale(1.06) rotate(-5deg); opacity: 0.22; }
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), background 280ms ease;
  border: 1px solid var(--line);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(217, 79, 48, 0.18), 0 0 0 1px rgba(217, 79, 48, 0.1);
  border-color: rgba(217, 79, 48, 0.25);
  background: rgba(217, 79, 48, 0.025);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .card-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 16px;
  transition: color 240ms ease;
}
.service-card:hover .card-icon { color: var(--accent-2); }
.service-card:hover .card-icon.icon-shaver { animation: vibrate 150ms linear 3; }
.service-card:hover .card-icon.icon-scissors { animation: scissorSnip 400ms ease 1; }
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.service-card .card-price {
  font-family: var(--ff-mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
}

@keyframes vibrate {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-1px, 0.5px); }
  40% { transform: translate(0.5px, -1px); }
  60% { transform: translate(-0.5px, 0.5px); }
  80% { transform: translate(1px, -0.5px); }
}
@keyframes scissorSnip {
  0%, 100% { transform: rotate(0); }
  35% { transform: rotate(-10deg); }
  65% { transform: rotate(5deg); }
}

.timeline {
  position: relative;
  padding-left: 56px;
  max-width: 720px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 17px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.timeline-step {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 44px);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: -56px; top: 0;
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
  z-index: 2;
}
.timeline-step h4 {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.timeline-step .step-time {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--accent-2);
  background: rgba(46, 107, 79, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}
.timeline-step p { color: var(--ink-soft); font-size: 0.95rem; }

@keyframes stepGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 79, 48, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(217, 79, 48, 0); }
}
.timeline-step.is-in::before {
  animation: stepGlow 2s ease-in-out 0.3s 1;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.branch-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: clamp(16px, 2vw, 24px);
  text-align: center;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.branch-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px -8px rgba(217, 79, 48, 0.12);
  background: rgba(217, 79, 48, 0.02);
}
.branch-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  transition: color 240ms ease;
}
.branch-card:hover h4 { color: var(--accent); }
.branch-card p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 0 auto;
}

.section-dark {
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(217, 79, 48, 0.04) 18px,
    rgba(217, 79, 48, 0.04) 20px
  );
  pointer-events: none;
}
.section-dark .eyebrow { color: var(--accent); }
.section-dark h2 { color: var(--surface); }

.advantages-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  z-index: 1;
}
.advantage-item {
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius-sm);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), background 280ms ease;
}
.advantage-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}
.advantage-item:hover .adv-icon {
  filter: drop-shadow(0 0 8px rgba(217, 79, 48, 0.4));
  transition: filter 300ms ease;
}
.advantage-item .adv-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.advantage-item h3 {
  font-size: 1.05rem;
  color: var(--surface);
  margin-bottom: 8px;
}
.advantage-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0 auto;
  max-width: 280px;
}

.manifesto {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}
.manifesto blockquote {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 clamp(16px, 4vw, 40px);
}
.manifesto blockquote::before {
  content: '\201C';
  position: absolute;
  top: -0.3em;
  left: 0;
  font-size: 3em;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(16px, 3vw, 28px);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms ease, border-color 280ms ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.08);
  border-color: rgba(217, 79, 48, 0.18);
}
.testimonial-card:first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.testimonial-card .tc-quote {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card .tc-author {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}
.testimonial-card .tc-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(217, 79, 48, 0.12);
}
.price-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}
.price-card:hover::after { animation: shineSweep 800ms ease forwards; }
@keyframes shineSweep { to { left: 200%; } }

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px -8px rgba(217, 79, 48, 0.12);
  animation: warmPulse 4s ease-in-out infinite;
}
@keyframes warmPulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--accent), 0 8px 32px -8px rgba(217, 79, 48, 0.12); }
  50% { box-shadow: 0 0 0 1px var(--accent), 0 12px 40px -6px rgba(217, 79, 48, 0.22); }
}
.price-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: 16px; right: -28px;
  background: var(--accent);
  color: var(--surface);
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
}
.price-card .plan-name {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.price-card .plan-price {
  font-family: var(--ff-mono);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1.2;
}
.price-card .plan-period {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.price-card .plan-features { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card .plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-card .plan-features li:last-child { border-bottom: 0; }
.price-card .plan-features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.price-card .plan-features .included svg { color: var(--accent-2); }
.price-card .plan-features .excluded { color: var(--ink-soft); }
.price-card .plan-features .excluded svg { color: var(--ink-soft); opacity: 0.4; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  padding-left: 12px;
  transition: border-left-color 280ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] {
  border-left-color: var(--accent);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  gap: 16px;
  transition: color 240ms ease, padding-left 280ms cubic-bezier(.16,1,.3,1);
}
.faq-item summary:hover {
  color: var(--accent);
  padding-left: 6px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 320ms cubic-bezier(.4,0,.2,1), border-color 240ms ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); border-color: var(--accent); }
.faq-item[open] summary { color: var(--accent); }
.faq-item > .answer {
  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] > .answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-item .answer p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover { transform: translateX(4px); }
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--accent);
  margin-top: 2px;
  transition: color 240ms ease, transform 240ms ease;
}
.contact-row:hover svg { color: var(--accent-2); transform: scale(1.08); }
.contact-row strong {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}
.contact-row span, .contact-row a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--surface);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms ease, color 240ms ease, transform 180ms ease, box-shadow 240ms ease;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(217, 79, 48, 0.3), 0 0 0 1px rgba(217, 79, 48, 0.1);
}
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
  letter-spacing: 0.02em;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.form-card h3 { margin-bottom: 24px; }

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 240ms ease, box-shadow 240ms ease;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 79, 48, 0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }

.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 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.kvkk a { text-decoration: underline; }

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--surface); margin-bottom: 16px; }
.footer-brand .logo:hover { color: var(--accent); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer-brand .est {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 12px;
  display: inline-block;
}
.footer-col h4 {
  color: var(--surface);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 200ms ease;
  text-decoration: none;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent); }

.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.15);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 { font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-actions button[data-consent="reject"] {
  border-color: var(--ink);
  color: var(--ink);
  font-weight: 700;
}
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="settings"]:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); margin: 0 auto; max-width: 560px; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.about-story .story-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-2);
}
.about-story .story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.08);
}
.team-photo {
  aspect-ratio: 1;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card-body { padding: clamp(16px, 2.5vw, 24px); }
.team-card-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card-body .team-role {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.team-card-body p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.7; }

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}
.legal-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-content p { margin-bottom: 1rem; color: var(--ink-soft); font-size: 0.92rem; }
.legal-content ul, .legal-content ol { margin: 1rem 0; padding-left: 24px; }
.legal-content li { margin-bottom: 8px; font-size: 0.92rem; color: var(--ink-soft); }

.thankyou-section {
  text-align: center;
  padding: clamp(5rem, 12vw, 10rem) 0;
}
.thankyou-section h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.thankyou-section p { color: var(--ink-soft); margin: 0 auto 2rem; max-width: 480px; font-size: 1.05rem; }

.error-section {
  text-align: center;
  padding: clamp(5rem, 12vw, 10rem) 0;
}
.error-section .error-code {
  font-family: var(--ff-mono);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.2;
}
.error-section h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 12px; }
.error-section p { color: var(--ink-soft); margin: 0 auto 2rem; max-width: 400px; }

.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%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { border-collapse: collapse; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
th { font-family: var(--ff-heading); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); background: var(--surface-2); }
td { color: var(--ink-soft); }

.sitemap-links { columns: 2; gap: 32px; list-style: none; }
.sitemap-links li { break-inside: avoid; margin-bottom: 12px; }
.sitemap-links a { font-size: 0.95rem; }

.disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 20px;
  text-align: center;
  font-style: italic;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 700ms cubic-bezier(.16,1,.3,1),
              translate 700ms cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in {
  opacity: 1;
  translate: none;
}

html.no-js .reveal { opacity: 1; translate: none; }
html.no-js .hero-word { opacity: 1; transform: none; animation: none; }

@keyframes razorShine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.razor-shine {
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) 40%,
    var(--accent) 50%,
    var(--ink) 60%,
    var(--ink) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.razor-shine:hover { animation: razorShine 1.2s ease forwards; }

@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scale(0.8); }
  40% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-18px) scale(1.1); }
}
.steam-particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: steamRise 2.5s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * 1s);
}

.cancel-tiers { list-style: none; }
.cancel-tiers li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cancel-tiers li:last-child { border-bottom: 0; }
.cancel-tier-badge {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cancel-tier-badge.green { background: rgba(46, 107, 79, 0.1); color: var(--accent-2); }
.cancel-tier-badge.yellow { background: rgba(217, 175, 48, 0.12); color: #9a7d1e; }
.cancel-tier-badge.red { background: rgba(217, 79, 48, 0.08); color: var(--accent); }

@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-card:last-child { grid-column: 1 / -1; max-width: 400px; justify-self: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:first-child { grid-row: auto; }
  .about-story { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid .team-card:last-child { grid-column: 1 / -1; max-width: 380px; justify-self: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-strip { grid-template-columns: 1fr; gap: 12px; }
  .advantage-item { text-align: left; display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; padding: 16px 0; }
  .advantage-item .adv-icon { margin: 0; grid-row: 1 / 3; }
  .advantage-item h3 { color: var(--surface); }
  .advantage-item p { grid-column: 2; max-width: none; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stats .stat { display: flex; align-items: baseline; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sitemap-links { columns: 1; }
}

@media (max-width: 640px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card:last-child { grid-column: auto; max-width: none; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid .team-card:last-child { grid-column: auto; max-width: none; }
  .service-card { padding: 18px; }
  .service-card .card-icon { width: 36px; height: 36px; }
  .hero { padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(2rem, 6vw, 3rem); }
  .hero-stripe { display: none; }
  .hero-icon-float { display: none; }
  .manifesto blockquote { font-size: clamp(1.2rem, 3.5vw, 1.8rem); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 430px) {
  .trust-strip { gap: 8px; }
  .trust-strip span { font-size: 0.68rem; padding: 6px 10px; }
  .branches-grid { gap: 8px; }
  .branch-card { padding: 14px; }
  .branch-card h4 { font-size: 0.85rem; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { flex: auto; }
}

@media (max-width: 390px) {
  h1 { font-size: 2.2rem; }
  .price-card .plan-price { font-size: 1.8rem; }
  .stat-num { font-size: 1.8rem; }
}

@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .branches-grid { grid-template-columns: 1fr; }
  .service-card { padding: 14px; }
}

/* Barber-theme warm glow on nav CTA */
.nav-desktop .nav-cta:hover {
  box-shadow: 0 4px 20px -2px rgba(217, 79, 48, 0.35);
}

/* Enhanced manifesto reveal */
.manifesto blockquote.is-in {
  animation: quoteReveal 1s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes quoteReveal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: none; }
}

/* Warm underline on footer links */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.16,1,.3,1);
}
.footer-col a:hover::after { width: 100%; }

/* Team card enhanced hover */
.team-card:hover {
  border-color: rgba(217, 79, 48, 0.2);
}
.team-card:hover .team-card-body .team-role {
  letter-spacing: 0.04em;
  transition: letter-spacing 300ms ease;
}

/* Testimonial card quote accent */
.testimonial-card .tc-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: -4px;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity 300ms ease;
  font-family: var(--ff-heading);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card {
  position: relative;
}
.testimonial-card:hover .tc-quote::before {
  opacity: 0.15;
}
.testimonial-card .tc-quote {
  position: relative;
}

/* Pricing card hover warm border */
.price-card:hover {
  border-color: rgba(217, 79, 48, 0.2);
}

/* Contact row warm glow on hover */
.contact-row:hover svg {
  filter: drop-shadow(0 0 4px rgba(217, 79, 48, 0.3));
}

/* Cookie banner smooth entry — override base transition with richer curve */
.cookie-banner {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), opacity 350ms ease;
}


.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 10;
  pointer-events: none;
}

/* Drawer inert styling */
.drawer[inert] { pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    translate: none !important;
    transition: none !important;
  }
  .hero-word {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-stripe { animation: none !important; }
  .hero-icon-float { animation: none !important; }
  .service-card:hover .card-icon.icon-shaver { animation: none !important; }
  .service-card:hover .card-icon.icon-scissors { animation: none !important; }
  .price-card:hover::after { animation: none !important; }
  .price-card.featured { animation: none !important; }
  .steam-particle { animation: none !important; }
  .advantage-item { transition: none !important; }
  .timeline-step.is-in::before { animation: none !important; }
  .faq-item > .answer { transition: none; }
  .manifesto blockquote.is-in { animation: none !important; }
  .cookie-banner { transition: none !important; }
  .faq-item summary { transition: none !important; }
  .footer-col a::after { transition: none !important; }
}

@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop, .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; translate: none !important; }
  .hero-word { opacity: 1 !important; transform: none !important; animation: none !important; }
  section { page-break-inside: avoid; }
}
