/* ===================================================
   Kır Düğünü Stüdyosu — styles.css
   =================================================== */

:root {
  interpolate-size: allow-keywords;

  --bg:         #FAF5EF;
  --surface:    #FFFFFF;
  --surface-2:  #F3ECE2;
  --ink:        #3B2212;
  --ink-soft:   #6B5343;
  --accent:     #B8602A;
  --accent-2:   #6F8F8D;
  --line:       rgba(59,34,18,0.13);
  --line-strong: rgba(59,34,18,0.28);

  --font-heading: 'Cormorant', 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body:    'Lato', 'Segoe UI', Tahoma, sans-serif;

  --header-h: 72px;
  --container-max: 1400px;
  --radius: 6px;
  --radius-lg: 12px;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.no-js .reveal { opacity: 1; transform: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: var(--radius);
  z-index: 10000; font-size: 0.875rem;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---- Focus Ring ---- (enhanced version below in wedding-theme section) */

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.008em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

p { max-width: 68ch; }
.lead { font-size: 1.125rem; color: var(--ink-soft); line-height: 1.8; }
.text-center { text-align: center; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
  font-family: var(--font-body); font-weight: 400; font-size: 0.875rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 32px; border: 1.5px solid transparent;
  border-radius: var(--radius); cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 200ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  min-height: 48px;
}
.btn-primary {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(184,96,42,0.35);
}
.btn-primary::after {
  content: '→'; font-style: normal; transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--ink);
  transform: translateY(-2px);
}

/* ---- Trust Strip ---- */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px; justify-content: center;
}
.trust-strip .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(59,34,18,0.08);
  border-radius: 40px;
  color: var(--ink-soft);
  backdrop-filter: blur(4px);
}
.trust-strip .badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===================================================
   HEADER (sticky-with-morph)
   =================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(250,245,239,0.92);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease, height 240ms ease;
  padding: 0 clamp(16px, 4vw, 32px);
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: rgba(250,245,239,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  --header-h: 62px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container-max); margin: 0 auto;
}
.logo {
  font-family: var(--font-heading); font-weight: 500; font-style: italic;
  font-size: 1.25rem; color: var(--ink); text-decoration: none;
  white-space: nowrap;
}
.logo:hover { color: var(--accent); }

/* Desktop nav */
.nav-desktop {
  display: none; align-items: center; gap: 32px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after, .nav-desktop a.is-active::after {
  transform: scaleX(1); transform-origin: left;
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  padding: 10px 24px; border-radius: var(--radius);
  background: var(--ink); color: var(--surface);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent); color: var(--surface);
}

/* Hamburger Toggle */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 48px; height: 48px;
  background: var(--surface); border: 2px solid var(--ink);
  border-radius: var(--radius); cursor: pointer;
  z-index: 1100; position: relative;
  padding: 0;
  box-shadow: 0 2px 8px -2px rgba(59,34,18,0.12);
  transition: border-color 240ms cubic-bezier(.4,0,.2,1), background 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms cubic-bezier(.4,0,.2,1);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--accent);
  background: rgba(184,96,42,0.06);
  box-shadow: 0 4px 16px -4px rgba(184,96,42,0.25);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 24px; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================================================
   DRAWER (mobile — 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(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: 100px 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 500;
  font-style: italic; color: var(--ink); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  transition: color 240ms cubic-bezier(.4,0,.2,1), padding-left 240ms cubic-bezier(.2,.7,.2,1);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 8px; }
.drawer .drawer-cta {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-body); font-size: 0.875rem;
  font-style: normal;
  padding: 14px 24px;
  background: var(--ink); color: var(--surface);
  border-radius: var(--radius);
  border-bottom: none;
  transition: background 240ms, color 240ms;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--surface); padding-left: 0; }

/* ===================================================
   MAIN
   =================================================== */
