@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* Mobile-only line break */
.mobile-br { display: none; }
@media (max-width: 768px) { .mobile-br { display: block; } }

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

:root {
  --navy-deep: #070d1a;
  --navy-mid: #0d1b2e;
  --navy-light: #122040;
  --navy-card: #0a1526;
  --gold: #c9a96e;
  --gold-light: #e4c98a;
  --teal: #1eb8c4;
  --teal-glow: rgba(30, 184, 196, 0.15);
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.08);
  --border: rgba(201, 169, 110, 0.2);
  --border-subtle: rgba(255,255,255,0.08);
  --font-display: 'Kanit', sans-serif;
  --font-body: 'Kanit', sans-serif;
  --font-heading: 'Kanit', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  padding: 16px 60px;
  background: rgba(7, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--white);
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: var(--white-80);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* Nav Right Group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(201,169,110,0.15);
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--white-50);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.lang-btn:first-child {
  border-right: 1px solid rgba(201,169,110,0.4);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  text-shadow: none;
}
.lang-btn:hover:not(.active) {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
  display: block;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

@media (max-width: 768px) {
  .hero {
    min-height: 400px;
    height: 75vh;
  }
  .hero-bg {
    background-position: 35% center;
    transform: scale(1);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 13, 26, 0.4) 0%,
    rgba(7, 13, 26, 0.2) 40%,
    rgba(7, 13, 26, 0.7) 80%,
    rgba(7, 13, 26, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-80);
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-desc {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}

.hero-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-number sup {
  font-size: 24px;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-50);
  margin-top: 6px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--white-50);
  max-width: 520px;
  font-weight: 300;
}

/* ===== FEATURED CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  group: true;
}

.card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}

.card:hover .card-img {
  transform: scale(1.05);
  filter: brightness(1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  background: linear-gradient(to top, rgba(7,13,26,0.95) 0%, transparent 100%);
}

.card-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.card-desc {
  font-size: 14px;
  color: var(--white-50);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ===== CIRCLE CENTER SECTION ===== */
.escape-section {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.escape-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.escape-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.escape-left, .escape-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.escape-right { text-align: right; }

.escape-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: default;
  transition: all 0.3s ease;
  position: relative;
}

.escape-item:first-child { border-top: 1px solid var(--border-subtle); }

.escape-left .escape-item { padding-left: 0; padding-right: 20px; }
.escape-right .escape-item { padding-right: 0; padding-left: 20px; }

.escape-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.escape-right .escape-item::before {
  left: auto;
  right: 0;
}

.escape-item:hover::before { transform: scaleY(1); }

.escape-item:hover .escape-item-name {
  color: var(--gold-light);
  transform: translateX(6px);
}

.escape-right .escape-item:hover .escape-item-name {
  transform: translateX(-6px);
}

.escape-item-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  transition: color 0.3s ease, transform 0.3s ease;
}

.escape-item-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--white-50);
  text-transform: uppercase;
}

/* Circle wrapper for spinning ring */
.escape-circle-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.escape-circle-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(201,169,110,0.3);
  animation: ringRotate 8s linear infinite;
  pointer-events: none;
}

.escape-circle-ring2 {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.15);
  pointer-events: none;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.escape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-deep);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.1),
    0 0 40px rgba(201,169,110,0.12),
    inset 0 0 60px rgba(7,13,26,0.6);
  transition: box-shadow 0.4s ease;
}

.escape-circle:hover {
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.25),
    0 0 60px rgba(201,169,110,0.2),
    inset 0 0 60px rgba(7,13,26,0.4);
}

.escape-circle img {
  transition: transform 0.6s ease;
}

.escape-circle:hover img {
  transform: scale(1.05);
}

.escape-circle-pre {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-50);
}

.escape-circle-main {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  font-style: italic;
}

/* ===== FEATURED SHOWCASE ===== */
.showcase-section {
  padding: 100px 60px;
  background: var(--navy-mid);
}

.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  align-items: center;
}

.showcase-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.showcase-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
}

.showcase-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.showcase-card-main {
  position: relative;
  overflow: hidden;
}

.showcase-card-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.75);
}

.showcase-card-main:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.showcase-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(7,13,26,0.9) 0%, transparent 100%);
  text-align: center;
}

