:root {
  --amethyst-50: #faf5ff;
  --amethyst-100: #f3e8ff;
  --amethyst-300: #d8b4fe;
  --amethyst-500: #9b5de5;
  --amethyst-600: #7e3fcf;
  --amethyst-700: #5b21b6;
  --amethyst-800: #451a8a;
  --amethyst-900: #2e1065;
  --amethyst-950: #1b0640;
  --mauve-50: #faf7f5;
  --mauve-100: #f2edea;
  --mauve-200: #e5ddd7;
  --mauve-500: #766b65;
  --mauve-700: #3d3633;
  --mauve-900: #13100f;
  --gold-400: #d4b26a;
  --gold-500: #b8965a;
  --glass: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(255, 255, 255, 0.22);
  --glass-border: rgba(255, 255, 255, 0.38);
  --ink: #faf7f5;
  --ink-soft: rgba(250, 247, 245, 0.78);
  --shadow: 0 24px 80px rgba(27, 6, 64, 0.45);
  --radius: 28px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Space Grotesk", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(155, 93, 229, 0.35), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(184, 150, 90, 0.18), transparent 50%),
    linear-gradient(165deg, #1b0640 0%, #2e1065 42%, #13100f 100%);
  overflow-x: hidden;
}

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

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

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}

.orb-a {
  width: 340px;
  height: 340px;
  left: -80px;
  top: 20%;
  background: radial-gradient(circle, rgba(155, 93, 229, 0.55), transparent 70%);
}

.orb-b {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 45%;
  background: radial-gradient(circle, rgba(212, 178, 106, 0.28), transparent 70%);
  animation-delay: -6s;
}

.orb-c {
  width: 280px;
  height: 280px;
  left: 35%;
  bottom: -40px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.35), transparent 70%);
  animation-delay: -11s;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -24px, 0) scale(1.08); }
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.liquid {
  position: relative;
  overflow: hidden;
}

.liquid::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 70%;
  height: 55%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 60%);
  transform: rotate(-12deg);
  pointer-events: none;
  opacity: 0.55;
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: min(920px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  animation: navIn 0.9s ease both;
}

@keyframes navIn {
  from { opacity: 0; transform: translate(-50%, -18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links a {
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-400);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 7.5rem 1.25rem 4rem;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.45s ease-out;
  filter: saturate(1.05) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27, 6, 64, 0.55) 0%, rgba(19, 16, 15, 0.35) 45%, rgba(19, 16, 15, 0.78) 100%),
    radial-gradient(circle at 70% 30%, rgba(155, 93, 229, 0.25), transparent 45%);
}

.hero-panel {
  width: min(640px, 100%);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  animation: panelIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-logo {
  width: clamp(96px, 18vw, 124px);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  animation: logoFloat 5.5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.brand-word {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.1;
}

.gold-rule {
  width: 56px;
  height: 1px;
  margin: 1rem auto;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hero-lead,
.section-lead {
  margin: 0.9rem auto 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.cta-row-lg {
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: min(100%, 220px);
  padding: 1rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-xl {
  min-width: min(100%, 320px);
  padding: 1.25rem 1.6rem;
  font-size: 1.12rem;
}

.btn-xl svg {
  width: 1.55rem;
  height: 1.55rem;
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 18px 44px rgba(18, 140, 126, 0.45);
}

.btn-instagram {
  color: #fff;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
  box-shadow: 0 14px 36px rgba(129, 52, 175, 0.35);
}

.btn-instagram:hover {
  box-shadow: 0 18px 44px rgba(129, 52, 175, 0.48);
}

.section {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 1rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.4rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.section h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  line-height: 1.08;
}

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

.exp-item {
  border-radius: 24px;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.exp-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.exp-copy {
  padding: 1.1rem 0.7rem 0.85rem;
}

.exp-copy h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
}

.exp-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 300;
}

.gallery-stage {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  min-height: 520px;
}

.gallery-main {
  grid-row: 1 / span 2;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.gallery-side {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 48px rgba(27, 6, 64, 0.35);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-stage figure:hover img {
  transform: scale(1.04);
}

.contact {
  padding-bottom: 4rem;
}

.contact-panel {
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(155, 93, 229, 0.12));
}

.contact-phone {
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem 2.5rem;
  color: rgba(250, 247, 245, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
}

.footer p {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
}

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

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

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

  .gallery-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .gallery-main,
  .gallery-side {
    min-height: 240px;
  }

  .gallery-main {
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav {
    width: calc(100% - 20px);
    top: 10px;
    padding: 0.55rem 0.8rem;
  }

  .hero {
    padding-top: 6.2rem;
  }

  .btn,
  .btn-xl {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb,
  .hero-logo,
  .reveal,
  .hero-panel,
  .nav {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
