*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --plum: #5B2C6F;
  --plum-deep: #4A235A;
  --plum-light: #7D3C91;
  --plum-pale: #F4ECF7;
  --amber: #F5B041;
  --amber-deep: #E59B20;
  --amber-light: #FDEBD0;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F9F9F9;
  --gray-100: #F0F0F0;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --nav-h: 72px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--plum);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  z-index: 200;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 0;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.logo-mark {
  color: var(--plum);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.25s;
}
.nav-links a:hover {
  color: var(--plum);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--plum) !important;
  background: var(--plum-pale);
  border: 1px solid rgba(91,44,111,0.15);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--plum) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--gray-700);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(91,44,111,0.88) 0%,
    rgba(74,35,90,0.82) 50%,
    rgba(91,44,111,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-headline strong {
  font-weight: 600;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--gray-900);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,176,65,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--white);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION COMMON ─── */
section {
  padding: 120px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.section-title strong {
  font-weight: 600;
}
.section-line {
  width: 48px;
  height: 1.5px;
  background: var(--amber);
  margin: 24px auto 0;
}

/* ─── SERVICES ─── */
.services {
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: all 0.3s;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.35s;
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover {
  background: var(--plum-pale);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--plum-pale);
  color: var(--plum);
  margin-bottom: 24px;
  transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon {
  background: var(--plum);
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─── ABOUT ─── */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--plum);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}
.about-badge .badge-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.about-content .section-label {
  text-align: left;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 0;
}
.about-content .section-line {
  margin: 24px 0 0;
}
.about-content > p {
  margin-top: 24px;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.about-content > p + p {
  margin-top: 16px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ─── WHY ─── */
.why {
  background: var(--gray-900);
  color: var(--white);
}
.why .section-label {
  color: var(--amber);
}
.why .section-title {
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.why-item {
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover {
  border-color: rgba(245,176,65,0.3);
  background: rgba(255,255,255,0.03);
}
.why-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}
.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-item p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--plum);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--gray-900);
}
.cta-actions .btn-primary:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
}
.cta-actions .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.cta-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ─── CONTACT ─── */
.contact {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-label {
  text-align: left;
}
.contact-info .section-title {
  text-align: left;
}
.contact-info .section-line {
  margin: 24px 0 0;
}
.contact-intro {
  margin-top: 24px;
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--plum-pale);
  color: var(--plum);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-item a,
.contact-item span {
  font-size: 1rem;
  color: var(--gray-700);
  transition: color 0.2s;
}
.contact-item a:hover {
  color: var(--plum);
}

/* ─── FORM ─── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 44px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  text-align: center;
  color: var(--plum);
}
.form-success svg {
  color: var(--amber-deep);
}
.form-success p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand .logo-mark {
  color: var(--amber);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 240px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--amber);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--amber);
}
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s, opacity 0.35s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image {
    order: -1;
  }
  .about-badge {
    right: 16px;
    bottom: -16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-links { align-items: center; }
  .footer-contact { text-align: center; }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 80px 0;
  }
  .hero-content {
    padding: 100px 16px 60px;
  }
  .service-card {
    padding: 32px 24px;
  }
  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
