/* ZUROART Studio — Main Aesthetics & Mobile-Optimized Responsive Design System */
:root {
  --bg-deep: #0D0B0A;
  --bg-panel: rgba(22, 17, 14, 0.78);
  --bg-panel-solid: #17120E;
  --bg-card: rgba(30, 23, 19, 0.85);
  --bg-card-hover: rgba(42, 33, 27, 0.95);
  
  --gold: #D4AF37;
  --gold-bright: #F5D061;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-dim: rgba(212, 175, 55, 0.15);
  
  --terracotta: #C85A32;
  --terracotta-bright: #E06D44;
  --terracotta-glow: rgba(200, 90, 50, 0.3);

  --cream: #F5EBE6;
  --cream-dim: #D5C8C0;
  --muted: #9E8E85;
  --line: rgba(212, 175, 55, 0.2);
  --line-light: rgba(255, 255, 255, 0.08);
  
  --shadow-main: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.15);
  
  --nav-bg: rgba(13, 11, 10, 0.88);
  --logo-filter: none;
  --scheme: dark;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg-deep: #FAF6EE;
  --bg-panel: rgba(255, 251, 245, 0.92);
  --bg-panel-solid: #F5EEE2;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8F3EA;
  
  --gold: #B3861B;
  --gold-bright: #966F12;
  --gold-glow: rgba(179, 134, 27, 0.18);
  --gold-dim: rgba(179, 134, 27, 0.12);
  
  --terracotta: #A8421E;
  --terracotta-bright: #8F3314;
  
  --cream: #2B211A;
  --cream-dim: #594A3F;
  --muted: #807166;
  --line: rgba(179, 134, 27, 0.25);
  --line-light: rgba(0, 0, 0, 0.08);
  
  --shadow-main: 0 16px 36px -16px rgba(70, 48, 20, 0.15);
  --shadow-glow: 0 0 25px rgba(179, 134, 27, 0.1);
  
  --nav-bg: rgba(250, 246, 238, 0.92);
  --logo-filter: invert(0.95);
  --scheme: light;
  color-scheme: light;
}

* { box-sizing: border-box; }
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg-deep);
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.08), transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(200, 90, 50, 0.09), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.05), transparent 40%);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--cream);
  word-break: break-word;
}

.eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

/* ===== HEADER & NAVIGATION ===== */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, border-color .35s ease;
  width: 100%;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-bright), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 12px var(--gold-glow);
  flex-shrink: 0;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--cream);
  white-space: nowrap;
}

.brand-text span {
  color: var(--gold);
  font-weight: 400;
  font-size: 13px;
  display: block;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color .2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
  border-radius: 2px;
}

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

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

.nav-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.lang-toggle button.active {
  background: var(--gold);
  color: #000;
}

.icon-btn {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all .2s ease;
  flex-shrink: 0;
}

.icon-btn:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 0 15px var(--gold-glow);
  transform: scale(1.05);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #120C09;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--gold-glow);
  transition: all .3s ease;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, #FFF0B8, var(--gold-bright));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(22, 17, 14, 0.5);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-panel-solid);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-drawer a {
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
}

/* ===== FULLSCREEN CINEMATIC HERO BANNER ===== */
.hero-fullscreen {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 60px 0 80px;
  background: var(--bg-deep);
  width: 100%;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease-in-out;
  transform: scale(1.04);
  filter: brightness(0.92) contrast(1.05);
}

.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(13, 11, 10, 0.25) 0%, rgba(13, 11, 10, 0.15) 35%, rgba(13, 11, 10, 0.75) 75%, rgba(13, 11, 10, 0.95) 100%);
  pointer-events: none;
}

/* Translucent Floating Side Arrows */
.hero-side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(13, 11, 10, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--gold-bright);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.hero-side-arrow.prev { left: 20px; }
.hero-side-arrow.next { right: 20px; }

.hero-side-arrow:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px var(--gold-glow);
}

.hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 17, 14, 0.65);
  border: 1px solid var(--line);
  color: var(--gold-bright);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
}

.hero-title {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright), var(--terracotta-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 16px;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}

.hero-dots button.active {
  background: var(--gold-bright);
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ===== DEDICATED HERO STATS BAR ===== */
.hero-stats-bar {
  background: var(--bg-panel-solid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: relative;
  z-index: 2;
}

.hero-stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}

.hero-stats-inner .stat-item {
  text-align: center;
}

.hero-stats-inner .stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold-bright);
}

.hero-stats-inner .stat-item span {
  font-size: 13px;
  color: var(--muted);
}

/* ===== MARQUEE ===== */
.marquee {
  background: linear-gradient(90deg, var(--bg-panel-solid), var(--bg-card));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.marquee-track span {
  padding: 0 24px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 42px;
  margin: 8px 0 16px;
}

.section-desc {
  color: var(--cream-dim);
  font-size: 17px;
  margin: 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all .35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-main), var(--shadow-glow);
  background: var(--bg-card-hover);
}

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  opacity: .6;
  margin-bottom: 16px;
}

.service-title {
  font-size: 22px;
  margin: 0 0 14px;
}

.service-desc {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}

.service-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-bright);
  background: var(--gold-dim);
  padding: 6px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

/* ===== GALLERY SECTION & SEARCH ===== */
.gallery-search-wrap {
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
  width: 100%;
}

.gallery-search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 14px;
  transition: all .25s ease;
  box-sizing: border-box;
}

.gallery-search-wrap input:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-glow);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 16px;
  pointer-events: none;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  color: var(--cream-dim);
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.art-card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all .35s ease;
  position: relative;
}

.art-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-main), var(--shadow-glow);
}

.art-canvas {
  aspect-ratio: 4/3;
  width: 100%;
  background: #241A13;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.art-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 10, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  backdrop-filter: blur(4px);
}

.art-card:hover .art-overlay {
  opacity: 1;
}

.view-btn {
  background: var(--gold-bright);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.art-meta {
  padding: 22px;
}

.art-meta .tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-bright);
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.art-meta h4 {
  font-size: 20px;
  margin: 0 0 6px;
}

.art-meta p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--muted);
}

/* ===== PROCESS SECTION ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 32px 24px;
  position: relative;
}

.process-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 22px;
}

.process-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.process-card p {
  font-size: 14px;
  color: var(--cream-dim);
  margin: 0;
  line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

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

.testimonial-quote {
  font-style: italic;
  color: var(--cream-dim);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  color: var(--cream);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gold);
}

/* ===== VISIT STUDIO SECTION ===== */
.visit-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: var(--shadow-main);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.visit-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.visit-info p {
  color: var(--cream-dim);
  margin-bottom: 28px;
  font-size: 16px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-text label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .05em;
}

.info-text strong {
  font-size: 16px;
  color: var(--cream);
}

/* ===== ORDER FORM SECTION ===== */
.order-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
  box-shadow: var(--shadow-main);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gold-bright);
  word-break: break-word;
}

.form-control {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

input[type="file"].form-control {
  padding: 10px 14px;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 15px var(--gold-glow);
}

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

.form-help {
  font-size: 12px;
  color: var(--muted);
  word-break: break-word;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  border-radius: 14px;
  margin-top: 16px;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
}

/* ===== PAYMENT CARD STYLING ===== */
.payment-card {
  background: var(--bg-panel-solid);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  margin-top: 10px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-main);
  width: 100%;
  box-sizing: border-box;
}

.payment-card-head {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.payment-card-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin: 4px 0 0;
  color: var(--cream);
}

.payment-rows {
  display: flex;
  flex-direction: column;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  gap: 16px;
}

.payment-row.border-none {
  border-bottom: none;
  padding-bottom: 0;
}

.payment-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--cream-dim);
}

.payment-value-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-value {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
}

.payment-value-sub {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--cream-dim);
}

