/* ==========================================================================
   ABHI EVENTS — Premium Event Management Website
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy-950: #060f1b;
  --navy-900: #0a1626;
  --navy-800: #10233a;
  --navy-700: #17304f;

  --teal-400: #2bcebd;
  --teal-500: #13aea0;
  --teal-600: #0e8f83;

  --gold-300: #f3d489;
  --gold-400: #e8b64b;
  --gold-500: #d99b2b;

  --cream: #f6f2ea;
  --cream-2: #fcfbf7;
  --white: #ffffff;
  --ink: #13263c;
  --muted: #5b6b7d;
  --line: rgba(19, 38, 60, 0.12);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-sm: 0 6px 18px rgba(10, 22, 38, 0.08);
  --shadow-md: 0 18px 40px rgba(10, 22, 38, 0.14);
  --shadow-lg: 0 32px 70px rgba(10, 22, 38, 0.22);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-900);
}

body.nav-open,
body.lb-open {
  overflow: hidden;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1002;
  background: transparent;
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal-400), var(--gold-400));
  transition: width 0.08s linear;
}

/* ---------- Layout ---------- */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 18px 0 16px;
}

.section-title em {
  font-style: italic;
  color: var(--teal-500);
  position: relative;
  white-space: nowrap;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.section-head--light .section-title {
  color: var(--white);
}

.section-head--light .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-head--light .section-title em {
  color: var(--gold-400);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.eyebrow > span {
  display: inline-block;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--teal-500));
  border-radius: 2px;
}

.eyebrow--light {
  color: var(--gold-400);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400) 55%, var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 14px 30px rgba(217, 155, 43, 0.35);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(217, 155, 43, 0.45);
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn--dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--light {
  background: var(--white);
  color: var(--navy-900);
}

.btn--light:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.btn--ghost {
  border: 2px solid rgba(19, 38, 60, 0.25);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn--block {
  width: 100%;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: height 0.4s var(--ease), background 0.4s var(--ease),
    box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(250, 248, 243, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(10, 22, 38, 0.1);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav__logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-4deg);
  transition: transform 0.4s var(--ease);
}

.nav__logo:hover .nav__logo-mark {
  transform: rotate(0deg) scale(1.05);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  line-height: 1;
}

.nav__logo-text em {
  font-style: italic;
  color: var(--teal-500);
}

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

.nav__link {
  position: relative;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  opacity: 1;
  color: var(--teal-600);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 12px 22px;
  margin-left: 10px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1002;
}

.nav__burger span {
  width: 26px;
  height: 2.4px;
  background: var(--navy-900);
  border-radius: 3px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

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

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

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

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(6, 15, 27, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 7vw, 90px)) 0 0;
  background:
    radial-gradient(rgba(217, 155, 43, 0.16) 2.2px, transparent 2.2px) 0 0 / 30px 30px,
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  overflow-x: clip;
}

.hero__dots {
  position: absolute;
  top: 130px;
  right: -60px;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(rgba(19, 46, 46, 0.18) 1.6px, transparent 1.6px);
  background-size: 20px 20px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  border: 1.5px dashed rgba(19, 38, 60, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.hero__ring--one {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -190px;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 70px);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.9rem, 6.2vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 20px 0 22px;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(100deg, var(--teal-500) 30%, var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 44px);
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero__stats li {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--navy-900);
  line-height: 1;
}

.hero__stats strong::after {
  content: "+";
  color: var(--gold-500);
}

.hero__stats li:first-child strong::after {
  content: " yr";
  font-size: 1rem;
  color: var(--teal-500);
}

.hero__stats li:nth-child(3) strong::after {
  content: "%";
  font-size: 1rem;
  color: var(--teal-500);
}

.hero__stats span {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Hero visual */
.hero__visual {
  position: relative;
  min-height: 520px;
}

.hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-800);
}

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

.hero__visual:hover .hero__img img {
  transform: scale(1.04);
}

