:root {
  --color-bg:          #0a0a0a;
  --color-bg-elevated: #111111;
  --color-bg-subtle:   #1a1a1a;
  --color-border:      #222222;
  --color-gold:        #8B5CF6;
  --color-gold-hover:  #7C3AED;
  --color-gold-dim:    rgba(139, 92, 246, 0.15);
  --color-white:       #ffffff;
  --color-text:        #e0e0e0;
  --color-muted:       #999999;
  --color-muted-dim:   #666666;

  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;
  --font-mono:     'Inconsolata', 'Courier New', monospace;

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

  --section-pad: clamp(80px, 10vw, 120px);
  --container-max: 1200px;
  --radius:   8px;
  --radius-lg: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }
.reveal[data-delay="4"] { transition-delay: 0.6s; }
.reveal[data-delay="5"] { transition-delay: 0.75s; }

.hero-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-enter[data-hero-delay="0"] { animation-delay: 0.3s; }
.hero-enter[data-hero-delay="1"] { animation-delay: 0.6s; }
.hero-enter[data-hero-delay="2"] { animation-delay: 0.9s; }
.hero-enter[data-hero-delay="3"] { animation-delay: 1.2s; }
.hero-enter[data-hero-delay="4"] { animation-delay: 1.6s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.section-title--center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border: 2px solid var(--color-gold);
}

.btn--primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn--full {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.nav__link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.testimonials__arrow:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.testimonials__dot:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.contact__social-link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.footer__social a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.footer__links a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.form__input:focus-visible {
  outline: none;
}

body.nav-open {
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background-color 0.6s ease, padding 0.6s ease, box-shadow 0.6s ease;
  background-color: transparent;
}

.nav--scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav__logo:hover {
  color: var(--color-gold);
}

.brand-text--nav {
  color: inherit;
}

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

.nav__logo:hover .brand-text--nav-accent {
  color: var(--color-gold-hover);
}

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

.nav__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-muted);
  transition: color var(--transition);
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background-color: var(--color-gold);
  color: var(--color-bg) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background-color: var(--color-gold-hover);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 var(--space-md);
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero__bg-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.04) 0%,
    transparent 70%
  );
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

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

.brand-text--accent {
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-gold) 0%, #c4b5fd 50%, var(--color-gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brandShimmer 6s ease-in-out infinite;
}

@keyframes brandShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.2;
    transform: scaleY(0.5);
  }
}

.clients {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.clients__label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted-dim);
  margin-bottom: var(--space-xl);
}

.clients__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.clients__item {
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity var(--transition-slow);
  filter: brightness(0) invert(1);
}

.clients__item:hover {
  opacity: 0.8;
}

.clients__item img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.clients__item--text {
  filter: none;
  opacity: 0.4;
}

.clients__item--text span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.3;
  text-align: center;
}

.clients__item--text:hover {
  opacity: 0.8;
}

.about {
  padding: var(--section-pad) 0;
}

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

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.about__text {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about__text:last-of-type {
  margin-bottom: var(--space-xl);
}

.stats {
  padding: var(--space-3xl) 0;
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stats__item {
  padding: var(--space-lg);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}

.stats__plus {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--color-gold);
  vertical-align: top;
}

.stats__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  margin-top: var(--space-xs);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.services {
  padding: var(--section-pad) 0;
}

.services .section-label,
.services .section-title {
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.services__card {
  background-color: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition-slow),
              box-shadow var(--transition-slow);
}

.services__card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.services__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
}

.services__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
}

.services__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.services__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.video {
  padding: var(--section-pad) 0;
}

.video .section-label,
.video .section-title {
  text-align: center;
}

.video__wrapper {
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.video__wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

.gallery {
  padding: var(--section-pad) 0;
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.gallery .section-label,
.gallery .section-title {
  text-align: center;
}

.gallery__carousel {
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
}

.gallery__track {
  position: relative;
  height: 550px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg);
}

.gallery__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
}

.gallery__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery__slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.gallery__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.gallery__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all var(--transition-slow);
  color: var(--color-muted);
}

.gallery__arrow svg {
  width: 18px;
  height: 18px;
}

