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

:root {
  --primary: #ff0000;

  --bg: #fff8f6;
  --surface: #ffe9e6;
  --surface-low: #fff0ee;

  --white: #fff;
  --black: #000;
  --black-soft: #111;

  --on-surface: #2b1613;
  --on-surface-dim: #603e39;

  --text-muted: #555;
  --text-faint: #aaa;

  --outline: rgba(255, 0, 0, 0.12);
  --outline-strong: rgba(255, 0, 0, 0.4);

  --overlay-dark-55: rgba(0, 0, 0, 0.55);
  --overlay-dark-60: rgba(0, 0, 0, 0.6);
  --overlay-dark-15: rgba(0, 0, 0, 0.15);

  --overlay-white-85: rgba(255, 255, 255, 0.85);
  --overlay-white-92: rgba(255, 255, 255, 0.92);

  --primary-soft: rgba(255, 0, 0, 0.08);

  --shadow-dark-soft: rgba(0, 0, 0, 0.15);
  --shadow-dark-medium: rgba(0, 0, 0, 0.2);

  --shadow-primary-soft: rgba(255, 0, 0, 0.08);

  --glass-white: rgba(255, 255, 255, 0.15);
  --glass-white-border: rgba(255, 255, 255, 0.2);

  --gradient-overlay: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );

  --font-head: "Plus Jakarta Sans", sans-serif;
  --font-body: "Manrope", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--on-surface);
  overflow-x: hidden;
  background-image: repeating-linear-gradient(
    45deg,
    var(--surface-low) 0,
    var(--surface-low) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}

/* --- BUTTONS --- */

.btn {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  transition:
    background 0.2s,
    color 0.2s;
}

.btn--primary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  transition:
    background 0.2s,
    color 0.2s;
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  transition:
    background 0.2s,
    color 0.2s;
}

.btn--white:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--outline-para {
  background: transparent;
  color: var(--primary);
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  transition:
    background 0.2s,
    color 0.2s;
}

.btn--outline-para:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- NAVBAR --- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--overlay-white-85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--outline);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  max-width: 1440px;
  margin: 0 auto;
}

.navbar__logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: -0.04em;
  text-decoration: none;
}

.navbar__links {
  display: flex;
  gap: 2.5rem;
}

.navbar__link {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.navbar__link:hover {
  color: var(--primary);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

.navbar__hamburger .material-symbols-outlined {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__actions .btn--outline {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__inner {
    padding: 1rem 1.5rem;
  }
}

/* --- DRAWER --- */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark-55);
  backdrop-filter: blur(4px);
}

.drawer__content {
  position: relative;
  background: var(--white);
  width: 80%;
  max-width: 340px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  z-index: 201;
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.drawer__header button {
  background: none;
  border: none;
  cursor: pointer;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.drawer__link {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--on-surface);
  text-decoration: none;
  transition: color 0.2s;
}

.drawer__link:hover {
  color: var(--primary);
}

.drawer__footer {
  padding-top: 2rem;
  border-top: 1px solid var(--outline);
}

.w-full {
  width: 100%;
}

/* --- MODAL --- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark-60);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 480px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid var(--outline);
  padding: 2.5rem;
  z-index: 301;
}

.modal__content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--surface);
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.modal__close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
}

.modal__sub {
  color: var(--on-surface-dim);
  margin-bottom: 1.5rem;
}

.modal__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--outline);
  border-radius: 0.75rem;
  background: var(--surface-low);
  transition: border-color 0.2s;
}

.contact-row:hover {
  border-color: var(--outline-strong);
}

.contact-row__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-soft);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-row__info {
  flex: 1;
}

.contact-row__label {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact-row__value {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-row__copy {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 0.4rem;
  border-radius: 0.4rem;
  transition: background 0.2s;
}

.contact-row__copy:hover {
  background: var(--primary-soft);
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--on-surface);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

/* --- HERO --- */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black-soft);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark-15);
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  padding: 1.5rem;
}

.hero__card {
  background: var(--overlay-white-92);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 40px 80px var(--shadow-dark-medium);
}