main { padding-top: var(--header-h); }
section { padding: clamp(60px, 10vw, 120px) 0; }
section.hero { padding: 0; }
section[id] { scroll-margin-top: var(--header-h); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  max-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #3B2212 0%, #6F8F8D 50%, #B8602A 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #5a3a1e 0%, #6F8F8D 40%, #B8602A 80%, #3B2212 100%);
  animation: heroZoom 8s cubic-bezier(.4,0,.2,1) both;
  transform-origin: center;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes heroZoom {
  0%   { transform: scale(1.12); filter: brightness(0.85); }
  60%  { filter: brightness(1); }
  100% { transform: scale(1); filter: brightness(1); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(59,34,18,0.35) 0%,
    rgba(59,34,18,0.18) 40%,
    rgba(59,34,18,0.45) 100%
  );
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 760px; padding: 40px clamp(16px, 4vw, 32px);
}
.hero-content .eyebrow { color: rgba(255,255,255,0.75); }
.hero-content h1 {
  color: #fff; margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(59,34,18,0.2);
  white-space: pre-line;
}
.hero-content .lead { color: rgba(255,255,255,0.88); margin: 0 auto 32px; }
.hero-content .btn-primary {
  background: #fff; color: var(--ink); border-color: #fff;
}
.hero-content .btn-primary:hover, .hero-content .btn-primary:focus-visible {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* Botanical hero leaves */
.hero-leaf {
  position: absolute; z-index: 2; opacity: 0.3;
  pointer-events: none;
  transition: transform 0.1s linear;
}
.hero-leaf--left {
  left: -40px; top: 15%;
  width: clamp(120px, 18vw, 260px);
  animation: leafDriftLeft 12s ease-in-out infinite alternate;
}
.hero-leaf--right {
  right: -40px; bottom: 10%;
  width: clamp(120px, 18vw, 260px);
  animation: leafDriftRight 14s ease-in-out infinite alternate;
}
.hero-leaf--top {
  right: 10%; top: -20px;
  width: clamp(80px, 12vw, 180px);
  animation: leafFloat 10s ease-in-out infinite alternate;
}
@keyframes leafDriftLeft {
  0%   { transform: translate(0, 0) rotate(-5deg) scale(1); }
  33%  { transform: translate(15px, 8px) rotate(-1deg) scale(1.02); }
  66%  { transform: translate(25px, 14px) rotate(1deg) scale(0.98); }
  100% { transform: translate(30px, 18px) rotate(3deg) scale(1); }
}
@keyframes leafDriftRight {
  0%   { transform: translate(0, 0) rotate(5deg) scale(1); }
  40%  { transform: translate(-10px, -8px) rotate(2deg) scale(1.02); }
  70%  { transform: translate(-20px, -12px) rotate(-1deg) scale(0.99); }
  100% { transform: translate(-25px, -15px) rotate(-4deg) scale(1); }
}
@keyframes leafFloat {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0.25; }
  50%  { transform: translate(-6px, 10px) rotate(3deg); opacity: 0.35; }
  100% { transform: translate(-12px, 20px) rotate(6deg); opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-leaf { animation: none !important; }
  .hero-bg { animation: none !important; }
}

/* ===================================================
   SECTION: MEKANLAR (3 venue cards)
   =================================================== */
.mekanlar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin-top: 48px;
}
@media (max-width: 768px) {
  .mekanlar-grid { grid-template-columns: 1fr; gap: 24px; }
}
.mekan-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  border: 1px solid var(--line);
  cursor: pointer;
}
.mekan-card-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(111,143,141,0.3) 100%);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.mekan-card:hover .mekan-card-img { transform: scale(1.04); }
.mekan-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(59,34,18,0.65) 100%);
  z-index: 1;
}
.mekan-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 24px;
}
.mekan-card-body h3 {
  color: #fff; font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 4px;
}
.mekan-card-body p {
  color: rgba(255,255,255,0.78); font-size: 0.85rem;
}
/* Botanical corner ornament on cards */
.mekan-card .corner-ornament {
  position: absolute; z-index: 3;
  width: 40px; height: 40px;
  opacity: 0; transition: opacity 400ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.mekan-card:hover .corner-ornament { opacity: 0.6; }
.corner-ornament--tl { top: 12px; left: 12px; }
.corner-ornament--br { bottom: 12px; right: 12px; transform: rotate(180deg); }

/* ===================================================
   SECTION: HİKAYE (story — asymmetric split)
   =================================================== */
.hikaye-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .hikaye-grid { grid-template-columns: 1fr; }
}
.hikaye-text { max-width: 520px; }
.hikaye-text .eyebrow { margin-bottom: 16px; }
.hikaye-text h2 { margin-bottom: 24px; }
.hikaye-text p { margin-bottom: 18px; color: var(--ink-soft); }
.hikaye-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hikaye-img-wrap::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(255,255,255,0.35); border-radius: var(--radius);
  z-index: 1; pointer-events: none;
}
.hikaye-img-placeholder {
  width: 100%; aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--surface-2) 0%, rgba(111,143,141,0.25) 60%, rgba(184,96,42,0.15) 100%);
}

