/* ============================================
   NIKO ÇEKİM — Dış Mekân Portre Fotoğrafçılığı
   ============================================ */

:root {
  interpolate-size: allow-keywords;
  --bg: #1C1C28;
  --surface: #26263A;
  --ink: #E8E4DF;
  --accent: #FF6B4A;
  --accent-2: #FFB830;
  --line: rgba(232,228,223,0.12);
  --line-strong: rgba(232,228,223,0.22);
  --header-h: 72px;
  --spring: #7CB342;
  --summer: #E8A317;
  --autumn: #D84315;
  --winter: #0288D1;
  --radius: 10px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}
html.drawer-open,
html.drawer-open body {
  overflow: hidden;
  touch-action: none;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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(--accent-2); }
ul, ol { list-style: none; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 18px;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cambria', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { max-width: 68ch; }

.eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main {
  padding-top: var(--header-h);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* === FOCUS RING === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 180ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,107,74,0.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 120ms;
  pointer-events: none;
}
.btn-primary:active::after { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(28,28,40,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 60ms linear;
  z-index: 10;
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(28,28,40,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  z-index: 1100;
}
.logo:hover { color: var(--accent); }
.logo span { color: var(--accent); }

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}
.nav-desktop a {
  position: relative;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 240ms, background 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { transform: scaleX(1); }

.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-left: 8px;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta.is-active {
  background: var(--accent-2);
  color: var(--bg);
}

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: rgba(232,228,223,0.18);
  border: 1.5px solid rgba(232,228,223,0.5);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
  position: relative;
  transition: background 200ms, border-color 200ms, transform 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255,107,74,0.18);
  border-color: var(--accent);
  transform: scale(1.05);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
  transform-origin: center;
}
.nav-toggle:hover span { background: var(--accent); }
.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);
}

/* === MOBILE DRAWER === */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer a {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: background 200ms, color 200ms, transform 200ms;
}
.drawer a:hover {
  background: rgba(255,107,74,0.1);
  color: var(--accent);
  transform: translateX(4px);
}
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 16px;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius);
}
.drawer .drawer-cta:hover,
.drawer .drawer-cta.is-active {
  background: var(--accent-2);
  color: var(--bg);
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,228,223,0.08);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.drawer-close:hover {
  background: rgba(255,107,74,0.15);
  color: var(--accent);
  border-color: var(--accent);
}

@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* === HERO === */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 8vw, 5rem) 0;
  background: url('/assets/images/konsept-golden-hour.jpg') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,40,0.82) 0%, rgba(28,28,40,0.7) 40%, rgba(28,28,40,0.85) 100%);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 clamp(16px, 4vw, 32px);
}
.hero h1 {
  margin-bottom: 18px;
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(232,228,223,0.75);
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,74,0.14) 0%, rgba(255,184,48,0.08) 40%, transparent 70%);
  animation: golden-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes golden-glow {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

/* Hero Marquee */
.marquee-wrap {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 7rem);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 clamp(24px, 4vw, 60px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(232,228,223,0.45);
  letter-spacing: 0.04em;
}
.marquee-track span.m-spring { -webkit-text-stroke-color: rgba(124,179,66,0.55); }
.marquee-track span.m-summer { -webkit-text-stroke-color: rgba(232,163,23,0.55); }
.marquee-track span.m-autumn { -webkit-text-stroke-color: rgba(216,67,21,0.55); }
.marquee-track span.m-winter { -webkit-text-stroke-color: rgba(2,136,209,0.55); }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header .eyebrow { margin-bottom: 8px; }
.section-header p {
  color: rgba(232,228,223,0.65);
  font-size: 1.05rem;
  margin: 12px auto 0;
  max-width: 56ch;
}

/* === TAKVIM (TIMELINE) === */
.takvim { background: var(--bg); overflow: hidden; }
.timeline-scroll {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px clamp(16px, 4vw, 32px) 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}
.timeline-scroll::-webkit-scrollbar { height: 6px; }
.timeline-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
.timeline-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.season-block {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  transition: background 360ms cubic-bezier(.4,0,.2,1), border-color 360ms, box-shadow 360ms, transform 240ms;
  position: relative;
  overflow: hidden;
}
.season-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: background 360ms;
  z-index: 2;
}
.season-block[data-season="spring"]::before { background: var(--spring); }
.season-block[data-season="summer"]::before { background: var(--summer); }
.season-block[data-season="autumn"]::before { background: var(--autumn); }
.season-block[data-season="winter"]::before { background: var(--winter); }

