@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

:root {
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --gold: #c9a96e;
  --gold-light: #e8d4b0;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --gray: #888888;
  --light-gray: #eeeeee;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --container: 1200px;
  --nav-h: 80px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BASE ===== */
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 0 40px;
}

.nav.scrolled {
  background: var(--black);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.nav__logo span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav panel */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.35s ease;
}

.nav__mobile.open { right: 0; }

.nav__mobile a {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--gold); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* ===== HERO (index) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

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

.hero__video,
.hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 840px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 42px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding-bottom: 60px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.page-hero__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark .section-sub { color: rgba(255,255,255,0.5); }

.section--off {
  background: var(--off-white);
}

.section--gold {
  background: var(--gold);
  color: var(--black);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section-sub { margin: 0 auto; }

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.about__badge span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  padding: 0 8px;
}

.about__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}

.about__text p {
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.9;
}

.about__text .btn { margin-top: 10px; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img { transform: scale(1.06); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%);
}

.service-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 26px;
  color: var(--white);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  display: block;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ===== PROOF ===== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.proof-item {
  padding: 60px 40px;
  text-align: center;
  background: var(--dark);
}

.proof-item__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.proof-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ===== CTA BAND ===== */
.cta-band {
  text-align: center;
  padding: 90px 0;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-band p {
  margin-bottom: 36px;
  font-size: 1.0625rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== EVENTS PAGE ===== */
.event-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}

.event-block:last-child { border-bottom: none; }

.event-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.event-inner--reverse {
  direction: rtl;
}

.event-inner--reverse > * { direction: ltr; }

.event-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.event-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

.event-content p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 18px;
}

.event-content .btn { margin-top: 10px; }

/* ===== SPACE PAGE ===== */
.space-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.space-intro__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.space-intro__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.space-intro__text p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 18px;
}

.feature-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--dark);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.space-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.space-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}

.space-photo:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.space-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.space-option {
  padding: 64px 56px;
  background: var(--dark);
  color: var(--white);
}

.space-option--gold {
  background: var(--gold);
  color: var(--black);
}

.space-option h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.space-option__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
}

.space-option p {
  line-height: 1.9;
  opacity: 0.8;
  margin-bottom: 28px;
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  cursor: zoom-in;
  background: var(--light-gray);
}

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

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item--tall img { height: 486px; }
.gallery-item--wide img { height: 240px; }

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

.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.video-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.video-card video {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.video-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox__close:hover { opacity: 1; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 420px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
}

.contact-item__text strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.contact-item__text p,
.contact-item__text a {
  font-size: 0.9375rem;
  color: var(--dark);
  line-height: 1.65;
}

.contact-item__text a:hover { color: var(--gold); }

.map-wrap {
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.22s, box-shadow 0.22s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.wa-float svg { width: 30px; height: 30px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.footer__brand > span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.footer__brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.85;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer__col a,
.footer__col p {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 2.1;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer__bottom a { color: var(--gold); transition: opacity 0.2s; }
.footer__bottom a:hover { opacity: 0.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 70px; }
  .about { grid-template-columns: 1fr; gap: 56px; }
  .about__badge { right: 0; bottom: 0; }
  .about__img { height: 400px; }
  .event-inner,
  .event-inner--reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .event-img { height: 340px; }
  .space-intro { grid-template-columns: 1fr; gap: 44px; }
  .space-intro__img { height: 360px; }
  .space-photos { grid-template-columns: repeat(2, 1fr); }
  .space-options { grid-template-columns: 1fr; }
  .space-option { padding: 48px 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: block; }

  .section { padding: 70px 0; }
  .hero__title { font-size: 2.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 300px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img,
  .gallery-item--tall img,
  .gallery-item--wide img { height: 200px; }
  .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 240px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
