/*
Theme Name: Wave Agency
Theme URI: https://waveagency.lovable.app
Author: Wave Agency
Author URI: https://waveagency.lovable.app
Description: Elegant, lyxigt och minimalistiskt WordPress-tema för Wave Agency. Boss babe-vibe med modern och tidlös design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: waveagency
Tags: one-column, custom-menu, featured-images, theme-options
*/

/* ========================================
   WAVE AGENCY - COMPILED CSS
   Typography: Cormorant Garamond + Montserrat
   Colors: Black, Dark Beige, White
   Aesthetic: Elegant, Luxury, Clean, Modern
======================================== */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Main Colors */
  --background: #211E1C;
  --foreground: #F5F3EF;
  --card: #2A2725;
  --card-foreground: #F5F3EF;
  
  /* Primary - Elegant Beige/Gold */
  --primary: #C4AD8F;
  --primary-foreground: #1A1816;
  
  /* Secondary */
  --secondary: #3D3835;
  --secondary-foreground: #D9D4CC;
  
  /* Muted */
  --muted: #2E2A28;
  --muted-foreground: #948B7F;
  
  /* Accent - Gold */
  --accent: #C99D4C;
  --accent-foreground: #1A1816;
  
  /* Border & Input */
  --border: #3D3835;
  --input: #3D3835;
  --ring: #C4AD8F;
  
  /* Wave Agency Custom Colors */
  --wave-cream: #F4EFE5;
  --wave-beige: #C4AD8F;
  --wave-beige-dark: #A6894D;
  --wave-charcoal: #211E1C;
  --wave-charcoal-light: #3A3634;
  --wave-gold: #C99D4C;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px rgba(20, 18, 16, 0.4);
  --shadow-elegant: 0 8px 40px -8px rgba(20, 18, 16, 0.5);
  --shadow-glow: 0 0 40px rgba(201, 157, 76, 0.15);
  
  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #C99D4C 0%, #C4AD8F 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(33, 30, 28, 0) 0%, rgba(33, 30, 28, 0.9) 100%);
  
  /* Border Radius */
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--foreground);
}

h1 {
  font-size: 2.25rem; /* 36px mobile */
}

h2 {
  font-size: 1.875rem; /* 30px mobile */
}

h3 {
  font-size: 1.25rem; /* 20px */
}

p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Selection */
::selection {
  background: rgba(196, 173, 143, 0.3);
  color: var(--foreground);
}

/* === RESPONSIVE TYPOGRAPHY === */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem; /* 48px tablet */
  }
  h2 {
    font-size: 2.25rem; /* 36px tablet */
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4.5rem; /* 72px desktop */
  }
  h2 {
    font-size: 3rem; /* 48px desktop */
  }
  h3 {
    font-size: 1.5rem; /* 24px */
  }
}

/* === LAYOUT === */
.container-narrow {
  max-width: 64rem; /* 1024px */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container-narrow,
  .container-wide {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 5rem 0; /* 80px */
}

@media (min-width: 768px) {
  .section-padding {
    padding: 8rem 0; /* 128px */
  }
}

/* === HEADER/NAVIGATION === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.site-header.scrolled {
  background: rgba(33, 30, 28, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(61, 56, 53, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem; /* 80px */
}

@media (min-width: 768px) {
  .header-inner {
    height: 6rem; /* 96px */
  }
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--foreground);
}

.site-logo .agency {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--primary);
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .site-logo {
    font-size: 1.875rem;
  }
  .site-logo .agency {
    font-size: 1.25rem;
  }
}

/* Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.7);
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile browsers */
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999; /* Above everything */
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu .nav-link {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: none;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--wave-beige-dark);
  border-color: var(--wave-beige-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1.25rem 2.5rem;
  font-size: 0.8125rem;
}

.btn-hero:hover {
  background: var(--wave-beige-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant), var(--shadow-glow);
}

.btn-elegant {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  padding: 0.875rem 1.75rem;
}

.btn-elegant:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.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(33, 30, 28, 0.5) 0%,
    rgba(33, 30, 28, 0.8) 50%,
    var(--background) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 6rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 40rem;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(196, 173, 143, 0.5), transparent);
}

/* === SECTION HEADING === */
.section-heading {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-heading {
    margin-bottom: 4rem;
  }
}

.section-heading.centered {
  text-align: center;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 0;
}

.section-description {
  margin-top: 1.5rem;
  font-size: 1rem;
  max-width: 42rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1.125rem;
  }
}

.section-heading.centered .section-description {
  margin-left: auto;
  margin-right: auto;
}