.season-block:hover { transform: translateY(-4px); }
.season-block[data-season="spring"]:hover {
  border-color: rgba(124,179,66,0.3);
  box-shadow: 0 12px 40px rgba(124,179,66,0.08);
  background: rgba(124,179,66,0.06);
}
.season-block[data-season="summer"]:hover {
  border-color: rgba(232,163,23,0.3);
  box-shadow: 0 12px 40px rgba(232,163,23,0.08);
  background: rgba(232,163,23,0.06);
}
.season-block[data-season="autumn"]:hover {
  border-color: rgba(216,67,21,0.3);
  box-shadow: 0 12px 40px rgba(216,67,21,0.08);
  background: rgba(216,67,21,0.06);
}
.season-block[data-season="winter"]:hover {
  border-color: rgba(2,136,209,0.3);
  box-shadow: 0 12px 40px rgba(2,136,209,0.08);
  background: rgba(2,136,209,0.06);
}

.season-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--accent);
  transition: color 360ms;
}
.season-block[data-season="spring"]:hover .season-icon { color: var(--spring); }
.season-block[data-season="summer"]:hover .season-icon { color: var(--summer); }
.season-block[data-season="autumn"]:hover .season-icon { color: var(--autumn); }
.season-block[data-season="winter"]:hover .season-icon { color: var(--winter); }

.season-block h3 { margin-bottom: 6px; }
.season-months {
  font-size: 0.82rem;
  color: rgba(232,228,223,0.5);
  margin-bottom: 16px;
  font-weight: 500;
}
.season-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(232,228,223,0.06);
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(232,228,223,0.8);
  border: 1px solid var(--line);
  transition: border-color 240ms, background 240ms;
  white-space: nowrap;
}
.loc-badge:hover {
  border-color: var(--accent);
  background: rgba(255,107,74,0.08);
}

/* === LOKASYONLAR === */
.lokasyonlar { background: var(--surface); }
.lok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: clamp(16px, 3vw, 24px);
}
.lok-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.lok-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,107,74,0.1);
}
.lok-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.lok-card__body { padding: 20px 22px; }
.lok-card__name {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.lok-card__season {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lok-card__season--spring { background: rgba(124,179,66,0.15); color: var(--spring); }
.lok-card__season--summer { background: rgba(232,163,23,0.15); color: var(--summer); }
.lok-card__season--autumn { background: rgba(216,67,21,0.15); color: var(--autumn); }
.lok-card__season--winter { background: rgba(2,136,209,0.15); color: var(--winter); }
.lok-card__season--all { background: rgba(255,107,74,0.12); color: var(--accent); }
.lok-card__desc {
  font-size: 0.88rem;
  color: rgba(232,228,223,0.6);
  margin-top: 10px;
  line-height: 1.6;
}

/* === KONSEPTLER === */
.konseptler { background: var(--bg); }
.konsept-scroll {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px clamp(16px, 4vw, 32px) 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}
.konsept-scroll::-webkit-scrollbar { height: 6px; }
.konsept-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
.konsept-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.konsept-card {
  flex: 0 0 min(300px, 80vw);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  position: relative;
}
.konsept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,107,74,0.1);
}
.konsept-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.konsept-card:hover::after { opacity: 1; }

.konsept-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.konsept-card__body { padding: 20px 22px; }
.konsept-card__title {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.konsept-card__desc {
  font-size: 0.85rem;
  color: rgba(232,228,223,0.6);
  line-height: 1.55;
}

/* === PROCESS === */
.surec { background: var(--surface); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: clamp(16px, 3vw, 28px);
  counter-reset: process-step;
}
.process-step {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  position: relative;
  counter-increment: process-step;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,107,74,0.08);
  border-color: rgba(255,107,74,0.2);
}
.process-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 4px; }
.process-step__time {
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  color: rgba(232,228,223,0.65);
  line-height: 1.55;
}

