/* ================================================
   Nûr Hat Atölyesi — styles.css
   ================================================ */

/* --- Fonts: system fallback (Impact / system-ui) --- */

:root {
  interpolate-size: allow-keywords;
  --bg: #0A0A0A;
  --surface: #1A1A1A;
  --surface-2: #252525;
  --ink: #F5F0EC;
  --ink-soft: rgba(245, 240, 236, 0.6);
  --accent: #D4A0A0;
  --accent-2: #8C7A6B;
  --line: rgba(245, 240, 236, 0.12);
  --line-strong: rgba(245, 240, 236, 0.25);
  --header-h: 72px;
  --container-pad: clamp(16px, 4vw, 32px);
  --radius: 6px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: 'Karla', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* --- Skip Link --- */
.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg); padding: 8px 18px;
  border-radius: var(--radius); z-index: 10000; font-weight: 500;
}
.skip-link:focus { top: 12px; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.12;
}
h1 { font-size: clamp(36px, 5vw, 72px); letter-spacing: 0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

/* --- Container / Grid --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* --- Section spacing --- */
section {
  padding: clamp(60px, 10vh, 120px) 0;
}

/* --- Parchment texture overlay (pseudo) --- */
.parchment-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* --- Diagonal corner line decoration --- */
.corner-line { position: relative; }
.corner-line::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  pointer-events: none;
  z-index: 1;
}
.corner-line::after {
  content: '';
  position: absolute;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  pointer-events: none;
  z-index: 1;
}

/* ================================================
   HEADER — sticky with morph
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-pad);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
  height: 60px;
}

.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: none;
  z-index: 1;
}

.logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--accent); }

/* --- Desktop Nav --- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  position: relative;
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}
.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 22px;
  border-radius: var(--radius);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--ink);
  color: var(--bg);
}

/* --- Nav Toggle (hamburger → X) --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  z-index: 1100;
  position: relative;
  cursor: pointer;
  background: none; border: none;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ================================================
   MOBILE DRAWER — outside header
   ================================================ */
.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(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) var(--container-pad) 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer a {
  display: block;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms cubic-bezier(.2,.7,.2,1);
}
.drawer a:hover,
.drawer a.is-active {
  color: var(--accent);
  padding-left: 12px;
}
.drawer .drawer-cta {
  margin-top: 24px;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none;
  font-weight: 500;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* --- Drawer close button --- */

@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* ================================================
   HERO — mask-clip circle reveal
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__media {
  position: absolute;
  inset: 0;
  clip-path: circle(0% at 50% 50%);
  animation: hero-reveal 2s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero__media { clip-path: none; animation: none; }
}

.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}

@keyframes hero-reveal {
  0%   { clip-path: circle(0% at 50% 50%); }
  100% { clip-path: circle(80% at 50% 50%); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 var(--container-pad);
}

.hero__content h1 {
  color: var(--ink);
  margin-bottom: 20px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.hero__content h1 .accent-word { color: var(--accent); }

.hero__sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 240, 236, 0.08);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-badge svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 160, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--ink);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ================================================
   GALLERY — masonry 3-col
   ================================================ */
.galeri { background: var(--bg); position: relative; }

.galeri__grid {
  columns: 3;
  column-gap: clamp(12px, 2vw, 20px);
}
@media (max-width: 768px) { .galeri__grid { columns: 2; } }
@media (max-width: 480px) { .galeri__grid { columns: 1; } }

.galeri__item {
  break-inside: avoid;
  margin-bottom: clamp(12px, 2vw, 20px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.galeri__item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.galeri__item:hover img {
  transform: scale(1.04);
}
.galeri__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(transparent, rgba(10,10,10,0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms cubic-bezier(.2,.7,.2,1), transform 360ms cubic-bezier(.2,.7,.2,1);
}
.galeri__item:hover .galeri__caption {
  opacity: 1;
  transform: translateY(0);
}
.galeri__caption h4 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.galeri__caption .price {
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 400;
}

/* ================================================
   DETAIL — two columns
   ================================================ */
.detay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 768px) {
  .detay__grid { grid-template-columns: 1fr; }
}

.detay__image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.detay__image img {
  width: 100%; height: auto;
  display: block;
}

.detay__text h2 { margin-bottom: 20px; }
.detay__text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 520px;
}

.material-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.material-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.material-item svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.material-item span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ================================================
   BEST OF — horizontal scroll strip
   ================================================ */
.bestof { background: var(--surface); position: relative; overflow: hidden; }
.bestof__track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) var(--surface);
}
.bestof__track::-webkit-scrollbar { height: 4px; }
.bestof__track::-webkit-scrollbar-track { background: var(--surface); }
.bestof__track::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 4px; }