/* ===================================================
   SECTION: SÜREÇ (process timeline)
   =================================================== */
.surec-band {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(60px, 10vw, 120px) 0;
}
.surec-band .eyebrow { color: var(--accent); }
.surec-band h2 { color: var(--surface); margin-bottom: 56px; }
.surec-timeline {
  position: relative;
  padding-left: 48px;
  max-width: 720px;
}
.surec-timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.15);
}
.surec-step {
  position: relative; padding-bottom: 48px;
}
.surec-step:last-child { padding-bottom: 0; }
.surec-step-num {
  position: absolute; left: -48px; top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem;
  font-style: italic;
}
.surec-step-time {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
  font-weight: 400;
}
.surec-step h4 {
  color: var(--surface); font-size: 1.15rem; margin-bottom: 8px;
}
.surec-step p {
  color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7;
}

/* ===================================================
   SECTION: DEKOR (masonry)
   =================================================== */
.dekor-masonry {
  columns: 3;
  column-gap: clamp(12px, 2vw, 24px);
  margin-top: 48px;
}
@media (max-width: 768px) { .dekor-masonry { columns: 2; } }
@media (max-width: 480px) { .dekor-masonry { columns: 1; } }

.dekor-item {
  break-inside: avoid;
  margin-bottom: clamp(12px, 2vw, 24px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
}
.dekor-item-img {
  width: 100%;
  background: linear-gradient(135deg, var(--surface-2), rgba(111,143,141,0.2));
}
.dekor-item-img.h-tall   { aspect-ratio: 3/4; }
.dekor-item-img.h-wide   { aspect-ratio: 4/3; }
.dekor-item-img.h-square  { aspect-ratio: 1/1; }

.dekor-item:hover { transform: translateY(-6px); box-shadow: 0 12px 32px -8px rgba(184,96,42,0.18); }
.dekor-item { transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1); }

.dekor-caption {
  padding: 14px 16px;
  font-size: 0.82rem; color: var(--ink-soft);
  font-style: italic; font-family: var(--font-heading);
}

/* ===================================================
   SECTION: YORUMLAR (testimonials grid)
   =================================================== */
.yorumlar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin-top: 48px;
}
@media (max-width: 768px) { .yorumlar-grid { grid-template-columns: 1fr; } }

.yorum-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.yorum-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(184,96,42,0.15);
}
.yorum-card::before {
  content: '"'; position: absolute; top: 16px; left: 24px;
  font-family: var(--font-heading); font-size: 4rem; font-style: italic;
  color: var(--accent); opacity: 0.18; line-height: 1; pointer-events: none;
}
.yorum-text {
  font-size: 0.95rem; line-height: 1.75; color: var(--ink-soft);
  margin-bottom: 20px; font-style: italic;
}
.yorum-author { font-weight: 400; color: var(--ink); font-size: 0.85rem; }
.yorum-meta { font-size: 0.75rem; color: var(--accent); margin-top: 2px; }

/* ===================================================
   SECTION: FİYAT (horizontal scroll cards)
   =================================================== */
.fiyat-scroll {
  display: flex; gap: clamp(16px, 3vw, 28px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 48px 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.fiyat-scroll::-webkit-scrollbar { height: 6px; }
.fiyat-scroll::-webkit-scrollbar-track { background: transparent; }
.fiyat-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.fiyat-card {
  flex: 0 0 clamp(280px, 34vw, 400px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  display: flex; flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
  min-width: 0;
}
.fiyat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -10px rgba(184,96,42,0.18);
}
.fiyat-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.fiyat-card .fiyat-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  color: var(--accent);
}
.fiyat-card h3 {
  font-size: 1.4rem; margin-bottom: 8px;
}
.fiyat-price {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--accent);
  margin-bottom: 6px; line-height: 1.2;
}
.fiyat-disclaimer {
  font-size: 0.7rem; color: var(--ink-soft);
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.fiyat-list {
  margin-bottom: 20px; flex: 1;
}
.fiyat-list li {
  font-size: 0.85rem; padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 8px;
  color: var(--ink-soft);
}
.fiyat-list li::before {
  content: '✓'; color: var(--accent-2); font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0;
}
.fiyat-list li.excluded { opacity: 0.5; text-decoration: line-through; }
.fiyat-list li.excluded::before { content: '—'; color: var(--ink-soft); }
.fiyat-teslim {
  font-size: 0.78rem; color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 14px; margin-top: auto;
}

/* ===================================================
   SECTION: SSS (FAQ accordion — pure CSS)
   =================================================== */
.sss-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item > summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-heading); font-weight: 500; font-style: italic;
  font-size: 1.1rem; color: var(--ink);
  cursor: pointer; list-style: none;
  transition: color 240ms;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '+';
  font-family: var(--font-body); font-style: normal;
  font-size: 1.4rem; font-weight: 300;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] > summary::after {
  transform: rotate(45deg);
}
.faq-item > summary:hover { color: var(--accent); }

