/* ========================================
   Aperture Portrait Studio - Styles
   Aesthetic: Artistic Minimal & Portfolio-Focused
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* CSS Custom Properties */
:root {
  /* Colors */
  --slate: #2C3539;
  --slate-deep: #1a2024;
  --gold: #D4AF37;
  --gold-light: #E8D48A;
  --gold-dark: #B8960F;
  --warm-gray: #9E9E9E;
  --warm-gray-light: #BDBDBD;
  --cream: #F7F4EA;
  --cream-warm: #FAF7F0;
  --black: #000000;
  --white: #FFFFFF;
  --off-white: #FAFAFA;

  /* Typography */
  --font-heading: 'Spectral', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Layout */
  --max-width: 1400px;
  --header-height: 100px;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-dramatic: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate-deep);
  letter-spacing: -0.02em;
}

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

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

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

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 65ch;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--slate);
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--duration-normal) var(--ease-out);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-mark::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--slate-deep);
  border-radius: 50%;
}

.logo-mark::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--slate-deep);
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

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

.nav-link.active {
  color: var(--slate-deep);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  background: var(--slate-deep);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-out);
}

.header-cta:hover {
  background: var(--gold);
  color: var(--slate-deep);
}

/* ========================================
   Hero Sections
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  background: var(--white);
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--off-white) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.hero-text {
  animation: fadeInUp 1s var(--ease-out) forwards;
  opacity: 0;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: var(--space-lg);
  max-width: 50ch;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  animation: fadeIn 1.2s var(--ease-out) 0.3s forwards;
  opacity: 0;
}

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

.hero-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(145deg, var(--cream) 0%, #E8E4DB 50%, var(--warm-gray-light) 100%);
}

.hero-image-frame {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--slate-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: var(--space-xs);
}

/* Page Hero (Inner Pages) */
.page-hero {
  min-height: 60vh;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out) forwards;
  opacity: 0;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero-description {
  font-size: 1.25rem;
  color: var(--warm-gray);
  max-width: 60ch;
  margin: 0 auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-primary {
  background: var(--slate-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--slate-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--slate-deep);
  border: 1px solid var(--slate-deep);
}

.btn-outline:hover {
  background: var(--slate-deep);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--slate-deep);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--slate-deep);
}

.btn-white:hover {
  background: var(--cream);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 0.875rem;
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-slate {
  background: var(--slate-deep);
  color: var(--white);
}

.section-slate h2,
.section-slate h3,
.section-slate h4 {
  color: var(--white);
}

.section-slate p {
  color: var(--warm-gray-light);
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
}

.section-slate .section-eyebrow {
  color: var(--gold);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--warm-gray);
  max-width: 55ch;
}

.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Portfolio Gallery
   ======================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}

.portfolio-item:nth-child(1) {
  grid-column: span 7;
  aspect-ratio: 16/10;
}

.portfolio-item:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 4/5;
}

.portfolio-item:nth-child(3) {
  grid-column: span 4;
  aspect-ratio: 3/4;
}

.portfolio-item:nth-child(4) {
  grid-column: span 4;
  aspect-ratio: 3/4;
}

.portfolio-item:nth-child(5) {
  grid-column: span 4;
  aspect-ratio: 3/4;
}

.portfolio-item:nth-child(6) {
  grid-column: span 6;
  aspect-ratio: 16/9;
}

.portfolio-item:nth-child(7) {
  grid-column: span 6;
  aspect-ratio: 16/9;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
  background: linear-gradient(135deg, #E8E4DB 0%, #D4D0C7 50%, #C5C1B8 100%);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

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

.portfolio-info h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.portfolio-info span {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Category Pills */
.portfolio-categories {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.category-pill {
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-gray);
  background: transparent;
  border: 1px solid var(--warm-gray-light);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.category-pill:hover,
.category-pill.active {
  color: var(--slate-deep);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

/* ========================================
   Services / Session Types
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dramatic);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: var(--cream);
  border-radius: 50%;
}

.service-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.service-card p {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

/* Fix contrast for service cards in dark sections */
.section-slate .service-card h3 {
  color: var(--slate-deep);
}

.section-slate .service-card p {
  color: var(--slate);
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  font-size: 0.9rem;
  color: var(--slate);
}

.service-features li::before {
  content: '—';
  color: var(--gold);
  font-weight: 600;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-price .from {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.service-price .amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--slate-deep);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  padding: var(--space-xl);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-gray-light) 100%);
  object-fit: cover;
}

.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-deep);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ========================================
   About / Team
   ======================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(135deg, var(--cream) 0%, #E0DCD3 100%);
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--gold);
  opacity: 0.15;
  z-index: -1;
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-text .lead {
  margin-bottom: var(--space-lg);
}

.about-text p {
  margin-bottom: var(--space-md);
}

.signature {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--slate-deep);
  margin-top: var(--space-lg);
}

/* Experience Timeline */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.experience-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.experience-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--warm-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--warm-gray-light), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.process-step p {
  font-size: 0.9rem;
  margin: 0 auto;
}

/* ========================================
   Pricing Packages
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--white);
  padding: var(--space-xl);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--duration-normal) var(--ease-out);
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: var(--slate-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card:hover {
  box-shadow: var(--shadow-dramatic);
}

.pricing-header {
  text-align: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: var(--space-lg);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.pricing-header .price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--slate-deep);
}

.pricing-header .price span {
  font-size: 1rem;
  color: var(--warm-gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
  color: var(--slate);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
}

.contact-info {
  padding: var(--space-xl);
  background: var(--slate-deep);
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.contact-detail {
  margin-bottom: var(--space-lg);
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.contact-detail p,
.contact-detail a {
  color: var(--warm-gray-light);
  font-size: 1rem;
}

.contact-detail a:hover {
  color: var(--white);
}

.contact-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-out);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--slate-deep);
}

.contact-form-wrapper {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: grid;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-deep);
  background: var(--cream);
  border: 1px solid transparent;
  outline: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232C3539' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

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

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--slate-deep);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--duration-fast) var(--ease-out);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: var(--slate-deep);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--warm-gray-light);
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand > p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  max-width: 30ch;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--warm-gray);
  font-size: 0.95rem;
  transition: color var(--duration-fast) var(--ease-out);
}

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

.footer-contact p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  color: var(--gold);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
}

.footer-bottom p {
  color: var(--warm-gray);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  color: var(--warm-gray);
  font-size: 0.85rem;
}

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

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ========================================
   Animations
   ======================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
  .hero-content {
    gap: var(--space-xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .portfolio-item:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .services-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item:nth-child(n) {
    grid-column: span 12;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .experience-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-xl);
  }

  .page-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-lg);
  }

  .btn {
    padding: 0.875rem 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .header-inner {
    position: relative;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
  }

  .header-cta {
    display: none;
  }
}
