@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- LUXURY DESIGN SYSTEM VARIABLES --- */
:root {
  /* Default variables (Dark Theme - Logo Blue Dominant) */
  --bg-primary: #071124; /* Logo Deep Blue */
  --bg-secondary: #050d1a;
  --bg-radial: radial-gradient(circle at 50% 0%, #0d1f3d 0%, var(--bg-primary) 75%);
  --bg-panel: rgba(11, 26, 48, 0.6); /* Logo blue translucent */
  --bg-panel-hover: rgba(15, 38, 71, 0.75);
  --border-color: rgba(223, 186, 115, 0.18);
  --border-color-hover: rgba(223, 186, 115, 0.38);
  --text-primary: #94a3b8;
  --text-heading: #f8fafc;
  --text-silver: #cbd5e1;
  
  /* Logo Metallic gold colors */
  --gold-primary: #dfba73;
  --gold-light: #f3e5ab;
  --gold-dark: #b89047;
  
  /* Shadow & Transitions */
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

[data-theme="light"] {
  /* Light Theme variables (Logo Blue Dominant) */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-radial: radial-gradient(circle at 50% 0%, var(--bg-secondary) 0%, var(--bg-primary) 70%);
  --bg-panel: rgba(255, 255, 255, 0.85);
  --bg-panel-hover: rgba(255, 255, 255, 0.95);
  /* The logo's blue (#071124) is dominant for text/headings in light mode */
  --text-primary: #1e293b;
  --text-heading: #071124;
  --text-silver: #475569;
  
  --border-color: rgba(7, 17, 36, 0.1);
  --border-color-hover: rgba(212, 175, 55, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(7, 17, 36, 0.08);
}

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

html {
  scroll-behavior: initial;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-silver);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.5s ease, color 0.5s ease;
}

body {
  overflow-x: hidden;
  background: var(--bg-radial);
  min-height: 100vh;
  line-height: 1.6;
}

/* Custom Selection */
::selection {
  background-color: var(--gold-primary);
  color: #030812;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  transition: color 0.5s ease;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  color: var(--text-primary);
  font-weight: 300;
  transition: color 0.5s ease;
}

/* Gold Gradient Text */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-gold {
  color: var(--gold-primary);
}

/* --- THEME SWITCHER BUTTON --- */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
  border-color: var(--gold-primary);
  background-color: rgba(223, 186, 115, 0.05);
  transform: rotate(30deg);
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
  animation: liquidMorph 8s linear infinite;
}

@keyframes liquidMorph {
  0% { border-radius: 50% 50% 50% 50%; }
  25% { border-radius: 58% 42% 52% 48% / 50% 58% 42% 50%; }
  50% { border-radius: 46% 54% 38% 62% / 44% 48% 52% 56%; }
  75% { border-radius: 54% 46% 62% 38% / 58% 42% 58% 42%; }
  100% { border-radius: 50% 50% 50% 50%; }
}

/* Cursor hover effect */
body.hovered .custom-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--text-heading);
}

body.hovered .custom-cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--gold-primary);
  background-color: rgba(223, 186, 115, 0.08);
  animation-duration: 4s; /* morphs faster on hover */
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-ring {
    display: none;
  }
}

/* --- LAYOUT & CONTAINERS --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Noise overlay for luxury paper texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

/* --- NAVIGATION HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  transition: var(--transition-smooth);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 1rem 0;
  background-color: var(--bg-panel);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-heading);
}

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

.nav-link.active {
  color: var(--gold-primary);
}

/* Hamburger mobile menu */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 8rem 2.5rem;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow);
    align-items: flex-start;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  
  .nav-links-wrapper.active {
    right: 0;
  }
  
  .menu-btn {
    display: block;
    z-index: 101;
  }
}

/* --- BUTTONS --- */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #030812;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(223, 186, 115, 0.25);
  transition: var(--transition-smooth);
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(223, 186, 115, 0.45);
}