.showcase-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}

.showcase-card-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.showcase-btn-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ===== TESTIMONIALS ===== */
.reviews-hero {
  padding: 120px 60px 60px;
  position: relative;
}

.reviews-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reviews-title-block {}

.reviews-big-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 300;
  line-height: 0.9;
  color: rgba(255,255,255,0.12);
  letter-spacing: -2px;
}

.reviews-big-title em {
  display: block;
  color: var(--white);
  font-style: italic;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ===== REVIEWS STATS ===== */
.reviews-stats {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
}

.reviews-stat-number {
  font-family: 'Kanit', sans-serif;
  font-size: 72px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.reviews-stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== REVIEW CARDS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 60px 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.review-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-style: italic;
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--white-80);
  font-weight: 300;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.review-style {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== SERVICES PAGE ===== */
.services-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('studio_interior.png');
  background-size: cover;
  background-position: center top;
}

.services-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,13,26,0.3) 0%,
    rgba(7,13,26,0.9) 75%,
    rgba(7,13,26,1) 100%
  );
}

.services-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Services List */
.services-list {
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-item:first-child { border-top: 1px solid var(--border-subtle); }

.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.4s ease;
}

.service-img:hover { filter: brightness(1); }

.service-info {}

.service-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.service-name {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.service-name em { font-style: italic; color: var(--gold-light); }

.service-desc {
  font-size: 16px;
  line-height: 1.9;
  color: var(--white-50);
  font-weight: 300;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.service-features li {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white-80);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.btn-outline {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-solid {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-solid:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.contact-info {
  background: var(--navy-mid);
  padding: 140px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap {
  background: var(--navy-deep);
  padding: 140px 60px 80px;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-detail-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 16px;
  color: var(--white-80);
  font-weight: 300;
}

.contact-hours {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--white-80);
}

.hours-row span:first-child { color: var(--white-50); font-size: 14px; letter-spacing: 0.5px; }

/* Form */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--white-20);
}

.form-select option { background: var(--navy-deep); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== REVIEWS MARQUEE ===== */
.reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
  padding: 10px 0;
}
.reviews-marquee-wrapper:hover .reviews-marquee-track {
  animation-play-state: paused;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
.reviews-marquee-track .review-card {
  width: 380px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 60px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo-main {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--white);
}

.footer-logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-50);
  margin-top: 20px;
  font-weight: 300;
}

.footer-col-title {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Hide chevron on desktop */
.footer-accordion-toggle .chevron { display: none; }
/* Override native button styles for the title */
button.footer-accordion-toggle {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  text-align: left;
  cursor: default;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--white-80);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.8;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.footer-icon svg {
  width: 14px;
  height: 14px;
}

.footer-links a:hover { color: var(--gold); }
.footer-links a:hover .footer-icon { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-copy {
  font-size: 13px;
  color: var(--white-20);
  letter-spacing: 1px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white-50);
  transition: all 0.3s ease;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Large Background Text */
.bg-text {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 200px);
  letter-spacing: 20px;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
  overflow: hidden;
}

/* ===== MAP AREA ===== */
.map-section {
  padding: 0;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%) brightness(40%) sepia(20%) hue-rotate(183deg);
  opacity: 0.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE MENU & RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: rgba(7, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 24px 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links li:first-child {
    border-top: 1px solid var(--border-subtle);
  }

  .nav-links a {
    font-size: 15px;
    display: block;
    padding: 18px 0;
    letter-spacing: 3px;
  }

  /* Logo inside mobile menu */
  .nav-mobile-logo {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding-bottom: 20px;
    margin-bottom: 4px;
  }

  .nav-mobile-logo .nav-logo-main {
    font-size: 20px;
    letter-spacing: 6px;
  }

  .nav-mobile-logo .nav-logo-sub {
    margin-top: 4px;
  }

  /* Contact icons row at bottom of mobile menu */
  .nav-mobile-socials {
    display: flex !important;
    gap: 16px;
    padding-top: 20px;
    justify-content: center;
  }

  .nav-mobile-socials a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .nav-mobile-socials a:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.2);
  }

  .nav-mobile-socials a svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }

  .nav-mobile-socials a.fill-icon svg {
    fill: var(--gold);
    stroke: none;
  }

  .nav-cta { display: none; }
  .nav-right { gap: 8px; }
  .lang-btn { padding: 6px 12px; font-size: 11px; }
  .hamburger { display: flex; z-index: 1001; }

  .hero { min-height: 600px; }
  .hero-subtitle { font-size: 12px; letter-spacing: 2px; margin-bottom: 32px; }

  .stats-bar { padding: 30px 24px; flex-wrap: wrap; gap: 24px; justify-content: center; }
  .stat-divider { display: none; }
  .stat-number { font-size: 36px; }

  .section { padding: 60px 24px; }

  .escape-section { padding: 60px 24px; }
  .escape-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }
  .escape-right { text-align: center; }
  .escape-left { text-align: center; }
  .escape-left .escape-item { padding-left: 0; padding-right: 0; }
  .escape-right .escape-item { padding-right: 0; padding-left: 0; }
  .escape-circle-wrap {
    width: 200px;
    height: 200px;
    order: -1;
    margin: 0 auto 32px;
  }
  .escape-circle { width: 200px; height: 200px; }
  .escape-circle-main { font-size: 36px; }
  .escape-item::before { display: none; }

  /* Merge left & right into 3-col grid (3 items per group) */
  .escape-left,
  .escape-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }
  .escape-item {
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 16px 8px !important;
    background: rgba(10, 21, 38, 0.6);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .escape-item:first-child { border-top: 1px solid var(--border-subtle); }
  .escape-item:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.06);
  }
  .escape-item-name { font-size: 13px; }
  .escape-item-sub { font-size: 7px; max-width: 100%; }

  .cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .showcase-grid { display: flex; flex-direction: column; gap: 16px; width: 100%; }
  .showcase-side { gap: 16px; width: 100%; box-sizing: border-box; }
  .showcase-section { padding: 60px 24px; }
  .showcase-card-main, .showcase-card { max-width: 100%; width: 100%; box-sizing: border-box; }
  .showcase-card-main { order: -1; }
  .showcase-card-main img { height: 350px; width: 100%; object-fit: cover; }

  .reviews-teaser-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .marquee-stats { justify-content: center; }
  .reviews-teaser-grid > div:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .reviews-hero { padding: 100px 24px 40px; }
  .reviews-hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .reviews-title-block { display: flex; flex-direction: column; align-items: center; }
  .reviews-title-block .section-body { text-align: center; }
  .reviews-big-title { font-size: 70px; }
  .reviews-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; justify-items: center; }
  .reviews-stat-number { font-size: 42px; }
  .reviews-stat-label { font-size: 12px; letter-spacing: 2px; }
  .reviews-grid { grid-template-columns: 1fr; padding: 0 24px 60px; }
  em.mobile-block { display: block; }

  .services-hero-content { padding: 0 24px; }
  .services-list { padding: 40px 24px; }
  .service-item { grid-template-columns: 1fr; gap: 30px; }
  .service-item.reverse { direction: ltr; }

  .contact-section { grid-template-columns: 1fr; }
  .contact-info { padding: 100px 24px 60px; }
  .contact-form-wrap { padding: 60px 24px 80px; border-left: none; border-top: 1px solid var(--border-subtle); }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 60px 24px 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* Studio section responsive */
  .studio-atmo-header { padding: 60px 24px 40px; }
  .studio-main-slider.img-slider { aspect-ratio: 4/3; }
  .studio-btn { width: 44px !important; height: 44px !important; font-size: 26px !important; }
  .studio-counter { bottom: 60px; right: 20px; }
}

