/* ==========================================================
   KONUK ERKEK KUAFÖRÜ PENDİK — ORGANİK ZANAAT
   ========================================================== */
:root {
  /* Palet */
  --primary: #6B4226;
  --secondary: #A67C52;
  --accent: #4A7C59;
  --surface: #F4EFE6;
  --bg: #FDF8F0;
  --line: #E2D8C8;
  --text: #2E2418;
  --text-light: #6D5D4A;
  --white: #FDF8F0;

  /* Gölge */
  --shadow-card: 0 2px 8px rgba(107, 66, 38, 0.08);
  --shadow-btn: 0 4px 12px rgba(107, 66, 38, 0.15);
  --shadow-header: 0 2px 12px rgba(0, 0, 0, 0.05);

  /* Radius */
  --radius-btn: 8px;
  --radius-card: 4px 8px 4px 8px;
  --radius-img: 16px 0 16px 0;

  /* Tipografi */
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Kağıt dokusu — sayfa geneline sabit grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 2000;
}

[hidden] {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Erişilebilirlik: skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 3000;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: 500;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Focus-visible durumları */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus,
textarea:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 0;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(166, 124, 82, 0.12);
}

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

/* ===== Uyarı şeridi ===== */
.notice-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 100;
}
.notice-bar p {
  margin: 0;
}

/* ===== Üst Bilgi ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-header);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px 2px 8px 2px;
  transition: transform 0.3s ease;
}
.brand:hover .brand-mark {
  transform: rotate(-5deg) scale(1.05);
}
.brand-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.brand-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--text-light);
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 4px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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);
}

/* ===== Butonlar ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(107, 66, 38, 0.2);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.02);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.02);
}
.btn-small {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ===== Hero ===== */
.hero {
  padding: 64px 0 88px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--secondary);
  display: inline-block;
}

h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}
h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-image-wrap {
  margin: 0;
  border-radius: var(--radius-img);
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease;
  max-width: 420px;
}
.hero-image-wrap:hover {
  transform: rotate(0deg) scale(1.02);
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  max-width: calc(100% - 32px);
  background: var(--surface);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}
.badge-icon {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}
.badge-text {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== Bölüm genel ===== */
.section {
  padding: var(--section-pad-mobile, 64px) 0;
}
.section-head {
  margin-bottom: 48px;
  max-width: 700px;
}
.section-head.left {
  margin-left: 0;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.section-head h2 span {
  color: var(--primary);
  font-style: italic;
}
.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Hizmetler ===== */
.services {
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
/* Hafif açılı, elle yerleştirilmiş his */
.service-card:nth-child(1) { transform: rotate(-0.8deg); }
.service-card:nth-child(2) { transform: rotate(0.6deg); }
.service-card:nth-child(3) { transform: rotate(-0.4deg); }
.service-card:nth-child(4) { transform: rotate(0.8deg); }
.service-card:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 8px 24px rgba(107, 66, 38, 0.12);
  border-color: var(--line);
}

.card-warm { background: var(--surface); }
.card-accent { background: #F0E4D6; }
.card-tall { background: #EDE8DE; }
.card-narrow { background: #E9E2D4; }

.card-icon {
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
  flex-grow: 1;
}

.confirm-note {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--secondary);
  font-style: italic;
}

/* ===== Süreç / Timeline ===== */
.process {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(166, 124, 82, 0.12);
  z-index: 1;
}
.process .container {
  position: relative;
  z-index: 2;
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary) 70%, transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: start;
}

.step-marker {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  position: relative;
  z-index: 2;
}

.step-content {
  background: var(--bg);
  padding: 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.step-content:hover {
  transform: translateX(4px);
}
.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}
.step-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== İletişim ===== */
.contact {
  background: var(--primary);
  color: var(--white);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact .eyebrow {
  color: var(--secondary);
}
.contact .eyebrow::before {
  background: var(--secondary);
}
.contact .section-head h2 span {
  color: var(--secondary);
}
.contact .section-desc {
  color: rgba(255, 255, 255, 0.8);
}
.contact a:focus-visible {
  outline-color: var(--white);
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.contact-details a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.contact-details a:hover {
  border-color: var(--white);
}
.contact-details svg {
  flex-shrink: 0;
  color: var(--secondary);
  margin-top: 4px;
}

.contact-note {
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.8;
}

.contact-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.text-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s ease;
}
.text-link:hover {
  border-color: var(--white);
}

.contact-visual {
  position: relative;
}
.map-placeholder {
  background: var(--secondary);
  border-radius: var(--radius-img);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M0 220 Q100 180 200 210 T400 190' fill='none' stroke='%23FDF8F0' stroke-width='2' opacity='0.35'/%3E%3Cpath d='M150 0 Q140 140 190 300' fill='none' stroke='%23FDF8F0' stroke-width='2' opacity='0.25'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.map-pin {
  color: var(--primary);
  animation: pinPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.map-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.map-placeholder .btn {
  position: relative;
  z-index: 1;
}

@keyframes pinPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
}

/* ===== Demo Form ===== */
.demo-form-container {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  max-width: 800px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-hint {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}
.form-success {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  animation: formFade 0.4s ease;
}
@keyframes formFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--text);
  color: var(--white);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}
.footer-brand .brand-mark {
  width: 28px;
  height: 28px;
  font-size: 16px;
}
.footer-brand .brand-text span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
}
.footer-note {
  font-size: 0.9rem;
  opacity: 0.7;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===== Reveal animasyonları — JS yüklendikten sonra ===== */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

html.js .mask-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html.js .mask-reveal.in-view {
  clip-path: inset(0 0 0 0);
}

/* ===== Animasyon azaltma ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html.js .reveal,
  html.js .mask-reveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }
  .hero {
    padding: 96px 0 120px;
  }
  .services-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: stretch;
  }
  .card-tall {
    grid-row: span 2;
  }
  .contact-wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    margin-top: 16px;
  }
  .hero-image-wrap {
    max-width: 100%;
  }
  .hero-badge {
    left: 16px;
    bottom: -16px;
    white-space: normal;
    text-align: left;
  }

  .nav-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 16px 0;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .main-nav a {
    display: block;
    padding: 10px 24px;
    font-size: 1rem;
  }

  .process-timeline::before {
    left: 25px;
  }
  .map-placeholder {
    min-height: 300px;
  }
  .demo-form-container {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .service-card {
    padding: 24px 20px;
  }
  .footer-inner {
    padding: 0 16px;
  }
}

/* Outreach demo disclosure — otomatik kaldırmayın. */
.outreach-demo-notice{position:relative;z-index:9999;width:100%;padding:8px 16px;background:#111;color:#fff;font:600 12px/1.4 Arial,sans-serif;text-align:center;letter-spacing:.01em}