.btn-luxury:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--text-heading);
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background-color: rgba(223, 186, 115, 0.03);
  transform: translateY(-3px);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(223, 186, 115, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-desc {
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: scale(0.9);
}

/* 3D Floating Logo Showcase */
.logo-showcase {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  box-shadow: var(--glass-shadow), inset 0 0 30px rgba(223, 186, 115, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: logoFloat 6s ease-in-out infinite alternate;
}

.logo-showcase-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
}

.logo-ring-decor {
  position: absolute;
  border: 1px dashed rgba(223, 186, 115, 0.3);
  border-radius: 50%;
  width: 115%;
  height: 115%;
  animation: logoRotate 25s linear infinite;
}

@keyframes logoFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes logoRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5rem;
  }
  
  .hero-desc {
    margin: 0 auto 3rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .logo-showcase {
    width: 250px;
    height: 250px;
  }
}

/* --- STATS BANNER --- */
.stats-banner {
  background-color: var(--bg-panel);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  transition: background-color 0.5s ease;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* --- SERVICE BLOCKS / GRID --- */
.services-section {
  background-color: var(--bg-primary);
}

.section-header {
  max-width: 700px;
  margin-bottom: 5rem;
}

.section-tag {
  color: var(--gold-primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark));
  transition: var(--transition-smooth);
}

.service-card-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card h3 {
  margin-bottom: 1.25rem;
}

.service-card p {
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-heading);
  transition: var(--transition-fast);
  margin-top: auto;
}

.service-card-link i {
  transition: transform 0.3s ease;
}

/* Hover effects */
.service-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-panel-hover);
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
  color: var(--text-heading);
}

.service-card:hover .service-card-link {
  color: var(--gold-primary);
}

.service-card:hover .service-card-link i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- HORIZONTAL WORK SCROLL (CANADIAN AGENCY INSPIRATION) --- */
.work-section {
  padding: 8rem 0 0;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.work-horizontal-container {
  display: flex;
  flex-wrap: nowrap;
  width: 300vw;
  will-change: transform;
}

.work-slide {
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.work-img-container {
  width: 100%;
  height: 50vh;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: var(--glass-shadow);
}

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

.work-img-container:hover .work-img {
  transform: scale(1.05);
}

.work-details {
  display: flex;
  flex-direction: column;
}

.work-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-primary);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.work-client {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.work-category {
  color: var(--gold-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 2rem;
}

.work-details p {
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .work-horizontal-container {
    flex-direction: column;
    width: 100%;
  }
  
  .work-slide {
    width: 100%;
    height: auto;
    padding: 4rem 1.5rem;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .work-img-container {
    height: 35vh;
  }
}

/* --- CLIENT TESTIMONIALS (GLASS CAROUSEL) --- */
.testimonials-section {
  background-color: var(--bg-primary);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 4rem 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: background-color 0.5s ease;
}

.quote-icon {
  font-size: 4rem;
  color: var(--gold-primary);
  opacity: 0.15;
  position: absolute;
  top: 2rem;
  left: 3rem;
}

.testimonial-item {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.testimonial-item.active {
  display: block;
}

.testimonial-text {
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-heading);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold-primary);
}

.testimonial-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-top: 0.25rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

/* --- CTA SECTION --- */
.cta-section {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(223, 186, 115, 0.06) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  margin-bottom: 2rem;
}

.cta-desc {
  margin-bottom: 3.5rem;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 10;
  transition: background-color 0.5s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info p {
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-panel);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  background-color: rgba(223, 186, 115, 0.05);
}

.footer-links-col h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--gold-primary);
}

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

.footer-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-heading);
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--gold-primary);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
  position: relative;
}

.newsletter-input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

[data-theme="light"] .newsletter-input {
  background-color: rgba(0, 0, 0, 0.02);
}

