:root {
  --black: #050306;
  --ink: #100811;
  --wine: #7d092f;
  --hot: #e6006d;
  --gold: #d7a64a;
  --teal: #18b8a6;
  --ivory: #fff4e6;
  --muted: #c8b7bf;
  --line: rgba(255, 244, 230, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --hero-focus-desktop: center center;
  --hero-focus-mobile: center top;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at top left, rgba(230, 0, 109, 0.16), transparent 32rem),
    linear-gradient(180deg, var(--black), #0b060b 42%, #060607);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.beauty-bg {
  position: fixed;
  z-index: -5;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(230, 0, 109, 0.22), transparent 18rem),
    radial-gradient(circle at 80% 12%, rgba(215, 166, 74, 0.16), transparent 22rem),
    radial-gradient(circle at 60% 78%, rgba(24, 184, 166, 0.14), transparent 20rem);
}

.beauty-bg span {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(215, 166, 74, 0.18);
  border-radius: 42% 58% 51% 49%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 244, 230, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(230, 0, 109, 0.16), rgba(215, 166, 74, 0.08));
  filter: blur(0.2px);
  opacity: 0.8;
  animation: beautyFloat 16s ease-in-out infinite alternate;
}

.beauty-bg span:nth-child(1) {
  top: 8%;
  left: -7rem;
}

.beauty-bg span:nth-child(2) {
  top: 34%;
  right: -9rem;
  width: 31rem;
  height: 31rem;
  animation-delay: -5s;
}

.beauty-bg span:nth-child(3) {
  left: 32%;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  animation-delay: -9s;
}

@keyframes beautyFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  to {
    transform: translate3d(2rem, -1.6rem, 0) rotate(18deg) scale(1.08);
  }
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(230, 0, 109, 0.2), transparent 68%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(5, 3, 6, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(215, 166, 74, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.4rem);
  color: rgba(255, 244, 230, 0.82);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--hot), var(--gold));
  transition: width 0.25s ease;
}

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

.header-cta,
.btn,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-cta {
  padding: 0 1.2rem;
  color: #120707;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 5vw, 5rem) 2rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus-desktop);
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 3, 6, 0.92), rgba(5, 3, 6, 0.54) 44%, rgba(5, 3, 6, 0.1)),
    linear-gradient(0deg, rgba(5, 3, 6, 0.95), transparent 42%);
}

