:root {
  --bg: #0F0D0B;
  --surface: #1C1916;
  --ink: #F8F4EF;
  --accent: #C9A96E;
  --accent-2: #E8DDD0;
  --line: rgba(201,169,110,0.18);
  --header-h: 72px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: 4px;
  font-size: 14px; z-index: 9999;
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(201,169,110,0.12);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(15,13,11,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(15,13,11,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  padding: 10px 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-weight: 600; font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 32px; height: 32px; color: var(--accent);
}

.nav-desktop {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
}
.nav-desktop a {
  color: var(--ink); font-size: 14px; font-weight: 300;
  letter-spacing: 0.04em; text-transform: uppercase;
  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; width: 0; height: 1px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--accent); color: var(--bg);
  padding: 10px 22px; border-radius: 4px;
  font-weight: 400; text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.06em;
  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(--ink); color: var(--bg); box-shadow: 0 0 20px -4px rgba(201,169,110,0.18); }

.nav-toggle {
  display: none;
  position: relative; z-index: 1100;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.nav-toggle span + span { margin-top: 6px; }
.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);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; }
}

/* ========== MOBILE DRAWER ========== */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: all; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  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;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  color: var(--ink); font-size: 18px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms cubic-bezier(.4,0,.2,1), padding-left 240ms cubic-bezier(.4,0,.2,1);
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .drawer-cta {
  margin-top: 24px;
  background: var(--accent); color: var(--bg);
  text-align: center; padding: 16px;
  border-radius: 4px; border: none;
  font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 14px;
}
.mobile-drawer .drawer-cta:hover { background: var(--ink); color: var(--bg); box-shadow: 0 0 20px -4px rgba(201,169,110,0.15); }

/* ========== MAIN ========== */
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.03); } }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,13,11,0.4) 0%, rgba(15,13,11,0.7) 60%, rgba(15,13,11,0.95) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 clamp(16px, 4vw, 32px);
}
.hero-eyebrow {
  font-size: clamp(11px, 1.2vw, 13px);
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 20px;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  color: var(--ink); margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--accent-2); margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  background: var(--accent); color: var(--bg);
  padding: 16px 40px; border-radius: 4px;
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--accent);
  transition: background 280ms cubic-bezier(.4,0,.2,1), color 280ms cubic-bezier(.4,0,.2,1), border-color 280ms cubic-bezier(.4,0,.2,1);
}
.hero-cta:hover { background: transparent; color: var(--accent); border-color: var(--accent); box-shadow: 0 0 30px -6px rgba(201,169,110,0.3); }

/* 3D Box Lid Opening Effect */
.box-3d {
  perspective: 1200px;
  width: clamp(200px, 30vw, 340px);
  height: clamp(160px, 24vw, 260px);
  margin: 0 auto 48px;
  position: relative;
}
.box-base {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(135deg, #2a2118 0%, #1a1510 100%);
  border: 1px solid var(--accent);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; padding: 12px;
}
.praline {
  width: clamp(20px, 3vw, 32px); height: clamp(20px, 3vw, 32px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #8B6914, #4A3508);
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.3);
  animation: pralineGlow 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.4s);
}
@keyframes pralineGlow {
  0%,100% { box-shadow: inset 0 -3px 6px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.3); }
  50% { box-shadow: inset 0 -3px 6px rgba(0,0,0,0.4), 0 2px 12px rgba(201,169,110,0.3); }
}

.box-lid {
  position: absolute; top: 0; left: -2px; right: -2px;
  height: 45%;
  background: linear-gradient(180deg, #2a2118 0%, #1f1a14 100%);
  border: 1px solid var(--accent);
  border-radius: 4px 4px 0 0;
  transform-origin: top center;
  animation: lidOpen 2.5s cubic-bezier(.4,0,.2,1) 1s forwards;
  display: flex; align-items: center; justify-content: center;
}
.lid-monogram {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: clamp(18px, 3vw, 32px);
  color: var(--accent);
  opacity: 0.8;
}
@keyframes lidOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-75deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .box-lid { animation: none; transform: rotateX(-75deg); }
  .praline { animation: none; }
}

/* ========== SECTIONS ========== */
section {
  padding: clamp(60px, 10vw, 120px) 0;
}
.section-eyebrow {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--accent);
  margin-bottom: 12px; font-weight: 400;
}
.section-title {
  font-size: clamp(28px, 4.5vw, 52px);
  margin-bottom: 24px; color: var(--ink);
}
.section-subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--accent-2); max-width: 600px;
  line-height: 1.8;
}

/* Gold border decoration */
.gold-border {
  border: 1px solid var(--accent);
  border-radius: 4px;
}
.gold-frame {
  position: relative;
}
.gold-frame::before {
  content: '';
  position: absolute; inset: -1px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  pointer-events: none;
}