.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 {
  font-size: 0.9rem; line-height: 1.8; color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ===================================================
   SECTION: İLETİŞİM (form + address)
   =================================================== */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  margin-top: 48px;
}
@media (max-width: 768px) {
  .iletisim-grid { grid-template-columns: 1fr; }
}

.form-block { max-width: 520px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--ink); letter-spacing: 0.01em;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:hover, .field textarea:hover, .field select:hover {
  border-color: var(--line-strong);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,96,42,0.1);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.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);
}
.field-checkbox span {
  font-size: 0.82rem; line-height: 1.5; color: var(--ink-soft);
}

/* Contact channels */
.contact-channels {
  display: flex; flex-direction: column; gap: 0;
}
.contact-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px; align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius);
  padding-left: 8px; padding-right: 8px;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface);
}
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft); flex-shrink: 0;
  margin-top: 2px;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover svg { color: var(--accent); }
.contact-row strong {
  font-weight: 400; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); display: block; margin-bottom: 2px;
}
.contact-row span, .contact-row a {
  font-size: 0.9rem; color: var(--ink-soft);
  word-break: break-all; overflow-wrap: anywhere;
}
.contact-row a:hover { color: var(--accent); }

/* ===================================================
   STATS counter
   =================================================== */
.stats-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(24px, 5vw, 64px);
  margin-top: 56px; margin-bottom: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading); font-weight: 500; font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent); line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 8px;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.6);
  padding: clamp(48px, 8vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  color: #fff; font-size: 1rem; margin-bottom: 16px;
  font-style: italic;
}
.footer-col p, .footer-col li, .footer-col a {
  font-size: 0.82rem; line-height: 1.75;
  color: rgba(255,255,255,0.55);
}
.footer-col a { text-decoration: none; transition: color 240ms; }
.footer-col a:hover { color: var(--accent); }
.footer-col li + li { margin-top: 6px; }

.footer-brand {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-style: italic; color: #fff;
  margin-bottom: 12px; display: block;
}
.footer-bottom {
  margin-top: clamp(32px, 6vw, 56px);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.72rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--accent); }

/* ===================================================
   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-lg);
  padding: 24px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
  z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }

@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 { font-size: 1rem; margin-bottom: 10px; font-style: italic; }
.cookie-banner p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }
.cookie-btns {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-btns button {
  flex: 1; min-width: 100px; min-height: 44px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  border: 1px solid var(--line);
  padding: 10px 16px;
  transition: background 200ms, color 200ms, border-color 200ms, transform 200ms cubic-bezier(.16,1,.3,1), box-shadow 200ms;
}
.cookie-btns button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(59,34,18,0.12);
}
.cookie-btns button[data-consent="accept"] {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.cookie-btns button[data-consent="accept"]:hover {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
}
.cookie-btns button[data-consent="reject"] {
  background: var(--surface); color: var(--ink); border: 1px solid var(--line-strong);
  font-weight: 400;
}
.cookie-btns button[data-consent="reject"]:hover {
  background: var(--surface-2); color: var(--ink); border-color: var(--ink);
}
.cookie-btns button[data-consent="settings"] {
  background: var(--surface); color: var(--ink-soft); border-color: var(--line);
}
.cookie-btns button[data-consent="settings"]:hover {
  background: var(--surface-2); color: var(--ink); border-color: var(--line-strong);
}

/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  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,0) * 120ms);
}
.mekan-card.reveal { transform: translateY(40px) scale(0.97); }
.mekan-card.reveal.is-in { transform: none; }
.yorum-card.reveal { transform: translateY(30px) rotate(-0.5deg); }
.yorum-card.reveal.is-in { transform: none; }
.fiyat-card.reveal { transform: translateY(32px) scale(0.98); }
.fiyat-card.reveal.is-in { transform: none; }
.surec-step.reveal { transform: translateX(-24px); opacity: 0; }
.surec-step.reveal.is-in { transform: none; opacity: 1; }
.team-card.reveal { transform: translateY(40px) scale(0.96); }
.team-card.reveal.is-in { transform: none; }
.dekor-item.reveal { transform: translateY(28px) scale(0.97); }
.dekor-item.reveal.is-in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===================================================
   NICHE ANIMATIONS — Botanical / Wedding
   =================================================== */

