/* ========================================
   NEXXA Studio - Premium Styles
   ======================================== */

/* CSS Variables */
:root {
  /* Colors */
  --background: hsl(40, 30%, 97%);
  --foreground: hsl(220, 15%, 15%);
  --card: hsl(40, 25%, 95%);
  --card-foreground: hsl(220, 15%, 15%);
  --primary: hsl(220, 15%, 15%);
  --primary-foreground: hsl(40, 30%, 97%);
  --secondary: hsl(35, 20%, 92%);
  --secondary-foreground: hsl(220, 15%, 20%);
  --muted: hsl(35, 15%, 90%);
  --muted-foreground: hsl(220, 10%, 45%);
  --accent: hsl(35, 55%, 45%);
  --accent-foreground: hsl(40, 30%, 97%);
  --border: hsl(35, 20%, 88%);
  
  /* Gradients */
  --gradient-premium: linear-gradient(135deg, hsl(35, 55%, 45%) 0%, hsl(32, 60%, 35%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(40, 30%, 97%) 0%, hsl(35, 25%, 93%) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(220, 15%, 15%, 0.08);
  --shadow-medium: 0 8px 30px -8px hsla(220, 15%, 15%, 0.12);
  --shadow-elegant: 0 20px 50px -15px hsla(220, 15%, 15%, 0.15);
  --shadow-gold: 0 4px 20px -4px hsla(35, 55%, 45%, 0.25);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* Section */
.section {
  padding: 5rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.7;
}

/* Text Gradient */
.text-gradient-gold {
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent);
}

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

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-premium);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.btn-primary:hover {
  box-shadow: var(--shadow-elegant);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.5s ease;
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--accent);
  color: var(--accent-foreground);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: hsl(35, 55%, 40%);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.5s ease;
}

.header.scrolled {
  background-color: hsla(40, 30%, 97%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}

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

.logo-img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo-img {
    height: 3rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: hsla(220, 15%, 15%, 0.8);
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-header-cta {
  display: none;
  font-size: 0.75rem;
  padding: 0.75rem 1.5rem;
}

@media (min-width: 1024px) {
  .btn-header-cta {
    display: inline-flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: var(--background);
  padding: 6rem 1.5rem 2rem;
  display: none;
}

.mobile-menu.active {
  display: block;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-cta {
  margin-top: 1rem;
  text-align: center;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: hsla(35, 55%, 45%, 0.05);
}

.hero-bg-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: hsla(35, 55%, 45%, 0.05);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: 
    linear-gradient(var(--foreground) 1px, transparent 1px),
    linear-gradient(90deg, var(--foreground) 1px, transparent 1px);
  background-size: 100px 100px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 6rem;
}

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

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

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(220, 15%, 15%, 0.3);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background-color: hsla(220, 15%, 15%, 0.5);
  border-radius: 50%;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0; }
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  background-color: hsla(35, 20%, 92%, 0.3);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content .section-subtitle {
  margin-bottom: 1.5rem;
}

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

.feature-card {
  background-color: var(--card);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-elegant);
  border-color: hsla(35, 55%, 45%, 0.3);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsla(35, 55%, 45%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: hsla(35, 55%, 45%, 0.2);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   Founder Section
   ======================================== */
.founder-section {
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(35, 20%, 92%, 0.1) 0%, transparent 50%, hsla(35, 55%, 45%, 0.05) 100%);
}

.founder-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}

.founder-content {
  margin-bottom: 4rem;
}

.founder-name {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .founder-name {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .founder-name {
    font-size: 3.75rem;
  }
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .founder-bio {
    font-size: 1.125rem;
  }
}

.founder-highlight {
  color: var(--foreground);
  font-weight: 500;
}

.founder-quote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid hsla(35, 55%, 45%, 0.6);
}

.founder-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .founder-quote p {
    font-size: 1.25rem;
  }
}

.founder-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.founder-image-wrapper {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
}

.founder-image-container {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.founder-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  max-height: 700px;
}

.founder-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(220, 15%, 15%, 0.1) 0%, transparent 100%);
}

.founder-image-frame {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid hsla(35, 55%, 45%, 0.4);
  z-index: 0;
}

