:root {
  --bg: #FAF6F1;
  --surface: #F0E9DE;
  --surface-2: #E8DFD0;
  --ink: #2C1810;
  --ink-soft: #5A4438;
  --accent: #8B2252;
  --accent-2: #D4A574;
  --line: rgba(44, 24, 16, 0.12);
  --line-strong: rgba(44, 24, 16, 0.25);
  --header-h: 72px;
  --container: 1320px;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { overflow-x: hidden; max-width: 100vw; }

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); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.2em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p { margin-bottom: 1em; }

.eyebrow {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8em;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 0 0 6px 6px;
  z-index: 10000;
  font-size: 0.85rem;
  transition: top 200ms;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main { padding-top: var(--header-h); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background: rgba(250, 246, 241, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo span { color: var(--accent); }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 32px);
  }
  .nav-desktop a {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.01em;
    transition: color 240ms cubic-bezier(.4,0,.2,1);
  }
  .nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1.5px;
    background: var(--accent-2);
    transition: width 320ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after { width: 100%; }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop .nav-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 8px 22px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 200ms;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover { background: var(--accent); color: var(--bg); transform: translateY(-2px); }
  .nav-desktop .nav-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; color: var(--bg); }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px; height: 48px;
  background: var(--surface-2);
  border: 2px solid var(--ink-soft);
  border-radius: 6px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
  transition: background 240ms, border-color 240ms, box-shadow 240ms;
  box-shadow: 0 2px 10px -2px rgba(44,24,16,0.25);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--surface);
  border-color: var(--accent-2);
  box-shadow: 0 4px 14px -3px rgba(212,165,116,0.3);
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms, background 240ms;
  position: absolute;
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle span:nth-child(1) { transform: translateY(-8px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(8px); }
.nav-toggle[aria-expanded="true"] { background: var(--bg); border-color: var(--accent-2); }
.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); }
.nav-toggle[aria-expanded="true"] span { background: var(--accent); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* ===== DRAWER ===== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, transform 240ms;
}
.drawer a:hover { color: var(--accent); transform: translateX(4px); }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 28px;
  text-align: center;
  border-radius: 3px;
  margin-top: 16px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: none;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--bg); transform: none; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 36px;
  border-radius: 3px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 200ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(139, 34, 82, 0.35);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 12px 32px;
  border: 1.5px solid var(--line-strong);
  border-radius: 3px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 200ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

/* ===== GOLD DIVIDER ===== */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--accent-2);
  border: none;
  margin: 2rem auto;
  transition: width 800ms cubic-bezier(.2,.7,.2,1);
}
.gold-rule.is-in { width: 120px; }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { grid-template-columns: 60% 40%; gap: clamp(2rem, 4vw, 4rem); }
}
.hero-text { z-index: 2; }
.hero-text .eyebrow { margin-bottom: 1.2rem; }
.hero-title {
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.hero-title .word {
  display: inline-block;
  animation: word-rise 0.9s cubic-bezier(.16,1,.3,1) both;
  animation-delay: calc(var(--i, 0) * 140ms + 200ms);
}
@keyframes word-rise {
  from { transform: translateY(20px) rotateX(8deg); }
  to { transform: none; }
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.8;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 64px -16px rgba(44,24,16,0.22);
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), box-shadow 800ms;
  will-change: transform;
}
.hero-photo:hover {
  transform: scale(1.015);
  box-shadow: 0 32px 80px -20px rgba(44,24,16,0.28);
}
.hero-bottle {
  position: absolute;
  right: -8%;
  bottom: 6%;
  width: clamp(90px, 10vw, 140px);
  height: auto;
  color: var(--ink);
  opacity: 0.1;
  pointer-events: none;
}

.bottle-liquid {
  clip-path: inset(82% 0 0 0);
  transition: clip-path 3s cubic-bezier(.2,.7,.2,1);
}
.bottle-liquid.is-filled {
  clip-path: inset(16% 0 0 0);
}

