/* ========================================
   APARTMENT 3302 - Hollywood Beach
   Luxury Interior Design Presentation
   Studio Luara Kuhn
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --sand: #F5F0EB;
  --sand-warm: #E8DDD3;
  --sand-deep: #D4C5B5;
  --cream: #FAF8F5;
  --ocean-light: #C5D5DC;
  --ocean: #8AAFBC;
  --ocean-deep: #4A7D8F;
  --ocean-dark: #2C5F70;
  --driftwood: #8B7355;
  --gold: #C4A265;
  --text: #2C2C2C;
  --text-light: #6B6560;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-elegant: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-light);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.03em;
}

.accent-text {
  font-family: var(--font-elegant);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-light);
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.5s;
}
.nav-location {
  display: block;
  font-family: var(--font-elegant);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.65;
  font-weight: 300;
  margin-top: 0.15rem;
  white-space: nowrap;
}
.navbar.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--ocean-deep); }

.lang-switch {
  display: flex;
  gap: 0.3rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  padding: 0.25rem 0.15rem;
  transition: border-color 0.5s;
}
.navbar.scrolled .lang-switch { border-color: var(--sand-deep); }

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  font-weight: 500;
}
.lang-btn.active {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.navbar.scrolled .lang-btn { color: var(--text-light); }
.navbar.scrolled .lang-btn.active {
  background: var(--ocean-deep);
  color: var(--white);
}

.nav-close { display: none; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.navbar.scrolled .menu-toggle span { background: var(--text); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span { background: var(--text) !important; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw 8vh;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

.hero-location {
  font-family: var(--font-elegant);
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}
.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ── Section Base ── */
.section {
  padding: 8rem 6vw;
}
.section-dark {
  background: var(--sand);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header .divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ── Concept Section ── */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.concept-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.concept-image:hover img {
  transform: scale(1.04);
}

.concept-text h2 {
  margin-bottom: 1rem;
}

.concept-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.concept-feature {
  padding-left: 1.5rem;
  border-left: 2px solid var(--ocean-light);
}
.concept-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--ocean-dark);
}
.concept-feature p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ── Layout Section ── */
.layout-section {
  background: var(--sand);
}

.layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.layout-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.layout-card {
  background: var(--cream);
  padding: 2rem 2.2rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.04);
}
.layout-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ocean-dark);
}
.layout-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.layout-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  background: var(--ocean-deep);
  color: var(--white);
  border-radius: 8px;
}
.layout-highlight .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}
.layout-highlight .label {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* ── Room Sections ── */
.room-section {
  padding: 8rem 6vw;
}

.room-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.room-header h2 { margin-bottom: 0.8rem; }

.room-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.room-split.reverse {
  grid-template-columns: 1.4fr 1fr;
}

.room-text-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 120px;
}