.process-step__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  color: rgba(232,228,223,0.15);
  transition: color 300ms;
}
.process-step:hover .process-step__icon { color: var(--accent); }

/* === TESTIMONIALS === */
.referanslar { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: clamp(16px, 3vw, 24px);
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,107,74,0.08);
}
.testimonial-card::before {
  content: '\201C';
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(232,228,223,0.8);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card__author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.testimonial-card__meta {
  font-size: 0.78rem;
  color: rgba(232,228,223,0.5);
  margin-top: 2px;
}

/* === PRICING === */
.fiyat { background: var(--surface); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: clamp(16px, 3vw, 24px);
}
.pricing-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,107,74,0.1);
}
.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card__name {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.pricing-card__price {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-card__price small {
  font-size: 0.45em;
  font-weight: 400;
  color: rgba(232,228,223,0.5);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.pricing-card__duration {
  font-size: 0.85rem;
  color: rgba(232,228,223,0.55);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pricing-card__list {
  flex: 1;
  margin-bottom: 24px;
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: rgba(232,228,223,0.8);
}
.pricing-card__list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.pricing-card__list li.included svg { color: var(--spring); }
.pricing-card__list li.excluded svg { color: rgba(232,228,223,0.25); }
.pricing-card__list li.excluded { color: rgba(232,228,223,0.4); text-decoration: line-through; }
.pricing-card__delivery {
  font-size: 0.8rem;
  color: var(--accent-2);
  font-weight: 500;
  margin-bottom: 20px;
}
.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(232,228,223,0.45);
  margin-top: 28px;
  font-style: italic;
}

/* === FAQ === */
.sss { background: var(--bg); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  transition: color 200ms;
  gap: 12px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ''; }
.faq-item > summary:hover { color: var(--accent); }
.faq-item > summary .faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  color: var(--accent);
}
.faq-item[open] > summary .faq-chevron { transform: rotate(180deg); }

.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;
}
.faq-body p {
  font-size: 0.9rem;
  color: rgba(232,228,223,0.7);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* === CTA SECTION === */
.cta-section {
  background: var(--surface);
  text-align: center;
}
.cta-section .container {
  max-width: 640px;
}
.cta-section p {
  color: rgba(232,228,223,0.65);
  margin: 12px auto 28px;
}

/* === FORM (iletisim page) === */
.form-section { background: var(--bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  align-content: start;
}
.contact-channel {
  display: contents;
  cursor: default;
}
.contact-channel__icon {
  width: 20px;
  height: 20px;
  color: rgba(232,228,223,0.55);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.contact-channel__content {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channel:hover .contact-channel__icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-channel:hover .contact-channel__content {
  transform: translateX(4px);
}
.contact-channel__label {
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(232,228,223,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-channel__value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-channel__value a { color: var(--ink); }
.contact-channel__value a:hover { color: var(--accent); }

.contact-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--line);
  margin: 6px 0;
}

.contact-form { max-width: 560px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(232,228,223,0.8);
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.92rem;
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,74,0.12);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.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 label {
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-status {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 14px;
  display: none;
}
.form-status--success { display: block; background: rgba(124,179,66,0.12); color: var(--spring); border: 1px solid rgba(124,179,66,0.2); }
.form-status--error { display: block; background: rgba(255,107,74,0.12); color: var(--accent); border: 1px solid rgba(255,107,74,0.2); }

/* === FOOTER === */
.site-footer {
  background: var(--surface);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--ink);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: rgba(232,228,223,0.6);
  font-size: 0.88rem;
  transition: color 200ms, transform 200ms;
  display: inline-block;
}
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }
.footer-col p {
  font-size: 0.88rem;
  color: rgba(232,228,223,0.6);
  line-height: 1.65;
}
.footer-col .footer-established {
  font-size: 0.78rem;
  color: rgba(232,228,223,0.4);
  margin-top: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(232,228,223,0.4);
}
.footer-bottom a { color: rgba(232,228,223,0.4); }
.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-strong);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(232,228,223,0.65);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background 200ms, color 200ms, border-color 200ms;
}
.cookie-btn-accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent) !important;
}
.cookie-btn-accept:hover {
  background: var(--accent-2);
  color: var(--bg);
  border-color: var(--accent-2) !important;
}
.cookie-btn-reject {
  background: transparent;
  color: rgba(232,228,223,0.8);
  border-color: rgba(232,228,223,0.3);
}
.cookie-btn-reject:hover {
  background: rgba(232,228,223,0.08);
  color: var(--ink);
  border-color: rgba(232,228,223,0.5);
}
.cookie-btn-settings {
  background: transparent;
  color: rgba(232,228,223,0.6);
}
.cookie-btn-settings:hover {
  background: rgba(232,228,223,0.06);
  color: var(--ink);
  border-color: var(--ink);
}

