:root {
  --black: #050505;
  --black-soft: #0b0b0d;
  --ink: #171717;
  --white: #ffffff;
  --muted: #b9b4aa;
  --line: rgba(214, 178, 94, 0.22);
  --gold: #d8b25f;
  --gold-light: #fff2be;
  --gold-dark: #8d651e;
  --max: 1180px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(216, 178, 95, 0.14);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
}

.nav {
  width: min(calc(100% - 40px), 1280px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 242, 190, 0.42);
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 0 30px rgba(216, 178, 95, 0.25);
}

.brand-copy {
  color: var(--white);
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
}

.brand-copy small {
  color: var(--gold-light);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 178, 95, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 112px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(216, 178, 95, 0.13), transparent 34%),
    linear-gradient(135deg, #030303, #0d0d10 52%, #050505);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 20px 86px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1800&q=88");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.72), rgba(3, 3, 3, 0.28)),
    radial-gradient(circle at 52% 45%, rgba(216, 178, 95, 0.18), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.logo-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  font-family: "Cinzel", Georgia, serif;
  color: var(--white);
}

.logo-via {
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.88;
  font-weight: 700;
  background: linear-gradient(135deg, #fff8d6, #d8b25f 48%, #8d651e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-events {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
}

.slogan {
  color: var(--gold-light);
  margin: 0 0 18px;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-gold {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 18px 46px rgba(216, 178, 95, 0.22);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 242, 190, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  background: rgba(216, 178, 95, 0.12);
  border-color: var(--gold);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 242, 190, 0.45);
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 9px;
  background: var(--gold-light);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

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

.section-copy p,
.section-heading p,
.event-type p,
.contact-copy p {
  color: #5f5a52;
  margin: 22px 0 0;
  max-width: 720px;
}

.section-dark .section-copy p,
.section-dark .section-heading p,
.section-dark .event-type p {
  color: rgba(255, 255, 255, 0.7);
}

.signature-card {
  margin-top: 32px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: #faf7ef;
}

.signature-card span {
  display: block;
  color: #7b715e;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.signature-card strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
}

.image-panel {
  position: relative;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.image-panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 46px;
}

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

.service-card,
.event-type {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  padding: 30px;
  min-height: 230px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-card:hover,
.event-type:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 242, 190, 0.48);
  background: linear-gradient(145deg, rgba(216, 178, 95, 0.14), rgba(255, 255, 255, 0.035));
}

.service-card p {
  color: rgba(255, 255, 255, 0.68);
  margin: 18px 0 0;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.feature-card {
  background: #fbfaf7;
  border: 1px solid rgba(141, 101, 30, 0.16);
  box-shadow: 0 24px 70px rgba(14, 12, 9, 0.09);
}

.feature-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card div {
  padding: 28px;
}

.feature-card p {
  color: #625e56;
  margin-bottom: 0;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--black);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.84));
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

.gallery-item figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.15rem;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82);
}

.benefit-list span {
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 58px;
  align-items: start;
}

.contact-cards {
  margin: 30px 0;
}

.contact-cards a {
  flex: 1 1 230px;
  padding: 22px;
  border: 1px solid rgba(141, 101, 30, 0.2);
  background: #fbfaf7;
}

.contact-cards span {
  display: block;
  color: #7b715e;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-cards strong {
  color: #111;
  overflow-wrap: anywhere;
}

address {
  font-style: normal;
  color: #625e56;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.contact-form {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(216, 178, 95, 0.13), rgba(255, 255, 255, 0.03)),
    var(--black-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 242, 190, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form select option {
  color: #111;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  color: rgba(255, 255, 255, 0.75);
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  padding: 58px 0;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(216, 178, 95, 0.14);
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #090909;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

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

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

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes scrollCue {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 12px);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 20px 28px;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .split,
  .contact-layout,
  .feature-row {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .container,
  .nav {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    align-items: end;
    min-height: 92svh;
    padding-top: 110px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.38), rgba(3, 3, 3, 0.93) 55%, #030303),
      radial-gradient(circle at 50% 44%, rgba(216, 178, 95, 0.16), transparent 44%);
  }

  .section {
    padding: 78px 0;
  }

  .service-grid,
  .event-columns,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 255px;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card,
  .event-type,
  .contact-form {
    padding: 24px;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .image-panel::before {
    inset: -10px 10px 10px -10px;
  }
}

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