/* ═══════════════════════════════════════════════════════════════
   YS Interiors — Premium Interior Design Website
   Part 1: Variables, Reset, Typography, Navbar, Hero, Info Strip
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --black:       #0C0C0C;
  --surface:     #1A1A1A;
  --surface-2:   #242424;
  --cream:       #F5EDE3;
  --cream-60:    rgba(245,237,227,0.6);
  --cream-30:    rgba(245,237,227,0.3);
  --cream-10:    rgba(245,237,227,0.1);
  --cream-05:    rgba(245,237,227,0.05);
  --gold:        #C9A96E;
  --gold-light:  #D4BC8B;
  --gold-dark:   #A8884E;
  --gold-30:     rgba(201,169,110,0.3);
  --gold-10:     rgba(201,169,110,0.1);
  --white:       #FFFFFF;

  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', 'DM Sans', system-ui, sans-serif;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ─── SMOOTH SCROLLING ─── */
html { scroll-behavior: smooth; }

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

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

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── NOISE GRAIN TEXTURE ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }

/* ─── SELECTION ─── */
::selection          { background: var(--gold); color: var(--black); }
::-moz-selection     { background: var(--gold); color: var(--black); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-30); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── BUTTONS ─── */
.btn {
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-30); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  border: none;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--cream-30);
}
.btn-ghost:hover { background: var(--cream); color: var(--black); border-color: var(--cream); }

/* ─── PREMIUM LOADER ─── */
@keyframes loader-bar {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.animate-loader-bar { animation: loader-bar 1.5s ease-in-out infinite; }

#premium-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.7s ease-in-out;
  pointer-events: none;
}
#premium-loader .loader-monogram {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 0.1em;
}
#premium-loader .loader-ring {
  position: absolute; inset: 0;
  border: 1.5px solid var(--gold-30);
  border-radius: 50%;
}
#premium-loader .loader-ring-inner {
  position: absolute; inset: 4px;
  border: 2.5px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 3s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

html.loaded #premium-loader { opacity: 0; pointer-events: none; }
html.loading { overflow: hidden; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(to bottom, rgba(12,12,12,0.95) 0%, rgba(12,12,12,0.6) 40%, transparent 100%);
}
#navbar.navbar-scrolled {
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--cream-05);
}
.navbar-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
@media (min-width: 1024px) { .navbar-inner { padding: 0 2.5rem; height: 80px; } }

.nav-logo img { height: 2.5rem; width: auto; transition: transform 0.3s ease; }
.nav-logo:hover img { transform: scale(1.05); }
@media (min-width: 1024px) { .nav-logo img { height: 3rem; } }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
  position: relative; transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: none;
  background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.625rem 1.5rem; border-radius: 2px; border: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger-btn {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.625rem 0.875rem; border-radius: 999px;
  border: 1px solid var(--cream-30); cursor: pointer;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
}
@media (min-width: 1024px) { .hamburger-btn { display: none; } }