/* === 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-weight: 600;
  color: var(--ink);
  background: var(--surface);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
td { color: rgba(232,228,223,0.75); }
tr:last-child td { border-bottom: none; }

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

@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 — Outdoor Portrait Photography === */

/* 1. Golden Hour Sweep — warm light band across hero */
.hero__golden-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,184,48,0.06) 48%, rgba(255,107,74,0.04) 52%, transparent 70%);
  background-size: 300% 100%;
  animation: golden-sweep 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes golden-sweep {
  0%, 100% { background-position: 150% 0; }
  50% { background-position: -50% 0; }
}

/* 2. Lens Flare on card hover */
.konsept-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,48,0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 360ms;
  pointer-events: none;
  z-index: 3;
}
.konsept-card:hover::before {
  opacity: 1;
  animation: lens-flare 800ms ease-out forwards;
}
@keyframes lens-flare {
  0% { top: 10%; left: 10%; opacity: 0; }
  30% { opacity: 0.8; }
  100% { top: 25%; left: 60%; opacity: 0; }
}

/* 3. Viewfinder Rule-of-Thirds Grid on image hover */
.lok-card { position: relative; }
.lok-card .viewfinder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 4/3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(.4,0,.2,1);
  z-index: 2;
}
.lok-card:hover .viewfinder { opacity: 1; }
.viewfinder::before, .viewfinder::after {
  content: '';
  position: absolute;
  inset: 8px;
}
.viewfinder::before {
  border: 1px solid rgba(255,107,74,0.25);
  border-radius: 2px;
}
.viewfinder::after {
  background:
    linear-gradient(to right, transparent 32.5%, rgba(255,107,74,0.12) 33%, rgba(255,107,74,0.12) 33.5%, transparent 34%,
                     transparent 65.5%, rgba(255,107,74,0.12) 66%, rgba(255,107,74,0.12) 66.5%, transparent 67%),
    linear-gradient(to bottom, transparent 32.5%, rgba(255,107,74,0.12) 33%, rgba(255,107,74,0.12) 33.5%, transparent 34%,
                     transparent 65.5%, rgba(255,107,74,0.12) 66%, rgba(255,107,74,0.12) 66.5%, transparent 67%);
}

/* 4. Aperture Shutter effect on CTA click */
.btn-primary { position: relative; overflow: hidden; }
@keyframes shutter-click {
  0% { clip-path: circle(100%); opacity: 0.3; }
  50% { clip-path: circle(10%); opacity: 0.6; }
  100% { clip-path: circle(100%); opacity: 0; }
}

/* 5. Seasonal ambient float in hero */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.15;
  animation: particle-float var(--dur, 10s) linear infinite;
  animation-delay: var(--delay, 0s);
}
.particle--warm { background: var(--accent-2); }
.particle--cool { background: var(--winter); }
.particle--green { background: var(--spring); }

@keyframes particle-float {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translate(var(--dx, 80px), var(--dy, -200px)) rotate(var(--rot, 180deg)); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__golden-sweep,
  .hero__particles,
  .marquee-track,
  .hero__glow { animation: none !important; }
  .konsept-card::before { display: none; }
  .particle { display: none; }
}