.room-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 1.8rem 2rem;
  border-radius: 8px;
  transition: all 0.4s;
}
.room-card:hover {
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.room-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ocean-dark);
  font-weight: 400;
}
.room-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.room-card-img {
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.room-card-img:hover img {
  transform: scale(1.03);
}

.room-gallery {
  display: grid;
  gap: 1rem;
}
.room-gallery.two-col {
  grid-template-columns: 1fr 1fr;
}
.room-gallery.single {
  grid-template-columns: 1fr;
}

.gallery-img {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-img:hover img {
  transform: scale(1.03);
}
.gallery-img.tall {
  grid-row: span 2;
}

/* ── Feature Cards Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(0,0,0,0.07);
}
.feature-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  cursor: zoom-in;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover img {
  transform: scale(1.03);
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--ocean-dark);
  font-weight: 400;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Video Section ── */
.video-section {
  position: relative;
  padding: 0;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}
.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.3) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.4s;
}
.video-overlay:hover {
  background: rgba(0,0,0,0.5);
}
.video-overlay .quote {
  color: var(--white);
  font-family: var(--font-elegant);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-style: italic;
  text-align: center;
  max-width: 650px;
  padding: 0 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ── Studio/About Section ── */
.studio-section {
  text-align: center;
  padding: 8rem 6vw;
  background: var(--sand);
}

.studio-content {
  max-width: 700px;
  margin: 0 auto;
}
.studio-content h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.studio-content .studio-name {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--ocean-deep);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.studio-content .divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.studio-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.studio-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 2.5rem auto 1.5rem;
  border: 3px solid var(--sand-deep);
}
.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-location {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.studio-social {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.studio-social a {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: var(--ocean-deep);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.studio-social a:hover { color: var(--gold); }

/* ── Footer ── */
.footer {
  background: var(--ocean-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 6vw;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.footer a {
  color: var(--gold);
  transition: opacity 0.3s;
}
.footer a:hover { opacity: 0.8; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  cursor: grab;
  transition: transform 0.3s ease;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  transition: opacity 0.3s;
}
.lightbox-nav:hover { opacity: 0.7; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── Image Gallery Carousel ── */
.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-slide {
  min-width: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  cursor: zoom-in;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.carousel-btn:hover {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand-deep);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active {
  background: var(--ocean-deep);
  width: 24px;
  border-radius: 4px;
}

/* ── Video Play Button ── */
.video-play-btn {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.video-play-btn:hover {
  transform: scale(1.15);
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
  50% { filter: drop-shadow(0 0 25px rgba(255,255,255,0.5)); }
}

.video-cta {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ── Video Modal ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.video-modal.active {
  display: flex;
}
.video-modal video {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.video-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.video-modal-close:hover { opacity: 0.7; }

/* ── Welcome Section ── */
.welcome-section {
  text-align: center;
  padding: 8rem 6vw;
  background: var(--cream);
}
.welcome-content {
  max-width: 700px;
  margin: 0 auto;
}
.welcome-greeting {
  font-family: var(--font-elegant);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.welcome-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--ocean-dark);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.welcome-content .divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.welcome-text {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.9;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Mood Board Section ── */
.mood-board-section {
  background: var(--cream);
}
.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.mood-card {
  background: var(--sand);
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  transition: all 0.4s;
  overflow: hidden;
}
.mood-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mood-card:hover img {
  transform: scale(1.05);
}
.mood-card h3,
.mood-card p {
  padding: 0 1.5rem;
}
.mood-card h3 { padding-top: 1.5rem; }
.mood-card p { padding-bottom: 1.5rem; }
.mood-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(0,0,0,0.07);
}
.mood-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--ocean-dark);
  font-weight: 400;
}
.mood-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Mood Board Bottom Grid ── */
.mood-grid-bottom {
  margin-top: 2rem;
}

/* ── Layout Plan Image ── */
.layout-plan-img {
  width: 100%;
  border-radius: 8px;
  cursor: zoom-in;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

/* ── Team Gallery ── */
.team-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto;
}
.team-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-photo-featured {
  grid-column: 1 / -1;
  aspect-ratio: auto;
}
.team-photo-featured img {
  object-position: top;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.team-photo:hover img {
  transform: scale(1.05);
}

.studio-team-text {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

/* ── Search Button ── */
.search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.search-btn:hover { color: var(--gold); }
.navbar.scrolled .search-btn { color: var(--text-light); }
.navbar.scrolled .search-btn:hover { color: var(--ocean-deep); }

/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}
.search-overlay.active {
  display: flex;
}
.search-container {
  width: 90%;
  max-width: 600px;
  position: relative;
}
.search-overlay-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
.search-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  border: none;
  border-bottom: 2px solid var(--gold);
  background: transparent;
  color: var(--white);
  outline: none;
  letter-spacing: 0.02em;
}
.search-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.search-results {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.search-result-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  text-align: left;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.search-result-item:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
}
.search-empty {
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-style: italic;
}

/* ── Photo Gallery Section ── */
.gallery-section {
  background: var(--sand);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
}

.gallery-filter {
  background: transparent;
  border: 1px solid var(--sand-deep);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.gallery-filter:hover {
  border-color: var(--ocean-deep);
  color: var(--ocean-deep);
}
.gallery-filter.active {
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  color: var(--white);
}

.gallery-counter {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-thumb {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(20px);
  animation: galleryFadeIn 0.5s ease forwards;
}
.gallery-thumb.hidden {
  display: none;
  animation: none;
}
.gallery-thumb.paginated-hidden {
  display: none;
  animation: none;
}
@keyframes galleryFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-thumb:hover img {
  transform: scale(1.05);
}

.gallery-load-more {
  display: block;
  margin: 3rem auto 0;
  background: transparent;
  border: 1.5px solid var(--ocean-deep);
  color: var(--ocean-deep);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 3rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.gallery-load-more:hover {
  background: var(--ocean-deep);
  color: var(--white);
}
.gallery-load-more.hidden {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .concept-grid,
  .layout-grid,
  .room-split,
  .room-split.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .room-text-cards { position: static; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .mood-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .team-gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 5rem 5vw; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.7rem 1.5rem; }
  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
  .menu-overlay.active { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    z-index: 999;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-close {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
  }
  .nav-links a {
    color: var(--text) !important;
    font-size: 0.9rem;
  }
  .menu-toggle { display: block; }
  .lang-switch { border-color: var(--sand-deep) !important; }
  .lang-btn { color: var(--text-light) !important; }
  .lang-btn.active { background: var(--ocean-deep) !important; color: var(--white) !important; }

  .hero { min-height: auto; height: 100svh; }
  .hero-content { padding: 0 5vw 6vh; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-location { font-size: clamp(1rem, 4vw, 1.4rem); }

  .features-grid { grid-template-columns: 1fr; }
  .mood-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-filters { gap: 0.4rem; }
  .gallery-filter { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
  .team-gallery { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-photo-featured { grid-column: 1 / -1; }
  .section { padding: 4rem 5vw; }
  .room-section { padding: 4rem 5vw; }
  .welcome-section { padding: 5rem 5vw; }
  .welcome-section h2 { font-size: clamp(2rem, 8vw, 3rem); }

  .carousel-btn { width: 38px; height: 38px; font-size: 1rem; }
  .carousel-prev { left: 0.8rem; }
  .carousel-next { right: 0.8rem; }

  .room-carousel { height: 50vh; min-height: 280px; }
  .video-section { height: 50vh; min-height: 300px; }
  .video-play-btn svg { width: 56px; height: 56px; }

  .layout-plan-img { border-radius: 8px; }

  .search-container { width: 90%; }
  .search-input { font-size: 1.2rem; }
}