@keyframes vapor-float {
  0% { transform: translateY(0) scale(1); opacity: 0.5; }
  100% { transform: translateY(-50px) scale(0.2); opacity: 0; }
}
.vapor-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent-2);
  border-radius: 50%;
  opacity: 0;
}
.vapor-particle:nth-child(1) { top: 10%; left: 48%; animation: vapor-float 4s ease-out 1.5s infinite; }
.vapor-particle:nth-child(2) { top: 12%; left: 52%; animation: vapor-float 5s ease-out 2.2s infinite; }
.vapor-particle:nth-child(3) { top: 8%; left: 50%; animation: vapor-float 3.5s ease-out 3s infinite; }
.vapor-particle:nth-child(4) { top: 11%; left: 46%; animation: vapor-float 4.5s ease-out 2.8s infinite; }
.vapor-particle:nth-child(5) { top: 9%; left: 54%; animation: vapor-float 5.5s ease-out 1.8s infinite; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent-2); }

/* ===== MANIFESTO ===== */
.manifesto {
  padding: clamp(4rem, 10vw, 8rem) 0;
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-text {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.9;
  color: var(--ink-soft);
}
.drop-cap::first-letter {
  float: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 4.5em;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--accent);
}

/* ===== KOLEKSIYON ===== */
.koleksiyon { padding: clamp(4rem, 10vw, 7rem) 0; }
.koleksiyon-header { text-align: center; margin-bottom: 3rem; }
.koleksiyon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 768px) {
  .koleksiyon-grid { grid-template-columns: repeat(3, 1fr); }
}
.parfum-card {
  background: var(--surface);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
  overflow: hidden;
}
.parfum-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.parfum-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px -12px rgba(139, 34, 82, 0.15); }
.parfum-card:hover::before { transform: scaleX(1); }

.parfum-card .parfum-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.2rem;
  color: var(--accent-2);
}
.parfum-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.parfum-card .parfum-notes {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.parfum-card .parfum-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  padding-left: 16px;
  border-left: 2px solid var(--accent-2);
  line-height: 1.5;
}

/* ===== PROCESS / SUREC ===== */
.surec { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--surface); }
.surec-header { text-align: center; margin-bottom: 3rem; }
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--accent-2);
}
@media (min-width: 640px) { .timeline::before { left: 28px; } }
.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding-bottom: 2.5rem;
  align-items: start;
}
@media (min-width: 640px) {
  .timeline-step { grid-template-columns: 58px 1fr; gap: 24px; }
}
.step-marker {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: background 300ms, color 300ms;
}
.timeline-step:hover .step-marker {
  background: var(--accent);
  color: var(--bg);
}
.step-content h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.step-time {
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.step-content p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== HIKAYE / QUOTE BLOCK ===== */
.hikaye { padding: clamp(5rem, 12vw, 9rem) 0; position: relative; }
.hikaye-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.big-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
}
.big-quote::before {
  content: '\201C';
  font-size: 4em;
  position: absolute;
  top: -0.4em; left: -0.1em;
  color: var(--accent-2);
  opacity: 0.3;
  line-height: 1;
}
.quote-author {
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.quote-author strong { font-weight: 600; color: var(--ink); }

/* ===== REFERANSLAR / TESTIMONIALS ===== */
.referanslar { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--surface); }
.referanslar-header { text-align: center; margin-bottom: 3rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:first-child { grid-column: 1 / -1; }
}
.testimonial-card {
  background: var(--bg);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(44,24,16,0.08); }
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  color: var(--accent-2);
  opacity: 0.4;
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.testimonial-meta {
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 600;
}
.testimonial-meta span {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 2px;
  font-size: 0.78rem;
}

