/* ===== SALONE RYANE - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cinzel:wght@400;600&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9e7c2c;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --dark-4: #2e2e2e;
  --white: #f5f0e8;
  --gray: #999;
  --light-gray: #ccc;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --transition: all 0.3s ease;
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 5px 30px rgba(201,168,76,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 14px 34px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--dark);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  padding: 13px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  color: #fff;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-label::before { right: calc(100% - 15px); }
.section-label::after { left: calc(100% - 15px); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== DIVIDER ===== */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
}
.nav-logo-text span { color: var(--gold); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}
.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-gray);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  background: var(--whatsapp);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  background: var(--whatsapp-dark);
  color: #fff !important;
}
.nav-cta::after { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1009 50%, #0d0d0d 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(201,168,76,0.02) 50px, rgba(201,168,76,0.02) 100px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-title .accent {
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--light-gray);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.9;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-image-side {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45%;
  overflow: hidden;
}
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-image-side::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, var(--dark), transparent);
  z-index: 1;
}
.hero-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.4), transparent, rgba(13,13,13,0.4));
  z-index: 1;
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0; top: 16px; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #0a0a0a 0%, #14110a 50%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 9px 20px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.announcement-bar .bar-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(201,168,76,0.45);
  margin: 0 18px;
  vertical-align: middle;
}
.announcement-bar .bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(201,168,76,0.85);
}
.announcement-bar .bar-item span {
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== WHY US SECTION ===== */
#why-us { background: var(--dark-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--dark-3);
  padding: 40px 30px;
  border: 1px solid rgba(201,168,76,0.15);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
#services { background: var(--dark); }
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 28px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gray);
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.service-item:hover { border-color: rgba(201,168,76,0.4); }
.service-item:hover::after { width: 100%; }
.service-info {}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}
.service-desc {
  font-size: 0.8rem;
  color: var(--gray);
}
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 20px;
}
.services-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.2);
}
.services-cta p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ===== GALLERY SECTION ===== */
#gallery { background: var(--dark-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.8rem;
  gap: 10px;
  border: 1px dashed rgba(201,168,76,0.2);
}
.gallery-placeholder span { font-size: 2rem; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 35px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2px;
}
.author-location { font-size: 0.78rem; color: var(--gray); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ===== BLOG SECTION ===== */
#blog { background: var(--dark-2); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
}
.blog-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.blog-card-body { padding: 28px; }
.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 12px;
  align-items: center;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: var(--transition);
}
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-read-more {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 14px; }
.blog-read-more::after { content: '→'; }

/* ===== LOCATION SECTION ===== */
#location { background: var(--dark); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.2);
}
.location-info {
  padding: 60px 50px;
  background: var(--dark-2);
}
.location-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--white);
}
.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-value {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.6;
}
.info-value a { color: var(--light-gray); }
.info-value a:hover { color: var(--gold); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  font-size: 0.85rem;
}
.hours-day { color: var(--gray); }
.hours-time { color: var(--white); }
.location-map {
  height: 100%;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(0.9);
}
.map-overlay-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

