/* Bu dosya npm run styles ile otomatik oluşturulur. */
/* style.css */
/* ============================================================
   KALPTEN ORGANİZASYON - Tasarım Sistemi & Temel Stiller
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Ana Renkler */
  --color-navy-darkest: #060E1A;
  --color-navy-dark: #0A1628;
  --color-navy: #0F1E36;
  --color-navy-medium: #162A4A;
  --color-navy-light: #1E3A5F;
  --color-gold: #C9A84C;
  --color-gold-light: #D4B85A;
  --color-gold-lighter: #E2C97A;
  --color-gold-dark: #A88A3D;
  --color-gold-darker: #8B7232;

  /* Yardımcı Renkler */
  --color-cream: #FDF8F0;
  --color-cream-dark: #F5F0E8;
  --color-gray: #9CA3AF;
  --color-gray-light: #D1D5DB;
  --color-gray-dark: #6B7280;
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Fonksiyonel Renkler */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #128C7E;
  --color-error: #DC2626;
  --color-success: #16A34A;
  --color-info: #3B82F6;
  --color-star: #F59E0B;

  /* Gradient'lar */
  --gradient-gold: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  --gradient-navy: linear-gradient(180deg, var(--color-navy-dark), var(--color-navy));
  --gradient-hero-overlay: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.5) 40%, rgba(10,22,40,0.8) 100%);
  --gradient-card: linear-gradient(180deg, rgba(15,30,54,0.9) 0%, rgba(10,22,40,0.95) 100%);

  /* Tipografi */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Outfit', 'Inter', sans-serif;

  /* Font Boyutları */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Satır Yükseklikleri */
  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* Boşluklar */
  --space-2xs: 0.125rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 800px;
  --container-padding: 1.5rem;
  --section-padding: 5rem;

  /* Border */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 50px;
  --border-gold: 1px solid rgba(201, 168, 76, 0.25);
  --border-gold-strong: 1px solid rgba(201, 168, 76, 0.5);
  --border-navy: 1px solid rgba(30, 58, 95, 0.3);

  /* Gölgeler */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.2);
  --shadow-gold-lg: 0 8px 40px rgba(201, 168, 76, 0.3);

  /* Geçişler */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-navbar: 1000;
  --z-mobile-bar: 999;
  --z-whatsapp: 998;
  --z-cookie: 1050;
  --z-lightbox: 1100;
  --z-modal: 1200;
  --z-toast: 1300;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-cream-dark);
  background-color: var(--color-navy-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--color-gold-light); }

a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

::selection {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-navy-dark); }
::-webkit-scrollbar-thumb {
  background: var(--color-navy-medium);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-dark); }

/* ===== TİPOGRAFİ ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: var(--leading-tight);
  font-weight: 700;
}

h1, .h1 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h2, .h2 { font-size: var(--text-4xl); letter-spacing: -0.01em; }
h3, .h3 { font-size: var(--text-2xl); }
h4, .h4 { font-size: var(--text-xl); }
h5, .h5 { font-size: var(--text-lg); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title span {
  color: var(--color-gold);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--color-gray);
  max-width: 640px;
  line-height: var(--leading-relaxed);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--navy { background-color: var(--color-navy); }
.section--dark { background-color: var(--color-navy-dark); }
.section--cream {
  background-color: var(--color-cream);
  color: var(--color-navy-dark);
}
.section--cream h2,
.section--cream h3,
.section--cream h4 { color: var(--color-navy-dark); }
.section--cream .section-description { color: var(--color-gray-dark); }
.section--cream .section-label::before { background: var(--color-gold-dark); }

.section--gradient {
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-navy-dark) 100%);
}

/* Gold accent divider */
.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  margin: var(--space-xl) auto;
}

/* Grid sistem */
.grid { display: grid; gap: var(--space-xl); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

/* Flex yardımcıları */
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--column { flex-direction: column; }
.flex--wrap { flex-wrap: wrap; }
.flex--gap-sm { gap: var(--space-sm); }
.flex--gap-md { gap: var(--space-md); }
.flex--gap-lg { gap: var(--space-lg); }
.flex--gap-xl { gap: var(--space-xl); }

/* ===== UTILITY CLASSES ===== */
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-cream { color: var(--color-cream); }
.text-gray { color: var(--color-gray); }
.text-navy { color: var(--color-navy-dark); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(15, 30, 54, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-gold);
}

.glass--light {
  background: rgba(253, 248, 240, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 248, 240, 0.1);
}

/* ===== ANIMATION CLASSES ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slide-left {
  transform: translateX(-30px);
}
.animate-on-scroll.slide-left.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.slide-right {
  transform: translateX(30px);
}
.animate-on-scroll.slide-right.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.scale-in {
  transform: scale(0.9);
}
.animate-on-scroll.scale-in.is-visible {
  transform: scale(1);
}

/* Stagger delay for children */
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > .animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > .animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }
.stagger-children > .animate-on-scroll:nth-child(9) { transition-delay: 0.45s; }
.stagger-children > .animate-on-scroll:nth-child(10) { transition-delay: 0.5s; }
.stagger-children > .animate-on-scroll:nth-child(11) { transition-delay: 0.55s; }
.stagger-children > .animate-on-scroll:nth-child(12) { transition-delay: 0.6s; }

/* Shimmer effect for gold elements */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--color-gold-dark) 0%,
    var(--color-gold-lighter) 25%,
    var(--color-gold) 50%,
    var(--color-gold-lighter) 75%,
    var(--color-gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pulse for WhatsApp */
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Fade in keyframe */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Gold border glow */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 168, 76, 0.2); }
  50% { border-color: rgba(201, 168, 76, 0.5); }
}

/* Lazy loading placeholder */
.lazy-image {
  opacity: 1;
  transition: opacity var(--transition-slow);
}

.lazy-image.loaded {
  opacity: 1;
}

/* Demo badge */
.demo-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: rgba(201, 168, 76, 0.9);
  color: var(--color-navy-dark);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Page transition */
.page-content {
  animation: fadeIn 0.4s ease;
}

/* components.css */
/* ============================================================
   KALPTEN ORGANİZASYON - Bileşen Stilleri
   ============================================================ */

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.navbar--scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-sm) 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: 2;
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo-icon svg {
  width: 36px;
  height: 36px;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.navbar__logo-text span {
  color: var(--color-gold);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__link {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-gold);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}

.navbar__cta {
  margin-left: var(--space-md);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 24px;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTONLAR ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--color-navy-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--call {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-cream-dark);
}

.btn--call:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--sm { padding: 8px 18px; font-size: var(--text-xs); }
.btn--lg { padding: 16px 36px; font-size: var(--text-base); }

.btn--block { width: 100%; }

.btn svg, .btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Section cream button overrides */
.section--cream .btn--primary {
  background: var(--color-navy-dark);
  color: var(--color-gold);
  border-color: var(--color-navy-dark);
}
.section--cream .btn--primary:hover {
  background: var(--color-navy-medium);
  border-color: var(--color-navy-medium);
  box-shadow: var(--shadow-lg);
}
.section--cream .btn--outline {
  color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
}
.section--cream .btn--outline:hover {
  background: var(--color-navy-dark);
  color: var(--color-gold);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hero__slide.active {
  opacity: 1;
  z-index: 2;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 6s ease;
}

.hero__slide.active .hero__slide-bg {
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero__label {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
}

.hero__title span {
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-cream-dark);
  max-width: 540px;
  margin-bottom: var(--space-2xl);
  line-height: var(--leading-relaxed);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.7s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.9s;
}

/* Hero Navigation */
.hero__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero__nav-btn:hover {
  background: rgba(201, 168, 76, 0.3);
  border-color: var(--color-gold);
}

.hero__nav-btn--prev { left: var(--space-xl); }
.hero__nav-btn--next { right: var(--space-xl); }

.hero__nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Hero Dots */
.hero__dots {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: var(--space-sm);
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero__dot.active {
  background: var(--color-gold);
  width: 32px;
  border-radius: var(--radius-full);
}

.hero__dot:hover {
  background: rgba(201, 168, 76, 0.6);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-2xl);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-gray);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { height: 0; opacity: 0; }
  50% { height: 40px; opacity: 1; }
  100% { height: 40px; opacity: 0; }
}

/* ===== HIZMET KARTLARI ===== */
.card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.5);
}

.card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 62%;
  overflow: hidden;
}

.card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image {
  transform: scale(1.08);
}

.card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  z-index: 1;
}

.card__content {
  padding: var(--space-lg);
  position: relative;
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-gold);
  font-size: var(--text-2xl);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.card__footer {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

/* Cream section card overrides */
.section--cream .card {
  background: var(--color-white);
  border-color: rgba(0, 0, 0, 0.06);
}
.section--cream .card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}
.section--cream .card__title { color: var(--color-navy-dark); }
.section--cream .card__text { color: var(--color-gray-dark); }