/* 1. Gold shimmer sweep on headings */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  50%  { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.shimmer-heading {
  background: linear-gradient(
    90deg,
    var(--ink) 0%, var(--ink) 38%,
    #c9884e 48%, var(--accent) 50%, #c9884e 52%,
    var(--ink) 62%, var(--ink) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 12s cubic-bezier(.4,0,.6,1) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .shimmer-heading { animation: none; -webkit-text-fill-color: var(--ink); background: none; }
}

/* 2. Vine draw underline */
.vine-underline {
  position: relative; display: inline-block;
}
.vine-underline::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8'%3E%3Cpath d='M0 4 Q15 0 30 4 T60 4 T90 4 T120 4' fill='none' stroke='%23B8602A' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E") repeat-x;
  background-size: 120px 8px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.vine-underline.is-in::after { transform: scaleX(1); }

/* 3. Petal scatter on btn CTA active */
@keyframes petalFall {
  0%   { transform: translate(0,0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--px, 20px), var(--py, -40px)) rotate(var(--pr, 180deg)); opacity: 0; }
}
.btn-primary:active::before {
  content: '✿';
  position: absolute; font-size: 0.7rem; color: var(--accent);
  --px: -15px; --py: -30px; --pr: 120deg;
  animation: petalFall 600ms cubic-bezier(.2,.7,.2,1) forwards;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:active::before { animation: none; display: none; }
}

/* 4. Botanical photo frame with SVG corners */
.botanical-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.botanical-frame .frame-corner {
  position: absolute; width: 32px; height: 32px;
  opacity: 0.4; pointer-events: none;
  color: var(--accent);
  transition: opacity 400ms;
}
.botanical-frame:hover .frame-corner { opacity: 0.7; }
.frame-corner--tl { top: 6px; left: 6px; }
.frame-corner--tr { top: 6px; right: 6px; transform: scaleX(-1); }
.frame-corner--bl { bottom: 6px; left: 6px; transform: scaleY(-1); }
.frame-corner--br { bottom: 6px; right: 6px; transform: scale(-1); }

/* 5. Ambient breathing glow on accent elements */
@keyframes breatheGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,96,42,0), 0 0 0 0 rgba(201,136,78,0); }
  35%      { box-shadow: 0 0 28px -4px rgba(184,96,42,0.18), 0 0 8px -1px rgba(201,136,78,0.06); }
  65%      { box-shadow: 0 0 20px -6px rgba(184,96,42,0.1), 0 0 12px -2px rgba(201,136,78,0.08); }
}
.glow-breathe {
  animation: breatheGlow 8s cubic-bezier(.4,0,.6,1) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .glow-breathe { animation: none; }
}

/* ===================================================
   WEDDING-THEME MICRO EFFECTS
   =================================================== */

/* Warm glow on body content links */
main a:hover, .legal-page a:hover {
  text-shadow: 0 0 18px rgba(184,96,42,0.12);
}

/* Surec step hover glow */
.surec-step {
  transition: transform 300ms cubic-bezier(.16,1,.3,1), filter 400ms cubic-bezier(.16,1,.3,1);
}
.surec-step:hover {
  transform: translateX(8px);
}
.surec-step:hover .surec-step-num {
  box-shadow: 0 0 24px -2px rgba(184,96,42,0.45);
  transition: box-shadow 400ms cubic-bezier(.16,1,.3,1), transform 400ms cubic-bezier(.16,1,.3,1);
  transform: scale(1.08);
}

/* FAQ summary warm hover */
.faq-item > summary {
  transition: color 240ms, padding-left 300ms cubic-bezier(.16,1,.3,1), background 300ms;
  border-radius: var(--radius);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}
.faq-item > summary:hover {
  padding-left: 14px;
  background: rgba(184,96,42,0.03);
}

/* Stat item warm hover */
.stat-item {
  transition: transform 400ms cubic-bezier(.16,1,.3,1);
}
.stat-item:hover {
  transform: translateY(-6px);
}
.stat-item:hover .stat-num {
  text-shadow: 0 6px 28px rgba(184,96,42,0.25);
}