.hero__img--main {
  width: 74%;
  aspect-ratio: 4 / 4.9;
  margin-left: auto;
}

.hero__img--a {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: 40%;
  aspect-ratio: 4 / 3.4;
  border: 8px solid var(--cream-2);
  transform: rotate(-5deg);
}

.hero__img--b {
  position: absolute;
  top: 4%;
  left: 2%;
  width: 33%;
  aspect-ratio: 4 / 3.4;
  border: 8px solid var(--cream-2);
  transform: rotate(4deg);
}

/* Rotating seal */
.hero__seal {
  position: absolute;
  bottom: 26%;
  right: -6%;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.hero__seal svg {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  animation: spin 22s linear infinite;
}

.hero__seal text {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 3px;
  fill: var(--gold-400);
  text-transform: uppercase;
}

.hero__seal-star {
  color: var(--teal-400);
  font-size: 2rem;
  line-height: 1;
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.25);
  }
}

/* Marquee */
.marquee {
  position: relative;
  width: 106%;
  left: -3%;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  transform: rotate(-1.2deg);
  padding: 17px 0;
  overflow: hidden;
  border-top: 1px solid rgba(232, 182, 75, 0.25);
  border-bottom: 1px solid rgba(232, 182, 75, 0.25);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.marquee__track i {
  color: var(--gold-400);
  font-style: normal;
  font-size: 0.85rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 40%);
  border-radius: 0 0 clamp(34px, 5vw, 60px) clamp(34px, 5vw, 60px);
}

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

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px 26px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-400), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

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

.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}

.service-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-500);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(19, 174, 160, 0.14), rgba(232, 182, 75, 0.14));
  color: var(--teal-600);
  transition: 0.45s var(--ease);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-card__icon {
  background: linear-gradient(145deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  transform: rotate(-6deg) scale(1.06);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.94rem;
  color: var(--muted);
  padding-right: 30px;
}

.service-card__link {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: var(--navy-900);
  transition: 0.4s var(--ease);
}

.service-card__link svg {
  width: 15px;
  height: 15px;
}

.service-card:hover .service-card__link {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--gold-400);
  transform: translateX(4px);
}

/* ==========================================================================
   BRAND STATEMENT
   ========================================================================== */
.statement {
  position: relative;
  background: linear-gradient(140deg, var(--navy-950) 0%, var(--navy-800) 100%);
  padding: clamp(96px, 12vw, 170px) 0;
  overflow-x: clip;
}

.statement__dots {
  position: absolute;
  bottom: -90px;
  right: -70px;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(rgba(232, 182, 75, 0.4) 1.8px, transparent 1.8px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 70%);
  pointer-events: none;
}

.statement__ring {
  position: absolute;
  top: -160px;
  right: 12%;
  width: 380px;
  height: 380px;
  border: 1.5px dashed rgba(232, 182, 75, 0.28);
  border-radius: 50%;
  pointer-events: none;
  animation: spin 60s linear infinite;
}

.statement .eyebrow {
  color: var(--teal-400);
}

.statement__type {
  margin: 30px 0 46px;
}

.statement__line {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 34px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7.4vw, 6.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}

.statement__line em {
  font-style: italic;
  color: var(--gold-400);
}

.statement__line .statement__num {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--teal-400);
  transform: translateY(-6px);
}

.statement__btn {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
}

.statement__btn:hover {
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-3px);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  background: var(--cream-2);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}

.process__step {
  position: relative;
  text-align: center;
  padding: 10px 8px;
}

.process__connector {
  position: absolute;
  top: 64px;
  left: calc(50% + 74px);
  width: calc(100% - 148px);
  border-top: 2px dashed rgba(19, 174, 160, 0.4);
}

.process__step:last-child .process__connector {
  display: none;
}

.process__circle {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--teal-600);
  transition: 0.5s var(--ease);
}

