@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --red:        #C0392B;
  --red-dark:   #962D22;
  --red-light:  #E74C3C;
  --red-glow:   rgba(192,57,43,.25);
  --gold:       #D4A017;
  --gold-light: #F5C842;
  --gold-pale:  #FDF3D0;
  --gold-glow:  rgba(212,160,23,.2);
  --green:      #2D6A4F;
  --green-light:#52B788;
  --cream:      #FBF7F0;
  --cream-dark: #F5EDE0;
  --brown:      #5C3D2E;
  --dark:       #12080A;
  --dark-card:  #1A0E10;
  --gray:       #6B7280;
  --gray-light: #F3F4F6;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.18);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  6px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.7; overflow-x: hidden; text-rendering: optimizeLegibility; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.section-label::before {
  content: ''; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.section-subtitle { font-size: 1rem; color: var(--gray); max-width: 560px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-label::before { display: none; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== SVG ICON SYSTEM ===== */
.icon-svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.icon-svg-lg { width: 24px; height: 24px; }
.icon-svg-xl { width: 28px; height: 28px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px; font-family: var(--font-body);
  font-weight: 600; font-size: .9rem; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap; letter-spacing: .02em;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 32px var(--red-glow); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px var(--gold-glow); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(18,8,10,.96); backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: .75rem 0; box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-icon {
  width: 42px; height: 42px; border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: var(--white);
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-display); font-weight: 700; color: var(--white);
  font-size: 1.15rem; line-height: 1.15; letter-spacing: .01em;
}
.nav-logo-text span {
  display: block; font-family: var(--font-body); font-size: .65rem;
  font-weight: 600; color: var(--gold); letter-spacing: .18em; text-transform: uppercase;
  margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width var(--transition); border-radius: 1px;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #12080A 0%, #2A1210 40%, #1A0A08 100%);
  overflow: hidden;
}
.hero-bg-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #12080A 0%, #2A1210 100%);
}
.hero-bg-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(18,8,10,.95) 0%, rgba(18,8,10,.8) 50%, rgba(18,8,10,.4) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.4), transparent 70%);
  animation: float 10s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity: .3; }
  50%     { transform: translateY(-25px) scale(1.08); opacity: .6; }
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  background: rgba(212,160,23,.1); border: 1px solid rgba(212,160,23,.3);
  color: var(--gold-light); padding: .6rem 1.2rem; border-radius: 30px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.5rem; backdrop-filter: blur(8px);
  white-space: normal; max-width: 100%; text-align: center; line-height: 1.4;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  padding-top: 60px; overflow: hidden;
}
.lightbox.active { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox-content {
  max-width: 90%; max-height: 80vh; object-fit: contain;
  border-radius: 8px; box-shadow: var(--shadow-xl);
  animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
  position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; font-weight: 300;
  cursor: pointer; transition: 0.3s; z-index: 2001;
}
.lightbox-close:hover { color: var(--gold-light); transform: scale(1.1); }
#lightbox-caption {
  margin-top: 1rem; color: #fff; text-align: center; font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.hero-title .accent { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.7); margin-bottom: 2.5rem;
  max-width: 480px; line-height: 1.8;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 3rem; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.stat-lbl {
  font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase;
  letter-spacing: .1em; margin-top: .35rem;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .2; } 50% { opacity: .8; } }
.hero-deco {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 550px; height: 550px; border-radius: 50%;
  border: 1px solid rgba(212,160,23,.08); pointer-events: none;
}
.hero-deco::before {
  content: ''; position: absolute; inset: 50px; border-radius: 50%;
  border: 1px solid rgba(212,160,23,.06);
}

/* ===== PORTRAIT CAROUSEL ===== */
.portrait-carousel-section {
  padding: 4rem 0 2rem 0; background: var(--dark); overflow: hidden; position: relative;
}
.carousel-track-wrapper {
  position: relative; max-width: 1400px; margin: 0 auto; padding: 0 40px;
}
.carousel-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: scrollCarousel 25s linear infinite;
  padding-bottom: 1rem;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}