/* ===== FIYAT ===== */
.fiyat { padding: clamp(4rem, 10vw, 7rem) 0; }
.fiyat-header { text-align: center; margin-bottom: 3rem; }
.fiyat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 768px) {
  .fiyat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .fiyat-grid { grid-template-columns: repeat(4, 1fr); }
}
.fiyat-card {
  background: var(--surface);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  position: relative;
}
.fiyat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(44,24,16,0.08); }
.fiyat-card.featured {
  background: var(--ink);
  color: var(--bg);
}
.fiyat-card.featured .eyebrow { color: var(--accent-2); }
.fiyat-card.featured h3 { color: var(--bg); }
.fiyat-card.featured .fiyat-price { color: var(--accent-2); }
.fiyat-card.featured .fiyat-list li { color: rgba(250,246,241,0.8); }
.fiyat-card.featured .fiyat-list li::before { color: var(--accent-2); }
.fiyat-card.featured .fiyat-excluded li { color: rgba(250,246,241,0.5); }
.fiyat-card.featured .btn-primary { background: var(--accent-2); color: var(--ink); }
.fiyat-card.featured .btn-primary:hover { background: var(--accent); color: var(--bg); }

.fiyat-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.fiyat-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.fiyat-price small { font-size: 0.55em; font-weight: 400; color: var(--ink-soft); }
.fiyat-card.featured .fiyat-price small { color: rgba(250,246,241,0.5); }
.fiyat-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.fiyat-card.featured .fiyat-note { color: rgba(250,246,241,0.5); border-color: rgba(250,246,241,0.12); }
.fiyat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.fiyat-list {
  list-style: none;
  margin-bottom: 1rem;
}
.fiyat-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 4px 0 4px 20px;
  position: relative;
}
.fiyat-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-size: 0.8rem;
}
.fiyat-excluded { list-style: none; margin-bottom: 1.5rem; }
.fiyat-excluded li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.6;
  padding: 3px 0 3px 20px;
  position: relative;
  text-decoration: line-through;
}
.fiyat-excluded li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  text-decoration: none;
}
.fiyat-card .btn-primary, .fiyat-card .btn-ghost {
  margin-top: auto;
  text-align: center;
  width: 100%;
  padding: 12px 20px;
}
.fiyat-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2rem;
  font-style: italic;
}

/* ===== SİPARİŞ / BOOKING ===== */
.siparis { padding: clamp(4rem, 10vw, 7rem) 0; background: var(--surface); }
.siparis-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (min-width: 768px) {
  .siparis-inner { grid-template-columns: 1fr 1fr; }
}
.siparis-text h2 { margin-bottom: 1rem; }
.siparis-text p { color: var(--ink-soft); }
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 1rem;
}
.capacity-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== FORM ===== */
.form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 240ms, box-shadow 240ms;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 34, 82, 0.1);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.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;
  flex-shrink: 0;
}
.field-checkbox label {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

/* ===== FAQ / SSS ===== */
.sss { padding: clamp(4rem, 10vw, 7rem) 0; }
.sss-header { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  padding: 18px 36px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-2);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

.faq-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ===== NOTLAR / NEWS ===== */
.notlar { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--surface); }
.notlar-header { margin-bottom: 2rem; }
.notlar-list { display: grid; gap: 16px; max-width: 700px; }
.nota-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.nota-item:hover { transform: translateX(4px); }
.nota-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
  white-space: nowrap;
  min-width: 100px;
}
.nota-item p { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== STATS / COUNTERS ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
@media (min-width: 640px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-item .stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--accent);
  display: block;
  line-height: 1.1;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,241,0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .logo { color: var(--bg); margin-bottom: 0.8rem; display: inline-block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer-brand .est { font-size: 0.78rem; color: var(--accent-2); margin-top: 0.5rem; }

.footer-col h4 {
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(250,246,241,0.6);
  font-size: 0.85rem;
  transition: color 240ms;
}
.footer-col a:hover { color: var(--accent-2); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  transition: transform 240ms;
}
.footer-contact-item:hover { transform: translateX(3px); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent-2); transition: color 240ms; }
.footer-contact-item:hover svg { color: var(--bg); }
.footer-contact-item a { color: rgba(250,246,241,0.6); word-break: break-word; overflow-wrap: anywhere; hyphens: auto; transition: color 240ms; }
.footer-contact-item a:hover { color: var(--accent-2); }

.footer-bottom {
  border-top: 1px solid rgba(250,246,241,0.1);
  padding: 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  font-size: 0.75rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer-legal a { color: rgba(250,246,241,0.4); }
.footer-legal a:hover { color: var(--accent-2); }
.footer-copy { color: rgba(250,246,241,0.4); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(250,246,241,0.85);
  border-radius: 8px;
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.3);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 {
  font-size: 0.95rem;
  color: var(--bg);
  margin-bottom: 0.5rem;
  font-style: normal;
}
.cookie-banner p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(250,246,241,0.7);
}
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-banner p a:hover { color: var(--bg); }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(250,246,241,0.2);
  background: transparent;
  color: var(--bg);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: background 240ms, border-color 240ms, color 240ms;
}
.cookie-actions button:hover { background: rgba(250,246,241,0.15); border-color: rgba(250,246,241,0.5); color: var(--bg); }
.cookie-actions button:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; color: var(--bg); }
.cookie-actions button[data-consent="accept"] {
  background: var(--accent-2);
  color: var(--ink);
  border-color: var(--accent-2);
  font-size: 0.88rem;
  padding: 12px 28px;
  box-shadow: 0 2px 14px -2px rgba(212,165,116,0.45);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); box-shadow: 0 4px 20px -4px rgba(139,34,82,0.4); }