.hero__animate {
  opacity: 0;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--primary);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero__search {
  display: flex;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-dark-soft);
}

.hero__input {
  flex: 1;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  outline: none;
  color: var(--on-surface);
}

.hero__input::placeholder {
  color: var(--text-faint);
}

.hero__search-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  border-radius: 0;
}

.hero__badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: var(--primary);
  padding: 0.75rem 1.25rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--white);
  z-index: 10;
}

@media (max-width: 600px) {
  .hero__search {
    flex-direction: column;
  }

  .hero__card {
    padding: 1.5rem;
  }

  .hero__badge {
    display: none;
  }
}

/* --- SERVICES --- */

.services {
  padding: 6rem 3rem;
  max-width: 1440px;
  margin: 0 auto;
}

.services__header {
  margin-bottom: 4rem;
}

.services__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: var(--primary);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services__sub {
  color: var(--on-surface-dim);
  font-size: 1.15rem;
  max-width: 480px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: 7fr 5fr;
  }
}

.services__reveal {
  opacity: 0;
}

.services__slider {
  background: var(--surface-low);
  border-radius: 1.5rem;
  overflow: hidden;
}

.services__slide-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.services__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s;
}

.services__slide-img-wrap:hover .services__slide-img {
  filter: grayscale(0);
}

.services__slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: var(--white);
}

.services__slide-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.services__slide-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 360px;
}

.services__slide-controls {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--glass-white);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-white-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.slider-btn:hover {
  background: var(--primary);
}

.services__slider-footer {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.services__slider-label {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.services__slider-caption {
  color: var(--on-surface-dim);
}

.services__slider-icon {
  font-size: 3rem;
  color: var(--primary);
}

.services__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services__feature {
  border-radius: 1.5rem;
  padding: 2rem;
  flex: 1;
}

.services__feature h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.services__feature p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.services__feature--primary {
  background: var(--primary);
  color: var(--white);
}

.services__feature--primary p {
  color: rgba(255, 255, 255, 0.8);
}

.services__feature:not(.services__feature--primary) {
  background: var(--surface);
}

.services__feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

@media (max-width: 768px) {
  .services {
    padding: 4rem 1.5rem;
  }
}

/* --- EVENTS CAROUSEL --- */

.events {
  background: var(--white);
  padding: 5rem 0;
  overflow: hidden;
}

.events__eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.5em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.events__track-wrap {
  overflow: hidden;
}

.events__track {
  display: flex;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.events__item {
  position: relative;
  width: 240px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 40px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .events__item {
    width: 380px;
    height: 280px;
    margin: 0 60px;
  }
}

.events__item-label {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--primary);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.blob-canvas-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.events__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* --- FAQ --- */

.faq {
  padding: 6rem 3rem;
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffe2dd;
  border: 2px solid var(--outline);
  border-radius: 2.5rem;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.faq__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 100%;
  background: var(--primary);
  transform: skewX(-12deg) translateX(3rem);
  pointer-events: none;
}

.faq__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.faq__title span {
  color: var(--primary);
  font-style: italic;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.faq__item {
  border: 1px solid var(--outline);
  border-radius: 0.75rem;
  background: transparent;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.faq__item--open {
  background: var(--white);
  border-color: var(--outline-strong);
  box-shadow: 0 8px 20px var(--shadow-primary-soft);
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq__trigger span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--on-surface);
}

.faq__icon-wrap {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* pure CSS +/- using pseudo-elements */

.faq__icon {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* horizontal bar */

.faq__icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* vertical bar — rotates to 0deg (hidden) when open */

.faq__icon::after {
  width: 2px;
  height: 12px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq__icon--open::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--on-surface-dim);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 1.5rem;
  }

  .faq__inner {
    padding: 2rem 1.5rem;
  }
}

/* --- FOOTER --- */

.footer {
  background: #fff5f3;
  border-top: 1px solid var(--outline);
  padding: 4rem 3rem;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__copy {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer__right {
    align-items: flex-end;
  }
}

.footer__live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
}

.footer__live-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem;
  }
}
