/* sections.css */

/* Subtle gold divider between major sections */
section[id] {
  position: relative;
}

section[id]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

section[id]:last-of-type::after {
  display: none;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-5) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: var(--z-fixed);
  transition: background-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav-scrolled {
  background-color: rgba(24, 24, 27, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-3) var(--space-8);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

[data-theme="light"] .nav {
  background-color: rgba(245, 240, 232, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

[data-theme="light"] .nav-scrolled {
  background-color: rgba(245, 240, 232, 0.95);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  font-weight: 500;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 50%;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  color: var(--text-primary);
  font-size: var(--text-md);
  padding: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.theme-toggle:hover {
  background-color: var(--bg-tertiary);
  transform: scale(1.1);
}

.theme-toggle i {
  font-size: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle:hover i {
  transform: rotate(30deg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: calc(var(--z-fixed) + 1);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.nav-mobile.active {
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.nav-mobile.active .nav-mobile-inner {
  transform: translateY(0);
}

.nav-mobile-link {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile.active .nav-mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.active .nav-mobile-link:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active .nav-mobile-link:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.active .nav-mobile-link:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile.active .nav-mobile-link:nth-child(4) { transition-delay: 0.4s; }

.nav-mobile-cta {
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--gold);
  padding: var(--space-3) var(--space-6);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-mobile-cta:hover {
  background-color: var(--gold);
  color: var(--obsidian);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: 4px;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  animation: preloaderFadeIn 1s ease 0.2s backwards;
}

.preloader-logo span {
  color: var(--gold);
  display: inline-block;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background-color: var(--border-light);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.preloader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #e8d48b, var(--gold));
  background-size: 200% 100%;
  animation: preloaderFill 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, shimmer 0.8s linear infinite;
}

@keyframes preloaderFill {
  0% { width: 0%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background-color: var(--gold);
  width: 0%;
  z-index: calc(var(--z-fixed) + 10);
  transition: width 0.1s linear;
}

/* Hero Section */
.hero::after {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-32) 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-negative);
  will-change: transform;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: opacity 0.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,24,27,0.92) 0%, rgba(24,24,27,0.5) 40%, rgba(24,24,27,0.7) 70%, rgba(24,24,27,0.9) 100%);
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.08) 70%, rgba(0,0,0,0.12) 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  max-width: 800px;
  padding-left: var(--space-8);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: var(--text-xxl);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-6);
}

[data-theme="light"] .hero-headline {
  color: var(--obsidian);
}

[data-theme="light"] .hero-sub {
  color: rgba(10, 10, 10, 0.7);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-word {
  display: inline-block;
}

.hero-sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: var(--space-8);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-lr;
  margin-bottom: var(--space-1);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollGlow 2.5s ease-in-out infinite;
}

.scroll-arrow {
  animation: bounceScroll 2.5s ease-in-out infinite;
  color: var(--gold);
  font-size: 14px;
  margin-top: -4px;
}

@keyframes scrollGlow {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.8); }
}

@keyframes bounceScroll {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero-k {
  font-family: var(--font-heading);
  font-size: 40vw;
  line-height: 0.8;
  color: rgba(201, 168, 76, 0.03);
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: var(--space-12) auto;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.06) inset;
}

[data-theme="light"] .stats-bar {
  background-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,0.8) inset;
}

.stat-item {
  padding: var(--space-6) var(--space-4);
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

@media (max-width: 640px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin-left: var(--space-3); margin-right: var(--space-3); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item { padding: var(--space-5) var(--space-3); }
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--gold);
  margin-bottom: 2px;
  line-height: 1;
}

.stat-item.revealed .stat-num {
  animation: countPulse 0.6s ease;
}

@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); color: var(--gold-light); }
  100% { transform: scale(1); }
}

.stat-item.counted .stat-num {
  animation: countPulse 0.6s ease;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* About Section */
.about-section {
  padding: var(--space-24) 0;
  background-color: var(--bg-primary);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-text {
  font-size: var(--text-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about-philosophy {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.philosophy-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  column-gap: var(--space-4);
}

.philosophy-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  grid-row: span 2;
}

.philosophy-item h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
}

.philosophy-item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.about-stats-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--bg-secondary);
  padding: var(--space-6);
  border: 1px solid var(--border-light);
  display: flex;
  gap: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.asc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.asc-num {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--gold);
}

.asc-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.asc-divider {
  width: 1px;
  background-color: var(--border-light);
}