.process__circle::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold-400);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.process__step:hover .process__circle {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  color: var(--teal-400);
  transform: translateY(-8px);
}

.process__step:hover .process__circle::after {
  opacity: 1;
  transform: rotate(30deg);
  animation: spin 14s linear infinite;
}

.process__circle svg {
  width: 44px;
  height: 44px;
}

.process__num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.process__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.process__text {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 24ch;
  margin-inline: auto;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-800) 100%);
  overflow-x: clip;
}

.gallery__stars {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(232, 182, 75, 0.14);
  font-size: 2.6rem;
  letter-spacing: 3.2rem;
  white-space: nowrap;
  pointer-events: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 18px;
}

.g-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background: var(--navy-700);
}

.g-item--tall {
  grid-row: span 2;
}

.g-item--wide {
  grid-column: span 2;
}

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

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 15, 27, 0.85) 0%, rgba(6, 15, 27, 0.15) 55%, transparent 100%);
  opacity: 0.72;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.g-item figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  transform: translateY(8px);
  transition: transform 0.5s var(--ease);
}

.g-item figcaption span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.g-item figcaption h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
}

.g-item:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.g-item:hover img,
.g-item:focus img {
  transform: scale(1.08);
}

.g-item:hover::after {
  opacity: 0.95;
}

.g-item:hover figcaption {
  transform: translateY(0);
}

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

.why__wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

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

.why-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.why-card::before {
  content: "✦";
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 1.1rem;
  color: var(--gold-400);
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.why-card:hover::before {
  opacity: 1;
  transform: rotate(90deg) scale(1.2);
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(19, 174, 160, 0.16), rgba(232, 182, 75, 0.16));
  color: var(--teal-600);
  margin-bottom: 20px;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ==========================================================================
   EVENT TYPES
   ========================================================================== */
.event-types {
  background: var(--cream-2);
}

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

.event-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-800);
  aspect-ratio: 4 / 5;
  display: block;
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 15, 27, 0.88) 5%, rgba(6, 15, 27, 0.1) 60%, transparent 100%);
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

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

.event-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  color: var(--white);
  transition: transform 0.5s var(--ease);
}

.event-card__body span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-400);
}

.event-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-right: auto;
}

.event-card__body svg {
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: translateX(-12px);
  transition: 0.45s var(--ease);
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-card:hover .event-card__body svg {
  opacity: 1;
  transform: translateX(0);
}

.event-card:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: var(--cream);
}

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

.t-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 30px 28px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.t-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.t-card__quote {
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(19, 174, 160, 0.14);
  pointer-events: none;
  user-select: none;
}

.t-card__stars {
  color: var(--gold-500);
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.t-card__text {
  font-size: 0.98rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
}

.t-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.t-card__avatar {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  color: var(--gold-400);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.t-card__meta div {
  display: flex;
  flex-direction: column;
}

.t-card__meta strong {
  font-size: 0.98rem;
  color: var(--navy-900);
}

.t-card__meta span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  background: var(--cream-2);
  padding-bottom: clamp(80px, 9vw, 130px);
}

.cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, #16405f 100%);
  text-align: center;
  padding: clamp(64px, 9vw, 120px) clamp(24px, 6vw, 80px);
}

.cta__blob {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(19, 174, 160, 0.4), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta__dots {
  position: absolute;
  bottom: -70px;
  left: -60px;
  width: 240px;
  height: 240px;
  background-image: radial-gradient(rgba(232, 182, 75, 0.5) 1.8px, transparent 1.8px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 70%);
  pointer-events: none;
}

.cta__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 22px 0 18px;
}

.cta__title em {
  font-style: italic;
  color: var(--gold-400);
}

.cta__text {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: start;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form__field label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.form__field label span {
  color: var(--gold-500);
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream-2);
  color: var(--ink);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: #9aa6b2;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(19, 174, 160, 0.14);
}

.form__field.is-error input,
.form__field.is-error select,
.form__field.is-error textarea {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.12);
}