.hamburger-label {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream);
}
.hamburger-lines { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.hamburger-line {
  height: 2.5px; background: var(--cream); border-radius: 999px;
  transition: all 0.3s ease; transform-origin: center;
}
.hamburger-line:nth-child(1) { width: 20px; }
.hamburger-line:nth-child(2) { width: 20px; }
.hamburger-line:nth-child(3) { width: 14px; }

.hamburger-btn.menu-open { background: rgba(255,255,255,0.12); border-color: var(--cream-30); }
.hamburger-btn.menu-open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.hamburger-btn.menu-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.menu-open .hamburger-line:nth-child(3) { width: 20px; transform: rotate(-45deg) translate(3px, -3px); }

/* Mobile Menu */
#mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--black) 0%, var(--surface) 45%, var(--black) 100%);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
#mobile-menu.menu-visible { opacity: 1; pointer-events: auto; }

.mobile-menu-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.02); pointer-events: none; user-select: none;
}
.mobile-menu-accent {
  position: absolute; left: 0; top: 15%; bottom: 15%; width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  pointer-events: none;
}
.mobile-nav-content {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1; padding: 5rem 2rem 2rem; position: relative; z-index: 10;
}
.mobile-nav-links {
  display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 280px;
}
.mobile-nav-link {
  display: flex; align-items: center; gap: 1rem; width: 100%;
  padding: 1rem 0; border-bottom: 1px solid var(--cream-05);
  opacity: 0; transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav-link .link-num {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 500;
  color: var(--gold-30); letter-spacing: 0.1em; width: 1.5rem; text-align: right;
}
.mobile-nav-link .link-text {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 300;
  color: var(--cream); flex: 1; transition: color 0.3s ease;
}
.mobile-nav-link:hover .link-text { color: var(--gold-light); }
.mobile-nav-link .link-arrow {
  width: 1rem; height: 1rem; color: var(--gold-30);
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-nav-link:hover .link-arrow { color: var(--gold); transform: translateX(4px); }

.mobile-nav-cta {
  margin-top: 2rem; opacity: 0; transform: translateY(20px);
}
.mobile-contact-info {
  margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  opacity: 0; transform: translateY(20px);
}
.mobile-contact-divider { width: 2rem; height: 1px; background: var(--gold-30); }
.mobile-contact-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500;
  color: var(--cream-60); transition: color 0.3s ease;
}
.mobile-contact-phone:hover { color: var(--gold-light); }
.mobile-contact-phone svg { width: 0.875rem; height: 0.875rem; color: var(--gold); }
.mobile-contact-details {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body); font-size: 0.75rem; color: var(--cream-30);
}
.mobile-contact-details .dot { color: var(--gold-30); }

/* ─── HERO ─── */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(12,12,12,1) 0%, rgba(12,12,12,0.85) 45%, rgba(12,12,12,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; width: 100%;
}
@media (min-width: 1024px) { .hero-content { padding: 0 2.5rem; } }

.hero-inner { max-width: 720px; }

.hero-tagline {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-tagline { font-size: 0.8125rem; margin-bottom: 1.5rem; } }

.hero-title {
  font-family: var(--font-display); font-weight: 300; color: var(--cream);
  line-height: 1.1; margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
}
.hero-word { display: inline-block; will-change: transform, opacity; }
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: var(--cream-60); max-width: 480px; line-height: 1.7; margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.125rem; margin-bottom: 2.5rem; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-ctas .btn { gap: 0.625rem; }
.hero-ctas .btn svg { width: 1rem; height: 1rem; }

.hero-badge {
  position: absolute; bottom: 1rem; left: 0; width: 100%; z-index: 2;
  padding: 0 1.5rem; pointer-events: none;
}
@media (min-width: 1024px) { .hero-badge { bottom: 1.5rem; padding: 0 2.5rem; } }
.hero-badge-inner { max-width: 1400px; margin: 0 auto; display: flex; }
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(26,26,26,0.8); backdrop-filter: blur(12px);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  color: var(--cream); padding: 0.625rem 1.25rem; border-radius: 999px;
  border: 1px solid var(--cream-10); pointer-events: auto;
}
@media (min-width: 640px) { .hero-badge-pill { font-size: 0.8125rem; } }
.hero-badge-pill .star { color: var(--gold); }
.hero-badge-pill .sep  { color: var(--cream-30); }

/* Scroll indicator */
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: none; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: bounce 1.6s ease-in-out infinite;
}
@media (min-width: 640px) { .scroll-indicator { display: flex; } }
.scroll-indicator span {
  font-family: var(--font-body); font-size: 0.6875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-30);
}
.scroll-indicator svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }

/* ─── INFO STRIP ─── */
.info-strip {
  position: relative; background: var(--surface); padding: 1rem 0; overflow: hidden;
}
@media (min-width: 1024px) { .info-strip { padding: 1.25rem 0; } }
.info-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.04) 50%, transparent 100%);
  background-size: 400px 100%; animation: shimmer 3s infinite; pointer-events: none;
}
@keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }

.info-strip-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
}
@media (min-width: 1024px) { .info-strip-inner { padding: 0 2.5rem; } }

.info-strip-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 1024px) { .info-strip-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.info-item {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--cream); padding: 0.5rem 0; transition: color 0.3s ease;
}
.info-item:hover { color: var(--cream); }
.info-item .info-icon {
  font-size: 1.125rem; flex-shrink: 0; transition: transform 0.3s ease;
}
@media (min-width: 1024px) { .info-item .info-icon { font-size: 1.25rem; } }
.info-item:hover .info-icon { transform: scale(1.1); }
.info-item .info-text {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
}
@media (min-width: 1024px) { .info-item .info-text { font-size: 0.8125rem; } }

/* ═══════════════════════════════════════════════════════════════
   Part 2: Section Headers, Services, Gallery, Before/After
   ═══════════════════════════════════════════════════════════════ */

/* ─── SECTION LAYOUT ─── */
.section {
  padding: 5rem 0;
}
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .section-inner { padding: 0 2.5rem; } }

.section-dark  { background: var(--black); position: relative; }
.section-surface { background: var(--surface); position: relative; }

/* Subtle vignette on dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}
.section-dark > * { position: relative; z-index: 1; }

/* ─── SECTION HEADERS ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .section-label { font-size: 0.75rem; } }

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  will-change: transform, opacity;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .section-header { margin-bottom: 3rem; } }

.section-header-center {
  text-align: center;
}

/* ─── WATERMARKS ─── */
.watermark-wrapper {
  position: relative;
  z-index: 10;
}
.watermark-wrapper::before {
  content: attr(data-watermark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 15vw, 250px);
  color: var(--cream);
  opacity: 0.02;
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* ─── FILTER BUTTONS ─── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--cream-10);
  background: transparent;
  color: var(--cream-60);
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 10px var(--gold-30);
}

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .services-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--cream-05);
  border-radius: 4px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-left-color 0.35s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-left-color: var(--gold);
}

.service-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-quart);
}
.service-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.service-card .card-body {
  padding: 1rem;
}
@media (min-width: 640px) {
  .service-card .card-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

.service-card .card-category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-card .card-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .service-card .card-name {
    font-size: 1.25rem;
  }
}

.service-card .card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-60);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card .card-cta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  background: var(--gold);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-top: 0.5rem;
}
.service-card .card-cta:hover {
  background: var(--gold-light);
}
.service-card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PORTFOLIO MASONRY GALLERY ─── */
.gallery-masonry {
  columns: 2;
  column-gap: 12px;
}
@media (min-width: 1024px) {
  .gallery-masonry {
    columns: 3 !important;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 0.75rem;
  break-inside: avoid;
  border-radius: 4px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0.85);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
  gap: 0.25rem;
  padding: 0.75rem;
  text-align: center;
}
.gallery-overlay .overlay-title {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.gallery-overlay .overlay-category {
  font-family: var(--font-body);
  font-size: clamp(0.5rem, 2vw, 0.6875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}
.gallery-overlay .overlay-icon {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}
.gallery-overlay .overlay-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item img {
  transition: transform 0.5s var(--ease-out-quart);
  width: 100%;
  height: auto;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ─── PROJECT LIGHTBOX MODAL ─── */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.project-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
}
.project-modal-content {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--cream-05);
  border-radius: 8px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out-expo);
}
.project-modal.active .project-modal-content {
  transform: translateY(0);
}
.project-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--cream-10);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.project-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.project-modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.project-modal-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.project-modal-body {
  padding: 2rem;
}
.project-modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.project-modal-category {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.project-modal-description {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cream-60);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.project-modal-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .project-modal-details {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project-detail-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.project-detail-value {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-60);
  line-height: 1.5;
}
.project-palette {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.project-palette .swatch {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── SERVICE DETAIL MODAL ─── */
.service-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.service-modal.active { opacity: 1; pointer-events: auto; }
.service-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 12, 12, 0.92); backdrop-filter: blur(16px);
}
.service-modal-content {
  position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--cream-05);
  border-radius: 8px; max-width: 900px; width: 90%; max-height: 90vh;
  overflow-y: auto; padding: 0;
  transform: translateY(20px); transition: transform 0.4s var(--ease-out-expo);
}
.service-modal.active .service-modal-content { transform: translateY(0); }
.service-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--black); border: 1px solid var(--cream-10);
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s ease, border-color 0.3s ease;
}
.service-modal-close:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.service-modal-close svg { width: 1.25rem; height: 1.25rem; }