.hero-content {
  max-width: 54rem;
  padding-bottom: clamp(2rem, 8vh, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.5rem, 9vw, 8.8rem);
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

.hero-copy {
  max-width: 42rem;
  color: rgba(255, 244, 230, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.social-icons a {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 244, 230, 0.2);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 244, 230, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-icons a[aria-label="Instagram"] {
  border-color: rgba(225, 48, 108, 0.72);
  background: linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 56%, #962fbf 78%, #4f5bd5);
}

.social-icons a[aria-label="TikTok"] {
  border-color: rgba(37, 244, 238, 0.72);
  background: linear-gradient(135deg, #25f4ee 0 18%, #080808 18% 68%, #fe2c55 68%);
}

.social-icons a[aria-label="Facebook"] {
  border-color: rgba(24, 119, 242, 0.72);
  background: #1877f2;
}

.social-icons a:hover {
  border-color: rgba(255, 244, 230, 0.82);
  transform: translateY(-3px);
}

.social-icons svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.btn {
  min-width: 12rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.header-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #130509;
  background: linear-gradient(135deg, var(--gold), #ffdb8f 48%, var(--hot));
  box-shadow: 0 16px 44px rgba(230, 0, 109, 0.24);
}

.btn.ghost {
  border-color: rgba(255, 244, 230, 0.26);
  background: rgba(255, 244, 230, 0.06);
  backdrop-filter: blur(10px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 54rem;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-metrics span {
  display: grid;
  gap: 0.25rem;
  min-height: 6.4rem;
  align-content: center;
  padding: 1rem;
  background: rgba(11, 6, 11, 0.68);
  backdrop-filter: blur(16px);
  color: var(--muted);
}

.hero-metrics strong {
  color: var(--ivory);
  font-size: 1.7rem;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 34rem);
  gap: clamp(1.5rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.intro-band {
  background: linear-gradient(135deg, #11070f, #220915 42%, #070707);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 27rem);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}

.about-text {
  max-width: 58rem;
  color: rgba(255, 244, 230, 0.78);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.65;
}

.signature-panel {
  display: grid;
  align-content: end;
  min-height: 20rem;
  padding: 2rem;
  border: 1px solid rgba(215, 166, 74, 0.28);
  background:
    linear-gradient(145deg, rgba(125, 9, 47, 0.58), rgba(24, 184, 166, 0.14)),
    rgba(255, 255, 255, 0.04);
}

.signature-panel span,
.work-card span,
.service-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-panel strong {
  margin-top: 0.8rem;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.1;
}

.works-section {
  background: #070507;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  min-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.filter-btn.active {
  border-color: transparent;
  color: #120707;
  background: var(--gold);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.work-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  background: #160811;
}

.work-card.is-hidden {
  display: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
}

.work-card:hover img {
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.06);
}

.work-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4rem 1.2rem 1.2rem;
  background: linear-gradient(0deg, rgba(5, 3, 6, 0.96), transparent);
}

.work-card strong {
  display: block;
  margin-top: 0.4rem;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.services-section {
  background: linear-gradient(180deg, #090509, #150710);
}

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

.service-card {
  min-height: 19rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(230, 0, 109, 0.08)),
    rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(215, 166, 74, 0.5);
  transform: translateY(-6px);
}

.service-card h3 {
  margin: 3.2rem 0 1rem;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.comparison-section {
  background: #050306;
}

.beauty-slider {
  position: relative;
  width: min(100%, 70rem);
  aspect-ratio: 16 / 8;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.beauty-slider img,
.slider-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.beauty-slider img {
  object-fit: cover;
}

.slider-overlay {
  overflow: hidden;
  width: 50%;
  border-right: 3px solid var(--gold);
}

.slider-overlay img {
  width: 100%;
  min-width: min(100vw, 70rem);
}

.beauty-slider input {
  position: absolute;
  inset: auto 5% 1.2rem;
  z-index: 2;
  width: 90%;
  accent-color: var(--gold);
}

.testimonials-section {
  background: linear-gradient(135deg, #12050d, #07110f);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr) 3.2rem;
  gap: 1rem;
  align-items: center;
  max-width: 62rem;
  margin-inline: auto;
}

.testimonial {
  min-height: 17rem;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.testimonial p {
  color: rgba(255, 244, 230, 0.86);
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.28;
}

.testimonial cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.testimonial-control {
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.faq-section {
  background: #070507;
}

.faq-list {
  max-width: 56rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  padding: 1.35rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-item strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.faq-item p {
  grid-column: 1 / -1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.25s ease, margin-top 0.25s ease;
}

.faq-item.open p {
  max-height: 9rem;
  margin-top: 0.8rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(110deg, rgba(230, 0, 109, 0.46), rgba(215, 166, 74, 0.18), rgba(24, 184, 166, 0.22)),
    #10070e;
}

.final-cta h2 {
  max-width: 14ch;
  margin-bottom: 2rem;
}

.contact-social {
  display: grid;
  gap: 0.7rem;
  color: rgba(255, 244, 230, 0.82);
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 19;
  right: 1rem;
  bottom: 1rem;
  padding: 0 1.1rem;
  color: #07110f;
  background: var(--teal);
  box-shadow: 0 18px 40px rgba(24, 184, 166, 0.22);
}

.site-footer {
  padding: 1.35rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: rgba(5, 3, 6, 0.92);
  color: rgba(255, 244, 230, 0.7);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 4.9rem 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(5, 3, 6, 0.95);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

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

  .main-nav a {
    padding: 1rem 0;
  }

  .section-heading,
  .about-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .contact-social {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .brand strong {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 7rem;
  }

  .hero-photo {
    object-position: var(--hero-focus-mobile);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 3, 6, 0.96), rgba(5, 3, 6, 0.58) 55%, rgba(5, 3, 6, 0.22)),
      linear-gradient(90deg, rgba(5, 3, 6, 0.65), transparent);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .hero-metrics,
  .work-grid,
  .services-grid,
  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .hero-metrics span {
    min-height: auto;
  }

  .work-card {
    min-height: 26rem;
  }

  .beauty-slider {
    aspect-ratio: 4 / 5;
  }

  .testimonial-control {
    display: none;
  }

  .floating-whatsapp {
    left: 1rem;
  }
}