@media (min-width: 1024px) {
  .founder-image-frame {
    bottom: -1.5rem;
    right: -1.5rem;
  }
}

.founder-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  background-color: var(--foreground);
  color: var(--background);
  padding: 1rem 1.5rem;
  z-index: 20;
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 1024px) {
  .founder-experience-badge {
    bottom: -2rem;
    left: -1.5rem;
  }
}

.experience-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .experience-number {
    font-size: 2.25rem;
  }
}

.experience-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .experience-label {
    font-size: 0.875rem;
  }
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
  background: var(--gradient-hero);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

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

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

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.5s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-elegant);
  border-color: hsla(35, 55%, 45%, 0.3);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: hsla(35, 55%, 45%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  background-color: var(--accent);
  color: var(--accent-foreground);
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

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

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

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsla(220, 15%, 15%, 0.7);
  background-color: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.services-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
  position: relative;
  background-color: hsla(35, 20%, 92%, 0.2);
  overflow: hidden;
}

.testimonials-bg-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: hsla(35, 55%, 45%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.testimonial-featured {
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.testimonial-card-main {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
}

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

.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: hsla(35, 55%, 45%, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.testimonial-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.125rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 1.5rem;
  background-color: var(--accent);
  border-radius: 0.25rem;
}

.testimonial-dot:hover {
  background-color: hsla(35, 55%, 45%, 0.5);
}

.testimonials-small-grid {
  display: none;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-small-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card-small {
  background-color: hsla(40, 25%, 95%, 0.5);
  border: 1px solid var(--border);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-card-small:hover,
.testimonial-card-small.active {
  box-shadow: var(--shadow-soft);
  border-color: hsla(35, 55%, 45%, 0.5);
}

.testimonial-card-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.875rem;
}

.testimonial-card-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.testimonial-card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
  position: relative;
  background-color: var(--foreground);
  color: var(--background);
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, var(--background) 1px, transparent 0);
  background-size: 40px 40px;
}

.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.contact-title {
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
  .contact-title {
    font-size: 3.75rem;
  }
}

.contact-subtitle {
  font-size: 1.125rem;
  color: hsla(40, 30%, 97%, 0.7);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: hsla(40, 30%, 97%, 0.05);
  border: 1px solid hsla(40, 30%, 97%, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background-color: hsla(40, 30%, 97%, 0.1);
  border-color: hsla(35, 55%, 45%, 0.3);
}

.contact-method-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: hsla(35, 55%, 45%, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}

.contact-method:hover .contact-method-icon {
  background-color: var(--accent);
  color: var(--accent-foreground);
  transform: scale(1.1);
}

.contact-method-info {
  flex: 1;
}

.contact-method-label {
  font-size: 0.75rem;
  color: hsla(40, 30%, 97%, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.contact-method-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-method-desc {
  font-size: 0.875rem;
  color: hsla(40, 30%, 97%, 0.6);
}

.contact-arrow {
  color: hsla(40, 30%, 97%, 0.3);
  transition: color 0.3s ease;
}

.contact-method:hover .contact-arrow {
  color: var(--accent);
}

.contact-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-visual-box {
  width: 16rem;
  height: 16rem;
  border: 2px solid hsla(35, 55%, 45%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-visual-box {
    width: 20rem;
    height: 20rem;
  }
}

.contact-logo {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
}

@media (min-width: 768px) {
  .contact-logo {
    width: 12rem;
    height: 12rem;
  }
}

.contact-visual-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background-color: hsla(35, 55%, 45%, 0.2);
}

.contact-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-gold);
  z-index: 20;
}

.contact-badge p {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.contact-bottom {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid hsla(40, 30%, 97%, 0.1);
}

.contact-cta-label {
  color: hsla(40, 30%, 97%, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

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

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

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: hsla(40, 30%, 97%, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsla(40, 30%, 97%, 0.8);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsla(40, 30%, 97%, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid hsla(40, 30%, 97%, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(40, 30%, 97%, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: hsla(40, 30%, 97%, 0.4);
  font-size: 0.875rem;
}

.footer-tagline {
  color: hsla(40, 30%, 97%, 0.4);
  font-size: 0.75rem;
}

/* ========================================
   Animations
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }
