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

body {
  margin: 0;
  font-family: "Space Grotesk", "Gill Sans", sans-serif;
  background: #fefcf7;
  color: #1c1c1a;
}

main {
  display: block;
}

.hero {
  position: relative;
  min-height: 78vh;
  color: #f3efff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 11, 22, 0.75), rgba(12, 10, 20, 0.65)),
    radial-gradient(circle at 15% 20%, rgba(255, 47, 179, 0.18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(43, 108, 255, 0.22), transparent 60%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 18s infinite;
  transform: scale(1.03);
}

.hero-slide-one {
  background-image: url("assets/DSC02600.jpeg");
  animation-delay: 0s;
}

.hero-slide-two {
  background-image: url("assets/DSC02676.jpeg");
  animation-delay: 6s;
}

.hero-slide-three {
  background-image: url("assets/DSC02752.jpeg");
  animation-delay: 12s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
  width: 100%;
}

.hero-content {
  max-width: 640px;
  padding: 96px 0 110px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(243, 239, 255, 0.75);
  margin-bottom: 16px;
}

.hero-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 18px;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(231, 226, 255, 0.85);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    color 0.3s ease, border-color 0.3s ease;
}

.button-primary {
  background: linear-gradient(130deg, #a100ff 0%, #ff2fb3 45%, #2b6cff 100%);
  color: #fff7ff;
  box-shadow: 0 14px 26px rgba(12, 10, 20, 0.45);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #f6f3ff;
  background: rgba(16, 12, 26, 0.35);
  backdrop-filter: blur(6px);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(12, 10, 20, 0.45);
}

.hero-micro {
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: rgba(231, 226, 255, 0.7);
  max-width: 520px;
}

.hero-trust {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(243, 239, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

@keyframes heroFade {
  0%,
  22% {
    opacity: 0;
  }
  30%,
  55% {
    opacity: 1;
  }
  66%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 80px 0 96px;
  }
}

@media (max-width: 720px) {
  .hero-content {
    padding: 70px 0 86px;
  }

  .hero-trust {
    text-transform: none;
    letter-spacing: 0.4px;
    line-height: 1.6;
  }
}

.teasers {
  background: radial-gradient(circle at 15% 15%, rgba(43, 108, 255, 0.12), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(255, 47, 179, 0.12), transparent 55%),
    #0c0a14;
  color: #f3efff;
  padding: 90px 0 100px;
}

.teasers-inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}

.teasers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.teasers-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(243, 239, 255, 0.7);
  margin: 0 0 10px;
}

.teasers-title {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(28px, 3.8vw, 40px);
}

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

.teaser-card {
  background: rgba(18, 15, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(8, 6, 15, 0.4);
}

.teaser-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.teaser-card p {
  margin: 0;
  color: rgba(231, 226, 255, 0.8);
  line-height: 1.6;
}

.teaser-card a {
  margin-top: auto;
  text-decoration: none;
  color: #ff2fb3;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
}

.teaser-card a:hover {
  color: #2b6cff;
}

.teasers-footer {
  margin: 32px 0 0;
  font-size: 14px;
  color: rgba(243, 239, 255, 0.72);
  text-align: center;
}

@media (max-width: 960px) {
  .teasers-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 720px) {
  .teasers {
    padding: 70px 0 80px;
  }

  .teasers-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.testimonials {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.testimonials-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(243, 239, 255, 0.7);
}

.testimonials-title {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 32px);
}

.testimonials-controls {
  display: flex;
  gap: 10px;
}

.testimonial-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(16, 12, 26, 0.6);
  color: #f3efff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.testimonial-button:hover {
  border-color: rgba(255, 47, 179, 0.6);
}

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  touch-action: pan-x;
}

.testimonials-track::-webkit-scrollbar {
  height: 6px;
}

.testimonials-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.testimonial-card {
  background:
    linear-gradient(160deg, rgba(18, 15, 29, 0.62), rgba(10, 9, 16, 0.72)),
    url("assets/card-texture.jpg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  min-height: 200px;
  display: grid;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(8, 6, 15, 0.35);
  scroll-snap-align: start;
}

.testimonial-card p {
  margin: 0;
  color: rgba(231, 226, 255, 0.82);
  line-height: 1.6;
}

.testimonial-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(231, 226, 255, 0.6);
}

@media (min-width: 980px) {
  .testimonials-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }
}

@media (max-width: 720px) {
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about {
  background: radial-gradient(circle at 20% 20%, rgba(255, 47, 179, 0.12), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(43, 108, 255, 0.16), transparent 60%),
    linear-gradient(160deg, #0f0c18 0%, #161127 55%, #0b0a14 100%);
  color: #f3efff;
  padding: 90px 0 100px;
}

.about-inner {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}

.about-media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 40px rgba(8, 6, 15, 0.45);
  background: rgba(12, 10, 20, 0.4);
  aspect-ratio: 4 / 5;
}

.about-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-content {
  display: grid;
  gap: 18px;
}

.about-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(243, 239, 255, 0.65);
}

.about-title {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
}

.about-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(243, 239, 255, 0.86);
}

.about-body {
  display: grid;
  gap: 14px;
}

.about-body p {
  margin: 0;
  line-height: 1.7;
  color: rgba(243, 239, 255, 0.75);
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .about {
    padding: 70px 0 80px;
  }
}