/* Foil texture gradient */
.foil-accent {
  background: linear-gradient(135deg, #C9A96E 0%, #E8DDD0 25%, #C9A96E 50%, #A0844A 75%, #C9A96E 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: foilShimmer 6s ease infinite;
}
@keyframes foilShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .foil-accent { animation: none; background-position: 0% 50%; }
}

/* ========== #galeri — COLLECTION SLIDER ========== */
.galeri { overflow: hidden; }
.galeri .container { max-width: 100%; padding: 0; }
.galeri-header { padding: 0 clamp(16px, 4vw, 32px); margin-bottom: 40px; max-width: 1400px; margin-left: auto; margin-right: auto; }
.slider-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 clamp(16px, 4vw, 32px) 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-item {
  flex: 0 0 clamp(280px, 40vw, 420px);
  scroll-snap-align: start;
  position: relative; border-radius: 6px;
  overflow: hidden;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.slider-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px -12px rgba(201,169,110,0.22), 0 0 60px -20px rgba(201,169,110,0.1);
}
.slider-item img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
}
.slider-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(15,13,11,0.9));
  font-size: 13px; color: var(--accent-2);
  letter-spacing: 0.04em;
}

/* Gold shine sweep on slider items */
.slider-item::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.08), transparent);
  transition: left 600ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.slider-item:hover::after { left: 120%; }

/* ========== #kisisel — PERSONALIZATION ========== */
.kisisel { background: var(--surface); }
.kisisel-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px); align-items: center;
  margin-top: 48px;
}
.kisisel-visual {
  position: relative;
  border-radius: 6px; overflow: hidden;
}
.kisisel-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.kisisel-options { display: flex; flex-direction: column; gap: 24px; }
.option-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 280ms cubic-bezier(.4,0,.2,1), transform 280ms cubic-bezier(.4,0,.2,1), box-shadow 280ms cubic-bezier(.4,0,.2,1);
}
.option-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -8px rgba(201,169,110,0.16), 0 0 40px -10px rgba(201,169,110,0.06);
}
.option-item h3 {
  font-size: 20px; margin-bottom: 8px; color: var(--accent);
}
.option-item p {
  font-size: 14px; color: var(--accent-2); line-height: 1.7;
}

/* Chocolate drip divider */
.choco-divider {
  width: 100%; height: 40px; position: relative; overflow: hidden;
}
.choco-divider::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); opacity: 0.3;
}
.choco-divider .drip {
  position: absolute; top: 0;
  width: 12px; background: var(--accent); opacity: 0.3;
  border-radius: 0 0 50% 50%;
  animation: dripDown 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 1.2s);
}
@keyframes dripDown {
  0%, 100% { height: 8px; }
  50% { height: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .choco-divider .drip { animation: none; height: 12px; }
}

@media (max-width: 768px) {
  .kisisel-grid { grid-template-columns: 1fr; }
}

/* ========== #kurumsal — CORPORATE ========== */
.kurumsal-content {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(30px, 5vw, 60px); align-items: center;
  margin-top: 48px;
}
.kurumsal-stat {
  text-align: center;
}
.kurumsal-number {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 600; color: var(--accent);
  line-height: 1;
}
.kurumsal-label {
  font-size: 14px; color: var(--accent-2);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 8px;
}
.kurumsal-text {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--accent-2); line-height: 1.9;
  max-width: 560px;
}
@media (max-width: 768px) {
  .kurumsal-content { grid-template-columns: 1fr; text-align: center; }
  .kurumsal-text { margin: 0 auto; }
}

/* ========== #surec — ORDER PROCESS ========== */
.surec { background: var(--surface); }
.surec-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 56px;
}
.step-card {
  text-align: center; padding: 40px 24px;
  border: 1px solid var(--line); border-radius: 6px;
  transition: border-color 280ms cubic-bezier(.4,0,.2,1), transform 280ms cubic-bezier(.4,0,.2,1), box-shadow 280ms cubic-bezier(.4,0,.2,1);
}
.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -8px rgba(201,169,110,0.18), 0 0 50px -12px rgba(201,169,110,0.08);
}
.step-icon {
  width: 48px; height: 48px; margin: 0 auto 20px;
  color: var(--accent);
}
.step-num {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 14px; color: var(--accent); margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.step-card h3 {
  font-size: 22px; margin-bottom: 10px; color: var(--ink);
}
.step-card p {
  font-size: 14px; color: var(--accent-2); line-height: 1.7;
}
@media (max-width: 768px) {
  .surec-steps { grid-template-columns: 1fr; }
}

/* ========== #mevsim — SEASONAL ========== */
.mevsim-content {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 60px); align-items: center;
  margin-top: 48px;
}
.mevsim-visual {
  border-radius: 6px; overflow: hidden;
  position: relative;
}
.mevsim-visual img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.mevsim-visual::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--accent);
  border-radius: 6px; pointer-events: none;
}
.mevsim-info h3 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 16px; color: var(--ink);
}
.mevsim-info p {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--accent-2); line-height: 1.8;
  margin-bottom: 24px;
}
.mevsim-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
}
@media (max-width: 768px) {
  .mevsim-content { grid-template-columns: 1fr; }
}