.service-modal-image-wrap { position: relative; width: 100%; aspect-ratio: 16/9; }
@media (min-width: 768px) { .service-modal-image-wrap { aspect-ratio: 21/9; } }
.service-modal-image { width: 100%; height: 100%; object-fit: cover; border-radius: 8px 8px 0 0; }
.service-modal-image-overlay {
  position: absolute; inset: 0; border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, var(--surface) 0%, transparent 50%);
}
.service-modal-category-badge {
  position: absolute; bottom: 1.5rem; left: 2rem; z-index: 2;
  background: rgba(26,26,26,0.8); backdrop-filter: blur(8px);
  color: var(--gold); font-family: var(--font-body); font-size: 0.6875rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.4rem 1rem; border-radius: 999px; border: 1px solid var(--gold-30);
}

.service-modal-body { padding: 2rem; }
@media (min-width: 768px) { .service-modal-body { padding: 3rem; } }

.service-modal-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  color: var(--cream); margin-bottom: 1rem; line-height: 1.2;
}
.service-modal-desc {
  font-family: var(--font-body); font-size: 1rem; color: var(--cream-60);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 720px;
}

.service-modal-features {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .service-modal-features { grid-template-columns: repeat(2, 1fr); } }

.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon {
  flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--gold-10); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 1rem; height: 1rem; }
.feature-text h4 {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.25rem;
}
.feature-text p {
  font-family: var(--font-body); font-size: 0.8125rem; color: var(--cream-60); line-height: 1.5;
}

.service-modal-cta-row {
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 2.5rem; border-top: 1px solid var(--cream-05);
}
@media (min-width: 640px) {
  .service-modal-cta-row { flex-direction: row; align-items: center; }
}
.service-modal-book, .service-modal-whatsapp { padding: 1rem 2rem; border-radius: 4px; text-align: center; }

/* ─── BEFORE / AFTER SLIDER ─── */
.ba-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .ba-section-title { font-size: 1.75rem; margin-bottom: 2.5rem; } }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .ba-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.before-after-wrap {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  border-radius: 8px;
}
.before-after-wrap img {
  user-select: none;
  -webkit-user-drag: none;
}
.before-after-wrap .img-after {
  display: block;
  width: 100%;
}
.before-after-wrap .img-before-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.before-after-wrap .img-before {
  display: block;
  max-width: none;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--cream);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.ba-handle-circle {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--black);
  user-select: none;
  pointer-events: auto;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: ew-resize;
}
.ba-handle-circle:hover,
.before-after-wrap:hover .ba-handle-circle {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ba-label {
  position: absolute;
  top: 0.75rem;
  z-index: 5;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.ba-label-before {
  left: 0.75rem;
  background: rgba(12, 12, 12, 0.7);
}
.ba-label-after {
  right: 0.75rem;
  background: rgba(201, 169, 110, 0.8);
}

/* ═══════════════════════════════════════════════════════════════
   Part 3: Materials, Process, About, Testimonials
   ═══════════════════════════════════════════════════════════════ */

/* ─── MATERIALS / MOODBOARD ─── */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .materials-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .materials-grid { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; } }

.material-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.material-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-quart);
}
.material-card:hover img {
  transform: scale(1.08);
}
.material-card .material-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.9) 0%, rgba(12,12,12,0.3) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.4s ease;
}
.material-card:hover .material-overlay {
  background: linear-gradient(to top, rgba(12,12,12,0.95) 0%, rgba(12,12,12,0.5) 50%, rgba(12,12,12,0.2) 100%);
}
.material-card .material-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.material-card .material-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--cream-60);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.material-card:hover .material-desc {
  opacity: 1;
  transform: translateY(0);
}
.material-card .material-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* ─── PROCESS / TIMELINE ─── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .process-step::after {
    content: '';
    position: absolute;
    top: 3.25rem;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-30), transparent);
    z-index: 0;
  }
  .process-step:last-child::after {
    display: none;
  }
}