.newsletter-input:focus {
  border-color: var(--gold-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

.newsletter-btn {
  background-color: var(--gold-primary);
  color: #030812;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 1.25rem;
  cursor: pointer;
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--text-heading);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* --- SERVICES PAGE SPECIFICS --- */
.services-hero {
  padding: 12rem 0 6rem;
  background: var(--bg-radial);
}

.services-list {
  padding-bottom: 8rem;
}

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail-row:last-child {
  border-bottom: none;
}

.service-detail-row:nth-child(even) {
  direction: rtl;
}

.service-detail-row:nth-child(even) .service-detail-content {
  direction: ltr;
}

.service-detail-row:nth-child(even) .service-detail-features {
  direction: ltr;
}

.service-detail-img-box {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--glass-shadow);
  height: 450px;
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-img-box:hover .service-detail-img {
  transform: scale(1.05);
}

.service-detail-tag {
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4rem;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-detail-content h2 {
  margin-bottom: 1.5rem;
}

.service-detail-content p {
  margin-bottom: 2.5rem;
}

.service-detail-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-detail-features li {
  font-size: 1rem;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-detail-features li i {
  color: var(--gold-primary);
}

@media (max-width: 992px) {
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
  }
  
  .service-detail-row:nth-child(even) {
    direction: ltr;
  }
  
  .service-detail-img-box {
    height: 300px;
    order: -1;
  }
}

/* --- ABOUT PAGE SPECIFICS (NO TEAM PHOTOS) --- */
.about-hero {
  padding: 12rem 0 6rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.about-intro-text p {
  margin-bottom: 2rem;
  font-size: 1.3rem;
  line-height: 1.7;
}

.about-intro-side {
  border-left: 2px solid var(--gold-primary);
  padding-left: 2.5rem;
}

.about-intro-side blockquote {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-primary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-intro-side {
    padding-left: 1.5rem;
  }
}

.team-grid-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-card-text {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.team-card-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-dark));
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.team-card-text:hover::before {
  opacity: 1;
}

.team-name {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--gold-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .team-grid-text {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid-text {
    grid-template-columns: 1fr;
  }
}

/* --- CONTACT PAGE SPECIFICS --- */
.contact-hero {
  padding: 12rem 0 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  margin-bottom: 8rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.contact-info-block h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.contact-detail-item i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.contact-detail-item:hover {
  color: var(--text-heading);
}

/* Form Styling */
.contact-form-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3.5rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  transition: background-color 0.5s ease;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text-primary);
  padding: 0.75rem 0;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  outline: none;
  transition: var(--transition-fast);
}

.form-label {
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--text-primary);
  font-size: 1.1rem;
  pointer-events: none;
  transition: var(--transition-smooth);
  font-weight: 300;
}

/* Floating Label Logic */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -1.25rem;
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

.form-input:focus {
  border-color: var(--gold-primary);
}

.form-select-group {
  margin-bottom: 3rem;
}

.form-select-label {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.budget-option {
  position: relative;
}

.budget-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.budget-label {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.budget-option input[type="radio"]:checked + .budget-label {
  border-color: var(--gold-primary);
  background-color: rgba(223, 186, 115, 0.05);
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(223, 186, 115, 0.1);
}

.budget-label:hover {
  border-color: var(--text-primary);
  color: var(--text-heading);
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 576px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }
}

/* --- BACKGROUND GRID LINES (DD.NYC INSPIRATION) --- */
.bg-grid-lines {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2.5rem;
}

.grid-line {
  height: 100%;
  border-right: 1px dashed rgba(223, 186, 115, 0.03); /* Subtle gold dash on dark */
  transition: border-color 0.5s ease;
}

[data-theme="light"] .grid-line {
  border-right: 1px dashed rgba(11, 26, 48, 0.03); /* Logo blue dash on light */
}

/* --- SCROLL TEXT COLOR FILL REVEAL (DD.NYC STYLE) --- */
.scroll-fill {
  color: var(--text-primary);
  opacity: 0.35;
  transition: color 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-fill.active {
  color: var(--text-heading);
  opacity: 1;
}

/* For subtitles */
.scroll-fill-gold {
  color: var(--text-primary);
  opacity: 0.35;
  transition: color 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-fill-gold.active {
  color: var(--gold-primary);
  opacity: 1;
}