.carousel-slide {
  flex: 0 0 auto; width: 280px; aspect-ratio: 3/4; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.carousel-slide:hover { transform: scale(1.02); cursor: pointer; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

/* ===== ABOUT ===== */
.about { padding: 7rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: var(--white); padding: 1.25rem 1.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center;
  min-width: 120px;
}
.about-badge-float .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; display: block; }
.about-badge-float .lbl { font-size: .72rem; opacity: .9; letter-spacing: .05em; }
.about-content .section-title { text-align: left; }
.about-content .section-subtitle { max-width: 100%; margin-bottom: 2rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid transparent;
}
.feature-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: rgba(212,160,23,.15); }
.feature-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.feature-text h4 { font-weight: 700; font-size: .92rem; color: var(--dark); margin-bottom: .15rem; }
.feature-text p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ===== BRANCHES ===== */
.branches { padding: 7rem 0; background: var(--white); }
.branches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.branch-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid #EDE5D8;
  transition: var(--transition); position: relative;
}
.branch-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.branch-card-img {
  width: 100%; height: 200px; object-fit: cover;
  position: relative; overflow: hidden;
}
.branch-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.branch-card:hover .branch-card-img img { transform: scale(1.02); }
.branch-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--red); color: var(--white);
  padding: .2rem .7rem; border-radius: 50px; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; z-index: 2;
}
.branch-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.branch-name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin-bottom: .2rem;
}
.branch-location {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--gray); margin-bottom: 1.15rem;
}
.branch-actions { display: flex; flex-direction: column; gap: .5rem; }
.branch-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .55rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600;
  transition: var(--transition); border: none; cursor: pointer; width: 100%;
  letter-spacing: .01em;
}
.branch-btn-maps { background: var(--red); color: var(--white); }
.branch-btn-maps:hover { background: var(--red-dark); transform: scale(1.02); box-shadow: 0 6px 18px var(--red-glow); }
.branch-btn-ig { background: #E1306C; color: var(--white); }
.branch-btn-ig:hover { filter: brightness(1.1); transform: scale(1.02); box-shadow: 0 6px 18px rgba(225,48,108,.25); }
.branch-btn-tiktok { background: var(--dark); color: var(--white); }
.branch-btn-tiktok:hover { background: #222; transform: scale(1.02); }
.branch-btn-wa { background: #25D366; color: var(--white); }
.branch-btn-wa:hover { background: #1EBE5A; transform: scale(1.02); box-shadow: 0 6px 18px rgba(37,211,102,.25); }
.branch-row2 { display: flex; gap: .5rem; flex-wrap: wrap; }
.branch-row2 .branch-btn { flex: 1; min-width: calc(50% - .25rem); padding: .55rem .5rem; font-size: .75rem; }

/* ===== GALLERY ===== */
.gallery { padding: 7rem 0; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 1rem; }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,8,10,.75) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: var(--white); font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.gallery-overlay-sub { color: rgba(255,255,255,.7); font-size: .75rem; margin-top: .15rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo-icon { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.footer-logo-text { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.15rem; }
.footer-desc { font-size: .87rem; line-height: 1.9; margin-bottom: 1.5rem; color: rgba(255,255,255,.5); }
.footer-socials { display: flex; gap: .65rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); text-decoration: none; color: var(--white);
}
.social-btn.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-btn.tiktok { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.social-btn.maps { background: var(--red); }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.footer-heading {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .87rem; color: rgba(255,255,255,.5); transition: var(--transition);
  display: inline-flex; align-items: center; gap: .4rem;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .9rem; }
.footer-contact-item .ico { font-size: .9rem; margin-top: .2rem; color: var(--gold); }
.footer-contact-item p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-contact-item a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(18,8,10,.98); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--white);
  font-weight: 700; transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .25s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge-float { right: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero-content { text-align: center; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; width: 100%; gap: 2rem; }
  .hero-scroll { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.tall { grid-row: span 1; }
  .branches-grid { grid-template-columns: 1fr; }
}