/* ========== PRICES ========== */
.prices {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.price-card {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 6px; text-align: center;
  transition: border-color 280ms cubic-bezier(.4,0,.2,1), transform 280ms cubic-bezier(.4,0,.2,1);
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -8px rgba(201,169,110,0.16), 0 0 44px -10px rgba(201,169,110,0.06);
}
.price-card h4 {
  font-size: 18px; color: var(--ink); margin-bottom: 8px;
}
.price-card .price {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 32px; font-weight: 600;
  color: var(--accent); margin-bottom: 8px;
}
.price-card .price-note {
  font-size: 12px; color: var(--accent-2); opacity: 0.7;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--surface);
  padding: clamp(48px, 8vw, 80px) 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px; color: var(--accent-2);
  margin-top: 16px; line-height: 1.7; max-width: 300px;
}
.footer-col h4 {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--accent-2);
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1), padding-left 240ms cubic-bezier(.4,0,.2,1);
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(248,244,239,0.5);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; 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; }

/* ========== 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: 8px;
  padding: 24px;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.5);
}
.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: 16px; margin-bottom: 8px; color: var(--ink);
}
.cookie-banner p {
  font-size: 13px; color: var(--accent-2); line-height: 1.6; margin-bottom: 16px;
}
.cookie-buttons {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-buttons button {
  flex: 1; min-width: 100px; min-height: 44px;
  border-radius: 4px; border: 1px solid var(--line);
  font-size: 13px; font-weight: 400; cursor: pointer;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms cubic-bezier(.4,0,.2,1);
}
.cookie-buttons .cookie-accept {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.cookie-buttons .cookie-accept:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-buttons .cookie-reject {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.cookie-buttons .cookie-reject:hover { background: var(--surface); color: var(--accent); border-color: var(--accent); }
.cookie-buttons .cookie-settings {
  background: transparent; color: var(--accent-2); border-color: var(--line);
}
.cookie-buttons .cookie-settings:hover { background: var(--surface); color: var(--accent); border-color: var(--accent); }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  background: var(--accent); color: var(--bg);
  padding: 14px 32px; border-radius: 4px;
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--accent);
  transition: background 280ms cubic-bezier(.4,0,.2,1), color 280ms cubic-bezier(.4,0,.2,1), border-color 280ms cubic-bezier(.4,0,.2,1);
  cursor: pointer; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
  box-shadow: 0 0 28px -6px rgba(201,169,110,0.2);
}
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--ink);
  padding: 14px 32px; border-radius: 4px;
  font-size: 13px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--line);
  transition: background 280ms cubic-bezier(.4,0,.2,1), color 280ms cubic-bezier(.4,0,.2,1), border-color 280ms cubic-bezier(.4,0,.2,1);
  cursor: pointer; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent);
}

/* ========== PAGE CONTENT (policies, about, etc.) ========== */
.page-hero {
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.page-hero p { font-size: 15px; color: var(--accent-2); }

.page-content {
  padding: clamp(40px, 6vw, 80px) 0;
  max-width: 760px; margin: 0 auto;
}
.page-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 48px 0 16px; color: var(--ink);
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}
.page-content > h2:first-child,
.page-content > .reveal:first-child {
  margin-top: 0;
}
.page-content h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 32px 0 12px; color: var(--accent);
}
.page-content p {
  margin-bottom: 16px; color: var(--accent-2);
  line-height: 1.8; font-size: 15px;
}
.page-content ul, .page-content ol {
  margin: 0 0 16px 24px; color: var(--accent-2);
  line-height: 1.8; font-size: 15px;
}
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ========== 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 {
  width: 100%; border-collapse: collapse;
}
th, td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
th {
  font-weight: 500; color: var(--accent);
  background: rgba(201,169,110,0.05);
}
td { color: var(--accent-2); }

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  margin-top: 48px;
}
.contact-channels {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
}
.channel-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px; align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms cubic-bezier(.4,0,.2,1);
  border-radius: 4px; padding-left: 8px; padding-right: 8px;
}
.channel-row:hover { transform: translateX(4px); background: rgba(201,169,110,0.03); }
.channel-row:hover .channel-icon { color: var(--accent); }
.channel-icon {
  width: 20px; height: 20px; color: var(--accent-2);
  transition: color 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.channel-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 4px;
}
.channel-value {
  font-size: 15px; color: var(--ink);
  word-break: break-word; overflow-wrap: anywhere;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent);
}
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 4px; padding: 14px 16px;
  color: var(--ink); font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px; font-weight: 300;
  transition: border-color 240ms cubic-bezier(.4,0,.2,1);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { cursor: pointer; }