/* ===== TABLET BREAKPOINT ===== */
@media (max-width: 768px) {
  .hero { min-height: 550px; }
  .hero-content { padding: 0 16px; }
  .hero-subtitle { font-size: 11px; letter-spacing: 2px; }

  .stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px;
  }
  .stat-divider { display: none; }

  .cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-overlay { padding: 20px 16px; }
  .card-title { font-size: 20px; }

  .escape-circle-wrap { width: 170px; height: 170px; margin-bottom: 24px; }
  .escape-circle { width: 170px; height: 170px; }
  .escape-circle-main { font-size: 32px; }
  .escape-circle-pre { font-size: 9px; }
  .escape-item-name { font-size: 14px; }

  .showcase-card-main img { height: 300px; }

  .reviews-big-title { font-size: 55px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }

  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 28px; }
  .lightbox-close { width: 40px; height: 40px; font-size: 22px; top: 16px; right: 16px; }
}

/* ===== SMALL MOBILE BREAKPOINT ===== */
@media (max-width: 480px) {
  .navbar { padding: 16px 16px; }
  .navbar.scrolled { padding: 12px 16px; }
  .nav-logo-main { font-size: 18px; letter-spacing: 4px; }
  .nav-logo-sub { font-size: 8px; }

  .hero { min-height: 500px; }
  .hero-tag { font-size: 9px; letter-spacing: 3px; margin-bottom: 16px; }
  .hero-subtitle { font-size: 10px; letter-spacing: 1px; margin-bottom: 24px; }
  .hero-btn { padding: 14px 32px; font-size: 10px; }

  .stats-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px 16px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 9px; }

  .section { padding: 40px 16px; }
  .section-tag { font-size: 9px; letter-spacing: 3px; }
  .section-body { font-size: 13px; }

  .escape-section { padding: 40px 16px; }
  .escape-circle-wrap { width: 160px; height: 160px; margin-bottom: 20px; }
  .escape-circle { width: 160px; height: 160px; }
  .escape-circle-main { font-size: 28px; }
  .escape-item-name { font-size: 13px; }
  .escape-item-sub { font-size: 8px; letter-spacing: 1px; }
  .escape-left,
  .escape-right {
    gap: 8px;
  }
  .escape-item {
    padding: 14px 10px !important;
  }

  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .card-overlay { padding: 16px 14px; }
  .card-tag { font-size: 8px; }
  .card-title { font-size: 18px; }

  .showcase-section { padding: 40px 16px; }
  .showcase-card-main img { height: 250px; }

  .reviews-teaser-grid { gap: 30px !important; }

  .reviews-hero { padding: 80px 16px 30px; }
  .reviews-big-title { font-size: 40px; }
  .reviews-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .reviews-stat-number { font-size: 36px; }
  .reviews-stat-label { font-size: 11px; letter-spacing: 1.5px; }
  .reviews-grid { padding: 0 16px 40px; gap: 16px; }
  .review-card { padding: 24px 20px; }
  .review-text { font-size: 13px; }

  .services-hero-content { padding: 0 16px; }

  .btn-outline { padding: 12px 28px; font-size: 9px; letter-spacing: 2px; }
  .btn-solid { padding: 12px 28px; font-size: 9px; letter-spacing: 2px; }

  .footer { padding: 40px 16px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 0; }
  
  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 8px;
  }
  
  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .footer-col:first-child { 
    padding-bottom: 24px;
    margin-bottom: 8px;
    border-bottom: none;
  }
  
  /* Accordion Header */
  .footer-col-title {
    margin-bottom: 0;
    font-size: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  button.footer-accordion-toggle {
    cursor: pointer;
    width: 100%;
    padding: 30px 0;
  }
  .footer-accordion-toggle .chevron { 
    display: block; 
    color: var(--white-50);
    transition: transform 0.3s ease;
    position: absolute;
    right: 0;
  }
  
  /* Accordion Content */
  .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding-bottom: 0;
    width: 100%;
  }
  .footer-links a {
    padding: 18px 0;
    font-size: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  /* Open State */
  .footer-col.open .footer-links {
    max-height: 400px; /* arbitrary large max-height */
    opacity: 1;
    padding-bottom: 16px;
  }
  .footer-col.open .footer-accordion-toggle .chevron {
    transform: rotate(180deg);
  }

  .footer-logo-main { font-size: 22px; }
  .footer-desc { font-size: 12px; }
  .footer-copy { font-size: 10px; }
  .footer-bottom { 
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding-top: 24px;
    text-align: center;
  }

  .studio-atmo-header { padding: 40px 16px 24px; }
  .studio-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; padding: 0 4px; }
  .studio-show-btn { font-size: 11px; padding: 12px 28px; }
  .studio-grid-footer {
    position: relative;
    display: block;
    clear: both;
    margin-top: 32px;
    z-index: 10;
  }

  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 22px; }
  .lightbox-close { width: 36px; height: 36px; font-size: 20px; top: 12px; right: 12px; }
  .lightbox-counter { font-size: 10px; bottom: 16px; }
}