.form__error {
  min-height: 16px;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #d64545;
  opacity: 0;
  transition: opacity 0.3s;
}

.form__field.is-error .form__error {
  opacity: 1;
}

.form__success {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(19, 174, 160, 0.12);
  border: 1.5px solid var(--teal-500);
  color: var(--teal-600);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.form__success.is-visible {
  display: block;
}

/* Contact info panel */
.contact__info {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact__ico {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(19, 174, 160, 0.16);
  color: var(--teal-400);
}

.contact__ico svg {
  width: 21px;
  height: 21px;
}

.contact__list div {
  display: flex;
  flex-direction: column;
}

.contact__list strong {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 3px;
}

.contact__list span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.contact__socials {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__socials > span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.contact__socials > div {
  display: flex;
  gap: 10px;
}

.contact__socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  transition: 0.35s var(--ease);
}

.contact__socials a svg {
  width: 19px;
  height: 19px;
}

.contact__socials a:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-3px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  position: relative;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(60px, 7vw, 90px) 0 30px;
  overflow-x: clip;
}

.footer__dots {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(rgba(19, 174, 160, 0.35) 1.8px, transparent 1.8px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 70%);
  pointer-events: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .nav__logo-text {
  color: var(--white);
}

.footer__brand p {
  margin-top: 18px;
  max-width: 34ch;
  font-size: 0.95rem;
}

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

.footer__col li {
  margin-bottom: 12px;
}

.footer__col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s, padding-left 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--teal-400);
  padding-left: 6px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 28px;
  font-size: 0.85rem;
}

.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--teal-400);
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  background: rgba(4, 10, 18, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 30px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__frame {
  max-width: min(1020px, 94vw);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  animation: lbIn 0.45s var(--ease);
}

@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lightbox__frame img {
  width: auto;
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  margin-inline: auto;
}

.lightbox__frame figcaption {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  padding: 18px 10px 0;
  font-size: 0.95rem;
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.05rem;
  transition: background 0.3s, transform 0.3s;
}

.lightbox__close:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
}

.lightbox__nav:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--gold-400);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
    visibility 0.4s;
}

.back-top svg {
  width: 20px;
  height: 20px;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .hero__visual {
    min-height: 460px;
  }

  .hero__seal {
    right: 0;
  }

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

  .why__wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  :root {
    --header-h: 72px;
  }

  .nav__burger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 110px 34px 40px;
    background: var(--cream-2);
    box-shadow: -24px 0 60px rgba(6, 15, 27, 0.18);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }

  body.nav-open .nav__links {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 12px 6px;
    width: 100%;
  }

  .nav__link::after {
    left: 6px;
  }

  .nav__cta {
    margin: 18px 0 0;
    width: 100%;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 420px;
    max-width: 560px;
  }

  .hero__img--main {
    width: 80%;
  }

  .services__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .process__connector {
    display: none;
  }

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

  .g-item--wide {
    grid-column: span 2;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__info {
    position: static;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero__stats {
    gap: 26px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__img--main {
    width: 86%;
  }

  .hero__img--a {
    width: 44%;
  }

  .hero__img--b {
    width: 38%;
  }

  .hero__seal {
    width: 104px;
    height: 104px;
    bottom: auto;
    top: -12px;
    right: -6px;
  }

  .services__grid,
  .testimonials__grid,
  .events__grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    aspect-ratio: 4 / 3.2;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .g-item--wide {
    grid-column: span 2;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .statement__line {
    flex-direction: column;
    gap: 4px;
  }

  .statement__line .statement__num {
    transform: none;
  }

  .btn {
    padding: 15px 24px;
    font-size: 0.8rem;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 46px;
    height: 46px;
  }

  .lightbox__nav--prev {
    left: 30%;
  }

  .lightbox__nav--next {
    right: 30%;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--teal-600), var(--navy-800));
  border-radius: 8px;
  border: 2px solid var(--cream);
}