/* Portfolio Section */
.portfolio-section {
  padding: var(--space-24) 0;
  background-color: var(--bg-secondary);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-8);
}

.portfolio-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-4);
}

.portfolio-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.portfolio-search-wrap i {
  position: absolute;
  left: var(--space-3);
  color: var(--text-secondary);
}

.portfolio-search {
  padding: var(--space-2) var(--space-4) var(--space-2) var(--space-8);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  width: 250px;
  transition: width var(--transition-normal), border-color var(--transition-fast);
}

.portfolio-search:focus {
  width: 300px;
  border-color: var(--gold);
}

.view-all-link {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

/* AI Designer Section */
.ai-section {
  padding: var(--space-24) 0;
  background-color: var(--bg-parchment);
}

.ai-intro {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-10);
}

/* Model Tabs */
.do-model-tabs {
  display: flex;
  gap: 1px;
  margin-bottom: var(--space-8);
  background: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 400px;
}

.do-model-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-secondary);
  border: none;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  transition: all var(--transition-fast);
  position: relative;
}

.do-model-tab i {
  font-size: 16px;
}

.do-model-tab small {
  font-size: 10px;
  opacity: 0.7;
  margin-left: auto;
}

.do-model-premium.active {
  background: var(--bg-parchment);
  color: var(--gold);
  font-weight: 600;
  box-shadow: 0 -2px 0 var(--gold) inset;
}

.do-model-premium.active small {
  color: var(--gold);
  opacity: 1;
}

.do-model-basic {
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  font-weight: 400;
}

.do-model-basic.active {
  background: var(--bg-parchment);
  color: #C4956A;
  font-weight: 600;
  box-shadow: 0 -2px 0 #C4956A inset;
}

.do-model-basic.active small {
  color: #C4956A;
  opacity: 1;
}

.do-model-basic:hover {
  color: var(--text-primary);
}

/* Basic AI generate button */
.do-generate-basic {
  background: #C4956A !important;
  border-color: #C4956A !important;
}

.do-generate-basic:hover {
  background: #D4A87A !important;
}

/* Free tier info in auth panel */
.auth-free-info {
  display: block;
  font-size: 11px;
  opacity: 0.7;
}

/* Design Options */
.design-options {
  max-width: 900px;
}

.do-group {
  margin-bottom: var(--space-6);
}

.do-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.do-counter {
  color: var(--gold);
  font-family: var(--font-mono);
}

.do-grid {
  display: grid;
  gap: var(--space-2);
}

.do-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.do-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.do-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-3);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
  text-align: center;
}

.do-card i {
  font-size: 20px;
  color: var(--text-tertiary);
}

.do-card-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: var(--space-1);
  filter: grayscale(1) opacity(0.6);
  transition: all var(--transition-fast);
}

.do-card:hover .do-card-icon-img,
.do-card.selected .do-card-icon-img {
  filter: none;
}


.do-card:hover {
  border-color: var(--gold);
  background-color: var(--bg-tertiary);
}

.do-card.selected {
  border-color: var(--gold);
  background-color: rgba(201, 168, 76, 0.08);
}

.do-card.selected i {
  color: var(--gold);
}

.do-palette {
  flex-direction: row;
  padding: var(--space-2) var(--space-3);
}

.do-swatch {
  display: block;
  width: 40px;
  height: 24px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.do-actions {
  margin-top: var(--space-8);
}

.do-generate {
  width: 100%;
  max-width: 400px;
}

.do-result {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}

.do-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.regen-btn, .download-btn {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-fast);
}

.regen-btn:hover, .download-btn:hover {
  background: var(--gold);
  color: var(--obsidian);
}


.do-result-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

.do-result-img-wrap {
  position: relative;
  text-align: center;
}


.do-result-img-wrap img {
  max-width: 100%;
  max-height: 400px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.do-result-img-wrap img.loaded {
  opacity: 1;
}

.do-result-img-wrap.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid var(--border-gold);
  border-top-color: transparent;
  border-radius: 50%;
  animation: do-spin 0.8s linear infinite;
}

@keyframes do-spin {
  to { transform: rotate(360deg); }
}

.do-result-img-wrap.loading img {
  opacity: 0;
}

.do-status {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-top: var(--space-3);
  min-height: 20px;
}

.do-prompt-display {
  margin-top: var(--space-4);
  padding: var(--space-3);
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  word-break: break-all;
}

.prompt-label {
  color: var(--gold);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: var(--space-2);
}

