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

:root {
  --plum-50: #F9F0F8;
  --plum-100: #F3DFF1;
  --plum-200: #E8BFE3;
  --plum-400: #C06FB8;
  --plum-500: #4A1942;
  --plum-600: #3D1537;
  --plum-700: #30112C;
  --plum-800: #230C20;
  --plum-900: #160714;
  --amber-50: #FFF9E6;
  --amber-100: #FFF0BF;
  --amber-200: #FFE480;
  --amber-300: #FFD73F;
  --amber-400: #D4A017;
  --amber-500: #B8860B;
  --amber-600: #996F09;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 25, 66, 0.08);
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  box-shadow: 0 4px 30px rgba(74, 25, 66, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--plum-500);
  color: var(--amber-400);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum-500);
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-400);
  transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum-500);
  padding: 10px 20px;
  border: 1.5px solid var(--plum-500);
  border-radius: 8px;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--plum-500);
  color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-line {
  width: 24px;
  height: 2px;
  background: var(--plum-500);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.menu-toggle.active .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 7, 20, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 25, 66, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--plum-500);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.headline-line {
  display: block;
}

.headline-accent {
  color: var(--amber-500);
}

.headline-serif {
  font-style: italic;
  font-weight: 400;
  color: var(--plum-600);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--plum-500);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74, 25, 66, 0.25);
}

.btn-primary:hover {
  background: var(--plum-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 25, 66, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--plum-500);
  border: 1.5px solid var(--plum-500);
}

.btn-outline:hover {
  background: var(--plum-500);
  color: var(--white);
  transform: translateY(-2px);
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum-500);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--plum-200);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(74, 25, 66, 0.15);
}

.hero-img-main {
  width: 75%;
  height: 85%;
  top: 0;
  right: 0;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  width: 55%;
  height: 40%;
  bottom: 5%;
  left: 0;
  border: 4px solid var(--cream);
}

.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(74, 25, 66, 0.12);
  z-index: 2;
}

.hero-badge svg {
  color: var(--amber-400);
}

.hero-badge span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--plum-500);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--plum-500);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.title-accent {
  color: var(--amber-500);
  font-style: italic;
  font-weight: 400;
}

.title-serif {
  font-weight: 700;
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 24px;
  background: var(--white);
}

.services-header {
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum-500), var(--amber-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(74, 25, 66, 0.1);
  border-color: var(--plum-100);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  background: var(--plum-500);
  color: var(--white);
}

.service-card--featured::before {
  background: linear-gradient(90deg, var(--amber-400), var(--amber-200));
}

.service-card--featured .service-title,
.service-card--featured .service-desc,
.service-card--featured .service-link {
  color: var(--white);
}

.service-card--featured .service-link:hover {
  color: var(--amber-300);
}

.service-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--amber-400);
  color: var(--plum-800);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--plum-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-400);
  margin-bottom: 24px;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card--featured .service-icon {
  background: rgba(255, 255, 255, 0.15);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum-500);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum-500);
  transition: gap 0.3s var(--ease-out);
}

.service-link:hover {
  gap: 12px;
  color: var(--amber-500);
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 24px;
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(74, 25, 66, 0.12);
}

.about-image-wrapper img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--amber-400);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}

.about-floating-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(74, 25, 66, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.floating-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum-500);
  line-height: 1;
}

.floating-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.value-icon {
  width: 28px;
  height: 28px;
  background: var(--plum-500);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-400);
  flex-shrink: 0;
}

/* ===== APPROACH ===== */
.approach {
  padding: 120px 24px;
  background: var(--plum-500);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.approach-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

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

.approach-header .section-title {
  color: var(--white);
}

.approach-header .title-accent {
  color: var(--amber-300);
}

.approach-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(212, 160, 23, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.approach-step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--amber-400);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  padding: 100px 24px;
  background: var(--amber-50);
  position: relative;
}

.quote-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  color: var(--amber-400);
  opacity: 0.3;
  margin-bottom: 24px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--plum-500);
  margin-bottom: 32px;
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.quote-client {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.quote-context {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 24px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  max-width: 520px;
}

.contact-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

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

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 25, 66, 0.08);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--plum-100);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--plum-500);
  margin-bottom: 8px;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--plum-100);
  border-radius: 10px;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-input:focus {
  border-color: var(--plum-500);
  box-shadow: 0 0 0 4px rgba(74, 25, 66, 0.08);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A1942' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  justify-content: center;
}

.form-privacy svg {
  color: var(--plum-500);
  flex-shrink: 0;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--plum-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--plum-500);
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum-500);
  margin-bottom: 12px;
}

.success-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--plum-800);
  color: var(--white);
  padding: 80px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--plum-600);
  color: var(--amber-400);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease-out);
}

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

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

/* ===== HOVER LINKS ===== */
.hover-link {
  transition: color 0.3s var(--ease-out);
}

.hover-link:hover {
  color: var(--amber-400) !important;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  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-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 450px;
    max-width: 500px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrapper img {
    height: 500px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 0;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

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

  .hero-visual {
    height: 350px;
  }

  .hero-img-main {
    width: 70%;
    height: 80%;
  }

  .hero-img-accent {
    width: 55%;
    height: 45%;
  }

  .hero-badge {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .hero-scroll {
    display: none;
  }

  .services {
    padding: 80px 24px;
  }

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

  .about {
    padding: 80px 24px;
  }

  .about-floating-card {
    left: 10px;
    bottom: 20px;
  }

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

  .approach {
    padding: 80px 24px;
  }

  .approach-steps {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .approach-step-connector {
    transform: rotate(90deg);
  }

  .contact {
    padding: 80px 24px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer {
    text-align: center;
  }
}

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

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

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }
}