.gallery__arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: var(--color-gold-dim);
}

.gallery__arrow:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.gallery__dots {
  display: flex;
  gap: 0.5rem;
}

.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-muted-dim);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.gallery__dot.active {
  background-color: var(--color-gold);
  transform: scale(1.25);
}

.gallery__dot:hover {
  background-color: var(--color-gold-hover);
}

.gallery__dot:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.testimonials {
  padding: var(--section-pad) 0;
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.testimonials .section-label,
.testimonials .section-title {
  text-align: center;
}

.testimonials__carousel {
  max-width: 750px;
  margin: var(--space-2xl) auto 0;
  position: relative;
}

.testimonials__track {
  position: relative;
  min-height: 200px;
}

.testimonials__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.testimonials__slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.testimonials__card {
  background-color: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-slow), border-color var(--transition-slow);
  will-change: transform;
}

.testimonials__slide.active .testimonials__card {
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.15);
}

.testimonials__icon {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-xl);
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  opacity: 0.15;
}

.testimonials__icon svg {
  width: 100%;
  height: 100%;
}

.testimonials__quote {
  text-align: left;
}

.testimonials__quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.testimonials__author {
  display: flex;
  justify-content: flex-start;
}

.testimonials__author cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all var(--transition-slow);
  color: var(--color-muted);
}

.testimonials__arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials__arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: var(--color-gold-dim);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-muted-dim);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonials__dot.active {
  background-color: var(--color-gold);
  transform: scale(1.25);
}

.testimonials__dot:hover {
  background-color: var(--color-gold-hover);
}

.pricing {
  padding: var(--section-pad) 0;
}

.pricing .section-label,
.pricing .section-title {
  text-align: center;
}

.pricing__compact {
  max-width: 600px;
  margin: var(--space-2xl) auto 0;
  background-color: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.pricing__tier {
  width: 100%;
}

.pricing__tier-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.pricing__highlight {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-gold);
}

.pricing__tier-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.pricing__divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-border);
}

.pricing__note {
  font-size: 0.85rem;
  color: var(--color-muted-dim);
  line-height: 1.6;
  max-width: 400px;
}

.contact {
  padding: var(--section-pad) 0;
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
}

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

.contact__desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 420px;
}

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

.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-muted);
  transition: all var(--transition);
}

.contact__social-link svg {
  width: 18px;
  height: 18px;
}

.contact__social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: var(--color-gold-dim);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form__input {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-white);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder {
  color: var(--color-muted-dim);
}

.form__input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-dim);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form__group--error .form__input {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.form__group--error .form__label {
  color: #f87171;
}

.form__turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.form__status {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.5em;
}

.form__status--success {
  color: #4ade80;
}

.form__status--error {
  color: #f87171;
}

.footer {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.footer__logo:hover {
  color: var(--color-gold);
}

.brand-text--footer {
  color: inherit;
}

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

.footer__logo:hover .brand-text--footer-accent {
  color: var(--color-gold-hover);
}

.footer__divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__credit {
  font-size: 0.8rem;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

.footer__credit a {
  color: var(--color-gold);
  font-weight: 500;
  transition: color var(--transition);
}

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

.footer__copy {
  font-size: 0.7rem;
  color: var(--color-muted-dim);
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .nav__link {
    font-size: 1.1rem;
    color: var(--color-white);
  }

  .nav__link--cta {
    margin-top: var(--space-sm);
    padding: 0.8rem 2rem;
  }

  .hero__title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__scroll {
    display: none;
  }

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

  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .stats__item + .stats__item {
    border-top: 1px solid var(--color-border);
  }

  .video__wrapper {
    max-width: 100%;
  }

  .gallery__track {
    height: 350px;
  }

  .testimonials__card {
    padding: var(--space-2xl) var(--space-lg);
    will-change: auto;
  }

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

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .nav__link {
    font-size: 1.1rem;
    color: var(--color-white);
  }

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

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

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

  .nav__menu {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .testimonials__card {
    will-change: auto;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-enter {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .brand-text--accent {
    animation: none;
    background-size: 100% 100%;
  }
}