.services {
  background: linear-gradient(180deg, #0c0a14 0%, #110e1e 40%, #0c0a14 100%);
  color: #f4f0ff;
  padding: 96px 0 110px;
}

.services-inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}

.services-header {
  display: grid;
  gap: 20px;
  max-width: 720px;
  margin-bottom: 48px;
}

.services-title {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
}

.services-intro {
  margin: 0;
  color: rgba(231, 226, 255, 0.8);
  line-height: 1.7;
}

.services-intro + .services-intro {
  margin-top: 14px;
}

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

.service-card {
  background-color: rgba(18, 15, 29, 0.9);
  background-image:
    linear-gradient(160deg, rgba(9, 8, 14, 0.68), rgba(9, 8, 14, 0.86)),
    var(--service-photo, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px;
  min-height: 240px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 36px rgba(8, 6, 15, 0.35);
}

.services-grid .service-card:nth-child(1) {
  --service-photo: url("assets/DSC02655.jpeg");
}

.services-grid .service-card:nth-child(2) {
  --service-photo: url("assets/DSC02742.jpeg");
}

.services-grid .service-card:nth-child(3) {
  --service-photo: url("assets/DSC02758.jpeg");
}

.services-grid .service-card:nth-child(4) {
  --service-photo: url("assets/DSC02733.jpeg");
}

.services-grid .service-card:nth-child(5) {
  --service-photo: url("assets/DSC02822.jpeg");
}

.services-grid .service-card:nth-child(6) {
  --service-photo: url("assets/DSC02714.jpeg");
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(161, 0, 255, 0.25), rgba(43, 108, 255, 0.3));
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.service-card p {
  margin: 0;
  color: rgba(231, 226, 255, 0.78);
  line-height: 1.6;
}

.services-note {
  margin: 36px auto 28px;
  max-width: 760px;
  text-align: center;
  color: rgba(231, 226, 255, 0.8);
  line-height: 1.7;
}

.services-packages {
  margin: 0 auto 32px;
  padding: 24px 28px 28px;
  border-radius: 18px;
  background: rgba(18, 15, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(8, 6, 15, 0.35);
  position: relative;
  overflow: hidden;
}

.services-packages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/DSC02793.jpeg") center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.9);
}

.services-packages > * {
  position: relative;
  z-index: 1;
}

.packages-title {
  margin: 0 0 20px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 24px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  background: rgba(12, 10, 20, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  display: grid;
  gap: 10px;
}

.package-card h4 {
  margin: 0;
  font-size: 18px;
}

.package-card p {
  margin: 0;
  color: rgba(231, 226, 255, 0.78);
  line-height: 1.5;
}

.package-price {
  font-size: 16px;
  font-weight: 600;
  color: #f6f3ff;
}

.packages-note {
  margin: 18px 0 0;
  font-size: 12px;
  color: rgba(231, 226, 255, 0.7);
}

.services-cta {
  margin-top: 40px;
  padding: 24px 28px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(161, 0, 255, 0.18), rgba(43, 108, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.services-cta p {
  margin: 0;
  color: rgba(243, 239, 255, 0.85);
  line-height: 1.6;
  max-width: 720px;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packages-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .services {
    padding: 76px 0 90px;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact {
  background: radial-gradient(circle at 10% 20%, rgba(255, 47, 179, 0.12), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(43, 108, 255, 0.18), transparent 55%),
    #0b0a14;
  color: #f3efff;
  padding: 96px 0 110px;
}

.contact-inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}

.contact-header {
  max-width: 720px;
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(243, 239, 255, 0.7);
  margin: 0;
}

.contact-title {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
}

.contact-intro {
  margin: 0;
  color: rgba(231, 226, 255, 0.8);
  line-height: 1.7;
}

.contact-note {
  margin: 0;
  font-size: 13px;
  color: rgba(231, 226, 255, 0.7);
}

.contact-callout {
  margin: 0 0 36px;
  text-align: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(18, 15, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(243, 239, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: rgba(18, 15, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(8, 6, 15, 0.35);
}

.contact-success {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.contact-card h3 {
  margin: 0;
  font-size: 22px;
}

.contact-card p {
  margin: 0;
  color: rgba(231, 226, 255, 0.78);
  line-height: 1.6;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(231, 226, 255, 0.78);
  line-height: 1.6;
  display: grid;
  gap: 6px;
}

.contact-list strong {
  color: rgba(243, 239, 255, 0.9);
  font-weight: 600;
}

.contact-list a {
  color: rgba(243, 239, 255, 0.85);
  text-decoration: none;
}

.contact-list a:hover {
  color: #ff2fb3;
}

.contact-highlight {
  background: rgba(16, 12, 26, 0.6);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: rgba(243, 239, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form {
  background: rgba(18, 15, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 18px;
  box-shadow: 0 18px 36px rgba(8, 6, 15, 0.35);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  letter-spacing: 0.4px;
  color: rgba(243, 239, 255, 0.75);
}

.form-field input,
.form-field textarea,
.form-field select {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 10, 20, 0.6);
  color: #f3efff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(255, 47, 179, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 47, 179, 0.15);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(231, 226, 255, 0.78);
}

.form-consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.form-consent a {
  color: #ff2fb3;
  text-decoration: none;
}

.form-consent a:hover {
  color: #2b6cff;
}

.form-note {
  margin: 0;
  font-size: 12px;
  color: rgba(231, 226, 255, 0.72);
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .contact {
    padding: 76px 0 90px;
  }
}
