:root {
  color-scheme: dark;
  --bg: #08070c;
  --bg-soft: #0f0c13;
  --panel: rgba(255, 244, 232, 0.07);
  --panel-strong: rgba(255, 244, 232, 0.11);
  --text: #fff8ee;
  --muted: #cbbfba;
  --rose: #ff5277;
  --wine: #8d2549;
  --gold: #e3b765;
  --cyan: #59d5c7;
  --ink: #161019;
  --line: rgba(255, 248, 238, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --max: 1180px;
  --radius: 8px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(145deg, rgba(89, 213, 199, 0.06), transparent 28%),
    linear-gradient(215deg, rgba(255, 82, 119, 0.12), transparent 34%),
    linear-gradient(180deg, #050407 0%, var(--bg) 42%, #120910 100%);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
}

body.modal-open {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: rgba(255, 82, 119, 0.35);
  color: var(--text);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.76;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 18rem;
  height: 10rem;
  pointer-events: none;
  border-radius: 42% 58% 54% 46%;
  opacity: 0;
  transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0) rotate(-12deg);
  background:
    radial-gradient(closest-side at 45% 50%, rgba(255, 82, 119, 0.22), transparent),
    radial-gradient(closest-side at 62% 52%, rgba(89, 213, 199, 0.14), transparent);
  filter: blur(22px);
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(10, 5, 10, 0.98), rgba(22, 10, 18, 0.96)),
    #070509;
}

.intro.is-hidden {
  pointer-events: none;
}

.intro__paint,
.intro__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro__veil {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(180deg, transparent, rgba(255, 82, 119, 0.08), transparent);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.intro__brand {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 1rem;
  transform: translateY(18px);
  opacity: 0;
  filter: blur(18px);
  clip-path: inset(0 100% 0 0);
}

.intro__brand img {
  width: 8.5rem;
  height: 8.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 48px rgba(255, 82, 119, 0.28);
}

.intro__brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 248, 238, 0.12);
  background: rgba(8, 7, 12, 0.7);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 248, 238, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 82, 119, 0.22), rgba(89, 213, 199, 0.1));
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 0 28px rgba(255, 82, 119, 0.14);
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 248, 238, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.04);
}

.nav__links a {
  position: relative;
  padding: 0.56rem 0.72rem;
  border-radius: 6px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.92rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--text);
  background: rgba(255, 248, 238, 0.08);
  outline: none;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section--quiet {
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.035), transparent),
    rgba(255, 255, 255, 0.01);
}

.section--gallery {
  background:
    linear-gradient(180deg, rgba(89, 213, 199, 0.05), transparent 36%),
    linear-gradient(0deg, rgba(255, 82, 119, 0.06), transparent 38%);
}

.section--contact {
  padding-bottom: 5.5rem;
}

.section__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section__header {
  max-width: 720px;
  margin-bottom: 2.8rem;
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: 5.4rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.1rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 4.4rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.72fr);
  gap: 4rem;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.hero__intro {
  max-width: 650px;
  margin-bottom: 2rem;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(255, 248, 238, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  transition:
    transform 520ms ease,
    opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.button--filled {
  border-color: rgba(255, 82, 119, 0.55);
  background: linear-gradient(135deg, #ff5277, #8d2549 58%, #e3b765);
  color: #fffaf5;
  box-shadow: 0 18px 44px rgba(255, 82, 119, 0.18);
}

.button--ghost {
  background: rgba(255, 248, 238, 0.055);
  color: var(--text);
}

.hero__stage {
  position: relative;
  min-height: 560px;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.hero__frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 248, 238, 0.17);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotateX(5deg) rotateY(-7deg) translateZ(0);
}

.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__frame::before {
  background:
    linear-gradient(90deg, rgba(255, 82, 119, 0.16), transparent 36%),
    linear-gradient(0deg, rgba(8, 7, 12, 0.32), transparent 44%);
  mix-blend-mode: screen;
}

.hero__frame::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.48);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.paint-ribbon,
.fragment {
  position: absolute;
  pointer-events: none;
  transform: translateZ(90px);
}

.paint-ribbon {
  z-index: 2;
  width: 62%;
  height: 0.8rem;
  border-radius: 8px;
  filter: blur(0.2px);
  opacity: 0.86;
}

.paint-ribbon--one {
  left: -8%;
  top: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 82, 119, 0.95), rgba(227, 183, 101, 0.8), transparent);
  transform: rotate(-12deg) translateZ(120px);
  animation: ribbonDrift 8s ease-in-out infinite;
}