.process-step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  background: var(--black);
  transition: background 0.3s ease, color 0.3s ease;
}
.process-step:hover .process-step-number {
  background: var(--gold);
  color: var(--black);
}

.process-step-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.process-step-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-60);
  line-height: 1.6;
}

/* ─── ABOUT SECTION ─── */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .about-layout {
    flex-direction: row;
  }
}

.about-image-wrap {
  width: 100%;
}
@media (min-width: 1024px) { .about-image-wrap { width: 55%; } }

.about-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s var(--ease-out-quart);
}
@media (min-width: 1024px) {
  .about-image-wrap img {
    height: 100%;
    border-radius: 0;
  }
}
.about-image-wrap:hover img {
  transform: scale(1.02);
}

.about-divider {
  display: none;
  width: 2px;
  background: var(--gold-30);
  margin: 0 2rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .about-divider { display: block; } }

.about-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .about-text {
    width: 45%;
    padding: 3rem 0;
  }
}

.about-text p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cream-60);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
}
@media (min-width: 640px) {
  .about-stats {
    gap: 1.5rem;
  }
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
@media (min-width: 640px) { .about-stat-number { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-stat-number { font-size: 2.625rem; } }

.about-stat-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  word-wrap: break-word;
}
@media (min-width: 640px) { 
  .about-stat-label { 
    font-size: 0.625rem; 
    letter-spacing: 0.2em;
  } 
}
@media (min-width: 1024px) { 
  .about-stat-label { 
    font-size: 0.6875rem; 
  } 
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.about-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.about-cta svg {
  width: 1rem;
  height: 1rem;
}

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cream-05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin: 0.5rem;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gold-30);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.testimonial-meta { flex-grow: 1; }
.testimonial-author {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.testimonial-stars {
  color: #FBBC04;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.testimonial-source-icon {
  opacity: 0.9;
  flex-shrink: 0;
}
.testimonial-quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream-60);
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--cream);
  opacity: 0.2;
  transition: opacity 0.3s ease, background 0.3s ease, width 0.3s ease;
  border-radius: 999px;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
  width: 24px;
}

.rating-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
}
@media (min-width: 640px) { .rating-badge { font-size: 0.8125rem; } }
.rating-badge-dark {
  background: var(--surface);
  color: var(--cream);
  border: 1px solid var(--cream-05);
}
.rating-badge-gold {
  background: var(--gold);
  color: var(--black);
}
.rating-badge .badge-star { color: var(--gold); }
.rating-badge .badge-sep  { color: var(--cream-30); }

/* ═══════════════════════════════════════════════════════════════
   Part 4: Instagram, Booking, Contact, Footer, Floating, Responsive
   ═══════════════════════════════════════════════════════════════ */

