/* ═══════════════════════════════════════════════════════════
   THE ART BARBER — Premium Barbershop CSS
   Modern-Vintage · Dark · Gold · Swedish
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --clr-bg: #0d0d0d;
  --clr-bg-card: #141414;
  --clr-bg-card2: #1a1a1a;
  --clr-surface: #1e1e1e;
  --clr-border: rgba(255, 255, 255, 0.07);
  --clr-gold: #c9a84c;
  --clr-gold-light: #e8c97a;
  --clr-gold-dark: #9e7f34;
  --clr-copper: #b87333;
  --clr-text: #f0ece3;
  --clr-text-muted: #8a8680;
  --clr-text-dim: #5a5550;
  --clr-white: #ffffff;
  --clr-accent: var(--clr-gold);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 24px rgba(201, 168, 76, 0.35);

  --transition-fast: 0.2s ease;
  --transition-mid: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --navbar-h: 80px;
  --section-gap: 120px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ─── BASE BODY ─── */
body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-gold-dark); border-radius: var(--radius-pill); }

/* ─── SELECTION ─── */
::selection { background: rgba(201, 168, 76, 0.3); color: var(--clr-white); }

/* ─── LOADER ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }
.loader-scissors {
  font-size: 3rem;
  color: var(--clr-gold);
  animation: spinScissors 1.2s ease-in-out infinite alternate;
  display: block;
  margin-bottom: 16px;
}
@keyframes spinScissors {
  from { transform: rotate(-20deg) scale(0.9); }
  to { transform: rotate(20deg) scale(1.1); }
}
.loader-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--clr-text-muted);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ─── CUSTOM CURSOR ─── */
.custom-cursor {
  width: 10px;
  height: 10px;
  background: var(--clr-gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, background 0.2s ease;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transition: transform 0.4s ease, width 0.3s ease, height 0.3s ease;
  transform: translate(-50%, -50%);
}
body.cursor-hover .custom-cursor { transform: translate(-50%, -50%) scale(2); background: var(--clr-copper); }
body.cursor-hover .cursor-follower { width: 60px; height: 60px; border-color: rgba(184, 115, 51, 0.4); }
@media (pointer: coarse) { .custom-cursor, .cursor-follower { display: none !important; } }

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-fade { opacity: 0; transition: opacity 0.9s ease; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }

.reveal-up.visible,
.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-100 { transition-delay: 0.1s !important; }
.delay-150 { transition-delay: 0.15s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-250 { transition-delay: 0.25s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-350 { transition-delay: 0.35s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-450 { transition-delay: 0.45s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-700 { transition-delay: 0.7s !important; }

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-gap { padding: var(--section-gap) 0; }
.gold-text { color: var(--clr-gold); }
.amp { color: var(--clr-gold); font-style: italic; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-gold);
  transition: all var(--transition-mid);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: transparent;
  color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-mid);
}
.btn-ghost:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-bg);
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--transition-mid);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(201, 168, 76, 0.6); }
.full-w { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 64px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
.eyebrow.light { color: rgba(201, 168, 76, 0.8); }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-header h2 em { color: var(--clr-gold); font-style: italic; }
.section-desc {
  max-width: 580px;
  margin: 20px auto 0;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}
.header-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.rule-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}
.rule-icon { color: var(--clr-gold); font-size: 0.85rem; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: background var(--transition-mid), backdrop-filter var(--transition-mid), box-shadow var(--transition-mid);
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background var(--transition-mid);
}
.navbar.scrolled::before {
  background: rgba(10, 10, 10, 0.92);
}
.navbar.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border), 0 4px 32px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.logo-link { display: flex; align-items: center; }
.nav-logo {
  height: 68px;
  width: auto;
  /* Beyaz logolu PNG'yi koyu zemin üzerinde göster: invert + screen blend */
  filter: invert(1);
  mix-blend-mode: screen;
  transition: filter var(--transition-mid), transform var(--transition-fast);
}
.navbar.scrolled .nav-logo {
  filter: invert(1);
  mix-blend-mode: screen;
}
.logo-link:hover .nav-logo { transform: scale(1.08); }