/* Success Modal */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: calc(var(--z-modal) + 10);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-modal.active {
  opacity: 1;
  pointer-events: all;
}

.success-modal-content {
  background: var(--bg-secondary);
  padding: var(--space-12);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-gold);
}

.success-modal.active .success-modal-content {
  transform: scale(1);
}

.success-checkmark {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto var(--space-6);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

@keyframes successPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.success-modal-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.success-modal-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
}

/* Success Modal */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: calc(var(--z-modal) + 10);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-modal.active {
  opacity: 1;
  pointer-events: all;
}

.success-modal-content {
  background: var(--bg-secondary);
  padding: var(--space-12);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-gold);
}

.success-modal.active .success-modal-content {
  transform: scale(1);
}

.success-checkmark {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto var(--space-6);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

@keyframes successPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.success-modal-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.success-modal-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
}

/* DNA Section */
.dna-section {
  padding: var(--space-24) 0;
  background-color: var(--bg-secondary);
}

.dna-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-12);
}

.dna-profile {
  background-color: var(--bg-tertiary);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
}

.dna-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.dna-bar-group {
  margin-bottom: var(--space-4);
}

.dna-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.dna-bar-label span:last-child {
  color: var(--gold);
  font-weight: 500;
}

.dna-bar-track {
  height: 4px;
  background-color: var(--bg-primary);
  border-radius: 2px;
  overflow: hidden;
}

.dna-bar-fill {
  height: 100%;
  background-color: var(--gold);
  transition: width 1s ease-out;
}

.dna-desc {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-light);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.room-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.room-mini {
  background-color: var(--bg-primary);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  text-align: center;
  border: 1px solid var(--border-light);
}

.room-mini-selected {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(201, 168, 76, 0.05);
}

.dna-concepts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.concept-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-tertiary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.concept-card .concept-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.concept-card:hover .concept-img.loaded {
  transform: scale(1.05);
}

.concept-card .concept-img.loaded {
  opacity: 1;
}

.concept-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.concept-img.loaded {
  opacity: 1;
}

.concept-label-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: var(--space-4);
  color: var(--white);
  font-size: var(--text-sm);
  text-align: center;
}