/* ─── INSTAGRAM FEED ─── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  max-width: 1000px;
  margin-inline: auto;
}
@media (min-width: 768px) { 
  .instagram-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem; 
  } 
}

.instagram-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--cream-10);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.instagram-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-30);
}

.ig-card-header {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  gap: 0.5rem;
}
@media (min-width: 768px) { .ig-card-header { padding: 0.75rem 1rem; gap: 0.75rem; } }

.ig-avatar {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%; background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.6rem; font-weight: 600;
}
@media (min-width: 768px) { .ig-avatar { width: 2rem; height: 2rem; font-size: 0.75rem; } }

.ig-username {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
  color: var(--cream); flex-grow: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (min-width: 768px) { .ig-username { font-size: 0.8125rem; } }

.ig-more { width: 1rem; height: 1rem; color: var(--cream-60); flex-shrink: 0; }
@media (min-width: 768px) { .ig-more { width: 1.25rem; height: 1.25rem; } }

.ig-card-image { width: 100%; aspect-ratio: 1; overflow: hidden; }
.ig-card-image img { width: 100%; height: 100%; object-fit: cover; }

.ig-card-footer { padding: 0.5rem; }
@media (min-width: 768px) { .ig-card-footer { padding: 0.75rem 1rem 1rem; } }

.ig-actions {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.5rem; color: var(--cream);
}
.ig-actions-left { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .ig-actions-left { gap: 1rem; } }

.ig-actions svg {
  width: 1rem; height: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
@media (min-width: 768px) { .ig-actions svg { width: 1.25rem; height: 1.25rem; } }

.instagram-card:hover .ig-actions svg:hover { color: var(--gold); transform: scale(1.1); }

.ig-likes {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.25rem;
}
.ig-caption {
  font-family: var(--font-body); font-size: 0.6875rem; color: var(--cream-60);
  line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 768px) { .ig-likes, .ig-caption { font-size: 0.8125rem; line-height: 1.5; } }
.ig-caption strong {
  color: var(--cream);
  font-weight: 600;
  margin-right: 0.25rem;
}

/* ─── GOOGLE MAP ─── */
.map-section {
  position: relative;
}
.map-section iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: 0;
}
@media (min-width: 1024px) { .map-section iframe { height: 450px; } }

.map-info-card {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  background: var(--surface);
  border: 1px solid var(--cream-05);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  padding: 1.5rem;
  max-width: 320px;
  display: none;
}
@media (min-width: 1024px) { .map-info-card { display: block; } }

.map-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}
.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.map-info-item .map-icon {
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.map-info-item p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--cream-60);
  line-height: 1.5;
}
.map-info-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.map-info-btn {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.map-info-btn-dark {
  background: var(--black);
  color: var(--cream);
  border: 1px solid var(--cream-10);
}
.map-info-btn-dark:hover { background: var(--cream-10); }
.map-info-btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.map-info-btn-gold:hover { background: var(--gold-light); }

.map-mobile-info {
  display: block;
  background: var(--surface);
  padding: 1.5rem;
  border-top: 1px solid var(--cream-05);
}
@media (min-width: 1024px) { .map-mobile-info { display: none; } }
.map-mobile-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* ─── MULTI-STEP BOOKING FORM ─── */
.booking-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--cream-05);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .booking-card { padding: 3rem; } }

.booking-card .booking-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  background: var(--gold-10);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.booking-progress-dot {
  width: 2rem;
  height: 3px;
  border-radius: 999px;
  background: var(--cream-10);
  transition: background 0.3s ease, width 0.3s ease;
}
.booking-progress-dot.active {
  background: var(--gold);
  width: 3rem;
}
.booking-progress-dot.completed {
  background: var(--gold-30);
}

.booking-step {
  display: none;
  animation: fadeInUp 0.4s var(--ease-out-expo);
}
.booking-step.active {
  display: block;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booking-step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
  text-align: center;
}
.booking-step-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-60);
  text-align: center;
  margin-bottom: 2rem;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .booking-options { grid-template-columns: repeat(3, 1fr); } }

.booking-option {
  background: var(--black);
  border: 1px solid var(--cream-10);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.booking-option:hover {
  border-color: var(--gold-30);
}
.booking-option.selected {
  border-color: var(--gold);
  background: var(--gold-10);
}
.booking-option .option-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.booking-option .option-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cream);
}

.booking-form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .booking-form-fields { grid-template-columns: repeat(2, 1fr); } }

.booking-field-group { position: relative; }
.booking-field-group.full-width { grid-column: 1 / -1; }

.booking-field-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-30);
  margin-bottom: 0.5rem;
}
.booking-field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--cream-10);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cream);
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
}
.booking-field-input::placeholder { color: var(--cream-30); }
.booking-field-input:focus { border-bottom-color: var(--gold); }