.nav-list {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 14px;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--transition-mid);
}
.nav-link:hover, .nav-link.active { color: var(--clr-white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-gold);
  transition: all var(--transition-mid);
  white-space: nowrap;
}
.btn-book:hover {
  background: transparent;
  color: var(--clr-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  transition: all var(--transition-mid);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-menu {
  transition: all var(--transition-mid);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.badge-line { display: block; width: 40px; height: 1px; background: var(--clr-gold); }
.hero-badge span:not(.badge-line) {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: var(--fw-bold);
  line-height: 0.92;
  color: var(--clr-white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.title-line1 {
  display: block;
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: 0.55em;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
}
.title-line2 {
  display: block;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 50%, var(--clr-copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  padding: 20px 48px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  line-height: 1;
}
.stat-suffix { font-size: 1.2rem; color: var(--clr-gold); }
.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: var(--clr-border); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUpDown 2.5s ease infinite;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: var(--radius-pill);
  animation: scrollWheel 1.5s ease infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
@keyframes fadeUpDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(-6px); opacity: 0.9; }
}

/* Slider dots */
.hero-dots {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition-mid);
  border: 1px solid rgba(255,255,255,0.2);
}
.dot.active { background: var(--clr-gold); transform: scale(1.5); }

/* ═══ MARQUEE BAND ═══ */
.marquee-band {
  background: var(--clr-gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-bg);
  font-weight: var(--fw-medium);
}
.marquee-track .sep { color: rgba(0,0,0,0.4); font-size: 0.5rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══ SERVICES ═══ */
.services { background: var(--clr-bg-card); }
.services .section-header { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 60px;
}

/* ── Luxury Minimal Card ── */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
  text-align: center;
  align-items: center;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card:hover::before {
  transform: translateX(100%);
}

/* Icon Box */
.svc-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: all var(--transition-mid);
  position: relative;
}

.service-card:hover .svc-icon-box {
  background: var(--clr-gold);
  color: var(--clr-bg);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.svc-icon-box.gold {
  border-color: var(--clr-gold);
  background: rgba(201, 168, 76, 0.15);
}

/* Pop Tag */
.pop-tag {
  position: absolute;
  top: -10px;
  right: -20px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-size: 0.55rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Content */
.svc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--clr-white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Footer */
.svc-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.svc-price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--clr-gold);
  font-weight: var(--fw-medium);
}

.svc-book-link {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.svc-book-link:hover {
  color: var(--clr-gold);
  gap: 12px;
}

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 20px; }
}






/* Price Table */
.price-section {
  background: var(--clr-bg-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-table-header {
  padding: 28px 36px 20px;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.price-table-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--clr-white);
}
.price-table-header p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--clr-text-dim);
}
.price-table { padding: 8px 0; }
.price-row {
  display: flex;
  align-items: center;
  padding: 16px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition-fast);
}
.price-row:hover { background: rgba(201, 168, 76, 0.04); }
.price-row:last-child { border-bottom: none; }
.highlight-row { background: rgba(201, 168, 76, 0.06); }
.highlight-row:hover { background: rgba(201, 168, 76, 0.1); }

.price-name {
  font-size: 0.95rem;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.price-dots {
  flex: 1;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  margin: 0 16px;
  min-width: 20px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  flex-shrink: 0;
}
.badge-popular {
  font-size: 0.6rem;
  background: var(--clr-gold);
  color: var(--clr-bg);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  font-family: var(--font-sans);
}

/* ═══ PARALLAX QUOTE ═══ */
.parallax-quote {
  position: relative;
  height: 460px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}
.pq-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
}
.big-quote {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--clr-gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
  opacity: 0.6;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.4;
  margin-bottom: 20px;
}
cite {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-style: normal;
}

/* ═══ GALLERY ═══ */
.gallery { background: var(--clr-bg); }
.gallery-masonry {
  columns: 4;
  column-gap: 12px;
  padding: 0;
}
.gallery-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
}
/* No special treatment needed for tall in CSS columns – natural image height handles it */
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-mid);
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex !important; }
.lb-inner { max-width: 90vw; max-height: 90vh; }
.lb-inner img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--radius-md); }
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--clr-white);
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  z-index: 10;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-white);
  font-size: 3rem;
  opacity: 0.6;
  z-index: 10;
  padding: 16px;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}
.lb-nav:hover { opacity: 1; color: var(--clr-gold); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ═══ ABOUT ═══ */
.about { background: var(--clr-bg-card); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--clr-bg-card);
  z-index: 2;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-years-badge {
  position: absolute;
  top: 24px;
  right: 0;
  width: 90px;
  height: 90px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-gold);
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  color: var(--clr-bg);
  line-height: 1;
}
.badge-word {
  font-size: 0.5rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-bg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}

