/* =====================================================
   ATELIER YILMAZ – Meisterschneiderei
   CSS: Luxury & Refined Aesthetic
   Font: Cormorant Garamond (display) + Jost (body)
   Theme: Deep charcoal, cream, gold accents
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F5F3EF;
  --color-text: #1A1814;
  --color-text-secondary: #5C5549;
  --color-text-muted: #9A9286;
  --color-border: #E8E4DC;
  --color-border-light: #F0EDE8;
  --gold: #B8973A;
  --gold-light: #D4AE5A;
  --gold-pale: #F5ECD5;
  --color-error: #C0392B;
  --color-success: #27AE60;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(26,24,20,0.06);
  --shadow-md: 0 4px 20px rgba(26,24,20,0.09);
  --shadow-lg: 0 12px 40px rgba(26,24,20,0.12);
  --shadow-xl: 0 24px 60px rgba(26,24,20,0.15);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  /* Spacing */
  --space-section: clamp(60px, 10vw, 100px);
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
[data-theme="dark"] {
  --color-bg: #12110F;
  --color-surface: #1C1A17;
  --color-surface-alt: #221F1A;
  --color-text: #F0EDE5;
  --color-text-secondary: #B5AFA3;
  --color-text-muted: #7A7268;
  --color-border: #2E2B24;
  --color-border-light: #262320;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ===== SECTION BASE ===== */
.section {
  padding: var(--space-section) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(184,151,58,0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,151,58,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-sm { padding: 8px 20px; font-size: 0.75rem; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-needle {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: needleSpin 1.2s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes needleSpin {
  0%, 100% { transform: rotate(-30deg) scaleY(1); opacity: 0.6; }
  50% { transform: rotate(30deg) scaleY(0.7); opacity: 1; }
}

.preloader-inner span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo svg { color: var(--color-text); }

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
}

.lang-switcher a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding: 4px 6px;
  border-radius: 3px;
  transition: all var(--transition);
}

.lang-switcher a.active,
.lang-switcher a:hover {
  color: var(--gold);
  background: var(--gold-pale);
}

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--transition);
  border: 1.5px solid var(--color-border);
}

.theme-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-pale);
}

[data-theme="light"] .moon-icon { display: block; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: block; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: var(--radius);
  border: 1.5px solid var(--color-border);
  transition: border-color var(--transition);
}

.nav-burger:hover { border-color: var(--gold); }

.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== STATUS BAR ===== */
.status-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
  padding: 10px 0;
  margin-top: 80px;
}

.status-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

.status-indicator.open .status-dot {
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(39,174,96,0.2);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.closed .status-dot { background: var(--color-error); }

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(39,174,96,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(39,174,96,0.1); }
}

.status-hours { color: var(--color-text-muted); }

.status-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 500;
  margin-left: auto;
}

.status-phone:hover { color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,151,58,0.05) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(184,151,58,0.015) 40px,
      rgba(184,151,58,0.015) 41px
    );
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-text { max-width: 560px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,58,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}

.stat:first-child { padding-left: 0; }

.stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
}

.stat span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: flex-end; }

.hero-image-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 40px;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-dot {
  width: 6px;
  height: 32px;
  border-radius: 100px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--gold);
  border-radius: 100px;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ===== SERVICES ===== */
.services { background: var(--color-surface-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--color-surface);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: var(--color-surface-alt);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: white;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 420px;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  min-height: 400px;
}