.bestof__card {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: start;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.bestof__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212, 160, 160, 0.12);
}
.bestof__card img {
  width: 100%; height: 280px;
  object-fit: cover;
}
.bestof__card-body {
  padding: 20px;
}
.bestof__card-body h4 { margin-bottom: 6px; }
.bestof__card-body .price {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 400;
}
.bestof__card-body .tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ================================================
   PROCESS / STEPS — vertical timeline
   ================================================ */
.surec { background: var(--bg); position: relative; }

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-strong);
}

.timeline__step {
  position: relative;
  padding-bottom: 48px;
}
.timeline__step:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem;
  color: var(--accent);
  z-index: 1;
}

.timeline__time {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.timeline__step h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.timeline__step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ================================================
   PRICING — service packages
   ================================================ */
.paketler { background: var(--surface); position: relative; }

.paketler__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 900px) { .paketler__grid { grid-template-columns: 1fr; } }

.paket-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212, 160, 160, 0.1);
  border-color: var(--accent);
}
.paket-card.featured {
  border-color: var(--accent);
  position: relative;
}
.paket-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Karla', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 500;
}

.paket-card h3 { margin-bottom: 8px; font-size: 1.3rem; }
.paket-card .paket-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.paket-card .paket-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.paket-card .paket-price small {
  font-size: 0.5em;
  color: var(--ink-soft);
}

.paket-includes { margin-top: 20px; flex-grow: 1; }
.paket-includes h5 {
  font-family: 'Karla', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  margin-bottom: 12px;
  font-weight: 400;
}
.paket-includes li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 5px 0;
}
.paket-includes li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.paket-excludes li svg { color: var(--ink-soft); opacity: 0.4; }

.paket-card .btn { margin-top: 24px; text-align: center; justify-content: center; width: 100%; }

.price-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 32px;
  opacity: 0.7;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.yorumlar { background: var(--bg); position: relative; }

.yorumlar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 900px) { .yorumlar__grid { grid-template-columns: 1fr; } }

.yorum-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
}
.yorum-card::before {
  content: '\201C';
  font-family: 'Bebas Neue', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
}
.yorum-card blockquote {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 16px;
}
.yorum-card cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 400;
}
.yorum-card .yorum-meta {
  font-size: 0.72rem;
  color: var(--accent-2);
  margin-top: 4px;
}

/* ================================================
   FAQ — pure CSS accordion
   ================================================ */
.sss { background: var(--surface); position: relative; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 22px 0;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary .faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}
.faq-item summary .faq-icon::before {
  top: 50%; left: 3px; right: 3px;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-item summary .faq-icon::after {
  left: 50%; top: 3px; bottom: 3px;
  width: 1.5px;
  transform: translateX(-50%);
  transition: transform 360ms cubic-bezier(.4,0,.2,1), opacity 360ms;
}
.faq-item[open] summary .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.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: 24px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ================================================
   ORDER FORM — #siparis
   ================================================ */
.siparis { background: var(--bg); position: relative; }

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 400;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 160, 160, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23F5F0EC' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.field-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.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);
  cursor: pointer;
}
.field-checkbox span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.field-checkbox a { color: var(--accent); text-decoration: underline; }

.delivery-note {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  opacity: 0.7;
}

/* ================================================
   STATS / COUNTERS
   ================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: clamp(32px, 6vh, 60px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 640px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.stat-item { padding: 12px 0; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--surface);
  padding: clamp(48px, 8vh, 80px) 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--ink);
}
.footer-col p,
.footer-col a {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--accent); }
.footer-col ul li { padding: 3px 0; }

.footer-contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 5px 0;
}
.footer-contact-row svg {
  width: 16px; height: 16px;
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-contact-row span,
.footer-contact-row a {
  font-size: 0.85rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-legal a::before { content: ''; }
.footer-legal span { opacity: 0.4; }

/* ================================================
   COOKIE BANNER
   ================================================ */
.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: 22px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.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: 0.95rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.cookie-banner p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background 240ms, color 240ms;
  cursor: pointer;
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--bg);
  border: none;
}
.cookie-actions .cookie-accept:hover {
  background: var(--ink);
  color: var(--bg);
}
.cookie-actions .cookie-reject {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.cookie-actions .cookie-reject:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cookie-actions .cookie-settings:hover {
  background: var(--surface-2);
  color: var(--ink);
}

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-stagger { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ================================================
   NICHE-SPECIFIC ANIMATIONS — calligraphy
   ================================================ */

/* 1. Ink stroke draw — decorative SVG paths */
@keyframes stroke-draw {
  from { stroke-dashoffset: var(--path-len, 300); }
  to   { stroke-dashoffset: 0; }
}
.ink-stroke {
  stroke-dasharray: var(--path-len, 300);
  stroke-dashoffset: var(--path-len, 300);
}
.ink-stroke.is-in {
  animation: stroke-draw 1.4s cubic-bezier(.2,.7,.2,1) forwards;
}

/* 2. Gold shimmer on accent elements */
@keyframes gold-shimmer {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.18); }
}
.shimmer {
  animation: gold-shimmer 8s ease-in-out infinite;
}