.field-checkbox {
  flex-direction: row; 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 {
  font-size: 13px; text-transform: none;
  letter-spacing: 0; color: var(--accent-2); line-height: 1.5;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status {
  padding: 14px 18px; border-radius: 4px;
  font-size: 14px; display: none;
}
.form-status.success { display: block; background: rgba(201,169,110,0.1); color: var(--accent); border: 1px solid var(--accent); }
.form-status.error { display: block; background: rgba(200,50,50,0.1); color: #e8a0a0; border: 1px solid rgba(200,50,50,0.3); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ========== GOLD DUST PARTICLES (ambient) ========== */
.gold-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1;
}
.gold-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent); border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 1.5s);
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100%) scale(0.5); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.2); }
}
@media (prefers-reduced-motion: reduce) {
  .gold-particle { animation: none; display: none; }
}

/* ========== CHOCOLATE RIBBON (section separator) ========== */
.ribbon-sep {
  height: 60px; position: relative; overflow: hidden;
}
.ribbon-sep::before {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.ribbon-sep .ribbon-diamond {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px; height: 10px;
  border: 1px solid var(--accent);
  background: var(--bg);
}

/* ========== SITEMAP PAGE ========== */
.sitemap-list { list-style: none; margin: 0; padding: 0; }
.sitemap-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { font-size: 15px; }

/* ========== 404 ========== */
.page-404 {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 60px clamp(16px, 4vw, 32px);
}
.page-404 h1 { font-size: clamp(60px, 12vw, 120px); color: var(--accent); margin-bottom: 16px; }
.page-404 p { font-size: 17px; color: var(--accent-2); margin-bottom: 32px; }

/* ========== WARM THEME MICRO-EFFECTS ========== */
.mevsim-badge {
  transition: background 280ms cubic-bezier(.4,0,.2,1), box-shadow 280ms cubic-bezier(.4,0,.2,1), color 280ms cubic-bezier(.4,0,.2,1);
}
.mevsim-badge:hover {
  background: rgba(201,169,110,0.08);
  box-shadow: 0 0 24px -4px rgba(201,169,110,0.18);
  color: var(--ink);
}

.step-icon {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), filter 360ms cubic-bezier(.2,.7,.2,1);
}
.step-card:hover .step-icon {
  transform: scale(1.15) translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(201,169,110,0.4));
}

.kisisel-visual img {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.kisisel-visual:hover img {
  transform: scale(1.03);
}

.mevsim-visual img {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.mevsim-visual:hover img {
  transform: scale(1.03);
}

.slider-item img {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.slider-item:hover img {
  transform: scale(1.03);
}

.footer-col a {
  position: relative;
}
.footer-col a::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.footer-col a:hover::before {
  width: 100%;
}

.page-content h2 {
  transition: border-color 280ms cubic-bezier(.4,0,.2,1);
}

.kurumsal-number {
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), text-shadow 400ms cubic-bezier(.2,.7,.2,1);
}
.kurumsal-content:hover .kurumsal-number {
  transform: scale(1.03);
  text-shadow: 0 0 40px rgba(201,169,110,0.15);
}

.box-3d {
  filter: drop-shadow(0 8px 24px rgba(201,169,110,0.12));
}

.gold-particle {
  width: 4px; height: 4px;
  box-shadow: 0 0 6px 1px rgba(201,169,110,0.3);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition-delay: 0ms !important; }
  .step-icon { transition: none !important; }
  .kisisel-visual img,
  .mevsim-visual img,
  .slider-item img { transition: none !important; }
  .step-card:hover .step-icon { transform: none; filter: none; }
  .kisisel-visual:hover img,
  .mevsim-visual:hover img,
  .slider-item:hover img { transform: none; }
  .kurumsal-number { transition: none !important; }
  .kurumsal-content:hover .kurumsal-number { transform: none; text-shadow: none; }
}

/* ========== DRAWER CLOSE ========== */
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line);
  border-radius: 4px; cursor: pointer;
  color: var(--ink); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1);
  z-index: 10;
}
.drawer-close:hover { border-color: var(--accent); color: var(--accent); }

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: none;
  z-index: 10;
}

/* ========== PRINT ========== */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  body { background: #fff; color: #111; }
  main { padding-top: 0; }
  a { color: #111; text-decoration: underline; }
}