.style-modify-inline {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Upload Section */
.upload-section {
  padding: var(--space-24) 0;
  background-color: var(--bg-primary);
}

.upload-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.upload-zone {
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  background-color: rgba(201, 168, 76, 0.02);
  transition: all var(--transition-fast);
  margin-bottom: var(--space-6);
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-zone.dragover {
  border-color: var(--gold);
  background-color: rgba(201, 168, 76, 0.1);
}

.upload-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.upload-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.upload-sub {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.upload-preview {
  position: absolute;
  inset: 0;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
}

.upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.upload-remove {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(0,0,0,0.5);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.room-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-secondary);
}

.room-tag.active {
  border-color: var(--gold);
  color: var(--gold);
}

.upload-style-select {
  margin-bottom: var(--space-8);
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ba-label-tag {
  position: absolute;
  top: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: rgba(0,0,0,0.6);
  color: white;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.ba-label-before {
  left: var(--space-4);
}

.ba-label-after {
  right: var(--space-4);
}

.ba-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--gold);
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--obsidian);
  box-shadow: var(--shadow-md);
}

.ba-info {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.ba-info i {
  color: var(--gold);
  margin-top: 2px;
}

.upload-generate-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.upload-generate-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Budget Section */
.budget-section {
  padding: var(--space-24) 0;
  background-color: var(--bg-parchment);
}

.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.budget-context {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.budget-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.budget-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.budget-row:hover {
  background-color: var(--bg-tertiary);
}

.budget-cat {
  width: 100px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.budget-row:hover .budget-cat {
  color: var(--text-primary);
}

.budget-track {
  flex: 1;
  height: 8px;
  background-color: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
}

.budget-fill {
  height: 100%;
  background-color: var(--text-secondary);
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.budget-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.budget-row:hover .budget-fill::after {
  opacity: 1;
}

.budget-fill.gold {
  background-color: var(--gold);
}

.budget-amt {
  width: 120px;
  text-align: right;
  font-family: var(--font-heading);
  font-size: var(--text-md);
  transition: color var(--transition-fast);
}

.budget-row:hover .budget-amt {
  color: var(--gold);
}

.budget-total {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.total-fill {
  background-color: var(--text-primary);
}

.total-amt {
  color: var(--gold);
  font-weight: 500;
  font-size: var(--text-lg);
}

.budget-summary {
  background-color: var(--bg-secondary);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bs-section {
  margin-bottom: var(--space-6);
}

.bs-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.bs-total {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.bs-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-light);
  margin-bottom: var(--space-6);
}

.bs-persqm {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
}

.bs-donut-wrap {
  width: 200px;
  height: 200px;
  margin-bottom: var(--space-6);
  position: relative;
}

.donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-segment {
  transition: stroke-dasharray 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), stroke-dashoffset 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}

.donut-segment:hover {
  stroke-width: 14;
  filter: brightness(1.2);
}

.donut-label {
  display: none;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  white-space: nowrap;
}

.bs-donut-wrap:hover .donut-label {
  display: block;
}

.bs-note {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-bottom: var(--space-6);
}

.bs-cta {
  width: 100%;
}

/* Testimonials */
.testimonials {
  padding: var(--space-24) 0;
  background-color: var(--bg-primary);
}

.test-carousel-wrap {
  overflow: hidden;
}

.test-grid {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.test-card {
  flex: 0 0 calc((100% - var(--space-6) * 2) / 3);
  min-width: 0;
  background-color: var(--bg-secondary);
  padding: var(--space-8);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.test-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-6);
}

.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.test-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.test-dot:hover {
  background: var(--gold);
  opacity: 0.6;
}

.test-stars {
  color: var(--gold);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.test-quote {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  line-height: 1.4;
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

.test-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.test-avatar {
  width: 40px;
  height: 40px;
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-md);
}

.test-name {
  font-weight: 500;
  font-size: var(--text-sm);
}

.test-role {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

/* Booking Section */
.booking-section {
  padding: var(--space-24) 0;
  background-color: var(--bg-secondary);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
}

.booking-info h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.booking-info p {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--text-secondary);
}

.contact-method {
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.contact-method:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.contact-method:hover .contact-method-icon {
  background-color: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.booking-dna-card {
  background-color: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border-gold);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-8);
}

.booking-dna-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.booking-map {
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.booking-map .leaflet-container {
  width: 100%;
  height: 100%;
}

[data-theme="dark"] .booking-map .leaflet-layer,
[data-theme="dark"] .booking-map .leaflet-control-zoom a {
  filter: invert(0.9) hue-rotate(180deg);
}

.booking-form-wrap {
  background-color: var(--bg-primary);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.booking-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--space-8);
}

.booking-tab {
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.booking-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.file-upload-field {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background-color: var(--bg-secondary);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
}

.file-upload-field:hover {
  border-color: var(--gold);
}

.form-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.form-submit {
  flex: 1;
}

/* Blog Section */
.blog-section {
  padding: var(--space-24) 0;
  background-color: var(--bg-primary);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-8);
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-6);
}

.blog-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.4), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.blog-card:hover .blog-img::after {
  opacity: 1;
}

.blog-read-more {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transition: all var(--transition-normal);
  z-index: 2;
}

.blog-card:hover .blog-read-more {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.blog-featured .blog-img {
  height: 300px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-content {
  padding: var(--space-6);
}

.blog-cat {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.blog-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.blog-featured .blog-title {
  font-size: var(--text-xl);
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.blog-date {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* Footer */
.site-footer {
  background-color: var(--obsidian);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .site-footer {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
}

.footer-top {
  padding: var(--space-16) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-8);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--space-4);
}

[data-theme="light"] .footer-logo {
  color: var(--obsidian);
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
}

[data-theme="light"] .social-link {
  color: var(--text-tertiary);
}

.social-link {
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
  color: var(--gold);
  transform: scale(1.2);
}

.footer-links-col h4, .footer-newsletter h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}

[data-theme="light"] .footer-links-col h4, [data-theme="light"] .footer-newsletter h4 {
  color: var(--obsidian);
}

.footer-links-col a {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.footer-links-col a {
  padding-left: 0;
  transition: padding var(--transition-fast), color var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-3) var(--space-4);
  color: var(--white);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

[data-theme="light"] .newsletter-input {
  background-color: var(--bg-tertiary);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.newsletter-btn {
  background-color: var(--gold);
  color: var(--obsidian);
  padding: 0 var(--space-4);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-6) 0;
}

[data-theme="light"] .footer-bottom {
  border-top-color: var(--border-light);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}

.footer-legal {
  display: flex;
  gap: var(--space-4);
}

/* ===== VISION / MISSION CARDS ===== */
.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.about-card {
  background: rgba(120, 120, 120, 0.05);
  padding: 24px;
  border-left: 2px solid var(--gold);
  border-radius: 4px;
}

.about-card-title {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: 1px;
}

.about-card-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-secondary);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.services-section .section-title {
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-alt);
  padding: 40px 30px;
  border-radius: 8px;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card.service-delay-1 { transition-delay: 0.1s; }
.service-card.service-delay-2 { transition-delay: 0.2s; }
.service-card.service-delay-3 { transition-delay: 0.3s; }

.service-card-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== AI START BUTTON ===== */
.ai-start-btn {
  background: var(--obsidian);
  color: var(--white);
  margin-top: 28px;
}

[data-theme="light"] .ai-start-btn {
  background: var(--obsidian);
  color: var(--white);
}

/* ===== SECTION COLOR OVERRIDES ===== */
.section-label-gold {
  color: var(--gold);
}

.section-title-dark {
  color: var(--obsidian);
}

.project-card-info-empty {
  display: none;
}

.booking-intro-text {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ===== PDF DIVIDER ===== */
.pdf-divider {
  width: 100%;
  background-color: var(--bg-alt);
  padding: 40px 0;
  text-align: center;
}

.pdf-divider img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.pdf-divider img.loaded {
  opacity: 1;
}

/* ===== FEATURED PDF WORK ===== */
.pdf-work-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.pdf-work-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pdf-work-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pdf-commercial-divider {
  margin: 40px 0;
}

.pdf-commercial-divider img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ===== SLOGAN DIVIDER ===== */
.slogan-divider {
  background-color: #1a2f24;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.slogan-divider h2 {
  font-family: 'Cormorant Garamond';
  font-size: 48px;
  color: #fff;
  font-style: italic;
  font-weight: 300;
}

/* ===== PORTFOLIO MORE BTN ===== */
.portfolio-more {
  text-align: center;
  margin-top: 50px;
}

/* ===== NEW PORTFOLIO STYLES ===== */

/* Description text */
.portfolio-desc {
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 600px;
  font-size: var(--text-md);
  line-height: 1.7;
}

/* Filter Dropdown */
.portfolio-filter-wrap {
  margin-bottom: 40px;
  position: relative;
}

.portfolio-dropdown {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.portfolio-dropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gold);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-dropdown-btn i {
  transition: transform 0.3s ease;
  color: var(--gold);
}

.portfolio-dropdown.open .portfolio-dropdown-btn i {
  transform: rotate(180deg);
}

.portfolio-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-top: none;
  z-index: 100;
  max-height: 350px;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.portfolio-dropdown.open .portfolio-dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--text-md);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(201, 171, 109, 0.1);
  color: var(--gold);
}

/* Cards Container - single column stack */
.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.project-card-new {
  position: relative;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  cursor: zoom-in;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.project-card-new.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  position: absolute;
}

.project-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.project-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,0.06) 50%, transparent 75%);
  background-size: 200% 100%;
  z-index: 1;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-img img.loaded {
  opacity: 1;
  transform: scale(1);
}

.project-card-new:hover .project-card-img img {
  transform: scale(1.04);
}

.concept-card:hover .concept-img {
  transform: scale(1.05);
}

.project-card-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  display: flex;
  gap: 6px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.project-card-new:hover .project-card-dots {
  opacity: 1;
  transform: translateY(0);
}

.project-card-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.project-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 30px 30px;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 50%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.project-card-new:hover .project-card-info {
  opacity: 1;
  transform: translateY(0);
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 1px;
}

.project-card-cat {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

  /* More Projects button */
.portfolio-more .btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: var(--text-md);
  transition: all 0.3s ease;
}

.portfolio-more .btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: var(--text-md);
  font-weight: 500;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-instagram i {
  font-size: 20px;
  color: var(--gold);
  transition: color 0.4s ease;
}

.btn-instagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737, #FCAF45);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-instagram:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.35);
}

.btn-instagram:hover::before {
  opacity: 1;
}

.btn-instagram:hover i {
  color: #fff;
}

/* Horizontal Filter List */
.portfolio-filter-list {
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.filter-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-item {
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
  border: none;
  background: transparent;
  border-radius: 0;
  font-size: 15px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.filter-item:hover, .filter-item.active {
  color: var(--gold);
  background: transparent;
  border-color: transparent;
}

.filter-item:hover::after, .filter-item.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .filter-list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }
}
