/*
 * Havenwood Custom CSS Design System
 * Focus: High-end luxury real estate aesthetics, glassmorphism, gold accents, smooth animations.
 */

:root {
  /* Colors */
  --bg-primary: #0b0c10;
  --bg-secondary: #13151b;
  --bg-accent: #1b1d26;
  --bg-card: rgba(22, 24, 33, 0.65);
  --bg-glass: rgba(11, 12, 16, 0.75);
  
  --color-gold: #c5a880;
  --color-gold-light: #e6d5bd;
  --color-gold-dark: #9d845a;
  --color-gold-glow: rgba(197, 168, 128, 0.25);
  
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1ab;
  --text-muted: #6e6e73;
  --text-dark: #0b0c10;
  
  --border-glass: rgba(197, 168, 128, 0.15);
  --border-glass-hover: rgba(197, 168, 128, 0.35);
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout */
  --max-width: 1300px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-accent);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-dark);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.8rem, 6vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw + 0.8rem, 3rem);
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

h3 {
  font-size: clamp(1.4rem, 2vw + 0.6rem, 1.8rem);
}

p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.05rem);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Glassmorphism Helper Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--color-gold-glow);
  transform: translateY(-5px);
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--text-dark);
  border: none;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
  color: var(--text-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass-hover);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-3px);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

section {
  padding: 120px 0;
  position: relative;
}

/* Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 0;
  border-bottom: 1px solid transparent;
}

header.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-glass);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  display: block;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-menu .current-menu-item a {
  color: var(--color-gold);
}

/* Hamburger mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    padding: 40px;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .btn {
    width: 100%;
  }
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  height: 100%;
  width: 100%;
  align-items: center;
}

.hero-content {
  padding: 160px 40px 100px var(--container-left-pad, calc((100vw - var(--max-width)) / 2 + 40px));
  z-index: 2;
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  display: block;
  animation: fadeInDown 1s ease both;
}

.hero-title {
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-title span {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-top: 15px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 24px 32px;
  max-width: 600px;
  animation: fadeInUp 1s ease 0.9s both;
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border-glass);
}

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

.stat-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gold-light);
  display: block;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

/* Hero Image Column */
.hero-image-container {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleOut 1.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-primary) 0%, rgba(11, 12, 16, 0.4) 30%, transparent 100%);
}

@media (max-width: 1400px) {
  .hero-content {
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    min-height: auto;
    padding-top: 120px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 40px 20px 60px 20px;
  }
  
  .hero-image-container {
    height: 500px;
  }
  
  .hero-image-overlay {
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(11, 12, 16, 0.2) 50%, transparent 100%);
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
  
  .stat-item {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 10px;
  }
  
  .stat-item:nth-child(3), .stat-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 10px;
  }
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

/* --- OVERVIEW SECTION --- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  position: relative;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px auto;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 20px var(--color-gold-glow);
  transform: scale(1.1);
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: var(--color-gold);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper svg {
  fill: var(--text-dark);
}

.feature-card h3 {
  margin-bottom: 16px;
  color: var(--color-gold-light);
}

.feature-card p {
  font-size: 0.95rem;
}

/* --- GALLERY SECTION --- */
.gallery-intro {
  max-width: 650px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(11, 12, 16, 0.9) 0%, rgba(11, 12, 16, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
  border-radius: var(--border-radius-md);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.gallery-item-title {
  color: var(--text-primary);
  font-size: 1.3rem;
}

/* Custom Asymmetric Grid Layout */
.gallery-item.large-wide {
  grid-column: span 2;
}

.gallery-item.large-tall {
  grid-row: span 2;
  grid-column: span 1;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  .gallery-item.large-tall {
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item.large-wide {
    grid-column: span 1;
  }
}

/* Lightbox Modal Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 16, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-glass-hover);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.lightbox-caption {
  margin-top: 15px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold-light);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* --- VIRTUAL TOUR / FLOOR PLAN --- */
.tour-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.tour-info h2 {
  text-align: left;
  margin-bottom: 30px;
}

.tour-info h2::after {
  left: 0;
  transform: none;
}

.tour-info p {
  margin-bottom: 30px;
}

.tour-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--border-glass);
  padding: 12px 24px;
  border-radius: 30px;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background: rgba(197, 168, 128, 0.05);
}

.floor-plan-display {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.floor-plan-pane {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-plan-pane.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.floor-plan-svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floor-plan-svg text {
  fill: var(--text-secondary);
  stroke: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .tour-container {
    grid-template-columns: 1fr;
  }
}

/* --- NEIGHBORHOOD LOCATION --- */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.loc-name-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.loc-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
}

.loc-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.loc-details {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.loc-distance {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.location-map-preview {
  height: 480px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}

.map-mock-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1b1d26 0%, #0b0c10 80%);
}

.map-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.map-node {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--color-gold);
}

.map-node.pulse::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  animation: pulseNode 2s infinite ease-out;
}

.map-label {
  position: absolute;
  transform: translate(-50%, -100%);
  margin-top: -12px;
  font-size: 0.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  color: var(--color-gold-light);
}

@keyframes pulseNode {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CONTACT & INQUIRY --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.agent-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agent-photo-frame {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold-dark));
  margin-bottom: 24px;
}

.agent-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg-secondary);
}

.agent-name {
  color: var(--color-gold-light);
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.agent-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.agent-contact-details {
  width: 100%;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.agent-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.agent-detail-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

/* Form Styles */
.inquiry-form-wrapper h3 {
  margin-bottom: 30px;
  color: var(--color-gold-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-control {
  background: rgba(11, 12, 16, 0.4);
  border: 1px solid var(--border-glass);
  padding: 16px 20px;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(11, 12, 16, 0.7);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

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

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* --- FOOTER --- */
footer.site-footer {
  border-top: 1px solid var(--border-glass);
  background: var(--bg-secondary);
  padding: 60px 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

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

.footer-motto {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background: rgba(197, 168, 128, 0.05);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
