/* ===== CSS Custom Properties ===== */
:root {
  --plum-50: #fdf4f8;
  --plum-100: #fce7f0;
  --plum-200: #f9d0e0;
  --plum-300: #f4a9c4;
  --plum-400: #ed7aa3;
  --plum-500: #e04f80;
  --plum-600: #6B2D5B;
  --plum-700: #562449;
  --plum-800: #3d1a33;
  --plum-900: #2a1224;
  --plum-950: #1a0c17;

  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #F59E0B;
  --amber-500: #D97706;
  --amber-600: #B45309;
  --amber-700: #92400E;
  --amber-800: #78350F;
  --amber-900: #451a03;

  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.12);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--neutral-700);
}

/* ===== Utility ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--plum-600);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ===== Section Headers ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-600);
  margin-bottom: var(--space-md);
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--amber-400);
}

.section-eyebrow--light {
  color: var(--amber-300);
}

.section-eyebrow--light::before {
  background: var(--amber-400);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum-900);
  margin-bottom: var(--space-lg);
}

.section-title--light {
  color: #fff;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--neutral-600);
  max-width: 640px;
}

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

.section-header--light {
  text-align: center;
}

.section-header--light .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber-400);
  color: var(--plum-950);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: var(--amber-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== Page Loader ===== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--plum-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: var(--space-lg);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 40%;
  background: var(--amber-400);
  border-radius: 99px;
  animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

/* ===== Header ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}

#site-header.scrolled {
  background: rgba(250, 250, 250, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--plum-900);
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.logo--light .logo-name {
  color: #fff;
}

.logo--light .logo-tagline {
  color: rgba(255,255,255,0.6);
}

/* Navigation */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

#main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

#main-nav a:hover {
  color: var(--plum-600);
  background: var(--plum-50);
}

.nav-cta {
  background: var(--plum-600) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border-radius: var(--radius-xl) !important;
  margin-left: var(--space-sm);
}

.nav-cta:hover {
  background: var(--plum-700) !important;
  color: #fff !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}

.hero-content {
  padding-right: var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--amber-300);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--space-xl);
}

.hero-headline .accent {
  color: var(--amber-400);
  font-style: italic;
}

.hero-subheadline {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

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

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-card img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 18, 36, 0.5) 0%, transparent 40%);
  border-radius: var(--radius-lg);
}

/* Stat Cards */
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.stat-card--1 {
  bottom: 60px;
  left: -40px;
}

.stat-card--2 {
  top: 40px;
  left: -20px;
}

.stat-card--3 {
  bottom: -10px;
  right: -30px;
}

.stat-icon {
  margin-bottom: var(--space-sm);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--plum-900);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--neutral-500);
  margin-top: 2px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== Services ===== */
.services {
  padding: var(--space-4xl) 0;
  background: var(--neutral-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum-600), var(--amber-400));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-50);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: var(--space-sm);
}

.service-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum-600);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: var(--space-md);
}

/* ===== About ===== */
.about {
  padding: var(--space-4xl) 0;
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #fff;
}

.about-image-accent img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--plum-600);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .experience-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber-400);
  line-height: 1;
}

.about-experience-badge .experience-text {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

.about-content-col .section-title {
  margin-top: var(--space-md);
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
}

.about-values {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.value-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-50);
  border-radius: var(--radius-sm);
}

.value-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ===== Why Us ===== */
.why-us {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--plum-800);
  overflow: hidden;
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.why-item {
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: all var(--transition-base);
}

.why-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.why-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.2);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.why-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: var(--space-4xl) 0;
  background: var(--neutral-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--plum-200);
  transform: translateY(-2px);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--plum-200);
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--neutral-700);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--plum-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-size: 0.9375rem;
  color: var(--plum-900);
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* ===== Contact ===== */
.contact {
  padding: var(--space-4xl) 0;
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info .section-title {
  margin-top: var(--space-md);
}

.contact-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-detail {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-50);
  border-radius: var(--radius-sm);
}

.contact-detail strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--plum-600);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--neutral-200);
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: var(--space-2xl);
}

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

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--neutral-800);
  background: #fff;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-400);
  box-shadow: 0 0 0 3px rgba(107, 45, 91, 0.1);
}

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

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

.form-success {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #166534;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ===== Map Section ===== */
.map-section {
  border-top: 4px solid var(--plum-600);
}

.map-container {
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(30%);
}

/* ===== Footer ===== */
#site-footer {
  background: var(--plum-950);
  color: #fff;
  padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-lg);
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: var(--space-lg);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: #fff;
}

.footer-col li {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2xl);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--amber-400);
}

/* ===== Back to Top ===== */
#back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  background: var(--plum-600);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 999;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--plum-700);
  transform: translateY(-2px);
}

/* ===== Scroll Reveal (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

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

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

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

  .stat-card--1 { left: 0; }
  .stat-card--2 { left: 0; }
  .stat-card--3 { right: 0; }

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

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image-col {
    max-width: 560px;
    margin: 0 auto;
  }

  .about-image-accent {
    right: -20px;
    bottom: -20px;
  }

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

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

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

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

  .nav-toggle {
    display: flex;
  }

  #main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    box-shadow: var(--shadow-xl);
    padding: 100px var(--space-xl) var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 1000;
  }

  #main-nav.open {
    transform: translateX(0);
  }

  #main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
  }

  #main-nav a {
    font-size: 1.0625rem;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    text-align: center;
    margin-left: 0 !important;
    margin-top: var(--space-md);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .hero-image-card img {
    height: 420px;
  }

  .stat-card {
    padding: var(--space-md) var(--space-lg);
  }

  .stat-card--1 { bottom: 20px; left: -10px; }
  .stat-card--2 { top: 10px; left: -10px; }
  .stat-card--3 { bottom: -10px; right: -10px; }

  .stat-number {
    font-size: 1.375rem;
  }

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

  .about-image-main img {
    height: 400px;
  }

  .about-image-accent {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: var(--space-lg);
  }

  .about-image-accent img {
    height: 220px;
  }

  .about-experience-badge {
    top: auto;
    bottom: -20px;
    right: 0;
  }

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

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

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