/* 3. Paper texture breathing */
@keyframes paper-breathe {
  0%, 100% { opacity: 0.04; }
  50%      { opacity: 0.07; }
}
.parchment-overlay::after {
  animation: paper-breathe 12s ease-in-out infinite;
}

/* 4. Frame depth hover on gallery */
.frame-depth {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.frame-depth:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(140, 122, 107, 0.18),
              0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 5. Calligraphy pen nib subtle float */
@keyframes pen-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(1deg); }
}
.pen-float {
  animation: pen-float 10s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .shimmer, .parchment-overlay::after, .pen-float { animation: none !important; }
  .frame-depth:hover { transform: none; }
}

/* ================================================
   COUNTER-UP animation support
   ================================================ */
.counter-up {
  font-variant-numeric: tabular-nums;
}

/* ================================================
   PARALLAX helper
   ================================================ */
.parallax-layer {
  will-change: transform;
  transition: transform 0ms;
}

/* ================================================
   SECTION BAND — contrasting bg
   ================================================ */
.band-accent {
  background: var(--accent);
  color: var(--bg);
  padding: clamp(32px, 6vh, 56px) 0;
}
.band-accent h2, .band-accent h3, .band-accent h4 { color: var(--bg); }
.band-accent p { color: rgba(10, 10, 10, 0.7); }
.band-accent .eyebrow { color: var(--accent-2); }

/* ================================================
   MANIFESTO quote block
   ================================================ */
.manifesto {
  text-align: center;
  padding: clamp(48px, 10vh, 100px) 0;
}
.manifesto blockquote {
  font-family: 'Karla', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 20px;
}
.manifesto cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--accent-2);
  letter-spacing: 0.08em;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.ekip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 768px) { .ekip-grid { grid-template-columns: 1fr; } }

.ekip-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;
}
.ekip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212, 160, 160, 0.1);
}
.ekip-card img {
  width: 100%; height: 320px;
  object-fit: cover;
}
.ekip-card-body {
  padding: clamp(18px, 2vw, 28px);
}
.ekip-card-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.ekip-card-body .role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.ekip-card-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ================================================
   CONTACT PAGE — channels with icons
   ================================================ */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: var(--radius);
}
.contact-row:hover {
  transform: translateX(4px);
}
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
  flex-shrink: 0;
}
.contact-row:hover svg {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-row h5 {
  font-family: 'Karla', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 4px;
  font-weight: 400;
}
.contact-row p,
.contact-row a {
  font-size: 0.92rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-row a:hover { color: var(--accent); }

/* ================================================
   POLICY PAGES
   ================================================ */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 48px 0 16px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin: 32px 0 12px;
}
.policy-content p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.75;
}
.policy-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}
.policy-content ul li {
  color: var(--ink-soft);
  list-style: disc;
  padding: 3px 0;
  font-size: 0.92rem;
}

/* --- Table scroll wrapper --- */
.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: var(--radius);
}
.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;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: var(--surface);
}
td { color: var(--ink-soft); }

/* ================================================
   THANK-YOU PAGE
   ================================================ */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thankyou-section h1 { margin-bottom: 16px; font-size: clamp(2rem, 5vw, 3.6rem); }
.thankyou-section p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ================================================
   404 PAGE
   ================================================ */
.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-section .error-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}
.error-section h1 { margin-bottom: 12px; }
.error-section p { color: var(--ink-soft); margin-bottom: 28px; }

/* ================================================
   SITEMAP PAGE
   ================================================ */
.sitemap-list a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.sitemap-list a:hover { padding-left: 8px; }

/* ================================================
   A11Y — focus rings
   ================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  section { padding: clamp(40px, 8vh, 80px) 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .galeri__grid { columns: 2; }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.65rem; padding: 5px 10px; }
  .paketler__grid { grid-template-columns: 1fr; }
  .yorumlar__grid { grid-template-columns: 1fr; }
  .ekip-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 36px; }
}

@media (max-width: 480px) {
  .galeri__grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .detay__grid { gap: 28px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { width: 100%; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 390px) {
  :root { --container-pad: 16px; }
  h1 { font-size: clamp(2.4rem, 10vw, 2.8rem); }
  .bestof__card { flex: 0 0 min(300px, 90vw); }
}

@media (max-width: 360px) {
  .btn { padding: 12px 24px; font-size: 1rem; }
  .trust-strip { flex-direction: column; align-items: center; }
}

/* ================================================
   PRINT
   ================================================ */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