/* ===== STUDIO ATMOSPHERE SECTION ===== */
.studio-atmo-section {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding-bottom: 80px;
}

.studio-atmo-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px 48px;
  text-align: center;
}

.studio-atmo-header .section-body {
  margin: 0 auto;
}

/* 4-column portrait photo grid */
.studio-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 60px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.studio-photo-grid .grid-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.95);
  transition: filter 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.studio-photo-grid .grid-img:hover {
  filter: brightness(1) saturate(1.1);
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}

@media (max-width: 900px) {
  .studio-atmo-header { padding: 60px 24px 32px; }
  .studio-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 0; }
}


/* Left and bottom gradient overlays */
.studio-overlay-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: linear-gradient(to right, rgba(7,13,26,0.85) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.studio-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(7,13,26,0.9) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Nav buttons styled as sleek bars */
.studio-btn {
  width: 56px !important;
  height: 56px !important;
  font-size: 32px !important;
  background: rgba(7,13,26,0.6) !important;
  border: 1px solid rgba(201,169,110,0.25) !important;
  backdrop-filter: blur(10px);
  z-index: 10;
  transition: all 0.3s ease !important;
}

.studio-btn:hover {
  background: rgba(201,169,110,0.2) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* Dots override */
.studio-dots {
  bottom: 24px !important;
  z-index: 5;
}

/* Counter badge top-right */
.studio-counter {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 5;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
}

.studio-counter-cur {
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.studio-counter-sep {
  font-size: 14px;
  color: var(--white-50);
}

.studio-counter-total {
  font-size: 14px;
  color: var(--white-50);
  letter-spacing: 1px;
}

/* ===== STUDIO PHOTO GRID ===== */
.studio-atmo-section {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding-bottom: 60px;
}

.studio-atmo-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px 48px;
  text-align: center;
}

.studio-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hide images beyond the 4th by default */
.studio-photo-grid .grid-img:nth-child(n+5) {
  display: none;
}

.studio-photo-grid.expanded .grid-img:nth-child(n+5) {
  display: block;
}

.studio-photo-grid .grid-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.95);
  transition: filter 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.studio-photo-grid .grid-img:hover {
  filter: brightness(1) saturate(1.1);
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}

/* Show More button */
.studio-grid-footer {
  text-align: center;
  margin-top: 32px;
}

.studio-show-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white-80);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.studio-show-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.studio-show-btn svg {
  transition: transform 0.4s ease;
}