.cookie-actions button[data-consent="reject"] {
  background: transparent;
  border-color: rgba(250,246,241,0.4);
  font-weight: 600;
}
.cookie-actions button[data-consent="reject"]:hover { background: rgba(250,246,241,0.12); border-color: rgba(250,246,241,0.6); }

/* ===== TABLE SCROLL ===== */
.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;
  width: 100%;
  font-size: 0.88rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--surface);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.16,1,.3,1), transform 800ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 120ms); }
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero-title .word { transform: none; animation: none; }
html.no-js .hero-photo,
html.no-js .hero-sub,
html.no-js .hero-cta-group,
html.no-js .trust-strip,
html.no-js .hero-text .eyebrow { transform: none; animation: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .vapor-particle { animation: none !important; }
  .hero-title .word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .parfum-card::before { transition: none !important; }
  .parfum-card, .fiyat-card, .testimonial-card, .team-card { transition: none !important; }
  .parfum-card::after { display: none !important; }
  .gold-rule { transition: none !important; }
  .capacity-badge .dot { animation: none !important; }
  .hero-photo { transition: none !important; }
  .scent-particle { animation: none !important; display: none !important; }
  .gold-rule.is-in { animation: none !important; }
  .hero-bottle { animation: none !important; }
  .parfum-icon { transition: none !important; }
  .trust-badge { transition: none !important; }
  .nota-date { transition: none !important; }
  .faq-item { transition: none !important; }
  .btn-primary, .btn-ghost { transition: none !important; }
  .btn-primary::before { display: none !important; }
  .contact-row, .footer-contact-item, .nota-item { transition: none !important; }
  .timeline-step .step-marker { transition: none !important; }
  .hero-photo, .hero-sub, .hero-cta-group, .trust-strip, .hero-text .eyebrow { animation: none !important; opacity: 1 !important; transform: none !important; }
  .parfum-card::after { display: none !important; }
  .faq-item summary { transition: none !important; }
  .pull-quote { transition: none !important; }
  .step-content h4 { transition: none !important; }
}

/* ===== NICHE ANIMATIONS ===== */
@keyframes scent-drift {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  20% { opacity: 0.4; }
  80% { opacity: 0.15; }
  100% { transform: translate(20px, -80px) rotate(180deg); opacity: 0; }
}
.scent-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes gold-draw {
  from { width: 0; }
  to { width: 120px; }
}

@keyframes gold-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gold-rule.is-in {
  background: linear-gradient(90deg, var(--accent-2) 15%, rgba(255,215,140,0.6) 50%, var(--accent-2) 85%);
  background-size: 200% 100%;
  animation: gold-shimmer 3s cubic-bezier(.4,0,.6,1) 1;
  height: 1.5px;
}