.about-image-accent {
  position: absolute;
  bottom: 40px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.about-image-placeholder-sm {
  width: 100%;
  height: 100%;
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-years-badge {
  position: absolute;
  top: 30px;
  right: -10px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.years-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
}

.years-text {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

.about-content p {
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== GALLERY ===== */
.gallery { background: var(--color-surface-alt); }

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-filter {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  color: var(--color-text-secondary);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  transition: all var(--transition);
}

.gallery-item.hidden { display: none; }

.gallery-thumb {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-thumb:hover .gallery-overlay { opacity: 1; }

.gallery-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.gallery-zoom:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.gallery-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.gallery-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.gallery-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  font-weight: 400;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12,11,9,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-content {
  max-width: 800px;
  max-height: 80vh;
  width: 90%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lightbox-placeholder {
  width: 100%;
  height: 500px;
  background: var(--color-surface-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-text-muted);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); }

/* ===== REVIEWS ===== */
.reviews { background: var(--color-bg); }

.reviews-overall {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.reviews-score {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.score-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-text);
  line-height: 1;
}

.score-stars { display: flex; gap: 4px; }

.score-count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(184,151,58,0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
}

.review-service {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.rev-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1rem;
}

.rev-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.rev-dots {
  display: flex;
  gap: 6px;
}

.rev-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
}

.rev-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 100px;
}

/* ===== HOURS SECTION ===== */
.hours-section { background: var(--color-surface-alt); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hours-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  margin: 24px 0;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.88rem;
  transition: background var(--transition);
}

.hours-row:last-child { border-bottom: none; }

.hours-row.today {
  background: var(--gold);
  border-left: 3px solid var(--gold-light);
}

.hours-row.today .hours-day {
  color: #ffffff;
  font-weight: 500;
}

.hours-row.today .hours-time {
  color: #ffffff;
  font-weight: 600;
}

.hours-row.hours-closed .hours-time {
  color: var(--color-text-muted);
}

.hours-day { font-weight: 400; color: var(--color-text); }

.hours-time {
  font-weight: 500;
  color: var(--color-text-secondary);
  font-size: 0.82rem;
}

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 12px 16px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  border: 1px solid rgba(184,151,58,0.2);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}

.map-btn {
  width: 100%;
  justify-content: center;
}

/* ===== CONTACT ===== */
.contact { background: var(--color-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: rgba(184,151,58,0.4);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-card a,
.contact-card address {
  font-size: 0.92rem;
  color: var(--color-text);
  transition: color var(--transition);
}

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

/* Contact Form */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,58,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-privacy label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--color-text-secondary);
}

.checkbox-label input { width: auto; margin-top: 2px; accent-color: var(--gold); }

.checkbox-label .link { color: var(--gold); }
.checkbox-label .link:hover { text-decoration: underline; }

.form-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--color-text);
}

.form-success p { color: var(--color-text-secondary); }

.form-error {
  background: rgba(192,57,43,0.08);
  border: 1px solid var(--color-error);
  color: var(--color-error);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.footer-top { padding: 60px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 16px 0 24px;
  font-style: italic;
  font-family: var(--font-display);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold); }

.footer-contact-list { gap: 10px !important; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.footer-contact-list li svg { margin-top: 2px; flex-shrink: 0; }

.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

/* ===== FLOATING BUTTONS ===== */
.float-call {
  position: fixed;
  bottom: 88px;
  right: 20px;
  background: var(--color-text);
  color: white;
  border-radius: 100px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(80px);
}

.float-call.visible { opacity: 1; transform: translateX(0); }
.float-call:hover { background: var(--gold); transform: scale(1.03); }

.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 20px;
  background: #25D366;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,211,102,0.4);
  z-index: 900;
  transition: all var(--transition);
  animation: whatsappPulse 2.5s ease-in-out infinite 3s;
}

.float-whatsapp:hover {
  transform: scale(1.08);
  animation: none;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 12px rgba(37,211,102,0); }
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  box-shadow: var(--shadow-md);
  z-index: 900;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== MODALS ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(12,11,9,0.85);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  backdrop-filter: blur(4px);
}

.modal.open { opacity: 1; visibility: visible; }

.modal-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--color-border);
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.modal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--color-text);
}

.modal-content h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 16px 0 6px;
}

.modal-content p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.modal-content a {
  color: var(--gold);
}

.modal-content a:hover {
  text-decoration: underline;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.modal-close:hover { border-color: var(--color-error); color: var(--color-error); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  z-index: 800;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p { font-size: 0.85rem; }

.cookie-content a { color: var(--gold-light); text-decoration: underline; }

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fadeInLeft"] { transform: translateX(-28px); }
[data-animate="fadeInRight"] { transform: translateX(28px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: center; }
  .hero-image-frame { width: 340px; }
  .about-grid { gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .reviews-slider { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 90vw);
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.06em;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
    width: 100%;
  }

  .nav-link::after { display: none; }

  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-accent,
  .about-years-badge { display: none; }

  .hero-content { padding-top: 120px; }

  .hero-title { font-size: clamp(2.4rem, 10vw, 3.6rem); }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }

  .hero-stats .stat { padding: 0 14px; }

  .services-grid { grid-template-columns: 1fr; gap: 1.5px; }

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

  .reviews-slider { grid-template-columns: 1fr; }

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

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom-content { flex-direction: column; text-align: center; }

  .status-bar { margin-top: 70px; }
  .status-hours { display: none; }
  .status-phone { margin-left: 0; }

  .float-call span { display: none; }
  .float-call { padding: 14px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; bottom: 90px; }

  .lang-switcher { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 28px 20px; }
  .hero-stats { gap: 0; }
  .stat strong { font-size: 1.4rem; }
}

/* ===== CONTACT INFO CENTERED (no form) ===== */
.contact-info-centered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-centered .contact-card {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 900px) {
  .contact-info-centered { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .contact-info-centered { grid-template-columns: 1fr; }
}

/* ===== PRINT ===== */
@media print {
  .header, .float-call, .float-whatsapp, .scroll-top, .cookie-banner { display: none; }
  .hero { min-height: auto; padding-top: 40px; }
}