/* Manifesto blockquote warm glow */
.manifesto blockquote {
  transition: text-shadow 600ms cubic-bezier(.16,1,.3,1), transform 600ms cubic-bezier(.16,1,.3,1);
}
.manifesto:hover blockquote {
  text-shadow: 0 6px 40px rgba(184,96,42,0.12);
  transform: scale(1.01);
}

/* Footer link botanical slide */
.footer-col a {
  transition: color 240ms, padding-left 300ms cubic-bezier(.16,1,.3,1);
}
.footer-col a:hover {
  padding-left: 6px;
}

/* Contact row warm icon glow */
.contact-row:hover svg {
  filter: drop-shadow(0 0 8px rgba(184,96,42,0.35));
  transform: scale(1.08);
  transition: filter 300ms, transform 300ms cubic-bezier(.16,1,.3,1);
}

/* Mekan card romantic lift */
.mekan-card {
  transition: transform 500ms cubic-bezier(.16,1,.3,1), box-shadow 500ms cubic-bezier(.16,1,.3,1);
}
.mekan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -12px rgba(184,96,42,0.2);
}

/* Yorum card warm lift */
.yorum-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms cubic-bezier(.16,1,.3,1), border-color 400ms;
}
.yorum-card:hover {
  border-color: rgba(184,96,42,0.25);
}

/* Fiyat card romantic hover */
.fiyat-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms cubic-bezier(.16,1,.3,1), border-color 400ms;
}
.fiyat-card:hover {
  border-color: rgba(184,96,42,0.3);
}

/* Cancel tier glow */
.cancel-tier {
  transition: transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms cubic-bezier(.16,1,.3,1), border-color 300ms, background 300ms;
}
.cancel-tier:hover {
  background: rgba(184,96,42,0.03);
}

/* Button romantic micro — warm glow trail */
.btn-primary {
  transition: background 280ms cubic-bezier(.4,0,.2,1),
              color 280ms cubic-bezier(.4,0,.2,1),
              transform 280ms cubic-bezier(.16,1,.3,1),
              box-shadow 280ms cubic-bezier(.16,1,.3,1);
}
.btn-ghost {
  transition: background 280ms cubic-bezier(.4,0,.2,1),
              color 280ms cubic-bezier(.4,0,.2,1),
              transform 280ms cubic-bezier(.16,1,.3,1),
              box-shadow 280ms cubic-bezier(.16,1,.3,1),
              border-color 280ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  box-shadow: 0 6px 20px -6px rgba(59,34,18,0.15);
}

/* Dekor item warm shadow on hover */
.dekor-item:hover {
  box-shadow: 0 16px 40px -10px rgba(184,96,42,0.22);
  border-color: rgba(184,96,42,0.2);
}

/* Enhanced warm golden focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(184,96,42,0.08);
}

/* Team card warm photo glow */
.team-photo {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms cubic-bezier(.2,.7,.2,1), filter 400ms;
}
.team-card:hover .team-photo {
  transform: scale(1.03);
  box-shadow: 0 12px 32px -6px rgba(184,96,42,0.18);
  filter: brightness(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .surec-step:hover { transform: none; }
  .surec-step:hover .surec-step-num { transform: none; }
  .faq-item > summary:hover { padding-left: 8px; }
  .stat-item:hover { transform: none; }
  .footer-col a:hover { padding-left: 0; }
  .team-card:hover { transform: none; }
  .team-card:hover .team-photo { transform: none; }
  .cancel-tier:hover { transform: none; }
  .mekan-card:hover { transform: none; }
  .manifesto:hover blockquote { transform: none; }
  .contact-row:hover svg { transform: none; }
}

/* ===================================================
   COUNTER-UP
   =================================================== */
.counter-up { font-variant-numeric: tabular-nums; }

/* ===================================================
   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: 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 {
  width: 100%; border-collapse: collapse;
  font-size: 0.85rem;
}
th, td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--surface-2);
}

/* ===================================================
   MANIFESTO / QUOTE BLOCK
   =================================================== */
.manifesto {
  padding: clamp(60px, 12vw, 140px) 0;
  text-align: center;
}
.manifesto blockquote {
  font-family: var(--font-heading); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--ink); line-height: 1.3;
  max-width: 20ch; margin: 0 auto;
  position: relative;
}
.manifesto blockquote::before {
  content: '—'; display: block;
  font-size: 2rem; color: var(--accent);
  margin-bottom: 16px;
}