/* === SEASONAL HOVER TRANSITION ON TIMELINE === */
.season-block { position: relative; }
.season-block .season-atmosphere {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
}
.season-block > * { position: relative; z-index: 1; }
.season-block[data-season="spring"] .season-atmosphere {
  background: radial-gradient(ellipse at 30% 80%, rgba(124,179,66,0.08), transparent 70%);
}
.season-block[data-season="summer"] .season-atmosphere {
  background: radial-gradient(ellipse at 70% 20%, rgba(232,163,23,0.08), transparent 70%);
}
.season-block[data-season="autumn"] .season-atmosphere {
  background: radial-gradient(ellipse at 50% 60%, rgba(216,67,21,0.08), transparent 70%);
}
.season-block[data-season="winter"] .season-atmosphere {
  background: radial-gradient(ellipse at 40% 30%, rgba(2,136,209,0.08), transparent 70%);
}
.season-block:hover .season-atmosphere { opacity: 1; }

/* === PAGE SPECIFIC — Hakkımızda === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,107,74,0.1);
}
.team-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.team-card__body { padding: 22px 24px; }
.team-card__name {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 2px;
}
.team-card__role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.88rem;
  color: rgba(232,228,223,0.65);
  line-height: 1.65;
}

/* === PAGE SPECIFIC — Policy pages === */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}
.policy-content p {
  font-size: 0.92rem;
  color: rgba(232,228,223,0.75);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.policy-content ul {
  margin: 0.8rem 0 1.2rem 20px;
  list-style: disc;
}
.policy-content li {
  font-size: 0.9rem;
  color: rgba(232,228,223,0.7);
  margin-bottom: 6px;
  line-height: 1.6;
}

/* === 404 PAGE === */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.page-404 p {
  font-size: 1.1rem;
  color: rgba(232,228,223,0.6);
  margin-bottom: 28px;
}

/* === SITE MAP PAGE === */
.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}
.sitemap-list ul { list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 8px; }
.sitemap-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 200ms, color 200ms, transform 200ms;
  width: 100%;
}
.sitemap-list a:hover {
  background: var(--surface);
  color: var(--accent);
  transform: translateX(4px);
}

/* === CANCELLATION TIERS === */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 16px;
  margin: 20px 0;
}
.cancel-tier {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
  text-align: center;
}
.cancel-tier__period {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}
.cancel-tier__refund {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}
.cancel-tier--green { border-color: rgba(124,179,66,0.3); }
.cancel-tier--yellow { border-color: rgba(255,184,48,0.3); }
.cancel-tier--red { border-color: rgba(255,107,74,0.3); }

/* === MEDIA QUERIES === */
@media (max-width: 640px) {
  .hero { min-height: 75vh; }
  .season-block { flex: 0 0 min(290px, 88vw); }
  .konsept-card { flex: 0 0 min(260px, 85vw); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-buttons { flex-direction: column; }
  .cookie-buttons button { min-width: 0; min-height: 44px; font-size: 0.85rem; }
  .site-footer { padding-bottom: 32px; }
}

@media (max-width: 390px) {
  h1 { font-size: 2rem; }
  .hero__sub { font-size: 0.95rem; }
  .btn { padding: 12px 24px; font-size: 0.88rem; }
}

@media (min-width: 1440px) {
  .hero { min-height: 88vh; }
}

/* === ENHANCED PHOTOGRAPHY-THEME EFFECTS === */

/* Warm focus glow on primary buttons */
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 6px 28px rgba(255,107,74,0.35), 0 0 0 3px rgba(255,184,48,0.08);
}

/* Subtle golden-hour ambient on featured pricing card */
.pricing-card--featured {
  box-shadow: 0 0 0 1px rgba(255,107,74,0.15), 0 4px 24px rgba(255,107,74,0.06);
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 20px 56px rgba(255,107,74,0.14);
}

/* Warm light-leak on lok-card image hover */
.lok-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,184,48,0.12) 0%, transparent 40%, transparent 60%, rgba(255,107,74,0.08) 100%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.lok-card:hover::after { opacity: 1; }

/* Team card warm overlay */
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255,107,74,0.06) 100%);
  opacity: 0;
  transition: opacity 360ms;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.team-card { position: relative; }
.team-card:hover::after { opacity: 1; }