.paint-ribbon--two {
  right: -11%;
  bottom: 18%;
  background: linear-gradient(90deg, transparent, rgba(89, 213, 199, 0.85), rgba(255, 248, 238, 0.7), transparent);
  transform: rotate(18deg) translateZ(100px);
  animation: ribbonDrift 9s ease-in-out 1.2s infinite reverse;
}

.fragment {
  z-index: 3;
  width: 3.2rem;
  height: 4.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    rgba(255, 248, 238, 0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  animation: fragmentFloat 7s ease-in-out infinite;
}

.fragment--rose {
  left: -1.4rem;
  bottom: 18%;
  border-color: rgba(255, 82, 119, 0.4);
}

.fragment--gold {
  right: 5%;
  top: -1.3rem;
  border-color: rgba(227, 183, 101, 0.36);
  animation-delay: 1.1s;
}

.fragment--cyan {
  right: -1.2rem;
  top: 45%;
  border-color: rgba(89, 213, 199, 0.4);
  animation-delay: 2s;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  grid-template-areas:
    "header image"
    "story image";
  gap: 2.4rem 4rem;
  align-items: end;
}

.about__grid .section__header {
  grid-area: header;
  margin-bottom: 0;
}

.about__story {
  grid-area: story;
  max-width: 720px;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(227, 183, 101, 0.34);
}

.about__story p:last-child {
  margin-bottom: 0;
}

.about__image {
  grid-area: image;
  margin: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.055);
  box-shadow: var(--shadow);
}

.about__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.about__image figcaption {
  margin-top: 0.85rem;
  color: rgba(255, 248, 238, 0.7);
  font-size: 0.9rem;
}

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

.service-card,
.testimonial-card,
.faq-item,
.contact__panel,
.timeline__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(8, 7, 12, 0.45);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 240px;
  padding: 1.25rem;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.service-card span,
.timeline__item span {
  display: inline-flex;
  margin-bottom: 1.7rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
}

.service-card p,
.timeline__item p,
.testimonial-card p {
  margin-bottom: 0;
}

.service-card:hover,
.service-card:focus-within,
.testimonial-card:hover,
.faq-item:hover {
  border-color: rgba(255, 82, 119, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 82, 119, 0.11), rgba(89, 213, 199, 0.055)),
    rgba(8, 7, 12, 0.55);
  box-shadow: 0 24px 70px rgba(255, 82, 119, 0.12);
  transform: translateY(-4px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.art-card {
  grid-column: span 4;
  min-height: 390px;
}

.art-card:nth-child(2),
.art-card:nth-child(5) {
  transform: translateY(2.4rem);
}

.art-card__button {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--text);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.art-card__button::before,
.art-card__button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 520ms ease;
}

.art-card__button::before {
  background:
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(255, 82, 119, 0.12), transparent 44%, rgba(89, 213, 199, 0.08));
}

.art-card__button::after {
  opacity: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22), transparent 58%);
  transform: translateX(-120%);
}

.art-card__button:hover::after,
.art-card__button:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.art-card__button:hover img,
.art-card__button:focus-visible img {
  transform: scale(1.06);
}

.art-card__button:focus-visible {
  outline: 2px solid rgba(89, 213, 199, 0.72);
  outline-offset: 3px;
}

.art-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.art-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.1;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2.1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 183, 101, 0.6), rgba(89, 213, 199, 0.45), transparent);
}

.timeline__item {
  position: relative;
  min-height: 260px;
  padding: 1.25rem;
}

