/* ===========================
   WOW BOOTH — Main Stylesheet
   =========================== */

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

:root {
  --red:     #B5271C;
  --red-dk:  #8C1B12;
  --red-lt:  #D94438;
  --cream:   #F5EDE0;
  --cream-dk:#EDD8BF;
  --gold:    #C8963C;
  --gold-lt: #E8B455;
  --dark:    #1A0F0D;
  --dark-2:  #2C1810;
  --gray:    #6B5C54;
  --gray-lt: #9E8E84;
  --white:   #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.section-header { text-align: center; margin-bottom: 56px; }
.section-header--light .section-eyebrow,
.section-header--light .section-title { color: var(--white); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--red); }

.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(181,39,28,0.3);
}

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

.btn--whatsapp {
  background: transparent;
  color: #1DA851;
  border-color: rgba(29,168,81,0.35);
  margin-top: 8px;
  font-weight: 600;
}
.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: #1DA851;
}
.btn--whatsapp:hover {
  background: rgba(29,168,81,0.06);
  border-color: #1DA851;
  transform: translateY(-1px);
  box-shadow: none;
}

.btn--full { width: 100%; justify-content: center; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(26, 15, 13, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo .logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.2s var(--ease);
}

.nav__logo:hover .logo-img {
  transform: scale(1.03);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

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

.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav__cta:hover {
  background: var(--red-dk) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(181,39,28,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200,150,60,0.06) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 560px;
  padding: 80px 24px 80px calc((100vw - var(--max-w)) / 2 + 24px);
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--red-lt);
}

.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__events {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__events span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
}

.hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
}
.hero__img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 35%);
  z-index: 1;
}
.hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,13,0.5) 0%, transparent 40%);
  z-index: 1;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ========== STRIP ========== */
.strip {
  background: var(--red);
  overflow: hidden;
  padding: 0;
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  white-space: nowrap;
  animation: scroll-strip 20s linear infinite;
  width: max-content;
}
.strip__inner span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.strip__italic { font-family: var(--font-serif); font-style: italic; text-transform: none !important; letter-spacing: 0.02em !important; font-size: 16px !important; }
.strip__dot { color: rgba(255,255,255,0.5) !important; font-size: 10px !important; }

@keyframes scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(181,39,28,0.1);
  border-radius: 8px;
  padding: 36px 32px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(181,39,28,0.1);
  border-color: rgba(181,39,28,0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--white) 0%, rgba(245,237,224,0.5) 100%);
}
.service-card--featured::before { transform: scaleX(1); }

.service-card--hero {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.service-card--hero .service-card__desc { color: rgba(255,255,255,0.65); }
.service-card--hero .service-card__features li { color: rgba(255,255,255,0.75); }
.service-card--hero .service-card__features li::before { background: var(--gold); }
.service-card--hero::before { background: linear-gradient(to right, var(--gold), var(--red)); }

.service-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  margin-bottom: 20px;
}
.service-card--hero .service-card__icon { color: var(--gold); }

.service-card__num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-lt);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.service-card--hero .service-card__num { color: rgba(255,255,255,0.3); }

.service-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card--hero .service-card__title { color: var(--white); }

.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 20px;
}

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__features li {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card__features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.service-card__highlight {
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
}

/* ========== SPOTLIGHT ========== */
.spotlight {
  background: var(--white);
  padding: 100px 0;
}

.spotlight__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight__img {
  position: relative;
  border-radius: 8px;
  overflow: visible;
}

.spotlight__img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(26,15,13,0.2);
}

.spotlight__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(181,39,28,0.3);
}

.spotlight__content .section-title { text-align: left; margin-bottom: 20px; }
.spotlight__content .section-eyebrow { text-align: left; }

.spotlight__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
}

.spotlight__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.spotlight__service {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.spotlight__service-icon {
  width: 36px;
  height: 36px;
  background: rgba(181,39,28,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  padding: 8px;
}
.spotlight__service-icon svg { width: 100%; height: 100%; }

.spotlight__service span {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  padding-top: 8px;
}

/* ========== WHY ========== */
.why {
  padding: 100px 0;
  background: var(--cream);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why__item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(181,39,28,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.why__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(181,39,28,0.08);
}

.why__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  color: var(--red);
}

.why__item h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why__item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
}

/* ========== EVENTS ========== */
.events {
  padding: 100px 0;
  background: var(--dark);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.events__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px 16px 22px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}

.events__item:hover {
  background: rgba(181,39,28,0.15);
  border-color: rgba(181,39,28,0.4);
  transform: translateY(-3px);
}

.events__icon {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}

.events__item span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--large {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,13,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay p {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.gallery__item--placeholder {
  background: var(--cream);
}

.gallery__placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-lt);
}

.gallery__placeholder-inner svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.gallery__placeholder-inner p {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
}

/* ========== PROMISE ========== */
.promise {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.promise::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,39,28,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promise__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.promise__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.promise__content .section-eyebrow { color: var(--gold); }

.promise__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.promise__title em { font-style: italic; color: var(--red-lt); }

.promise__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 56px;
}

.promise__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.promise__stat { text-align: center; }

.promise__stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.promise__stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact__detail-icon svg { width: 100%; height: 100%; }

.contact__detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-lt);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}
a.contact__detail-value:hover { color: var(--red); }

/* FORM */
.contact__form {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark);
  background: var(--cream);
  border: 1.5px solid rgba(181,39,28,0.12);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236B5C54' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181,39,28,0.08);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-lt);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding-top: 64px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer__logo .logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  padding: 10px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(181,39,28,0.15);
}
.footer__social svg { width: 100%; height: 100%; }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer__col li, .footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer__credit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer__credit-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease);
}

.footer__credit:hover .footer__credit-logo {
  opacity: 1;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  padding: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.whatsapp-float svg { width: 100%; height: 100%; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .events__grid { grid-template-columns: repeat(4, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .hero__visual { width: 45%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__toggle { display: flex; }
  .nav__logo .logo-img { height: 36px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(26,15,13,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    transform: translateY(-120%);
    transition: transform 0.3s var(--ease);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
  }
  .nav__cta { margin: 8px 24px 0; border-radius: 4px !important; }

  .hero {
    flex-direction: column;
    padding-top: var(--nav-h);
  }
  .hero__content {
    padding: 60px 24px 40px;
    max-width: 100%;
    position: relative;
    z-index: 3;
  }
  .hero__visual {
    position: relative;
    width: 100%;
    height: 320px;
  }
  .hero__img-wrap::before {
    background: linear-gradient(to bottom, var(--dark) 0%, transparent 30%);
  }

  .services__grid { grid-template-columns: 1fr; }
  .spotlight__inner { grid-template-columns: 1fr; gap: 48px; }
  .spotlight__badge { right: 0; bottom: -12px; }
  .spotlight__services { grid-template-columns: 1fr; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .events__grid { grid-template-columns: repeat(3, 1fr); }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--large { grid-column: span 2; height: 280px; }
  .gallery__item { height: 200px; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .promise__stats { gap: 40px; }

  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .events__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .promise__stats { flex-direction: column; gap: 32px; }
  .footer__links { grid-template-columns: 1fr; }
}