.copy-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.copy-btn:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ===== LIGHTBOX MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card-custom {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 36px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.95);
  box-sizing: border-box;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  color: var(--cream);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.gallery-detail-imgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.gallery-detail-imgs img {
  border-radius: 12px;
  border: 1px solid var(--line-light);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-panel-solid);
  border-top: 1px solid var(--line);
  padding: 70px 0 35px;
  color: var(--cream-dim);
  width: 100%;
  overflow-x: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 17px;
  margin: 0 0 18px;
  color: var(--gold-bright);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  filter: drop-shadow(0 6px 12px rgba(37, 211, 102, 0.45));
  transition: transform .3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  
  .nav-inner {
    padding: 10px 14px;
    gap: 8px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .brand-link {
    min-width: 0;
    flex-shrink: 1;
  }

  .brand-logo-img {
    height: 32px;
    max-width: 130px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .brand-text {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .05em;
  }
  
  /* Hide lengthy subtitle on all mobile devices to prevent header horizontal overflow */
  .brand-text span {
    display: none !important;
  }
  
  .nav-links, .nav-controls .btn-primary { display: none !important; }
  
  .nav-controls {
    gap: 6px;
    flex-shrink: 0;
  }
  
  .lang-toggle button {
    padding: 4px 8px;
    font-size: 11px;
  }
  
  .icon-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .mobile-toggle {
    display: block !important;
    font-size: 22px;
    padding: 2px 6px;
  }
  
  .wrap {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .hero-fullscreen {
    min-height: 70vh;
    padding: 24px 0 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
  }
  
  .hero-bg-layer {
    filter: brightness(0.96) contrast(1.05); /* Bright and crystal clear painting image */
  }

  .hero-overlay-vignette {
    background: linear-gradient(180deg, rgba(13, 11, 10, 0.15) 0%, rgba(13, 11, 10, 0.1) 40%, rgba(13, 11, 10, 0.78) 75%, rgba(13, 11, 10, 0.95) 100%);
  }

  .hero-side-arrow {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .hero-side-arrow.prev { left: 8px; }
  .hero-side-arrow.next { right: 8px; }

  .hero-wrap {
    text-align: center;
    padding: 0 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 8px;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 8px;
    word-break: break-word;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
  }
  
  /* Hide lead paragraph on mobile hero so text doesn't block the painting image */
  .hero-lead {
    display: none !important;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    flex: 1;
    padding: 10px 10px;
    font-size: 12px;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: center;
  }

  .hero-dots {
    justify-content: center;
    margin-top: 6px;
  }
  
  .hero-stats-bar {
    padding: 16px 0;
  }
  
  .hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    text-align: center;
  }
  
  .hero-stats-inner .stat-item strong {
    font-size: 16px;
    white-space: nowrap;
  }
  
  .hero-stats-inner .stat-item span {
    font-size: 9px;
    line-height: 1.25;
    display: block;
    word-break: break-word;
  }
  
  .card-caption {
    font-size: 15px;
    word-break: break-word;
  }
  
  .hero-arrows button {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .section {
    padding: 44px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .section-head {
    margin-bottom: 28px;
  }
  
  .section-title {
    font-size: 24px;
    word-break: break-word;
  }
  
  .section-desc {
    font-size: 13px;
  }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }
  
  .order-box, .visit-box {
    padding: 20px 14px;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .gallery-search-wrap {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .gallery-filters {
    gap: 6px;
    width: 100%;
    justify-content: center;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .form-group label {
    font-size: 11px;
    word-break: break-word;
  }
  
  .form-control {
    padding: 12px 14px;
    font-size: 14px;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  input[type="file"].form-control {
    padding: 8px 10px;
    font-size: 11px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .submit-btn {
    font-size: 14px;
    padding: 14px 12px;
    white-space: normal !important;
    word-break: break-word;
    text-align: center;
    line-height: 1.35;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
  }

  .wa-float {
    width: 44px;
    height: 44px;
    font-size: 22px;
    bottom: 16px;
    right: 14px;
    z-index: 90;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  }
  
  .modal-card-custom {
    padding: 24px 16px;
    border-radius: 18px;
    max-width: 95vw;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; }
  .stat-item strong { font-size: 14px; }
  .stat-item span { font-size: 8px; }
}