.testimonial-card {
  margin: 0;
  min-height: 220px;
  padding: 1.4rem;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.testimonial-card p {
  color: rgba(255, 248, 238, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.35;
}

.testimonial-card cite {
  display: block;
  margin-top: 1.4rem;
  color: var(--cyan);
  font-style: normal;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.75fr);
  gap: 3rem;
  align-items: start;
}

.faq__layout .section__header {
  position: sticky;
  top: 7rem;
  margin-bottom: 0;
}

.faq__list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.faq-item__question {
  display: flex;
  width: 100%;
  min-height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-item__question i {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.faq-item__question i::before,
.faq-item__question i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform 180ms ease;
}

.faq-item__question i::after {
  transform: rotate(90deg);
}

.faq-item__question[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-item__question:focus-visible {
  outline: 2px solid rgba(89, 213, 199, 0.72);
  outline-offset: -4px;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-item__answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1.15rem;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__answer p {
  padding-bottom: 1.15rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 2rem;
  align-items: center;
}

.contact__copy h2 {
  max-width: 720px;
}

.contact__copy p {
  max-width: 610px;
  margin-bottom: 0;
}

.contact__panel {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem;
  font-style: normal;
}

.contact__panel a {
  display: grid;
  gap: 0.25rem;
  min-height: 5.2rem;
  align-content: center;
  padding: 1rem;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact__panel a:hover,
.contact__panel a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(89, 213, 199, 0.42);
  background: rgba(89, 213, 199, 0.08);
  outline: none;
}

.contact__panel span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer {
  position: relative;
  padding: 2rem 0 2.4rem;
  overflow: hidden;
}

.footer__glow {
  width: min(100% - 2rem, var(--max));
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, rgba(255, 82, 119, 0.8), rgba(89, 213, 199, 0.6), transparent);
  box-shadow: 0 0 24px rgba(255, 82, 119, 0.38);
}

.footer__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.footer p {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.footer__social {
  display: inline-flex;
  gap: 0.45rem;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(255, 248, 238, 0.15);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.04);
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.footer__social a:hover,
.footer__social a:focus-visible {
  color: var(--text);
  border-color: rgba(227, 183, 101, 0.5);
  background: rgba(227, 183, 101, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.footer small {
  justify-self: end;
  color: rgba(255, 248, 238, 0.58);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3.65rem;
  height: 3.65rem;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 50%;
  background: linear-gradient(145deg, #22c66b, #0b8054);
  box-shadow:
    0 0 0 0 rgba(34, 198, 107, 0.44),
    0 18px 44px rgba(0, 0, 0, 0.32);
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: white;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.art-dialog {
  width: min(92vw, 980px);
  max-width: 980px;
  padding: 0;
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 7, 12, 0.86);
  color: var(--text);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(24px);
}

.art-dialog::backdrop {
  background:
    linear-gradient(135deg, rgba(8, 7, 12, 0.8), rgba(18, 6, 12, 0.78)),
    rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
}

.art-dialog__close {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: 50%;
  background: rgba(8, 7, 12, 0.66);
  cursor: pointer;
}

.art-dialog__close::before,
.art-dialog__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  transform: translate(-50%, -50%) rotate(45deg);
}

.art-dialog__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.art-dialog__figure {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.art-dialog__figure img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #050407;
}

.art-dialog__figure figcaption {
  padding: 1rem 1.2rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(10px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 640ms ease,
    transform 640ms ease,
    filter 640ms ease;
}

@keyframes ribbonDrift {
  0%,
  100% {
    opacity: 0.68;
    translate: 0 0;
  }
  50% {
    opacity: 0.98;
    translate: 1.2rem -0.8rem;
  }
}

@keyframes fragmentFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: -5deg;
  }
  50% {
    translate: 0.7rem -1.1rem;
    rotate: 7deg;
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(34, 198, 107, 0.38),
      0 18px 44px rgba(0, 0, 0, 0.32);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(34, 198, 107, 0),
      0 18px 44px rgba(0, 0, 0, 0.32);
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero__inner,
  .about__grid,
  .contact__grid,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .about__grid {
    grid-template-areas:
      "header"
      "story"
      "image";
  }

  .hero__stage {
    min-height: 520px;
  }

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

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

  .timeline::before {
    display: none;
  }

  .faq__layout .section__header {
    position: static;
  }
}

@media (max-width: 760px) {
  .cursor-glow {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .brand__name {
    display: none;
  }

  .nav__links {
    max-width: calc(100vw - 5.6rem);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav__links::-webkit-scrollbar {
    display: none;
  }

  .nav__links a {
    white-space: nowrap;
  }

  .section {
    padding: 5.2rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 7.8rem;
    padding-bottom: 3.4rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero__inner {
    gap: 2.6rem;
  }

  .hero__stage {
    min-height: 420px;
  }

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

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

  .art-card {
    grid-column: auto;
    min-height: 430px;
  }

  .art-card:nth-child(2),
  .art-card:nth-child(5) {
    transform: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer small {
    justify-self: start;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .section__inner,
  .nav,
  .footer__inner,
  .footer__glow {
    width: min(100% - 1.1rem, var(--max));
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__stage {
    min-height: 340px;
  }

  .service-card,
  .timeline__item {
    min-height: auto;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 3.3rem;
    height: 3.3rem;
  }
}

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

  .intro {
    display: none;
  }

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