/* ===== PAKET KARTLARI ===== */
.package-card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold-lg);
  border-color: var(--color-gold);
}

.package-card--featured {
  border-color: var(--color-gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.08) 0%, rgba(15,30,54,0.95) 100%);
}

.package-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.package-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.package-card__list {
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.package-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--color-cream-dark);
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.package-card__list li:last-child { border-bottom: none; }

.package-card__list li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-card__cta {
  margin-top: auto;
}

/* ===== FEATURE CARDS (Neden Biz) ===== */
.feature-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.feature-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.15);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--color-gold);
  transform: scale(1.1);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: var(--leading-relaxed);
}

/* ===== REVIEW CARDS ===== */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-carousel__track {
  display: flex;
  gap: var(--space-xl);
  transition: transform var(--transition-slow);
}

.review-card {
  flex: 0 0 350px;
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-gold);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__name {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--color-white);
  font-size: var(--text-sm);
}

.review-card__source {
  font-size: var(--text-xs);
  color: var(--color-gray);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-star);
}

.review-card__text {
  font-size: var(--text-sm);
  color: var(--color-cream-dark);
  line-height: var(--leading-relaxed);
  font-style: italic;
}

.review-card__text::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-gold);
  line-height: 0;
  position: relative;
  top: 8px;
  margin-right: 4px;
}

/* ===== STAR RATING ===== */
.star-rating {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
}

.star-rating__star {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-gray);
  background: none;
  border: none;
  padding: 0;
}

.star-rating__star svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: fill var(--transition-fast), transform var(--transition-fast);
}

.star-rating__star:hover svg,
.star-rating__star.active svg {
  fill: var(--color-star);
  transform: scale(1.15);
}

.star-rating__star:hover ~ .star-rating__star svg {
  fill: var(--color-gray);
}

/* Rating modal */
.rating-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.rating-modal.active {
  display: flex;
}

.rating-modal__content {
  background: var(--color-navy);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.3s ease;
}

.rating-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  cursor: pointer;
  border: none;
  background: none;
}

.rating-modal__icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

.rating-modal__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.rating-modal__text {
  color: var(--color-gray);
  margin-bottom: var(--space-xl);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ===== GALERİ ===== */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.gallery__filter-btn {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-gray);
  border: 1px solid rgba(201, 168, 76, 0.2);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery__filter-btn:hover,
.gallery__filter-btn.active {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--color-navy-medium);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
}

.gallery__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
  font-size: var(--text-xs);
  color: var(--color-cream-dark);
  font-family: var(--font-accent);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery__item:hover .gallery__item-label {
  transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox__image-container {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox__image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.lightbox__close:hover {
  background: rgba(201, 168, 76, 0.3);
  border-color: var(--color-gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.lightbox__nav:hover {
  background: rgba(201, 168, 76, 0.3);
  border-color: var(--color-gold);
}

.lightbox__nav--prev { left: var(--space-xl); }
.lightbox__nav--next { right: var(--space-xl); }

.lightbox__counter {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--color-gray);
}

/* ===== FORM ===== */
.form {
  max-width: 720px;
}

.form--centered { margin: 0 auto; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-cream-dark);
  margin-bottom: var(--space-sm);
}

.form__label--required::after {
  content: ' *';
  color: var(--color-gold);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 30, 54, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-cream);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  outline: none;
  background: rgba(15, 30, 54, 0.95);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-gray-dark);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__select option {
  background: var(--color-navy);
  color: var(--color-cream);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
  cursor: pointer;
}

.form__checkbox-label {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: var(--leading-normal);
}

.form__checkbox-label a {
  color: var(--color-gold);
  text-decoration: underline;
}

.form__error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-xs);
  display: none;
}

.form__group.error .form__error { display: block; }
.form__group.error .form__input,
.form__group.error .form__select,
.form__group.error .form__textarea {
  border-color: var(--color-error);
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form__success.active { display: block !important; }

.form__success-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

.form__success-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.form__success-text {
  color: var(--color-gray);
  font-size: var(--text-sm);
}

/* Honeypot field */
.form__honey { display: none !important; }

/* Section cream form overrides */
.section--cream .form__input,
.section--cream .form__select,
.section--cream .form__textarea {
  background: var(--color-white);
  border-color: var(--color-gray-light);
  color: var(--color-navy-dark);
}
.section--cream .form__input:focus,
.section--cream .form__select:focus,
.section--cream .form__textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: var(--color-white);
}
.section--cream .form__label { color: var(--color-navy-dark); }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-navy-darkest);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand-text {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-lg);
  max-width: 300px;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-top: var(--space-md);
}

.footer__location svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__title {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-gray);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer__links a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer__links a::before {
  content: '›';
  color: var(--color-gold);
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer__links a:hover::before { opacity: 1; }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  transition: color var(--transition-fast);
}

.footer__contact-item:hover { color: var(--color-gold); }

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__social a {
  width: 40px;
  height: 40px;
  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(--color-gold);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  transform: translateY(-3px);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-gray-dark);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--color-gray-dark);
}

.footer__legal a:hover { color: var(--color-gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-whatsapp);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  animation: pulse-ring 2s infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-navy);
  color: var(--color-cream);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  border: var(--border-gold);
}

.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ===== MOBILE CONTACT BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-mobile-bar);
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: var(--space-sm);
}

.mobile-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-sm);
}

.mobile-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 10px;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-bar__btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.mobile-bar__btn--call {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.mobile-bar__btn--quote {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.mobile-bar__btn svg {
  width: 16px;
  height: 16px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: var(--space-lg) var(--space-xl);
}

.cookie-banner.active { display: block; }

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.cookie-banner__text {
  font-size: var(--text-sm);
  color: var(--color-gray);
  flex: 1;
}

.cookie-banner__text a { color: var(--color-gold); }

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ===== ACCORDION (SSS) ===== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border: var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.accordion__item:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.accordion__header {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  transition: all var(--transition-base);
}

.accordion__header:hover { color: var(--color-gold); }

.accordion__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform var(--transition-base);
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion__content {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: var(--leading-relaxed);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--color-gray);
  padding: var(--space-lg) 0;
}

.breadcrumb a {
  color: var(--color-gray);
}

.breadcrumb a:hover { color: var(--color-gold); }

.breadcrumb__separator {
  color: var(--color-gold);
  font-size: var(--text-xs);
}

.breadcrumb__current {
  color: var(--color-gold);
}

/* ===== PAGE HERO (Alt Sayfalar) ===== */
.page-hero {
  padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
  background: var(--color-navy);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.page-hero__description {
  font-size: var(--text-lg);
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  text-align: center;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.instagram-section__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-white);
  text-decoration: none;
  transition: all var(--transition-base);
}

.instagram-section__link:hover {
  color: var(--color-gold);
  transform: scale(1.02);
}

.instagram-section__link svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
}

.instagram-section__handle {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-gray);
  margin-top: var(--space-md);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.service-detail__text h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.service-detail__text p {
  color: var(--color-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.service-detail__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.service-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
}

.service-detail__feature-icon {
  color: var(--color-gold);
  font-size: var(--text-lg);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail__feature-text {
  font-size: var(--text-sm);
  color: var(--color-cream-dark);
}

.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-gold);
}

.service-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Related services */
.related-services {
  margin-top: var(--space-4xl);
}

.related-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: var(--z-toast);
  background: var(--color-navy);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
  font-size: var(--text-sm);
}

.toast.active {
  transform: translateX(-50%) translateY(0);
}

.toast__icon { font-size: var(--text-xl); }
.toast--success .toast__icon { color: var(--color-success); }
.toast--error .toast__icon { color: var(--color-error); }

/* ===== BİGEM STYLE CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.contact-form-wrapper {
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.contact-info {
  padding-top: var(--space-sm);
}

.contact-info h2 {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.contact-info > p {
  color: var(--color-gray-300);
  font-size: var(--text-base);
  margin-bottom: var(--space-2xl);
}

.contact-detail {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-detail:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  background: rgba(201, 168, 76, 0.05);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--color-gold), #e5ca7b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: var(--text-sm);
  color: var(--color-gray-300);
  margin: 0;
}

.contact-detail a {
  color: var(--color-gold-light);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-btn.whatsapp { background: #25d366; color: #fff; }
.social-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-btn.phone-btn { background: var(--color-navy-medium); color: var(--color-gold); border: 1px solid var(--color-gold); }
.social-btn.email-btn { background: var(--color-gold); color: var(--color-navy); }

.social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.btn-whatsapp-submit {
  background: #25d366;
  color: #ffffff;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-submit:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Success Modal Overlay */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.success-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal {
  background: var(--color-navy);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.success-modal-overlay.active .success-modal {
  transform: scale(1);
}

.success-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-gray-400);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.success-modal-close:hover {
  color: var(--color-gold);
}

