/* ============================================================
   BASE — Reset, CSS Variables, Typography, Buttons, Helpers
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f5f0e8;
  --sand: #e8dcc8;
  --gold: #b8966e;
  --gold-light: #d4b896;
  --dark: #1c1a17;
  --dark-mid: #2e2b26;
  --charcoal: #3d3930;
  --text-muted: #8a8070;
  --white: #faf8f4;
  --navy: #1a2535;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Section layout ── */
section { padding: 120px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Shared typography ── */
.section-eyebrow {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light) 0%, #f0ddb8 40%, var(--gold) 60%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.text-muted {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 52px;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1.5px solid var(--gold);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(0); }

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 32px rgba(184, 150, 110, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 52px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 150, 110, 0.08);
  box-shadow: 0 0 32px rgba(184, 150, 110, 0.15);
}

.btn-dark {
  background: var(--dark);
  color: var(--gold);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-dark:hover {
  background: var(--dark-mid);
}

/* ── Accessibility: keyboard focus ── */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── KVKK cookie consent banner ── */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  max-width: 640px;
  width: calc(100% - 32px);
  background: rgba(28, 26, 23, 0.96);
  border: 1px solid rgba(184, 150, 110, 0.25);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  font-size: 13px;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 0; color: var(--cream); }
.cookie-consent a { color: var(--gold-light); text-decoration: underline; }
.cookie-accept {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-accept:hover { background: var(--gold-light); }
@media (max-width: 560px) {
  .cookie-consent { flex-direction: column; align-items: stretch; text-align: center; }
}