textarea.booking-field-input {
  resize: none;
  min-height: 80px;
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}
.booking-nav-back {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cream-60);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  padding: 0;
}
.booking-nav-back:hover { color: var(--cream); }
.booking-nav-back svg { width: 1rem; height: 1rem; }

.booking-nav-next {
  margin-left: auto;
}

.booking-error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}
.booking-error.visible { display: block; }

/* ─── CONTACT SECTION ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-field-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-30);
  margin-bottom: 0.5rem;
}
.contact-field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--cream-10);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cream);
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
}
.contact-field-input::placeholder { color: var(--cream-30); }
.contact-field-input:focus { border-bottom-color: var(--gold); }

textarea.contact-field-input { resize: none; }

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .contact-info { padding-left: 2rem; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-60);
  line-height: 1.5;
}
a.contact-info-value:hover { color: var(--gold); }

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (min-width: 640px) { .contact-buttons { flex-direction: row; } }

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.contact-btn-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.contact-btn-gold:hover { background: var(--gold); color: var(--black); }
.contact-btn-outline {
  border-color: var(--cream-10);
  color: var(--cream);
}
.contact-btn-outline:hover { background: var(--cream); color: var(--black); border-color: var(--cream); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--cream);
}
.footer-divider {
  border: none;
  border-top: 1px solid var(--gold-30);
  margin: 0 1.5rem;
}
@media (min-width: 1024px) { .footer-divider { margin: 0 2.5rem; } }

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
@media (min-width: 1024px) { .footer-inner { padding: 5rem 2.5rem; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; } }

.footer-brand-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-60);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-social a {
  color: var(--gold);
  transition: color 0.3s ease, transform 0.2s ease;
}
.footer-social a:hover { color: var(--gold-light); transform: scale(1.1); }
.footer-social a svg { width: 1.25rem; height: 1.25rem; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-30);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-60);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-60);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-contact-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream-60);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.footer-contact-link:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; padding: 1.5rem 2.5rem; } }

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--cream-30);
}

/* ─── FLOATING BUTTONS ─── */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.5); }
  50%      { box-shadow: 0 0 0 14px rgba(201,169,110,0); }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-gold 2.2s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.4s ease;
  box-shadow: 0 4px 16px var(--gold-30);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(201,169,110,0.5);
}
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; fill: var(--black); }

.whatsapp-float::before {
  content: 'Book on WhatsApp';
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.whatsapp-float:hover::before { opacity: 1; }

.call-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--cream-10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.4s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.call-float svg { width: 1.5rem; height: 1.5rem; fill: var(--cream); }
.call-float::before {
  content: 'Call Now';
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.call-float:hover::before { opacity: 1; }

@media (min-width: 768px) { .call-float { display: none; } }
@media (prefers-reduced-motion: reduce) { .whatsapp-float { animation: none; } }

/* ─── STICKY BANNER ─── */
#sticky-banner {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  bottom: -80px;
  transition: bottom 0.4s ease;
}
#sticky-banner.banner-visible { bottom: 0; }

.sticky-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-banner-link {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media (min-width: 640px) { .sticky-banner-link { font-size: 0.875rem; } }
.sticky-banner-close {
  color: rgba(12,12,12,0.5);
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.sticky-banner-close:hover { color: var(--black); }
.sticky-banner-close svg { width: 1.25rem; height: 1.25rem; }

body.banner-active .whatsapp-float { bottom: 84px; }
body.banner-active .call-float { bottom: 84px; }

/* ─── RESPONSIVE ADJUSTMENTS ─── */
@media (max-width: 767px) {
  body.banner-active .whatsapp-float { bottom: 80px; }
  body.banner-active .call-float { bottom: 80px; }
}

@media (max-width: 480px) {
  .gallery-masonry {
    column-gap: 8px !important;
  }
  .gallery-item {
    margin-bottom: 8px !important;
  }
}