/* ===================================================
   PAGE: POLICY / LEGAL PAGES
   =================================================== */
.legal-page { padding: clamp(48px, 8vw, 80px) 0; }
.legal-page > .container { max-width: 760px; }
.legal-page h1 { margin-bottom: 32px; }
.legal-page h2 {
  margin-top: 48px; margin-bottom: 16px; font-size: 1.5rem;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-page h2:first-of-type { border-top: none; padding-top: 0; }
.legal-page h3 { margin-top: 28px; margin-bottom: 12px; font-size: 1.2rem; }
.legal-page p { margin-bottom: 16px; color: var(--ink-soft); max-width: 72ch; line-height: 1.75; }
.legal-page ul { margin-bottom: 16px; padding-left: 24px; }
.legal-page li {
  margin-bottom: 10px; color: var(--ink-soft); list-style: disc;
  font-size: 0.9rem; line-height: 1.75;
}

/* ===================================================
   PAGE: THANK YOU
   =================================================== */
.thank-you-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px clamp(16px, 4vw, 32px);
}
.thank-you-page h1 { margin-bottom: 16px; }
.thank-you-page p { margin-bottom: 32px; color: var(--ink-soft); }

/* ===================================================
   PAGE: 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: 80px clamp(16px, 4vw, 32px);
}
.page-404 .big-404 {
  font-family: var(--font-heading); font-size: clamp(6rem, 20vw, 14rem);
  font-style: italic; color: var(--line); line-height: 1;
}

/* ===================================================
   SECTION DIVIDER — botanical rule
   =================================================== */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 auto;
  max-width: 280px;
  padding: 8px 0;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--line);
}
.section-divider svg {
  width: 24px; height: 24px; color: var(--accent); opacity: 0.5; flex-shrink: 0;
  animation: leafFloat 10s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .section-divider svg { animation: none; }
}

/* ===================================================
   ABOUT PAGE — team
   =================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin-top: 48px;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  text-align: center;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -10px rgba(184,96,42,0.12);
}
.team-photo {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--surface-2), rgba(111,143,141,0.2));
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms cubic-bezier(.2,.7,.2,1);
  display: flex; align-items: center; justify-content: center;
}
.team-photo:empty::after {
  content: '';
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(59,34,18,0.06);
  box-shadow: 0 36px 0 0 rgba(59,34,18,0.04), 0 36px 0 20px rgba(59,34,18,0.04);
}
.team-card:hover .team-photo {
  transform: scale(1.02);
  box-shadow: 0 8px 24px -6px rgba(59,34,18,0.15);
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card .team-role {
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.team-card p { font-size: 0.85rem; color: var(--ink-soft); margin: 0 auto; max-width: 36ch; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  margin-top: 48px;
}
@media (max-width: 768px) { .contact-page-grid { grid-template-columns: 1fr; } }

/* ===================================================
   CANCELLATION TABLE
   =================================================== */
.cancel-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 32px 0;
}
@media (max-width: 640px) { .cancel-tiers { grid-template-columns: 1fr; } }
.cancel-tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms cubic-bezier(.2,.7,.2,1), border-color 300ms;
}
.cancel-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -6px rgba(184,96,42,0.12);
  border-color: var(--accent);
}
.cancel-tier strong {
  display: block; font-size: 0.9rem; margin-bottom: 6px; color: var(--ink);
}
.cancel-tier span { font-size: 0.82rem; color: var(--ink-soft); }

/* ===================================================
   SITE MAP PAGE
   =================================================== */
.sitemap-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; margin-top: 32px;
}
.sitemap-group h3 { font-size: 1.1rem; margin-bottom: 12px; }
.sitemap-group li { margin-bottom: 8px; }
.sitemap-group a { font-size: 0.9rem; color: var(--ink-soft); }
.sitemap-group a:hover { color: var(--accent); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  section { padding: clamp(48px, 8vw, 80px) 0; }
  .stats-row { gap: 32px; }
  .hero { height: calc(100svh - var(--header-h)); max-height: calc(100svh - var(--header-h)); }
}

