/* ===================================
   DOMENDOMEN - Retro Glamour Theme
   =================================== */

/* CSS Variables - Retro Glamour Palette */
:root {
  /* Colors */
  --bg-primary: #0D0D0D;
  --bg-secondary: #1A1A1A;
  --bg-tertiary: #0F0F0F;
  --bg-card: #141414;
  --bg-card-hover: #1C1C1C;
  
  --gold-primary: #D4AF37;
  --gold-light: #F5D472;
  --gold-dark: #B8972E;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5D472 50%, #D4AF37 100%);
  
  --burgundy: #722F37;
  --burgundy-light: #8B3A44;
  --burgundy-dark: #5A252C;
  
  --emerald: #046307;
  --emerald-light: #0A8A0E;
  --emerald-dark: #034A06;
  
  --text-primary: #FAFAFA;
  --text-secondary: #B3B3B3;
  --text-muted: #808080;
  
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-gold-hover: rgba(212, 175, 55, 0.6);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
  --shadow-gold-hover: 0 0 30px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  
  /* Typography */
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-secondary: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  
  --fs-hero: clamp(2.5rem, 6vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  
  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(4rem, 10vw, 8rem);
  
  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   RESET & BASE
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.hero-title {
  font-size: var(--fs-hero);
  font-family: var(--font-primary);
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 30px rgba(212, 175, 55, 0.3);
}

.section-title {
  font-size: var(--fs-h2);
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold-gradient);
  margin: var(--space-md) auto 0;
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
  line-height: var(--lh-relaxed);
}

.text-gold {
  color: var(--gold-primary);
}

.text-center {
  text-align: center;
}

/* ===================================
   LAYOUT
   =================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.container-wide {
  max-width: var(--container-wide);
}

section {
  padding: var(--space-section) 0;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { 
    grid-template-columns: 1fr; 
  }
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--text-primary);
  border: 1px solid var(--burgundy-light);
}

.btn-burgundy:hover {
  background: var(--burgundy-light);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.1rem;
}

.btn-small {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-small);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  padding: var(--space-sm) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-sm) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  transition: all var(--transition-base);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4xl) var(--space-xl);
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-gold);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.6) 50%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: var(--space-2xl);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.hero-credentials {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gold-primary);
  font-size: var(--fs-small);
  font-weight: 500;
}

.credential-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ===================================
   CARDS - Retro Glamour Style
   =================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-inset), var(--shadow-card);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%,
    rgba(212, 175, 55, 0.02) 100%
  );
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-inset), var(--shadow-gold-hover);
  transform: translateY(-4px);
}

.card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.8) 0%,
    transparent 50%
  );
}

.card-body {
  padding: var(--space-lg);
}

.card-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.card-subtitle {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.meta-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-primary);
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.price-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.price-value {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--gold-primary);
  font-family: var(--font-primary);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.feature-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-gold);
}

.feature-card .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

/* Resort Cards */
.resort-card {
  display: flex;
  flex-direction: column;
}

.resort-card .card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
}

.resort-card .location {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gold-primary);
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}

.resort-card .features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.resort-card .capacity {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin-top: var(--space-md);
}

/* Team Cards */
.team-card {
  text-align: center;
}

.team-card .card-image {
  aspect-ratio: 1;
  border-radius: var(--radius-round);
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-lg);
  border: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.team-card .role {
  color: var(--gold-primary);
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}

/* Stats Card */
.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: transparent;
  border: 1px solid var(--border-gold);
}

.stat-value {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--gold-primary);
  font-family: var(--font-primary);
  display: block;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

/* ===================================
   BADGES & TAGS
   =================================== */
.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.badge-burgundy {
  background: rgba(114, 47, 55, 0.3);
  color: #E89BA0;
  border: 1px solid var(--burgundy);
}

.badge-emerald {
  background: rgba(4, 99, 7, 0.3);
  color: #5DD362;
  border: 1px solid var(--emerald);
}

.tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--fs-xs);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

/* ===================================
   SECTIONS
   =================================== */
.section-alt {
  background: var(--bg-secondary);
}

.section-gradient {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-luxury {
  background: linear-gradient(
    135deg,
    var(--burgundy-dark) 0%,
    var(--bg-primary) 50%,
    var(--bg-secondary) 100%
  );
  position: relative;
}

.section-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23D4AF37' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Wedding Spotlight */
.wedding-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.wedding-spotlight .image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.wedding-spotlight .image-wrapper img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.wedding-spotlight .features-list {
  margin: var(--space-xl) 0;
}

.wedding-spotlight .features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.wedding-spotlight .features-list li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .wedding-spotlight {
    grid-template-columns: 1fr;
  }
}

/* Studio Teaser */
.studio-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.studio-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.studio-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
}

.studio-feature img {
  width: 40px;
  height: 40px;
}

.studio-mockup {
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold-hover);
}

@media (max-width: 768px) {
  .studio-teaser {
    grid-template-columns: 1fr;
  }
  
  .studio-features {
    grid-template-columns: 1fr;
  }
}

/* Steps */
.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: var(--space-3xl) 0;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border-gold);
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-round);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--gold-primary);
  font-family: var(--font-primary);
  box-shadow: var(--shadow-gold);
}

.step h3 {
  margin-bottom: var(--space-sm);
}

.step p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    gap: var(--space-2xl);
  }
  
  .steps::before {
    display: none;
  }
}

/* Testimonials */
.testimonial {
  padding: var(--space-2xl);
  text-align: center;
}

.testimonial .stars {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  color: var(--gold-primary);
}

.testimonial blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
}

.testimonial .author {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial .author-info {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--burgundy-dark) 0%,
    var(--bg-primary) 100%
  );
  padding: var(--space-4xl) 0;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ===================================
   FORMS
   =================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: var(--fs-small);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.footer-title {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.footer-legal a:hover {
  color: var(--gold-primary);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* ===================================
   UTILITIES
   =================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Image Placeholder Styling */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--space-md);
  border: 1px dashed var(--border-gold);
}