/* ===== CTA BANNER ===== */
#cta-banner {
  background: linear-gradient(135deg, #0d0d0d, #1a1009, #0d0d0d);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
#cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}
#cta-banner p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
#footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-desc {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 25px;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-2px); }
.social-link.wa:hover  { background: #25d366; border-color: #25d366; color: #fff; }
.social-link.ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #e6683c; color: #fff; }
.social-link.tk:hover  { background: #010101; border-color: #69C9D0; color: #fff; }
.social-link.fb:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item .icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; }
.footer-contact-item p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.footer-contact-item a { color: var(--gray); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
  color: white;
  text-decoration: none;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
  background: var(--whatsapp-dark);
  color: white;
}
.whatsapp-tooltip {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--white);
  white-space: nowrap;
  border-radius: 4px;
  box-shadow: var(--shadow);
  display: none;
  animation: fadeIn 0.3s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { display: block; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7); }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0d0d0d, #1a1009);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--gray); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}
.page-hero p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== BLOG POST ===== */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  padding: 70px 0;
}
.blog-post-content {}
.blog-post-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 40px;
  border: 1px solid rgba(201,168,76,0.2);
}
.blog-post-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-wrap: wrap;
}
.blog-post-cat {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.blog-post-date { font-size: 0.8rem; color: var(--gray); }
.blog-post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 24px;
  line-height: 1.3;
}
.blog-post-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--light-gray);
}
.blog-post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin: 40px 0 16px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.blog-post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 28px 0 12px;
}
.blog-post-body p { margin-bottom: 18px; }
.blog-post-body ul, .blog-post-body ol {
  margin: 16px 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-post-body li { color: var(--light-gray); }
.blog-post-body ul li::before { content: '✦ '; color: var(--gold); }
.blog-post-body strong { color: var(--gold); }
.blog-sidebar {}
.sidebar-widget {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 28px;
  margin-bottom: 25px;
}
.sidebar-widget-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.sidebar-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-thumb {
  width: 55px;
  height: 55px;
  background: var(--dark-3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.sidebar-post-info a {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
  transition: var(--transition);
}
.sidebar-post-info a:hover { color: var(--gold); }
.sidebar-post-date { font-size: 0.72rem; color: var(--gray); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 70px 0;
}
.contact-form-wrapper {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 45px;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); background: var(--dark-4); }
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 350px; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-image-side { display: none; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1000;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1rem; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-item:nth-child(n) { grid-column: span 12; grid-row: span 1; }
  .gallery-grid { grid-auto-rows: 180px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-buttons { flex-direction: column; }
}
@media (max-width: 480px) {
  .section-padding { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== BEFORE / AFTER ===== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.ba-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  transition: var(--transition);
}
.ba-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  height: 260px;
}
.ba-side {
  position: relative;
  overflow: hidden;
}
.ba-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray);
}
.ba-placeholder span:first-child { font-size: 2rem; }
.ba-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  white-space: nowrap;
}
.ba-label-before {
  background: rgba(0,0,0,0.75);
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.2);
}
.ba-label-after {
  background: var(--gold);
  color: var(--dark);
}
.ba-divider-line {
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid rgba(201,168,76,0.3);
  border-right: 2px solid rgba(201,168,76,0.3);
}
.ba-icon-center {
  font-size: 1.1rem;
  background: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-caption {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.ba-service-tag {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}
.ba-book-btn {
  font-size: 0.72rem;
  color: var(--white);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 7px 16px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.ba-book-btn:hover {
  background: var(--gold);
  color: var(--dark);
}
@media (max-width: 500px) {
  .ba-images { height: 200px; }
  .ba-caption { flex-direction: column; align-items: flex-start; }
  .ba-book-btn { width: 100%; text-align: center; }
}

/* ===== RESERVATION PAGE (prenotazione.html) ===== */
.prenotazione-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1009 60%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.prenotazione-hero::before {
  content: '✂';
  position: absolute;
  font-size: 25rem;
  color: rgba(201,168,76,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.prenotazione-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.booking-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.booking-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 50px;
}
.booking-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
  counter-reset: step;
}
.booking-step {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
}
.booking-step::before {
  content: counter(step);
  counter-increment: step;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0 auto 8px;
  transition: var(--transition);
}
.booking-step.active::before {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
.booking-step.active { color: var(--gold); }
.booking-step-line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.2);
  margin-bottom: 28px;
}
.booking-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.booking-section-title span { color: var(--gold); }
.service-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.service-option {
  position: relative;
  cursor: pointer;
}
.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.service-option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  color: var(--light-gray);
}
.service-option input:checked + .service-option-label {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--white);
}
.service-option-label:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}
.service-option-icon { font-size: 1.2rem; flex-shrink: 0; }
.service-option-name { font-weight: 700; display: block; margin-bottom: 2px; }
.service-option-price { font-size: 0.72rem; color: var(--gold); }
.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-submit-area { margin-top: 30px; }
.booking-submit-area .btn-whatsapp {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 18px;
  letter-spacing: 1px;
}
.booking-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
}
.booking-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.booking-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
}
.booking-trust-item span:first-child { font-size: 1.6rem; }
.booking-trust-item strong { color: var(--white); display: block; font-size: 0.8rem; }
@media (max-width: 768px) {
  .booking-card { padding: 30px 20px; }
  .booking-form-row { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: 1fr; }
  .booking-steps { display: none; }
}
@media (max-width: 480px) {
  .booking-wrapper { padding: 30px 0 60px; }
}