@media (max-width: 640px) {
  .mekanlar-grid { gap: 16px; }
  .fiyat-card { flex: 0 0 88vw; }
  .yorum-card { padding: 20px; }
  .trust-strip { justify-content: center; }
  .trust-strip .badge { font-size: 0.65rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
  :root { --header-h: 58px; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .surec-timeline { padding-left: 40px; }
  .surec-step-num { width: 30px; height: 30px; font-size: 0.82rem; left: -40px; }
  .hero { height: calc(100svh - var(--header-h)); max-height: calc(100svh - var(--header-h)); }
  .hero-content { padding: 24px 16px; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 18px; }
}

@media (max-width: 360px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .cookie-banner { left: 8px; right: 8px; padding: 18px; }
  .fiyat-card { flex: 0 0 92vw; padding: 20px; }
}

/* ===================================================
   DRAWER CLOSE BUTTON
   =================================================== */

/* ===================================================
   SCROLL PROGRESS BAR
   =================================================== */
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: none;
  z-index: 1;
  pointer-events: none;
}

/* ===================================================
   COOKIE BANNER — mobile full-width + clearance fix
   =================================================== */
@media (max-width: 640px) {
  .cookie-banner {
    left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
  }
  .cookie-btns { flex-wrap: nowrap; }
  .cookie-btns button { min-width: 0; flex: 1; padding: 10px 8px; }
}

/* ===================================================
   ENHANCED REVEAL — stagger-reveal with smoother easing
   =================================================== */
.reveal {
  transition: opacity 900ms cubic-bezier(.22,1,.36,1),
              transform 900ms cubic-bezier(.22,1,.36,1);
}

/* Stagger children inside grids */
.mekanlar-grid .mekan-card.reveal:nth-child(1) { transition-delay: 0ms; }
.mekanlar-grid .mekan-card.reveal:nth-child(2) { transition-delay: 140ms; }
.mekanlar-grid .mekan-card.reveal:nth-child(3) { transition-delay: 280ms; }

.yorumlar-grid .yorum-card.reveal:nth-child(1) { transition-delay: 0ms; }
.yorumlar-grid .yorum-card.reveal:nth-child(2) { transition-delay: 160ms; }
.yorumlar-grid .yorum-card.reveal:nth-child(3) { transition-delay: 320ms; }

.team-grid .team-card.reveal:nth-child(1) { transition-delay: 0ms; }
.team-grid .team-card.reveal:nth-child(2) { transition-delay: 180ms; }
.team-grid .team-card.reveal:nth-child(3) { transition-delay: 360ms; }

.surec-timeline .surec-step.reveal:nth-child(1) { transition-delay: 0ms; }
.surec-timeline .surec-step.reveal:nth-child(2) { transition-delay: 100ms; }
.surec-timeline .surec-step.reveal:nth-child(3) { transition-delay: 200ms; }
.surec-timeline .surec-step.reveal:nth-child(4) { transition-delay: 300ms; }
.surec-timeline .surec-step.reveal:nth-child(5) { transition-delay: 400ms; }
.surec-timeline .surec-step.reveal:nth-child(6) { transition-delay: 500ms; }

/* ===================================================
   WEDDING WARM GLOW — golden ambient on interactive elements
   =================================================== */

/* Warm golden glow on CTA buttons */
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 8px 24px -6px rgba(184,96,42,0.4), 0 0 60px -20px rgba(201,136,78,0.15);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  box-shadow: 0 8px 20px -6px rgba(59,34,18,0.12), 0 0 40px -16px rgba(184,96,42,0.08);
}

/* Form submit button warm glow */
form .btn-primary:hover {
  box-shadow: 0 8px 28px -6px rgba(184,96,42,0.45), 0 0 0 3px rgba(184,96,42,0.08);
}

/* Hero CTA warm pulse on idle */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.12); }
  50%      { box-shadow: 0 0 28px -4px rgba(255,255,255,0.2); }
}
.hero-content .btn-primary {
  animation: ctaPulse 4s cubic-bezier(.4,0,.6,1) 3s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-content .btn-primary { animation: none; }
}

/* Fiyat featured card warm border glow */
.fiyat-card.featured {
  box-shadow: 0 0 0 1px var(--accent), 0 0 24px -8px rgba(184,96,42,0.15);
}
.fiyat-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px -10px rgba(184,96,42,0.25), 0 0 40px -12px rgba(184,96,42,0.1);
}

/* Contact row botanical slide-in */
.contact-row {
  transform: translateX(0);
}
.contact-row:hover {
  transform: translateX(6px);
  background: rgba(184,96,42,0.02);
}

/* ===================================================
   PRINT
   =================================================== */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  section { page-break-inside: avoid; padding: 24px 0; }
}