.studio-show-btn.open svg {
  transform: rotate(180deg);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 18, 0.97);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.lightbox.active {
  display: flex;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 28px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7,13,26,0.7);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--white);
  font-size: 40px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(201,169,110,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--white-50);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .studio-atmo-header { padding: 60px 24px 32px; }
  .studio-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0; max-height: 640px; overflow: hidden; }
  .studio-photo-grid.expanded { max-height: none; overflow: visible; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--navy-deep); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--gold); }

.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--white-50);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.9;
  padding-bottom: 22px;
}

/* ===== LUXURY: GOLD LINE DIVIDERS ===== */
.gold-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin: 0;
}

.gold-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  background: var(--navy-deep);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ===== LUXURY: HOVER GLOW EFFECT ===== */
.hero-btn,
.nav-cta,
.btn-outline,
.btn-solid {
  position: relative;
}

.hero-btn:hover,
.nav-cta:hover {
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3), 0 0 60px rgba(201, 169, 110, 0.1);
}

.btn-outline:hover {
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.25), 0 0 50px rgba(201, 169, 110, 0.08);
}

.btn-solid:hover {
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.4), 0 0 60px rgba(201, 169, 110, 0.15);
}

.card:hover {
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.12), 0 0 1px rgba(201, 169, 110, 0.3);
  border-color: rgba(201, 169, 110, 0.25);
}

.showcase-card:hover {
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.2);
}

.faq-question:hover {
  text-shadow: 0 0 20px rgba(201, 169, 110, 0.15);
}

/* ===== LUXURY: GRAIN / NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  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.9' 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: 256px 256px;
}