/* === CARDS === */
.card {
  background: var(--card);
  border: 1px solid rgba(61, 56, 53, 0.5);
  padding: 2rem;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .card {
    padding: 2.5rem;
  }
}

.card:hover {
  border-color: rgba(196, 173, 143, 0.3);
}

.card-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.card-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.5rem;
  }
}

.card:hover .card-title {
  color: var(--primary);
}

.card-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* === GRID LAYOUTS === */
.grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .grid-2 {
    gap: 4rem;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === STATS GRID === */
.stat-box {
  background: var(--card);
  border: 1px solid rgba(61, 56, 53, 0.5);
  padding: 2rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* === ABOUT SECTION === */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-image .badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  border: 1px solid rgba(61, 56, 53, 0.5);
  padding: 1.5rem;
}

.about-image .badge-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
}

.about-image .badge-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* === VISION/MISSION BOXES === */
.vision-box {
  background: var(--card);
  border: 1px solid rgba(61, 56, 53, 0.5);
  padding: 2rem;
}

@media (min-width: 768px) {
  .vision-box {
    padding: 3rem;
  }
}

.vision-box .box-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.vision-box .box-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .vision-box .box-text {
    font-size: 1.5rem;
  }
}

/* === VALUES SECTION === */
.value-item {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(196, 173, 143, 0.3);
  margin-bottom: 1.5rem;
}

.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.value-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* === SERVICE CARDS (Extended) === */
.service-card {
  background: var(--card);
  border: 1px solid rgba(61, 56, 53, 0.5);
  padding: 2rem;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2.5rem;
  }
}

.service-card:hover {
  border-color: rgba(196, 173, 143, 0.3);
}

.service-card .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card .title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .service-card .title {
    font-size: 1.5rem;
  }
}

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

.service-card .description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card .features {
  list-style: none;
}

.service-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-card .features li::before {
  content: '•';
  color: var(--primary);
  margin-top: 0.125rem;
}

/* === PROCESS SECTION === */
.process-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-left: 1px solid rgba(196, 173, 143, 0.3);
  transition: border-color 0.3s ease;
}

.process-item:hover {
  border-left-color: var(--primary);
}

.process-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: rgba(196, 173, 143, 0.5);
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.process-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* === PORTFOLIO === */
.portfolio-item {
  position: relative;
}

.portfolio-image {
  aspect-ratio: 4/3;
  background: var(--card);
  border: 1px solid rgba(61, 56, 53, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: border-color 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
  border-color: rgba(196, 173, 143, 0.3);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-placeholder {
  text-align: center;
  padding: 2rem;
}

.portfolio-placeholder .icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px dashed rgba(148, 139, 127, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-placeholder .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(148, 139, 127, 0.5);
}

.portfolio-placeholder .text {
  font-size: 0.875rem;
  color: rgba(148, 139, 127, 0.5);
}

.portfolio-category {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-title {
  color: var(--primary);
}

.portfolio-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* === COMING SOON BOX === */
.coming-soon-box {
  padding: 3rem;
  border: 1px dashed var(--border);
  text-align: center;
}

@media (min-width: 768px) {
  .coming-soon-box {
    padding: 4rem;
  }
}

/* === CONTACT FORM === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(61, 56, 53, 0.5);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.form-group input {
  height: 3rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group textarea {
  resize: none;
  min-height: 9rem;
}

/* === CONTACT INFO === */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(196, 173, 143, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: var(--foreground);
  transition: color 0.3s ease;
}

.contact-info-value:hover {
  color: var(--primary);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(61, 56, 53, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Quote Box */
.quote-box {
  background: var(--card);
  border: 1px solid rgba(61, 56, 53, 0.5);
  padding: 2rem;
  margin-top: 3rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 1.5rem;
  }
}

.quote-author {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--primary);
}

/* === CTA SECTION === */
.cta-section {
  background: var(--card);
  border-top: 1px solid rgba(61, 56, 53, 0.5);
  border-bottom: 1px solid rgba(61, 56, 53, 0.5);
  text-align: center;
}

.cta-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

.cta-title .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* === FOOTER === */
.site-footer {
  background: var(--muted);
  border-top: 1px solid rgba(61, 56, 53, 0.5);
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.footer-section-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 20rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--primary);
}

.footer-contact-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(61, 56, 53, 0.5);
  text-align: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* === BACKGROUND UTILITIES === */
.bg-muted-30 {
  background: rgba(46, 42, 40, 0.3);
}

.bg-card {
  background: var(--card);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }

/* WordPress Core Styles */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: var(--card);
  border: 1px solid var(--border);
  max-width: 100%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--card);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--foreground);
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