.drop-cap-reveal {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.drop-cap-reveal.is-in { opacity: 1; transform: scale(1); }

/* ===== PERFUME-THEMED MICRO-EFFECTS ===== */
.parfum-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 200px 200px at 50% 100%, rgba(212,165,116,0.08), transparent);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.parfum-card:hover::after { opacity: 1; }
.parfum-card:hover {
  box-shadow: 0 20px 48px -12px rgba(212,165,116,0.25), 0 0 0 1px rgba(212,165,116,0.1);
}
.parfum-card:hover .parfum-icon { color: var(--accent); transform: scale(1.1) rotate(-4deg); }
.parfum-icon { transition: color 400ms cubic-bezier(.2,.7,.2,1), transform 400ms cubic-bezier(.2,.7,.2,1); }

.fiyat-card:hover {
  box-shadow: 0 20px 48px -12px rgba(212,165,116,0.2), 0 0 0 1px rgba(212,165,116,0.06);
}

.testimonial-card:hover::before {
  color: var(--accent);
  opacity: 0.5;
  transition: color 400ms cubic-bezier(.2,.7,.2,1), opacity 400ms;
}

.faq-item { transition: border-color 300ms cubic-bezier(.4,0,.2,1); }
.faq-item:hover { border-color: var(--accent-2); }
.faq-item summary { transition: color 300ms cubic-bezier(.4,0,.2,1), padding-left 300ms; }
.faq-item:hover summary { padding-left: 6px; }

.timeline-step:hover .step-marker {
  box-shadow: 0 0 0 4px rgba(139,34,82,0.1), 0 0 20px rgba(139,34,82,0.2);
}

.nota-item:hover .nota-date { color: var(--accent); }
.nota-date { transition: color 300ms cubic-bezier(.4,0,.2,1); }

.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(212,165,116,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 600ms cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  box-shadow: 0 8px 28px -6px rgba(139,34,82,0.35), 0 0 0 1px rgba(212,165,116,0.15);
}
.btn-ghost:hover {
  box-shadow: 0 6px 20px -4px rgba(44,24,16,0.1);
}

@keyframes gentle-sway {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-2px); }
}
.hero-bottle {
  animation: gentle-sway 7s ease-in-out infinite;
  transform-origin: top center;
}

.trust-badge {
  transition: color 300ms cubic-bezier(.4,0,.2,1), transform 300ms cubic-bezier(.2,.7,.2,1);
}
.trust-badge:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.trust-badge:hover svg { color: var(--accent); }

.capacity-badge .dot {
  box-shadow: 0 0 8px rgba(139,34,82,0.4);
}

.parfum-card .pull-quote {
  transition: border-color 400ms cubic-bezier(.4,0,.2,1);
}
.parfum-card:hover .pull-quote {
  border-color: var(--accent);
}

.step-content h4 {
  transition: color 300ms cubic-bezier(.4,0,.2,1);
}
.timeline-step:hover .step-content h4 {
  color: var(--accent);
}

.hero-photo {
  animation: hero-photo-entry 1.2s cubic-bezier(.16,1,.3,1) 0.3s both;
}
@keyframes hero-photo-entry {
  from { transform: scale(0.96) translateY(12px); }
  to { transform: none; }
}

.hero-sub {
  animation: hero-sub-entry 0.8s cubic-bezier(.16,1,.3,1) 0.7s both;
}
@keyframes hero-sub-entry {
  from { transform: translateY(14px); }
  to { transform: none; }
}

.hero-cta-group {
  animation: hero-cta-entry 0.8s cubic-bezier(.16,1,.3,1) 0.9s both;
}
@keyframes hero-cta-entry {
  from { transform: translateY(14px); }
  to { transform: none; }
}

.trust-strip {
  animation: hero-trust-entry 0.7s cubic-bezier(.16,1,.3,1) 1.1s both;
}
@keyframes hero-trust-entry {
  from { transform: translateY(6px); }
  to { transform: none; }
}

.hero-text .eyebrow {
  animation: eyebrow-entry 0.6s cubic-bezier(.16,1,.3,1) 0.05s both;
}
@keyframes eyebrow-entry {
  from { letter-spacing: 0.3em; }
  to { letter-spacing: 0.18em; }
}

