/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  background: #0a0a08;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== COLOR PALETTE ===== */
:root {
  --bg-dark: #0e0c08;
  --bg-section: #131210;
  --bg-light: #f5f0eb;
  --bg-cream: #faf7f3;
  --bg-white: #ffffff;
  --text-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --accent-gold: #c9a96e;
  --accent-gold-light: #d4b87a;
  --accent-gold-dark: #a68a52;
  --overlay-dark: rgba(10, 10, 8, 0.85);
  --shadow-soft: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-dark);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(14, 12, 8, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-title a {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-white);
  text-transform: uppercase;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  opacity: 0.85;
  transition: opacity 0.3s ease;
  position: relative;
}
.header-nav a:hover,
.header-nav a.active { opacity: 1; }
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent-gold);
}
.header-social a {
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.header-social a:hover { opacity: 1; }
.header-social svg { width: 20px; height: 20px; fill: var(--text-white); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-light);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}
.mobile-menu .mobile-social { margin-top: 1rem; }
.mobile-menu .mobile-social svg { width: 28px; height: 28px; fill: var(--text-dark); }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-social { display: none; }
  .burger { display: flex; z-index: 1001; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.15);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.hero-logo {
  max-width: 380px;
  margin: 0 auto;
  filter: brightness(1.05);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent-gold-light);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  z-index: 3;
}
.hero-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero .hero-bg { opacity: 0.6; }
.page-hero .hero-overlay { background: rgba(0,0,0,0.45); }
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 3rem;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.page-hero-content .subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.8;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-logo { max-width: 260px; }
  .hero-tagline { font-size: 1.1rem; }
  .page-hero { min-height: 40vh; }
  .page-hero-content h1 { font-size: 2.2rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--accent-gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}
.btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}
.btn-dark {
  border-color: var(--text-dark);
  color: var(--text-dark);
}
.btn-dark:hover {
  background: var(--text-dark);
  color: var(--bg-white);
}
.btn-solid {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}
.btn-solid:hover {
  background: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
}

/* ===== SECTION HELPERS ===== */
.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 5rem 2rem;
}
.section-alt {
  background: var(--bg-section);
  color: var(--text-white);
  padding: 5rem 2rem;
}
.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2rem;
}
.section-white {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 5rem 2rem;
}
.section-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 5rem 2rem;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.section-header .gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 1rem auto;
}
.section-header p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .section-dark, .section-alt, .section-light, .section-white, .section-cream { padding: 3rem 1.5rem; }
  .section-header h2 { font-size: 2rem; }
}

/* ===== HOMEPAGE: HIGHLIGHTS ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.highlight-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.highlight-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.highlight-card h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.highlight-card p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== HOMEPAGE: ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview-text h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-preview-text h2 em {
  font-style: italic;
  color: var(--accent-gold);
}
.about-preview-text .subtitle {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.about-preview-text .subtitle em {
  font-style: italic;
  color: var(--accent-gold);
}
.about-preview-image {
  border-radius: 4px;
  overflow: hidden;
}
.about-preview-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-preview { grid-template-columns: 1fr; gap: 2rem; }
  .about-preview-text h2 { font-size: 2rem; }
  .about-preview-text .subtitle { font-size: 1.15rem; }
  .about-preview-image { order: -1; }
}

/* ===== HOMEPAGE: SERVICES PREVIEW ===== */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-preview-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.service-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-preview-card:hover img { transform: scale(1.05); }
.service-preview-card .card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.service-preview-card .card-overlay h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-white);
}

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

/* ===== PROMO BANNER ===== */
.promo-section {
  background: var(--bg-white);
  padding: 0;
}
.promo-link {
  display: block;
  width: 100%;
  line-height: 0;
  transition: opacity 0.3s ease;
}
.promo-link:hover { opacity: 0.92; }
.promo-link img { width: 100%; height: auto; }

/* ===== SERVICES PAGE ===== */
.services-list { margin-top: 1rem; }
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.service-item:nth-child(even) { direction: rtl; }
.service-item:nth-child(even) > * { direction: ltr; }
.service-item:last-child { margin-bottom: 0; }
.service-image {
  border-radius: 6px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-text h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.service-text p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.service-text .price-list {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(201,169,110,0.2);
  padding-top: 1rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 300;
  border-bottom: 1px dotted rgba(255,255,255,0.1);
}
.price-row .name { opacity: 0.9; }
.price-row .price {
  color: var(--accent-gold);
  font-weight: 400;
}

/* Light version for light sections */
.section-light .price-row { border-bottom-color: rgba(0,0,0,0.08); }
.section-light .service-text p { color: var(--text-muted); }
.section-light .price-row .price { color: var(--accent-gold-dark); }

@media (max-width: 768px) {
  .service-item { grid-template-columns: 1fr; gap: 2rem; }
  .service-item:nth-child(even) { direction: ltr; }
  .service-text h3 { font-size: 1.6rem; }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-white);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ===== PROMOTIONS ===== */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.promo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.promo-card:hover { border-color: rgba(201,169,110,0.4); }
.promo-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.promo-card:hover .promo-card-image img { transform: scale(1.04); }
.promo-card-body {
  padding: 2rem;
}
.promo-card-body .tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201,169,110,0.15);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.promo-card-body h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.promo-card-body p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.promo-card-body .promo-price {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.8rem;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .promos-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info-block {
  margin-bottom: 2.5rem;
}
.contact-info-block h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.contact-info-block p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.85;
}
.contact-info-block a {
  color: var(--accent-gold);
  transition: opacity 0.3s ease;
}
.contact-info-block a:hover { opacity: 0.8; }
.contact-map {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #1a1a18;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.7) contrast(1.1) brightness(0.8);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map { aspect-ratio: 16/9; }
}

/* ===== FOOTER ===== */
.footer-info {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 4rem 2rem;
}
.footer-info-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  text-align: center;
}
.footer-info-block h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.footer-info-block p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}
.footer-bottom {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 3rem 2rem;
}
.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.footer-brand h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.footer-contact h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer-contact p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.8;
}
.footer-contact a {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-contact a:hover { opacity: 1; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.footer-nav a:hover { opacity: 1; }
.footer-social {
  display: flex;
  justify-content: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 24px; height: 24px; fill: var(--text-white); }
.footer-copyright {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-info { padding: 3rem 1.5rem; }
  .footer-info-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { padding: 2.5rem 1.5rem; }
  .footer-bottom-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