/* Testimonial card warm quote glow on hover */
.testimonial-card:hover::before {
  opacity: 0.4;
  text-shadow: 0 0 20px rgba(255,107,74,0.3);
}

/* FAQ item smooth open with warm accent */
.faq-item[open] {
  border-color: rgba(255,107,74,0.15);
  box-shadow: 0 2px 12px rgba(255,107,74,0.04);
}

/* Season block warm press effect */
.season-block:active {
  transform: translateY(-2px) scale(0.99);
}

/* Warm bokeh float in hero — subtle depth cue */
.hero__glow {
  filter: blur(60px);
}

/* Nav link warm underline glow */
.nav-desktop a:hover::after {
  box-shadow: 0 2px 8px rgba(255,107,74,0.25);
}

/* Cookie banner compact on mobile */
@media (max-width: 640px) {
  .cookie-banner { padding: 16px 18px; }
  .cookie-banner h3 { font-size: 0.85rem; }
  .cookie-banner p { font-size: 0.78rem; margin-bottom: 10px; }
  .cookie-buttons button { min-height: 44px; }
}

/* Golden hour shimmer on hero eyebrow */
.hero .eyebrow {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: eyebrow-shimmer 4s ease-in-out infinite;
}
@keyframes eyebrow-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Shutter ripple on primary button click */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: none;
  pointer-events: none;
}
.btn-primary:active::before {
  animation: shutter-ripple 400ms cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes shutter-ripple {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Cancel tier warm hover */
.cancel-tier {
  transition: transform 200ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.cancel-tier:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow { animation: none; background: none; -webkit-text-fill-color: var(--accent); }
  .btn-primary::before { display: none; }
  .lok-card::after { display: none; }
  .team-card::after { display: none; }
  .cancel-tier { transition: none; }
  .season-block:active { transform: none; }
  .hero::before { background: rgba(28,28,40,0.85); }
  .nav-toggle { transition: none; }
  .nav-toggle:hover { transform: none; }
  .lok-card__img, .konsept-card__img, .team-card__img { transition: none !important; }
  .process-step, .testimonial-card, .pricing-card { transition: none !important; }
}

/* === ENHANCED STAGGER REVEALS === */
.lok-grid .lok-card:nth-child(1) .lok-card__img,
.lok-grid .lok-card:nth-child(2) .lok-card__img,
.lok-grid .lok-card:nth-child(3) .lok-card__img,
.lok-grid .lok-card:nth-child(4) .lok-card__img,
.lok-grid .lok-card:nth-child(5) .lok-card__img,
.lok-grid .lok-card:nth-child(6) .lok-card__img {
  transition: transform 600ms cubic-bezier(.16,1,.3,1), filter 600ms;
}
.lok-card:hover .lok-card__img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.1);
}

.konsept-card__img {
  transition: transform 600ms cubic-bezier(.16,1,.3,1), filter 600ms;
}
.konsept-card:hover .konsept-card__img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.08);
}

.team-card__img {
  transition: transform 600ms cubic-bezier(.16,1,.3,1), filter 600ms;
}
.team-card:hover .team-card__img {
  transform: scale(1.03);
  filter: brightness(1.05) saturate(1.08);
}

/* Golden hour warm gradient on section dividers */
.takvim::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,184,48,0.25), rgba(255,107,74,0.2), transparent);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* Warm ambient glow on process steps hover */
.process-step:hover::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,184,48,0.05), transparent 70%);
  pointer-events: none;
  border-radius: inherit;
}

/* Testimonial warm quote mark pulse */
.testimonial-card:hover::before {
  transition: opacity 360ms, color 360ms;
  color: var(--accent);
}

/* Hero content fade-in on load */
.hero__content {
  animation: hero-fade-in 1s cubic-bezier(.16,1,.3,1) 0.15s both;
}
@keyframes hero-fade-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content { animation: none; opacity: 1; transform: none; }
  .lok-card:hover .lok-card__img,
  .konsept-card:hover .konsept-card__img,
  .team-card:hover .team-card__img { transform: none; filter: none; }
  .takvim::before { display: none; }
}

/* === PRINT === */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #222; }
  a { color: #222; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
  section { page-break-inside: avoid; }
}