.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--clr-white);
}
.about-text h2 em { color: var(--clr-gold); font-style: italic; }
.about-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--clr-gold);
  font-size: 0.8rem;
  margin: 4px 0;
}
.about-divider .rule-line { width: 40px; }
.about-text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-size: 0.97rem;
}
.about-features { display: flex; flex-direction: column; gap: 12px; margin: 8px 0; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--clr-text);
}
.feature-item i { color: var(--clr-gold); font-size: 0.9rem; flex-shrink: 0; }

/* ═══ BOOKING BANNER ═══ */
.booking-banner {
  position: relative;
  padding: 100px 24px;
  background: url('../assets/shop-interior.webp') center/cover no-repeat;
  text-align: center;
}
.bb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}
.bb-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.bb-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--clr-white);
  font-weight: var(--fw-bold);
}
.bb-content p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

/* ═══ CONTACT ═══ */
.contact { background: var(--clr-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: border-color var(--transition-mid), transform var(--transition-fast);
}
.contact-card:hover { border-color: rgba(201,168,76,0.3); transform: translateX(4px); }
.cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.cc-text h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
  font-weight: var(--fw-medium);
}
.cc-text p, .cc-text a {
  font-size: 0.95rem;
  color: var(--clr-text);
  transition: color var(--transition-fast);
  line-height: 1.5;
}
.cc-text p + p { margin-top: 2px; }
.cc-text a:hover { color: var(--clr-gold); }

.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 1rem;
  transition: all var(--transition-mid);
}
.social-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Hours Card */
.hours-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.hours-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--clr-white);
  margin-bottom: 24px;
}
.hours-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--clr-text-muted); }
.hours-list li span:last-child { color: var(--clr-text); font-weight: var(--fw-medium); }
.hours-weekend span:first-child { color: var(--clr-gold) !important; }
.hours-weekend span:last-child { color: var(--clr-gold) !important; }
.hours-closed span:first-child { color: var(--clr-text-dim) !important; }
.hours-closed span:last-child { color: #c0392b !important; font-weight: var(--fw-medium); letter-spacing: 0.05em; }

/* ═══ FOOTER ═══ */
.footer {
  background: #000000;
  border-top: 1px solid var(--clr-border);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-logo {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 1;
  display: block;
}

/* Tipografik footer logosu */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-icon {
  font-size: 1.4rem;
  color: var(--clr-gold);
  line-height: 1;
  transform: rotate(-45deg);
  display: block;
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  color: var(--clr-white);
  line-height: 1;
}
.footer-brand-tagline {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--clr-gold);
  text-transform: uppercase;
}
.footer-brand p { color: var(--clr-text-muted); font-size: 0.9rem; line-height: 1.7; max-width: 320px; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--clr-gold); }

.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}
.footer-contact i { color: var(--clr-gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: var(--clr-text-muted); transition: color var(--transition-fast); }
.footer-contact a:hover { color: var(--clr-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--clr-text-dim); }
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--clr-gold) !important;
  opacity: 0.7;
}

/* ═══ SCROLL TO TOP ═══ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition-mid);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--clr-gold-light); transform: translateY(-3px); }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1100px) {

  .gallery-masonry { columns: 3; }
  .about-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 32px; }
}

@media (max-width: 900px) {
  :root { --section-gap: 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding: 16px 28px; }
  .hero-dots { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .nav-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all var(--transition-mid);
  }
  .nav-menu.open { opacity: 1; pointer-events: all; transform: none; }
  .nav-list { flex-direction: column; gap: 8px; text-align: center; }
  .nav-link { font-size: 1.4rem; letter-spacing: 0.15em; padding: 12px 24px; }
  .nav-cta { display: none; }

  .hero-title { font-size: clamp(3.5rem, 15vw, 7rem); }
  .hero-stats { display: none; }
  .hero-cta { flex-direction: column; align-items: center; }


  .gallery-masonry { columns: 2; }
  .price-row { padding: 14px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { flex-direction: column; }

  .parallax-quote { background-attachment: scroll; height: auto; padding: 80px 24px; }
  .booking-banner { background-attachment: scroll; }

  .contact-grid { gap: 40px; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .hero-cta .btn-ghost { display: none; }
  .scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
  .about-visual { height: 320px; }
  .about-img-main { width: 100%; height: 80%; }
  .about-img-accent { display: none; }
  .about-years-badge { right: 16px; }
}