/* ===== CONTACT CHANNELS ===== */
.contact-channels {
  display: grid;
  gap: 2px;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 4px;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms;
}
.contact-row:hover {
  background: var(--surface-2);
  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 .channel-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-row .channel-value {
  font-size: 0.92rem;
  color: var(--ink);
  word-break: break-all;
  overflow-wrap: anywhere;
}
.contact-row .channel-value a { color: var(--ink); }
.contact-row .channel-value a:hover { color: var(--accent); }

/* ===== HOURS TABLE ===== */
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 0.88rem;
}
.hours-grid .day { font-weight: 600; color: var(--ink); }
.hours-grid .time { color: var(--ink-soft); }

/* ===== PAGE STYLES ===== */
.page-header {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-content {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
  max-width: 780px;
  margin: 0 auto;
}
.page-content h2 { margin-top: 2.5rem; margin-bottom: 0.8rem; font-size: 1.4rem; }
.page-content h3 { margin-top: 1.8rem; margin-bottom: 0.6rem; font-size: 1.15rem; }
.page-content p { margin-bottom: 1em; font-size: 0.92rem; line-height: 1.8; color: var(--ink-soft); }
.page-content ul, .page-content ol { margin: 1em 0; padding-left: 1.5em; }
.page-content li { font-size: 0.92rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 0.5em; }

/* ===== 404 ===== */
.page-404 {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.page-404 h1 { font-size: clamp(4rem, 10vw, 4.5rem); color: var(--accent-2); opacity: 0.4; margin-bottom: 0.5rem; }
.page-404 h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.page-404 p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover { transform: translateY(-4px); }
.team-card:hover .team-avatar {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(139,34,82,0.15);
}
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent-2);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  transition: border-color 360ms, box-shadow 360ms;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.team-role {
  font-size: 0.82rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ===== SITEMAP PAGE ===== */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { font-size: 0.92rem; }
.sitemap-list .sub { padding-left: 20px; }

/* ===== TESEKKURLER ===== */
.thanks-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.thanks-page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.thanks-page p { color: var(--ink-soft); margin-bottom: 2rem; max-width: 400px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; padding-top: 2rem; padding-bottom: 2rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .trust-strip { justify-content: center; }
  .hero-visual { order: -1; max-height: 50vh; overflow: hidden; border-radius: 8px; }
  .hero-photo { max-height: 50vh; object-fit: cover; }
  .hero-bottle { display: none; }
  .siparis-inner { grid-template-columns: 1fr; }
  .fiyat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; max-width: none; padding: 18px 20px; }
  .cookie-actions { gap: 6px; }
  .cookie-actions button { padding: 10px 14px; min-height: 48px; font-size: 0.84rem; flex: 1; }
}
@media (max-width: 640px) {
  .koleksiyon-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .parfum-card { padding: 20px; }
  .fiyat-card { padding: 20px; }
  .testimonial-card { padding: 20px; }
  .big-quote { font-size: 1.3rem; }
  .big-quote::before { font-size: 3em; }
}
@media (max-width: 430px) {
  body { font-size: 15px; }
  .hero-title { font-size: 2rem; }
  .btn-primary { padding: 12px 24px; font-size: 0.82rem; }
  .btn-ghost { padding: 10px 20px; font-size: 0.8rem; }
}
@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .parfum-card { padding: 16px; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { 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; }
  .hero-title .word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-photo, .hero-sub, .hero-cta-group, .trust-strip, .eyebrow { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-bottle { display: none !important; }
  .vapor-particle { display: none !important; }
  .parfum-card::after, .btn-primary::before { display: none !important; }
}

/* ===== ENHANCED FOCUS STYLES ===== */
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.footer-col a:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; color: var(--accent-2); }
.contact-row:focus-within { background: var(--surface-2); }
.cookie-actions button:active { transform: scale(0.97); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost:active { transform: translateY(0) scale(0.98); }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