.success-modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  font-size: 2.2rem;
}

.success-modal h3 {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.success-modal p {
  color: var(--color-gray-300);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.success-modal-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* responsive.css */
/* ============================================================
   KALPTEN ORGANİZASYON - Responsive Stiller
   ============================================================ */

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4rem;
    --container-padding: 1.25rem;
  }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  /* Navbar */
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-3xl);
    gap: var(--space-lg);
    transition: right var(--transition-slow);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 1;
  }

  .navbar__menu.active { right: 0; }

  .navbar__link {
    font-size: var(--text-lg);
    width: 100%;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }

  .navbar__link::after { display: none; }

  .navbar__menu .navbar__cta {
    margin-left: 0;
    margin-top: var(--space-lg);
    width: 100%;
  }

  .navbar__menu .navbar__cta.btn { width: 100%; }
  .navbar__inner > .navbar__cta { display: none; }

  .navbar__toggle { display: flex; }

  /* Mobile menu overlay */
  .navbar__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  .navbar__overlay.active { display: block; }

  /* Hero */
  .hero { min-height: 500px; max-height: 800px; }
  .hero__title { max-width: 100%; }
  .hero__nav-btn--prev { left: var(--space-md); }
  .hero__nav-btn--next { right: var(--space-md); }
  .hero__scroll { display: none; }

  /* Service Detail */
  .service-detail__content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .service-detail__features {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  /* Related Services */
  .related-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Package Cards */
  .package-card {
    padding: var(--space-xl);
  }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
  }

  .grid--2 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }

  /* Navbar */
  .navbar { padding: var(--space-md) 0; }
  .navbar--scrolled { padding: var(--space-sm) 0; }
  .navbar__logo-text { font-size: var(--text-lg); }

  /* Hero */
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    max-height: none;
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 100px;
  }

  .hero__label { font-size: var(--text-xs); margin-bottom: var(--space-md); }
  .hero__subtitle { font-size: var(--text-base); margin-bottom: var(--space-xl); }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__nav-btn { width: 40px; height: 40px; }
  .hero__dots { bottom: 80px; }

  /* Cards */
  .card__content { padding: var(--space-md); }

  /* Form */
  .form__row { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .gallery__filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery__filters::-webkit-scrollbar { display: none; }
  .gallery__filter-btn { flex-shrink: 0; }

  /* Lightbox */
  .lightbox__nav--prev { left: var(--space-sm); }
  .lightbox__nav--next { right: var(--space-sm); }
  .lightbox__close { top: var(--space-md); right: var(--space-md); }

  /* Reviews */
  .review-card { flex: 0 0 300px; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Related services */
  .related-services__grid {
    grid-template-columns: 1fr;
  }

  /* Mobile Bar */
  .mobile-bar { display: block; }
  .whatsapp-float { bottom: 80px; right: var(--space-md); }

  /* Cookie banner */
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  /* Page Hero */
  .page-hero {
    padding: calc(60px + var(--space-3xl)) 0 var(--space-2xl);
    text-align: left;
  }

  .page-hero__description {
    margin: 0;
  }

  /* Breadcrumb */
  .breadcrumb { padding: var(--space-md) 0; }

  /* Adjust body padding for mobile bar */
  body { padding-bottom: 64px; }

  /* Section descriptions */
  .section-description { font-size: var(--text-base); }
  .section-title { font-size: var(--text-3xl); }

  /* Instagram */
  .instagram-section__link {
    font-size: var(--text-xl);
    flex-direction: column;
  }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
  :root {
    --section-padding: 2.5rem;
    --container-padding: 1rem;
  }

  .grid--4 { grid-template-columns: 1fr; }

  /* Hero */
  .hero__content { padding-bottom: 90px; }
  .hero__nav-btn { display: none; }

  /* Package Cards */
  .package-card { padding: var(--space-lg); }

  /* Feature Cards */
  .feature-card { padding: var(--space-lg) var(--space-md); }

  /* Reviews */
  .review-card {
    flex: 0 0 280px;
    padding: var(--space-lg);
  }

  /* Gallery */
  .gallery__grid { grid-template-columns: 1fr 1fr; }

  /* Lightbox */
  .lightbox__nav { width: 40px; height: 40px; }

  /* Mobile bar smaller */
  .mobile-bar__btn {
    font-size: 0.65rem;
    padding: 8px;
    gap: 3px;
  }

  .mobile-bar__btn svg { width: 14px; height: 14px; }

  /* Accordion */
  .accordion__header {
    padding: var(--space-md);
    font-size: var(--text-base);
  }
  .accordion__content { padding: 0 var(--space-md) var(--space-md); }
}

/* ===== LARGE DESKTOP (min-width: 1440px) ===== */
@media (min-width: 1440px) {
  :root {
    --container-max: 1400px;
  }

  .hero__title { font-size: var(--text-6xl); }
}

/* ===== HOVER MEDIA QUERY ===== */
@media (hover: none) {
  .card:hover { transform: none; }
  .btn:hover { transform: none; }
  .footer__social a:hover { transform: none; }
  .gallery__item:hover img { transform: none; }
  .gallery__item-overlay { opacity: 0.5; }
  .gallery__item-label { transform: translateY(0); }
}

/* ===== PRINT ===== */
@media print {
  .navbar,
  .whatsapp-float,
  .mobile-bar,
  .cookie-banner,
  .hero__nav-btn,
  .hero__dots,
  .hero__scroll,
  .btn--whatsapp {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    padding-bottom: 0;
  }

  .section { padding: 1rem 0; }
  .footer { background: white; border-top: 1px solid #ccc; }

  a { color: inherit; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
}

/* redesign.css */
:root {
  --wine: #551326;
  --wine-dark: #3e101d;
  --wine-deep: #181012;
  --rose: #b68a54;
  --coral: #d8c2a2;
  --cream: #f1ede4;
  --cream-deep: #e5ded2;
  --paper: #faf8f2;
  --ink: #1c1718;
  --ink-soft: #6b6263;
  --line: rgba(28, 23, 24, 0.18);
  --white-line: rgba(255, 255, 255, 0.2);
  --white: #fffdf9;
  --green: #187d55;
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
  --display: "Cormorant Garamond", Garamond, Georgia, serif;
  --shell: min(1280px, calc(100vw - 64px));
  --header-height: 88px;
  --radius: 2px;
  --ease: cubic-bezier(.22, .8, .26, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.home-redesign {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.home-redesign img { display: block; max-width: 100%; }
body.home-redesign a { color: inherit; text-decoration: none; }
body.home-redesign button,
body.home-redesign input,
body.home-redesign select,
body.home-redesign textarea { font: inherit; }
body.home-redesign button { color: inherit; }
body.home-redesign ::selection { color: var(--white); background: var(--wine); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white) !important;
  background: var(--wine);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.shell { width: var(--shell); margin-inline: auto; }
.section-space { padding-block: clamp(105px, 11vw, 158px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: height .4s var(--ease), color .35s ease, background-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(250, 248, 242, .95);
  box-shadow: 0 10px 30px rgba(58, 31, 36, .07);
  border-color: rgba(39, 25, 29, .1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--rose);
  background: var(--wine-deep);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px currentColor;
  line-height: 1;
}
.brand-mark svg { width: 28px; height: 28px; overflow: visible; }
.brand-mark path { stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark::before {
  content: "K";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--white);
  font: 600 12px/1 var(--serif);
  transform: translate(-50%, -51%);
}
.brand-mark::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: -1px;
  right: 0;
  background: currentColor;
  border: 2px solid var(--wine-deep);
  transform: rotate(45deg);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -.025em; }
.brand-copy small { margin-top: 5px; font-size: 9px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding-block: 13px;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transition: right .3s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; flex-direction: column; line-height: 1.25; text-align: right; }
.header-phone span { font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .66; }
.header-phone strong { margin-top: 3px; font-size: 13px; }
.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
  cursor: pointer;
  transition: transform .25s var(--ease), color .25s ease, background-color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button i { font-size: 12px; transition: transform .25s ease; }
.button:hover i { transform: translateX(3px); }
.button--small { min-height: 46px; padding-inline: 20px; }
.button--wine { color: var(--white) !important; background: var(--wine); }
.site-header:not(.is-scrolled) .button--wine { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .25); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.button--cream { color: var(--wine-deep) !important; background: var(--cream); }
.button--outline-light { color: var(--white) !important; border-color: rgba(255, 255, 255, .35); }
.button--outline-light:hover { color: var(--wine-deep) !important; background: var(--cream); border-color: var(--cream); }
.button--whatsapp { color: var(--white) !important; background: var(--green); }
.button--full { width: 100%; }
.menu-button {
  width: 46px;
  aspect-ratio: 1;
  padding: 0;
  display: none;
  place-items: center;
  position: relative;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
}
.menu-button span { position: absolute; width: 17px; height: 1px; background: currentColor; transition: transform .3s ease, top .3s ease; }
.menu-button span:first-child { transform: translateY(-3px); }
.menu-button span:last-child { transform: translateY(3px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 28px max(24px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: var(--wine-deep);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-14px);
  transition: .3s var(--ease);
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
.mobile-menu nav a { padding: 16px 0; display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--white-line); font-family: var(--serif); font-size: clamp(28px, 8vw, 44px); }
.mobile-menu nav a span { font-family: var(--sans); font-size: 11px; opacity: .5; }
.mobile-menu__contact { margin-top: 36px; }
.mobile-menu__contact p { margin: 0 0 4px; color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.mobile-menu__contact a { color: var(--coral); font-weight: 700; }

.hero { min-height: 730px; height: 100svh; position: relative; color: var(--white); overflow: hidden; background: var(--wine-deep); }
.hero::before { content: ""; position: absolute; z-index: 4; inset: calc(var(--header-height) + 18px) 22px 22px; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity .9s ease, visibility .9s ease; }
.hero-slide.is-active { visibility: visible; opacity: 1; z-index: 1; }
.hero-slide > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.74) contrast(1.05); transform: scale(1.015); transition: transform 9s linear; }
.hero-slide.is-active > img { transform: scale(1.045); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18, 10, 12, .9) 0%, rgba(24, 12, 16, .62) 47%, rgba(20, 10, 13, .16) 78%), linear-gradient(0deg, rgba(15, 8, 10, .68) 0%, transparent 43%); }
.hero-content { height: 100%; padding-top: clamp(155px, 19vh, 215px); position: relative; z-index: 2; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 11px; color: var(--wine); font-size: 11px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.eyebrow--light { color: rgba(255,255,255,.76); }
.hero h1, .hero h2 {
  max-width: 890px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 6.8vw, 102px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .92;
}
.hero h1 em, .hero h2 em, .intro h2 em, .services-head h2 em, .section-heading h2 em, .process-intro h2 em, .quote-copy h2 em, .faq-title h2 em, .footer-statement em, .why h2 em {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}
.hero h1 em, .hero h2 em { color: var(--coral); }
.hero-lead { max-width: 610px; margin: 32px 0 0; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-block: 7px; border-bottom: 1px solid currentColor; color: var(--wine) !important; font-size: 13px; font-weight: 700; }
.text-link i { font-size: 11px; transition: transform .25s ease; }
.text-link:hover i { transform: translateX(3px); }
.text-link--light { color: var(--white) !important; }
.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 23px;
}
.hero-count { display: flex; align-items: center; gap: 10px; font-family: var(--display); }
.hero-count strong { font-size: 14px; }
.hero-count small { font-size: 10px; opacity: .6; }
.hero-count > span { width: 40px; height: 1px; background: rgba(255,255,255,.4); }
.hero-dots { display: flex; align-items: center; gap: 6px; }
.hero-dots button { width: 52px; height: 24px; padding: 11px 0; background: none; border: 0; cursor: pointer; }
.hero-dots button span { display: block; width: 100%; height: 2px; position: relative; overflow: hidden; background: rgba(255,255,255,.3); }
.hero-dots button span::after { content: ""; position: absolute; inset: 0 100% 0 0; background: var(--white); }
.hero-dots button.is-active span::after { animation: slideProgress 6s linear forwards; }
.hero-arrows { display: flex; gap: 7px; margin-left: auto; }
.hero-arrows button, .rail-arrows button {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.hero-arrows button:hover, .rail-arrows button:hover { color: var(--wine-deep); background: var(--cream); }
.hero-autoplay {
  min-height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  background: rgba(16, 12, 14, .2);
  border: 1px solid rgba(255,255,255,.3);
  font: 700 9px/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.hero-autoplay:hover { color: var(--wine-deep); background: var(--cream); }
.hero.is-paused .hero-dots button.is-active span::after { animation-play-state: paused; }
.hero-scroll { position: absolute; z-index: 6; right: 32px; bottom: 46px; display: flex; align-items: center; gap: 14px; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll i { animation: bounceDown 1.8s infinite; }
@keyframes slideProgress { to { right: 0; } }
@keyframes bounceDown { 50% { transform: translateY(5px); } }

.marquee { color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-track { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: repeat(6, 1fr); animation: none; }
.marquee span { min-height: 78px; padding: 0 18px; display: flex; align-items: center; gap: 12px; border-left: 1px solid var(--line); font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.marquee span:last-child { border-right: 1px solid var(--line); }
.marquee small { color: var(--wine); font-family: var(--serif); font-size: 12px; letter-spacing: 0; }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 70px 11vw; }
.intro-heading h2, .services-head h2, .section-heading h2, .process-intro h2, .quote-copy h2, .faq-title h2, .why h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.03;
}
.intro-heading h2 em, .section-heading h2 em, .faq-title h2 em, .why h2 em { color: var(--wine); }
.intro-copy { padding-top: 45px; }
.intro-copy p { margin: 0; font-size: 19px; line-height: 1.65; }
.intro-copy p.muted { margin: 18px 0 28px; color: var(--ink-soft); font-size: 15px; }
.intro-stats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-stats > div { padding: 32px 0; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.intro-stats > div:not(:first-child) { padding-left: 42px; }
.intro-stats > div:last-child { border-right: 0; }
.intro-stats strong { font-family: var(--serif); font-size: 31px; font-weight: 500; }
.intro-stats span { margin-top: 4px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.services-section { color: var(--white); background: #151113; overflow: hidden; }
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.services-head h2 { color: var(--white); }
.services-head h2 em { color: var(--coral); }
.services-head__right { max-width: 400px; display: flex; align-items: flex-end; gap: 30px; }
.services-head__right p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.rail-arrows { flex: 0 0 auto; display: flex; gap: 8px; }
.service-rail {
  margin-top: 62px;
  padding: 0 max(32px, calc((100vw - 1280px) / 2)) 24px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.service-rail::-webkit-scrollbar { display: none; }
.service-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.service-card {
  width: clamp(300px, 30vw, 440px);
  aspect-ratio: .78;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: #170a0e;
}
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19,6,11,.94), rgba(21,7,12,.03) 68%); }
.service-card img { width: 100%; height: 100%; object-fit: cover; opacity: .77; transition: transform .65s var(--ease), opacity .5s ease; }
.service-card:hover img { transform: scale(1.045); opacity: .9; }
.service-number { position: absolute; z-index: 2; top: 25px; right: 25px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.service-card__body { position: absolute; z-index: 2; inset: auto 30px 31px; }
.service-card__body p { margin: 0 0 11px; color: var(--coral); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.service-card__body h3 { margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(30px, 2.7vw, 42px); font-weight: 500; line-height: 1.07; }
.service-card__body > span { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700; }
.service-card__body > span i { font-size: 10px; transition: transform .25s ease; }
.service-card:hover .service-card__body > span i { transform: translateX(4px); }
.services-all { margin-top: 42px; text-align: center; }

.projects { background: var(--paper); }
.section-heading { margin-bottom: 55px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.section-heading > p { max-width: 380px; margin: 0 0 10px; color: var(--ink-soft); }
.project-grid { display: grid; grid-template-columns: 1fr .76fr; gap: 22px; }
.project-card { min-height: 400px; position: relative; overflow: hidden; background: var(--cream-deep); }
.project-card--wide { min-height: 560px; }
.project-card--tall { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; position: absolute; object-fit: cover; transition: transform .75s var(--ease); }
.project-card:hover img { transform: scale(1.04); }
.project-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(0deg, rgba(22,8,13,.78), transparent); }
.project-card__overlay { position: absolute; z-index: 2; inset: auto 28px 27px; display: flex; align-items: flex-end; justify-content: space-between; color: var(--white); }
.project-card__overlay span { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.project-card__overlay h3 { margin: 4px 0 0; color: var(--white); font-family: var(--serif); font-size: 30px; font-weight: 500; }
.project-card__overlay p { margin: 8px 0 0; color: rgba(255,255,255,.76); font-size: 12px; letter-spacing: .01em; }
.project-card__overlay b { width: 43px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 12px; transition: color .25s ease, background .25s ease; }
.project-card:hover .project-card__overlay b { color: var(--wine-deep); background: var(--white); }

.reviews { background: var(--cream); }
.reviews .section-heading { align-items: flex-end; }
.reviews-score { min-width: 175px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 13px; }
.reviews-score strong { grid-row: span 2; color: var(--wine); font: 500 42px/.9 var(--serif); letter-spacing: -.045em; }
.reviews-score > span { display: flex; gap: 3px; color: var(--rose); font-size: 10px; }
.reviews-score small { color: var(--ink-soft); font-size: 11px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.review-note { min-height: 330px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.review-note:last-child { border-right: 0; }
.review-note__mark { height: 62px; color: var(--wine); font: 500 72px/.85 var(--serif); }
.review-note > p { margin: 30px 0 40px; font: 500 clamp(22px, 2vw, 29px)/1.25 var(--serif); letter-spacing: -.02em; }
.review-note footer { margin-top: auto; display: flex; flex-direction: column; }
.review-note footer strong { font-size: 13px; }
.review-note footer span { margin-top: 3px; color: var(--ink-soft); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.reviews-link { margin-top: 30px; display: flex; justify-content: flex-end; }

.process { color: var(--white); background: var(--wine-dark); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 11vw; }
.process-intro { align-self: start; position: sticky; top: 130px; }
.process-intro h2 { color: var(--white); font-size: clamp(42px, 4.5vw, 67px); }
.process-intro h2 em { color: var(--coral); }
.process-intro > p:not(.eyebrow) { max-width: 480px; margin: 26px 0 30px; color: rgba(255,255,255,.7); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--white-line); }
.process-list li { padding: 36px 0; display: grid; grid-template-columns: 70px 1fr; gap: 10px; border-bottom: 1px solid var(--white-line); }
.process-list li > span { padding-top: 6px; color: var(--coral); font-size: 11px; font-weight: 700; }
.process-list h3 { margin: 0 0 9px; color: var(--white); font-family: var(--serif); font-size: clamp(27px, 2.5vw, 37px); font-weight: 500; }
.process-list p { max-width: 480px; margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.why { background: var(--cream); }
.why .section-heading > p { align-self: flex-end; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.why-card { min-height: 350px; padding: 28px; position: relative; border-right: 1px solid var(--line); }
.why-card:last-child { border: 0; }
.why-card > span { position: absolute; top: 22px; right: 22px; color: var(--wine); font-size: 10px; font-weight: 700; }
.why-icon { width: auto; height: 28px; margin-bottom: 74px; display: flex; align-items: center; color: var(--wine); background: transparent; border-radius: 0; font-size: 19px; }
.why-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.quote-section { color: var(--white); background: #151113; }
.quote-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 9vw; align-items: center; }
.quote-copy h2 { color: var(--white); }
.quote-copy h2 em { color: var(--coral); }
.quote-copy > p:not(.eyebrow) { max-width: 500px; margin: 28px 0 36px; color: rgba(255,255,255,.66); }
.quote-contact { display: flex; flex-direction: column; gap: 14px; }
.quote-contact a { display: flex; align-items: center; gap: 14px; }
.quote-contact a > i { width: 42px; aspect-ratio: 1; display: grid; place-items: center; color: var(--coral); border: 1px solid var(--white-line); border-radius: 50%; }
.quote-contact span { display: flex; flex-direction: column; }
.quote-contact small { color: rgba(255,255,255,.48); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.quote-contact strong { font-size: 13px; }
.quote-form { padding: clamp(28px, 4vw, 50px); color: var(--ink); background: var(--paper); border: 1px solid #cfc5b7; border-radius: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label:not(.consent) { margin-bottom: 19px; display: flex; flex-direction: column; gap: 7px; }
.quote-form label > span { font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(39,25,29,.28);
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease;
}
.quote-form textarea { resize: vertical; min-height: 95px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--wine); }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9e9293; }
.consent { margin: 2px 0 20px; display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 11px; }
.consent input { width: 15px; margin-top: 4px; accent-color: var(--wine); }
.consent a { color: var(--wine) !important; text-decoration: underline !important; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin-top: 14px; padding: 12px 14px; color: var(--wine-dark); background: #eee7dc; border-left: 3px solid var(--wine); font-size: 12px; }
.form-status.is-success { color: #0f5f3e; background: #e1f0e8; border-color: #187d55; }
.form-status.is-warning { color: #6d4500; background: #f8edd3; border-color: #c7871d; }
.quote-form button[disabled] { cursor: wait; opacity: .72; transform: none; }
.form-note { margin: 12px 0 0; color: var(--ink-soft); font-size: 10px; text-align: center; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; }
.faq-title { align-self: start; position: sticky; top: 120px; }
.faq-title .text-link { margin-top: 35px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; padding: 28px 0; display: flex; justify-content: space-between; gap: 22px; color: var(--ink); background: none; border: 0; text-align: left; cursor: pointer; }
.accordion-item button span { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); }
.accordion-item button i { margin-top: 8px; color: var(--wine); font-size: 12px; transition: transform .25s ease; }
.accordion-item.is-open button i { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.accordion-panel p { max-width: 680px; margin: 0; padding: 0 50px 28px 0; color: var(--ink-soft); font-size: 14px; }
.accordion-item.is-open .accordion-panel { max-height: 180px; }

.instagram-strip { display: grid; grid-template-columns: .72fr 1.28fr; color: var(--white); background: var(--wine-dark); border-top: 1px solid rgba(255,255,255,.18); }
.instagram-strip__copy { padding: 50px max(30px, calc((100vw - 1280px) / 2)); padding-right: 40px; display: flex; flex-direction: column; justify-content: center; }
.instagram-strip__copy p { margin: 0 0 7px; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.instagram-strip__copy a { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 32px); }
.instagram-strip__copy i { margin-left: 8px; font-size: 11px; }
.instagram-images { min-height: 230px; display: grid; grid-template-columns: repeat(4, 1fr); }
.instagram-images img { width: 100%; height: 100%; object-fit: cover; }

.new-footer { padding-top: 75px; color: var(--white); background: #100c0e; }
.brand--light { color: var(--white) !important; }
.footer-top { padding-bottom: 52px; display: grid; grid-template-columns: .7fr 1fr .7fr; align-items: center; border-bottom: 1px solid var(--white-line); }
.footer-statement { font-family: var(--display); font-size: clamp(28px, 3.4vw, 48px); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; text-align: center; }
.footer-statement em { color: var(--coral); }
.footer-cta { justify-self: end; display: inline-flex; align-items: center; gap: 13px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.footer-grid { padding-block: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 45px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid h3 { margin: 0 0 9px; color: rgba(255,255,255,.43); font: 700 10px var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.73); font-size: 13px; }
.footer-grid a:hover { color: var(--coral); }
.footer-grid i { margin-left: 5px; font-size: 9px; }
.footer-bottom { padding: 22px 0 25px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.footer-bottom > div { display: flex; gap: 24px; }

.floating-whatsapp { position: fixed; z-index: 900; right: 24px; bottom: 24px; min-height: 50px; padding: 0 19px; display: flex; align-items: center; gap: 9px; color: var(--white) !important; background: var(--green); border-radius: 999px; box-shadow: 0 13px 30px rgba(12,73,49,.25); font-size: 12px; font-weight: 700; transition: transform .25s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp i { font-size: 20px; }
.mobile-contact-bar { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Numbered editorial dividers make each chapter unmistakable. */
.section-space[data-section-label] {
  --section-rule: var(--line);
  --section-label-color: var(--ink-soft);
  position: relative;
  padding-top: clamp(150px, 13vw, 190px);
}
.section-space[data-section-label]::before {
  content: attr(data-section-label);
  height: 64px;
  padding-left: max(32px, calc((100vw - 1280px) / 2));
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--section-label-color);
  border-top: 1px solid var(--section-rule);
  border-bottom: 1px solid var(--section-rule);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.section-space[data-section-label]::after {
  content: attr(data-section-number);
  width: 72px;
  height: 64px;
  position: absolute;
  top: 0;
  right: max(32px, calc((100vw - 1280px) / 2));
  display: grid;
  place-items: center;
  color: var(--section-label-color);
  border-left: 1px solid var(--section-rule);
  border-right: 1px solid var(--section-rule);
  font-family: var(--serif);
  font-size: 15px;
}
.services-section,
.process,
.quote-section {
  --section-rule: rgba(255,255,255,.2) !important;
  --section-label-color: rgba(255,255,255,.6) !important;
}
.intro-heading h2,
.services-head h2,
.section-heading h2,
.process-intro h2,
.quote-copy h2,
.faq-title h2,
.why h2 {
  max-width: 860px;
  font-size: clamp(40px, 4.6vw, 66px);
  letter-spacing: -.042em;
}
.section-heading { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.services-head { padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.2); }
.project-grid { margin-top: 8px; }
.why-card { min-height: 330px; }
.footer-statement { font-family: var(--serif); }

/* Existing inner pages receive the same brand atmosphere without changing their content. */
body:not(.home-redesign) {
  --color-navy-darkest: #100c0e;
  --color-navy-dark: #181012;
  --color-navy: #3e101d;
  --color-navy-medium: #4a1323;
  --color-navy-light: #551326;
  --color-gold: #b68a54;
  --color-gold-light: #d8c2a2;
  --color-gold-lighter: #e6d8c4;
  --color-gold-dark: #8f673a;
  --color-cream: #f1ede4;
  --color-cream-dark: #e5ded2;
  --font-heading: "Cormorant Garamond", Garamond, Georgia, serif;
  --font-body: "Jost", Arial, sans-serif;
  --font-accent: "Jost", Arial, sans-serif;
}
body:not(.home-redesign) .navbar { background: rgba(16,12,14,.96); border-bottom: 1px solid rgba(255,255,255,.14); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
body:not(.home-redesign) .navbar__logo-text { font-family: var(--font-heading); font-size: 23px; }
body:not(.home-redesign) .navbar__logo-icon { color: var(--color-gold); }
body:not(.home-redesign) .navbar__logo { position: relative; }
body:not(.home-redesign) .navbar__logo-icon { padding: 6px; background: #181012; border-radius: 50%; box-shadow: inset 0 0 0 1px currentColor; }
body:not(.home-redesign) .navbar__logo::before {
  content: "K";
  width: 40px;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 50%;
  color: #fffdf9;
  font: 600 12px/1 var(--font-heading);
  text-align: center;
  transform: translateY(-51%);
}
body:not(.home-redesign) .navbar__logo::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  z-index: 4;
  left: 31px;
  top: 5px;
  background: var(--color-gold);
  border: 2px solid #181012;
  transform: rotate(45deg);
}
body:not(.home-redesign) .page-hero { min-height: 430px; padding-top: 180px; display: flex; align-items: center; position: relative; overflow: hidden; background: #181012; border-bottom: 1px solid rgba(255,255,255,.2); }
body:not(.home-redesign) .page-hero::before { content: ""; position: absolute; inset: 110px 24px 24px; border: 1px solid rgba(255,255,255,.14); }
body:not(.home-redesign) .page-hero__title { font-family: var(--font-heading); font-size: clamp(42px, 6vw, 72px); font-weight: 500; }
body:not(.home-redesign) .section--cream { color: #1c1718; background: #f1ede4; }
body:not(.home-redesign) .section--cream h1,
body:not(.home-redesign) .section--cream h2,
body:not(.home-redesign) .section--cream h3 { color: #27191d; }
body:not(.home-redesign) .card,
body:not(.home-redesign) .feature-card,
body:not(.home-redesign) .package-card,
body:not(.home-redesign) .contact-form-wrapper { border-radius: 3px; }
body:not(.home-redesign) .footer { background: #100c0e !important; }
body:not(.home-redesign) .btn { border-radius: 2px; }
body:not(.home-redesign) .whatsapp-float { background: #187d55; }
body:not(.home-redesign) .navbar__inner > .navbar__cta {
  color: #27191d;
  background: #eadfce;
  border-color: #eadfce;
}
body:not(.home-redesign) .service-detail h2,
body:not(.home-redesign) .service-detail h3 { color: #f8f2e9 !important; }
body:not(.home-redesign) .service-detail__feature-text { color: rgba(248, 242, 233, .82); }

@media (max-width: 1024px) {
  body:not(.home-redesign) .navbar__menu { background: rgba(16, 12, 14, .985); }
  body:not(.home-redesign) .navbar__link { color: #f8f2e9; border-bottom-color: rgba(248, 242, 233, .12); }
  body:not(.home-redesign) .navbar__link--active { color: #d6bc97; }
}

@media (max-width: 768px) {
  body:not(.home-redesign) .mobile-bar { background: rgba(16, 12, 14, .98); border-top-color: rgba(248, 242, 233, .18); }
  body:not(.home-redesign) .mobile-bar__btn { color: #f8f2e9; background: transparent; border-color: rgba(248, 242, 233, .24); }
  body:not(.home-redesign) .mobile-bar__btn--quote,
  body:not(.home-redesign) .mobile-bar__btn--whatsapp { color: #27191d; background: #eadfce; }
}

/* Ortak çerez tercih paneli */
.cookie-banner {
  display: none;
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: #f8f2e9;
  background: rgba(16, 12, 14, .98);
  border: 1px solid rgba(214, 188, 151, .36);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.cookie-banner.active { display: block; }
.cookie-banner__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px 28px;
}
.cookie-banner__copy strong { display: block; margin-bottom: 5px; font: 600 20px/1.2 var(--font-heading); }
.cookie-banner__copy p { margin: 0; color: rgba(248, 242, 233, .76); font-size: 13px; line-height: 1.6; }
.cookie-banner__copy a { color: #d6bc97; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-choice {
  min-height: 42px;
  padding: 10px 15px;
  color: #f8f2e9;
  background: transparent;
  border: 1px solid rgba(248, 242, 233, .35);
  border-radius: 2px;
  font: 600 12px/1.2 var(--font-body);
  cursor: pointer;
}
.cookie-choice:hover, .cookie-choice:focus-visible { border-color: #d6bc97; outline: 2px solid transparent; }
.cookie-choice--primary { color: #27191d; background: #eadfce; border-color: #eadfce; }
.cookie-banner .cookie-choice--primary { color: #27191d; }
.cookie-banner__settings {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(248, 242, 233, .15);
}
.cookie-banner__settings label { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 13px; }
.cookie-banner__settings small { color: rgba(248, 242, 233, .58); }
.cookie-preferences-link {
  display: block;
  margin: 14px auto;
  padding: 4px;
  color: inherit;
  opacity: .62;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 720px) {
  .cookie-banner { right: 8px; bottom: 74px; left: 8px; }
  .cookie-banner__inner { width: calc(100% - 28px); grid-template-columns: 1fr; padding: 16px 0; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-choice { flex: 1 1 135px; }
}

@media (max-width: 1120px) {
  :root { --shell: min(100% - 42px, 1280px); }
  .desktop-nav { gap: 17px; }
  .header-phone { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2) { border-right: 0; }
  .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 840px) {
  :root { --shell: calc(100vw - 36px); --header-height: 76px; }
  .site-header.is-scrolled { height: 68px; }
  .desktop-nav, .header-actions .button { display: none; }
  .menu-button { display: grid; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 720px; }
  .hero::before { inset: calc(var(--header-height) + 12px) 12px 12px; }
  .hero-content { padding-top: clamp(145px, 19vh, 180px); }
  .hero h1, .hero h2 { font-size: clamp(52px, 13vw, 82px); }
  .hero-shade { background: linear-gradient(90deg, rgba(25,8,15,.8), rgba(25,8,15,.25)), linear-gradient(0deg, rgba(20,6,12,.74), transparent 64%); }
  .hero-controls { bottom: 27px; }
  .hero-scroll { display: none; }
  .marquee { overflow-x: auto; scrollbar-width: none; }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-track { width: max-content; margin: 0; grid-template-columns: repeat(6, minmax(165px, 1fr)); }
  .intro-grid, .process-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 42px; }
  .intro-copy { padding-top: 0; }
  .intro-stats { margin-top: 15px; }
  .services-head { align-items: flex-start; flex-direction: column; }
  .services-head__right { max-width: 100%; width: 100%; justify-content: space-between; }
  .service-rail { padding-left: 18px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card--tall { grid-row: auto; min-height: 520px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-note { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-note:last-child { border-bottom: 0; }
  .process-grid { gap: 70px; }
  .process-intro, .faq-title { position: static; }
  .quote-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
  .instagram-strip { grid-template-columns: 1fr; }
  .instagram-strip__copy { padding: 38px 20px; }
  .instagram-images { min-height: 190px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-statement { order: 3; grid-column: 1 / -1; text-align: left; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 590px) {
  :root { --shell: calc(100vw - 30px); }
  .section-space { padding-block: 82px; }
  .section-space[data-section-label] { padding-top: 126px; }
  .section-space[data-section-label]::before { height: 54px; padding-left: 18px; }
  .section-space[data-section-label]::after { width: 54px; height: 54px; right: 15px; }
  .hero { min-height: 690px; height: 100svh; }
  .hero-slide > img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(27,8,15,.77), rgba(27,8,15,.3)), linear-gradient(0deg, rgba(22,7,13,.85), transparent 72%); }
  .hero-content { padding-top: 130px; }
  .hero h1, .hero h2 { font-size: clamp(49px, 15.2vw, 68px); line-height: .94; }
  .hero-lead { margin-top: 22px; font-size: 15px; }
  .hero-actions { margin-top: 27px; flex-direction: column; align-items: flex-start; gap: 15px; }
  .button { min-height: 50px; padding-inline: 21px; }
  .hero-controls { justify-content: space-between; }
  .hero-dots { display: none; }
  .hero-arrows button { width: 42px; }
  .hero-autoplay { min-height: 42px; padding-inline: 11px; }
  .hero-autoplay span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .marquee { padding-block: 0; }
  .marquee span { min-height: 68px; font-size: 9px; }
  .intro-heading h2, .services-head h2, .section-heading h2, .process-intro h2, .quote-copy h2, .faq-title h2, .why h2 { font-size: 42px; }
  .intro-copy p { font-size: 17px; }
  .intro-stats { grid-template-columns: 1fr; }
  .intro-stats > div, .intro-stats > div:not(:first-child) { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .intro-stats > div:last-child { border-bottom: 0; }
  .services-head__right p { max-width: 230px; }
  .service-rail { margin-top: 44px; gap: 14px; }
  .service-card { width: calc(100vw - 48px); }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .project-grid { gap: 14px; }
  .project-card, .project-card--wide, .project-card--tall { min-height: 420px; }
  .reviews .section-heading { align-items: flex-start; }
  .reviews-score { margin-top: 4px; }
  .review-note { padding: 28px; }
  .process-grid { gap: 55px; }
  .process-list li { grid-template-columns: 48px 1fr; padding: 28px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 295px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .why-card:last-child { border-bottom: 0 !important; }
  .why-icon { margin-bottom: 48px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 27px 22px; }
  .quote-contact strong { font-size: 12px; }
  .instagram-images { grid-template-columns: repeat(2, 1fr); }
  .instagram-images img:nth-child(n+3) { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cta { justify-self: start; }
  .footer-statement { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 18px; }
  .footer-bottom { padding-bottom: 88px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .floating-whatsapp { display: none; }
  .mobile-contact-bar { position: fixed; z-index: 950; inset: auto 0 0; padding: 8px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 7px; color: var(--white); background: rgba(29,12,18,.96); border-top: 1px solid rgba(255,255,255,.12); }
  .mobile-contact-bar a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: 12px; font-weight: 700; }
  .mobile-contact-bar a:last-child { color: var(--wine-deep); background: var(--cream); border-color: var(--cream); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   2026 inner-page system: the same editorial language as the new homepage.
   -------------------------------------------------------------------------- */
body:not(.home-redesign) {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body:not(.home-redesign) .container {
  width: var(--shell);
  max-width: none;
  padding-inline: 0;
}
body:not(.home-redesign) .navbar {
  min-height: 82px;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--white);
  background: rgba(16, 12, 14, .84);
  border-bottom: 1px solid rgba(255,255,255,.15);
  box-shadow: none;
}
body:not(.home-redesign) .navbar--scrolled {
  min-height: 70px;
  background: rgba(16, 12, 14, .97);
  box-shadow: 0 12px 36px rgba(16,12,14,.18);
}
body:not(.home-redesign) .navbar__inner { min-height: inherit; gap: 30px; }
body:not(.home-redesign) .navbar__logo { gap: 12px; }
body:not(.home-redesign) .navbar__logo-text {
  color: var(--white);
  font: 600 23px/1 var(--serif);
  letter-spacing: -.02em;
}
body:not(.home-redesign) .navbar__menu { margin-left: auto; gap: clamp(18px, 2.3vw, 34px); }
body:not(.home-redesign) .navbar__link {
  padding-block: 14px;
  color: rgba(255,255,255,.78);
  font: 600 13px/1.2 var(--sans);
}
body:not(.home-redesign) .navbar__link::after { height: 1px; background: var(--coral); }
body:not(.home-redesign) .navbar__link:hover,
body:not(.home-redesign) .navbar__link--active { color: var(--white); }
body:not(.home-redesign) .navbar__inner > .navbar__cta,
body:not(.home-redesign) .navbar__menu .navbar__cta {
  min-height: 44px;
  margin-left: 0;
  padding: 0 20px;
  color: var(--wine-deep);
  background: var(--cream);
  border: 1px solid var(--cream);
}

body:not(.home-redesign) .page-hero {
  min-height: 450px;
  padding: 165px 0 86px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(182,138,84,.19), transparent 28%),
    linear-gradient(135deg, #100c0e 0%, #3e101d 70%, #551326 100%);
  border-bottom: 0;
  text-align: left !important;
}
body:not(.home-redesign) .page-hero::before {
  inset: 104px 22px 22px;
  border-color: rgba(255,255,255,.17);
}
body:not(.home-redesign) .page-hero::after {
  content: "KALPTEN / BURSA";
  position: absolute;
  right: max(34px, calc((100vw - 1280px) / 2));
  bottom: 42px;
  color: rgba(255,255,255,.36);
  font: 600 9px/1 var(--sans);
  letter-spacing: .24em;
}
body:not(.home-redesign) .page-hero .container { position: relative; z-index: 1; }
body:not(.home-redesign) .page-hero__title {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font: 500 clamp(48px, 6vw, 78px)/.98 var(--serif);
  letter-spacing: -.045em;
}
body:not(.home-redesign) .breadcrumb {
  margin-top: 26px !important;
  padding: 0;
  display: flex !important;
  justify-content: flex-start !important;
  gap: 9px !important;
  color: rgba(255,255,255,.55) !important;
  font-size: 11px;
  letter-spacing: .05em;
}
body:not(.home-redesign) .breadcrumb a { color: rgba(255,255,255,.78) !important; }
body:not(.home-redesign) .breadcrumb__current { color: var(--coral) !important; }

.inner-trust-strip { color: var(--ink); background: var(--cream); border-bottom: 1px solid var(--line); }
.inner-trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.inner-trust-strip__grid > div {
  min-height: 94px;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.inner-trust-strip__grid > div:first-child { border-left: 1px solid var(--line); }
.inner-trust-strip__grid strong { font: 500 25px/1 var(--serif); }
.inner-trust-strip__grid span { margin-top: 7px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

body:not(.home-redesign) .section { padding-block: clamp(82px, 8vw, 118px); }
body:not(.home-redesign) .section:not(.section--navy):not(.section--cream):not(.service-planning) { color: var(--ink); background: var(--paper); }
body:not(.home-redesign) .section--cream { color: var(--ink); background: var(--cream); }
body:not(.home-redesign) .section--navy { color: var(--white); background: #151113 !important; }
body:not(.home-redesign) .section-title {
  margin: 0 0 24px;
  color: var(--ink);
  font: 500 clamp(38px, 4.3vw, 60px)/1.04 var(--serif);
  letter-spacing: -.04em;
}
body:not(.home-redesign) .section--navy .section-title { color: var(--white); }
body:not(.home-redesign) .section-description,
body:not(.home-redesign) .service-detail__text { color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
body:not(.home-redesign) .section--navy .section-description,
body:not(.home-redesign) .section--navy .text-gray { color: rgba(255,255,255,.64) !important; }
body:not(.home-redesign) .section-label {
  color: var(--coral) !important;
  font: 700 10px/1 var(--sans);
  letter-spacing: .18em;
}
body:not(.home-redesign) .section-label::before { height: 1px; background: currentColor; }
body:not(.home-redesign) .section-divider { height: 1px; background: var(--line); }
body:not(.home-redesign) .image-wrapper,
body:not(.home-redesign) .card__image-wrapper { border-radius: 0 !important; border: 1px solid var(--line) !important; }
body:not(.home-redesign) .image-wrapper img { filter: saturate(.82); }

body:not(.home-redesign) .btn {
  min-height: 50px;
  padding: 0 23px;
  border-width: 1px;
  border-radius: 2px;
  font: 700 12px/1 var(--sans);
}
body:not(.home-redesign) .btn--primary { color: var(--white); background: var(--wine); border-color: var(--wine); }
body:not(.home-redesign) .btn--primary:hover { color: var(--white); background: var(--wine-dark); border-color: var(--wine-dark); }
body:not(.home-redesign) .section--navy .btn--primary { color: var(--wine-deep); background: var(--cream); border-color: var(--cream); }
body:not(.home-redesign) .btn--whatsapp { color: var(--white); background: var(--green); border-color: var(--green); }

body:not(.home-redesign) .feature-card,
body:not(.home-redesign) .package-card,
body:not(.home-redesign) .card {
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 0 !important;
  box-shadow: none;
}
body:not(.home-redesign) .feature-card { min-height: 310px; padding: 34px; text-align: left !important; }
body:not(.home-redesign) .feature-card__icon { margin: 0 0 60px !important; justify-content: flex-start !important; color: var(--coral) !important; }
body:not(.home-redesign) .feature-card__title { font: 500 28px/1.12 var(--serif); }
body:not(.home-redesign) .feature-card__text { color: rgba(255,255,255,.62) !important; font-size: 13px; }

body:not(.home-redesign) .service-detail { color: var(--ink); background: var(--paper) !important; }
body:not(.home-redesign) .service-detail .grid--2 { align-items: start; gap: clamp(45px, 7vw, 95px); }
body:not(.home-redesign) .service-detail h2,
body:not(.home-redesign) .service-detail h3 { color: var(--ink) !important; }
body:not(.home-redesign) .service-detail__features {
  margin-top: 28px !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
  border-top: 1px solid var(--line);
}
body:not(.home-redesign) .service-detail__feature {
  min-height: 52px;
  margin: 0 !important;
  border-bottom: 1px solid var(--line);
}
body:not(.home-redesign) .service-detail__feature-text { color: var(--ink-soft); font-size: 13px; }
body:not(.home-redesign) .service-detail__feature-icon { color: var(--wine) !important; }

.service-planning { color: var(--white); background: var(--wine-dark) !important; }
.service-planning__head { max-width: 780px; }
.service-planning__head > span { color: var(--coral); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.service-planning__head h2 { margin: 17px 0 22px; color: var(--white); font: 500 clamp(40px, 4.5vw, 64px)/1 var(--serif); letter-spacing: -.04em; }
.service-planning__head p { max-width: 650px; margin: 0; color: rgba(255,255,255,.66); }
.service-planning__grid { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.18); }
.service-planning__grid article { min-height: 245px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.service-planning__grid article:last-child { border-right: 0; }
.service-planning__grid b { color: var(--coral); font-size: 10px; letter-spacing: .12em; }
.service-planning__grid h3 { margin: 70px 0 10px; color: var(--white); font: 500 25px/1.1 var(--serif); }
.service-planning__grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; }
.service-planning__action { padding: 26px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.service-planning__action p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }

body:not(.home-redesign) .gallery__filters {
  margin-bottom: 42px !important;
  padding-bottom: 18px;
  justify-content: flex-start;
  border-bottom: 1px solid var(--line);
}
body:not(.home-redesign) .gallery__filter-btn {
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
body:not(.home-redesign) .gallery__filter-btn.active,
body:not(.home-redesign) .gallery__filter-btn[aria-pressed="true"] { color: var(--white); background: var(--wine); border-color: var(--wine); }
body:not(.home-redesign) .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
body:not(.home-redesign) .gallery__item {
  min-height: 360px;
  border: 0;
  border-radius: 0;
  background: var(--cream-deep);
  cursor: zoom-in;
}
body:not(.home-redesign) .gallery__item:nth-child(4n + 1) { grid-row: span 2; min-height: 738px; }
body:not(.home-redesign) .gallery__img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84); }
body:not(.home-redesign) .gallery__item-label {
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(16,12,14,.84);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  font: 600 11px/1.35 var(--sans);
  transform: none;
}

body:not(.home-redesign) .contact-form-wrapper,
body:not(.home-redesign) .contact-info-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: none;
}
body:not(.home-redesign) .form__input,
body:not(.home-redesign) .form__select,
body:not(.home-redesign) .form__textarea {
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(28,23,24,.26);
  border-radius: 0;
}
body:not(.home-redesign) .form__label { color: var(--ink); font-size: 11px; letter-spacing: .05em; }
body:not(.home-redesign) iframe { filter: saturate(.7) contrast(.94); border-radius: 0 !important; }

body:not(.home-redesign) .footer {
  padding-top: 72px;
  color: var(--white);
  background: #100c0e !important;
  border-top: 1px solid rgba(255,255,255,.12);
}
body:not(.home-redesign) .footer__grid { padding-bottom: 52px; gap: 44px; }
body:not(.home-redesign) .footer__title {
  margin-bottom: 16px !important;
  color: rgba(255,255,255,.42) !important;
  font: 700 10px/1 var(--sans) !important;
  letter-spacing: .15em;
  text-transform: uppercase;
}
body:not(.home-redesign) .footer__brand-text { color: var(--white); font: 500 28px/1.1 var(--serif); }
body:not(.home-redesign) .footer__links { gap: 9px; }
body:not(.home-redesign) .footer__links a,
body:not(.home-redesign) .footer__contact-item,
body:not(.home-redesign) .footer__contact-item a { color: rgba(255,255,255,.7) !important; font-size: 13px; }
body:not(.home-redesign) .footer__bottom { margin-top: 0 !important; padding: 23px 0 !important; border-top: 1px solid rgba(255,255,255,.1) !important; }

body:not(.home-redesign) :focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; }

@media (max-width: 1024px) {
  body:not(.home-redesign) .navbar__menu {
    width: min(100%, 440px);
    max-width: none;
    padding: 112px 34px 40px;
    justify-content: flex-start;
    gap: 0;
    background: rgba(16,12,14,.99);
    border-left: 1px solid rgba(255,255,255,.14);
  }
  body:not(.home-redesign) .navbar__link { padding: 19px 0; color: var(--white); font: 500 30px/1 var(--serif); }
  body:not(.home-redesign) .navbar__toggle {
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.55);
  }
  .service-planning__grid { grid-template-columns: repeat(2, 1fr); }
  .service-planning__grid article:nth-child(2) { border-right: 0; }
  .service-planning__grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  body:not(.home-redesign) .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  body:not(.home-redesign) .gallery__item:nth-child(4n + 1) { grid-row: auto; min-height: 420px; }
}

@media (max-width: 720px) {
  body:not(.home-redesign) { padding-bottom: 68px; }
  body:not(.home-redesign) .container { width: calc(100vw - 30px); }
  body:not(.home-redesign) .navbar { min-height: 70px; }
  body:not(.home-redesign) .navbar__logo-text { font-size: 20px; }
  body:not(.home-redesign) .page-hero { min-height: 380px; padding: 132px 0 68px; }
  body:not(.home-redesign) .page-hero::before { inset: 84px 10px 10px; }
  body:not(.home-redesign) .page-hero::after { display: none; }
  body:not(.home-redesign) .page-hero__title { font-size: clamp(42px, 13vw, 59px); }
  body:not(.home-redesign) .breadcrumb { margin-top: 20px !important; flex-wrap: wrap; }
  .inner-trust-strip__grid { grid-template-columns: 1fr; }
  .inner-trust-strip__grid > div,
  .inner-trust-strip__grid > div:first-child { min-height: 70px; padding: 16px 0; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .inner-trust-strip__grid > div:last-child { border-bottom: 0; }
  .inner-trust-strip__grid strong { font-size: 22px; }
  body:not(.home-redesign) .section { padding-block: 72px; }
  body:not(.home-redesign) .section-title { font-size: 39px; }
  body:not(.home-redesign) .feature-card { min-height: 260px; }
  body:not(.home-redesign) .service-detail__features { grid-template-columns: 1fr; }
  .service-planning__grid { grid-template-columns: 1fr; }
  .service-planning__grid article,
  .service-planning__grid article:nth-child(2) { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .service-planning__grid article:last-child { border-bottom: 0; }
  .service-planning__grid h3 { margin-top: 42px; }
  .service-planning__action { align-items: flex-start; flex-direction: column; }
  body:not(.home-redesign) .gallery__filters { margin-inline: -15px; padding-inline: 15px; overflow-x: auto; flex-wrap: nowrap; }
  body:not(.home-redesign) .gallery__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  body:not(.home-redesign) .gallery__item,
  body:not(.home-redesign) .gallery__item:nth-child(4n + 1) { min-height: 260px; }
  body:not(.home-redesign) .gallery__item-label { inset: auto 8px 8px; padding: 10px; font-size: 9px; }
  body:not(.home-redesign) .footer { padding-top: 52px; }
  body:not(.home-redesign) .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  body:not(.home-redesign) .mobile-bar {
    padding: 7px;
    color: var(--white);
    background: rgba(16,12,14,.98);
    border-top: 1px solid rgba(255,255,255,.14);
  }
  body:not(.home-redesign) .mobile-bar__inner { gap: 7px; }
  body:not(.home-redesign) .mobile-bar__btn { min-height: 48px; border-radius: 999px; }
  body:not(.home-redesign) .whatsapp-float { display: none; }
  .cookie-banner { right: 8px; bottom: 74px; left: 8px; max-height: calc(100svh - 94px); overflow-y: auto; }
  .cookie-banner__inner { width: calc(100% - 28px); padding: 14px 0; gap: 12px; text-align: left; }
  .cookie-banner__copy strong { font-size: 17px; }
  .cookie-banner__copy p { font-size: 11px; line-height: 1.45; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
  .cookie-choice { min-height: 42px; padding: 8px 10px; font-size: 11px; }
  .cookie-choice[data-cookie-settings] { grid-column: 1 / -1; }
}
