/* =========================================================
   LEON EVENTS
   Main stylesheet

   Palette:
   Charcoal + Bright Wine + Antique Gold + Warm Ivory

   Display: Playfair Display
   Body:    Manrope
========================================================= */


/* =========================================================
   01. DESIGN TOKENS
========================================================= */

:root {
  --charcoal: #15100f;
  --charcoal-soft: #1c1614;
  --panel: #201815;
  --panel-line: #33251f;

  --wine: #8B263D;
  --wine-deep: #5A1024;

  --gold: #c9a24b;
  --gold-light: #e8cd85;
  --gold-deep: #8a6a24;

  --ivory: #f4ecd9;
  --ivory-dim: #c9baa8;
  --muted: #a9998a;

  --shadow: 0 20px 60px rgba(0, 0, 0, .6);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --maxw: 1200px;
}


/* =========================================================
   02. RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  border: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


/* =========================================================
   03. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
  margin: 0 0 .5em;
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: .005em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.08;
}

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

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

p {
  margin: 0 0 1em;
  color: var(--ivory-dim);
  font-size: 1rem;
}


/* =========================================================
   04. LAYOUT
========================================================= */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 6vw;
}

section {
  position: relative;
  padding: 3.2rem 0;
}

.section {
  background: var(--charcoal);
}

.section-alt {
  background: var(--charcoal-soft);
}


/* =========================================================
   05. EYEBROW
========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin-bottom: 1.1em;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold-deep);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}


/* =========================================================
   06. BUTTONS
========================================================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 2.1em;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    color .4s var(--ease),
    border-color .4s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .4s var(--ease);
  z-index: 0;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:hover {
  color: var(--charcoal);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn-solid::before {
  background: var(--ivory);
}

.btn-solid:hover {
  color: var(--charcoal);
}

.btn-wine {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
}

.btn-wine::before {
  background: var(--gold);
}

.btn-wine:hover {
  color: var(--charcoal);
}

.btn-block {
  width: 100%;
}


/* =========================================================
   07. DIVIDER
========================================================= */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: 2rem 0;
}

.divider .ln {
  width: 64px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-deep)
  );
}

.divider .ln.r {
  background: linear-gradient(
    90deg,
    var(--gold-deep),
    transparent
  );
}

.divider .dm {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* =========================================================
   08. NAVIGATION
========================================================= */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 6vw;

  background: linear-gradient(
    to bottom,
    rgba(21, 16, 15, .94),
    rgba(21, 16, 15, 0)
  );

  transition:
    background .4s var(--ease),
    padding .4s var(--ease);
}

.nav.scrolled {
  padding: .85rem 6vw;
  background: rgba(21, 16, 15, .96);
  backdrop-filter: blur(10px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  line-height: 1;
}

.nav__brand .brand-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav__brand .brand-text {
  display: flex;
  flex-direction: column;
}

.nav__brand .mark {
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.nav__brand .sub {
  margin-top: .25em;
  color: var(--gold);
  font-size: .56rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 2.3rem;
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav__cta .btn {
  padding: .68em 1.5em;
  font-size: .7rem;
}


/* =========================================================
   09. BURGER + MOBILE MENU
========================================================= */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 0;
  background: none;
  cursor: pointer;
}

.burger span {
  width: 100%;
  height: 1px;
  background: var(--ivory);
  transition:
    transform .35s var(--ease),
    opacity .35s var(--ease);
}

.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 4.8rem;
  right: 1rem;
  z-index: 150;

  width: 210px;
  padding: 1rem;

  display: flex;
  flex-direction: column;
  gap: .15rem;

  background: rgba(32, 24, 21, .98);
  border: 1px solid var(--panel-line);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .45);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);

  transition:
    opacity .25s var(--ease),
    visibility .25s var(--ease),
    transform .25s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a:not(.btn) {
  display: block;
  padding: .7rem .8rem;

  color: var(--ivory);
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  transition: color .3s;
}

.mobile-menu a:not(.btn):hover {
  color: var(--gold);
}

.mobile-menu .btn {
  margin-top: .5rem;
  justify-content: center;
}

/* =========================================================
   10. HERO
========================================================= */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 9rem 6vw 5rem;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .42;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(21, 16, 15, .82) 0%,
      rgba(21, 16, 15, .48) 45%,
      rgba(90, 16, 36, .20) 100%
    );
}

.hero__frame {
  position: absolute;
  inset: 22px;
  z-index: 2;
  border: 1px solid rgba(201, 162, 75, .2);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 740px;
}
.hero h1,
.hero .eyebrow,
.hero p.lead,
.hero__actions {
  opacity: 0;
  animation: riseIn 1.1s var(--ease) forwards;
}

.hero .eyebrow {
  animation-delay: 0s;
}

.hero h1 {
  animation-delay: .2s;
}

.hero p.lead {
  max-width: 560px;
  font-size: 1.12rem;
  animation-delay: .4s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.6rem;
  animation-delay: .6s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-cue {
  position: absolute;
  left: 6vw;
  bottom: 2.4rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .8em;
}

.scroll-cue .line {
  width: 1px;
  height: 38px;
  background: linear-gradient(
    var(--gold),
    transparent
  );
  animation: pulseLine 2.2s ease-in-out infinite;
}

.scroll-cue span {
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}


/* =========================================================
   11. SECTION HEADINGS
========================================================= */

.section-head {
  max-width: 680px;
  margin-bottom: 2.8rem;
}

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

.section-head > p:last-child {
  max-width: 600px;
}


/* =========================================================
   12. REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
}

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

.stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}


/* =========================================================
   13. GRIDS
========================================================= */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  grid-template-columns: repeat(
    auto-fit,
    minmax(230px, 1fr)
  );
}

.grid-3 {
  grid-template-columns: repeat(
    auto-fit,
    minmax(260px, 1fr)
  );
}

.grid-2 {
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  );
}

.grid-6 {
  grid-template-columns: repeat(
    auto-fit,
    minmax(180px, 1fr)
  );
}


/* =========================================================
   14. STANDARD CARDS
========================================================= */

.card {
  position: relative;
  padding: 2.2rem 1.9rem;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  overflow: hidden;
  transition:
    transform .5s var(--ease),
    border-color .5s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .6s var(--ease);
}

.card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-7px);
}

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

.card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.card h3 {
  margin-bottom: .5em;
}

.card p {
  margin-bottom: 0;
  font-size: .92rem;
}

.card .more {
  display: inline-block;
  margin-top: 1.1rem;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold-deep);
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}


/* =========================================================
   15. SECTION ACTION
========================================================= */

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


/* =========================================================
   16. ABOUT SPLIT
========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}


.split__visual {
  min-width: 0;
}

.split__content {
  max-width: 580px;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.frame-art {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 16px;
  border: 1px solid var(--panel-line);
}

.frame-art .inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--gold-deep);
}

.frame-art .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-art .inner svg {
  width: 50%;
  height: 50%;
}

.placeholder-note {
  display: inline-block;
  margin-top: 1rem;
  padding: .4em .9em;
  border: 1px dashed var(--panel-line);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .06em;
}
/* =========================================================
   17. EVENT TYPES
========================================================= */

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  transition:
    border-color .4s var(--ease),
    transform .5s var(--ease);
}

.event-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
}

.event-card__image {
  position: absolute;
  inset: 0;
}

.event-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(21, 16, 15, .96) 0%,
      rgba(21, 16, 15, .55) 42%,
      rgba(21, 16, 15, .08) 100%
    );
}

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

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

.event-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1.25rem;
}

.event-card__content > span {
  display: block;
  margin-bottom: .35rem;
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .16em;
}

.event-card__content h3 {
  margin-bottom: .3rem;
}

.event-card__content p {
  max-width: 340px;
  margin: 0;
  color: var(--ivory-dim);
  font-size: .84rem;
}

/* =========================================================
   18. WHY LEON EVENTS
========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--panel-line);
  border-left: 1px solid var(--panel-line);
}

.why-grid .why-row {
  min-height: 150px;
  padding: 1.35rem;
  border-right: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  transition:
    background .35s var(--ease),
    border-color .35s var(--ease);
}

.why-grid .why-row:hover {
  background: var(--panel);
  border-color: var(--gold-deep);
}

.why-row .ic {
  width: 22px;
  height: 22px;
  margin-bottom: .7rem;
  color: var(--gold);
}

.why-row h3 {
  margin-bottom: .3rem;
}

.why-row p {
  max-width: 280px;
  margin-bottom: 0;
}

/* =========================================================
   19. HOW IT WORKS
========================================================= */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--panel-line);
  border-left: 1px solid var(--panel-line);
}

.process-row {
  min-height: 190px;
  padding: 1.8rem;
  border-right: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  transition:
    background .35s var(--ease),
    border-color .35s var(--ease);
}

.process-row:hover {
  background: var(--panel);
  border-color: var(--gold-deep);
}

.process-row .num {
  display: block;
  width: 24px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1;
}

.process-row h3 {
  margin-bottom: .35rem;
}

.process-row p {
  max-width: 300px;
  margin-bottom: 0;
}

/* =========================================================
   SERVICE PAGE — MAIN SERVICE CARDS
========================================================= */

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.services-main-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  transition:
    border-color .4s var(--ease),
    transform .5s var(--ease);
}

.services-main-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
}

.services-main-card__image {
  position: absolute;
  inset: 0;
}

.services-main-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(21, 16, 15, .97) 0%,
      rgba(21, 16, 15, .72) 45%,
      rgba(21, 16, 15, .12) 100%
    );
}

.services-main-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.services-main-card:hover .services-main-card__image img {
  transform: scale(1.05);
}

.services-main-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1.5rem;
}

.services-main-card__content > span {
  display: block;
  margin-bottom: .45rem;
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.services-main-card__content h2 {
  margin-bottom: .4rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.services-main-card__content p {
  max-width: 500px;
  margin-bottom: 1rem;
  color: var(--ivory-dim);
  font-size: .86rem;
}

.services-main-card__items {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .8rem;
}

.services-main-card__items span {
  color: var(--ivory);
  font-size: .72rem;
  letter-spacing: .04em;
}

.services-main-card__items span:not(:last-child)::after {
  content: "·";
  margin-left: .8rem;
  color: var(--gold);
}

/* =========================================================
   21. GALLERY
========================================================= */

.gallery-categories {
  padding-bottom: 7rem;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-intro h2 {
  margin: .6rem 0 1rem;
}

.section-intro p:last-child {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
}


/* =========================================================
   GALLERY CATEGORY GRID
========================================================= */

.gallery-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.gallery-category-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.category-image {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  background: var(--charcoal);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}

.gallery-category-card:hover .category-image img {
  transform: scale(1.05);
}


/* =========================================================
   DARK IMAGE OVERLAY
========================================================= */

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--ivory);

  background: linear-gradient(
    to top,
    rgba(21, 16, 15, .92) 0%,
    rgba(21, 16, 15, .42) 48%,
    rgba(21, 16, 15, .05) 100%
  );
}


/* =========================================================
   CATEGORY NUMBER
========================================================= */

.category-number {
  display: block;
  margin-bottom: .5rem;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
}


/* =========================================================
   CATEGORY TITLE
========================================================= */

.category-overlay h3 {
  margin: 0;
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}


/* =========================================================
   CATEGORY LINK
========================================================= */

.category-link {
  display: inline-block;
  margin-top: .7rem;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .3s var(--ease);
}

.gallery-category-card:hover .category-link {
  transform: translateX(6px);
}


/* =========================================================
   VIDEOS PLACEHOLDER
========================================================= */

.gallery-category-card[href="gallery.html#videos"] .category-image {
  background:
    linear-gradient(
      135deg,
      var(--wine-deep),
      var(--charcoal)
    );
}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .gallery-category-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .category-image {
    height: 360px;
  }

  .gallery-category-card--video {
    grid-column: auto;
    width: 100%;
  }

  .category-overlay {
    padding: 1.5rem;
  }

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

  .split > .reveal {
    display: block;
  }

  .split > .reveal:last-child .map-frame {
    margin-top: 2rem !important;
  }

}



/* =========================================================
   22. LIGHTBOX
========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  background: rgba(10, 7, 6, .96);
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  width: 100%;
  max-width: 720px;
}

.lightbox-inner img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: var(--panel);
  border: 1px solid var(--gold-deep);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(21, 16, 15, .6);
  border: 1px solid var(--panel-line);
  color: var(--ivory);
  cursor: pointer;
  transition:
    border-color .3s,
    color .3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-close {
  top: 24px;
  right: 32px;
}

.lightbox-prev {
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.lightbox-cap {
  padding-top: 1.1rem;
  text-align: center;
}

.lightbox-cap b {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.lightbox-cap span {
  display: block;
  margin-top: .3em;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}


/* =========================================================
   23. FORMS
========================================================= */

.form-wrap {
  padding: 2.5rem;
  background: var(--panel);
  border: 1px solid var(--panel-line);
}

.field {
  margin-bottom: 1.4rem;
}

.field label {
  display: block;
  margin-bottom: .6em;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .7em .2em;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--panel-line);
  color: var(--ivory);
  font-family: 'Manrope', sans-serif;
  font-size: .96rem;
  transition: border-color .3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .78rem;
}

.form-success {
  display: none;
  padding: 3rem 1.5rem;
  border: 1px solid var(--gold-deep);
  text-align: center;
}

.form-success.show {
  display: block;
}

.form-success svg {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

select {
  appearance: none;
}

select option {
  background: var(--charcoal-soft);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: .5em;
  padding: .5em 1em;
  border: 1px solid var(--panel-line);
  color: var(--ivory-dim);
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition:
    border-color .3s,
    color .3s;
}

.checkbox-group input {
  width: auto;
  accent-color: var(--gold);
}

.checkbox-group label:has(input:checked) {
  border-color: var(--gold);
  color: var(--ivory);
}


/* =========================================================
   24. PRICING
========================================================= */

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.1rem;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  transition:
    transform .5s var(--ease),
    border-color .5s var(--ease);
}

.price-card.featured {
  background: var(--wine-deep);
  border-color: var(--gold);
}

.price-card.featured::after {
  content: "MOST BOOKED";
  position: absolute;
  top: -1px;
  right: -1px;
  padding: .4em .9em;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card .tier {
  margin-bottom: .6rem;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.price-card .amount {
  margin-bottom: .2rem;
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-style: italic;
}

.price-card .amount small {
  display: block;
  margin-top: .3em;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-style: normal;
}

.price-card .desc {
  margin-bottom: 1.5rem;
  font-size: .87rem;
}

.price-card ul {
  flex: 1;
  margin-bottom: 2rem;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: .7em;
  padding: .5em 0;
  border-top: 1px solid var(--panel-line);
  color: var(--ivory-dim);
  font-size: .89rem;
}

.price-card li:first-child {
  border-top: none;
}

.price-card li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 5px;
  color: var(--gold);
}

.pricing-note {
  margin-top: 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--panel);
  border: 1px dashed var(--panel-line);
  color: var(--muted);
  font-size: .86rem;
}


/* =========================================================
   25. CONTACT
========================================================= */

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--panel-line);
}

.info-row:last-child {
  padding-bottom: 0;
}

.info-row .ic {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.info-row b {
  display: block;
  color: var(--ivory);
  font-size: .94rem;
}

.info-row span,
.info-row a {
  color: var(--ivory-dim);
  font-size: .87rem;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--panel-line);
  filter: grayscale(1) invert(.9) contrast(.9);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}


/* =========================================================
   26. CTA
========================================================= */

.cta-band {
  padding: 0.2rem 0;
  background:
    linear-gradient(
      160deg,
      var(--wine-deep),
      var(--panel) 70%
    );
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  text-align: center;
}

.cta-band h2 {
  margin-bottom: .4em;
}

.cta-band__text {
  max-width: 480px;
  margin: 0 auto 1.8rem;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
  width: 100%;
  margin: 0;
  padding: 5rem 0 0;
  background: var(--charcoal);
  border-top: 1px solid var(--panel-line);
}

footer .container {
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 0 0 4rem;
  margin: 0;
  border: 0;
  background: transparent;
}

.footer-brand,
.footer-col {
  position: static;
  width: auto;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: none;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-row img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand .mark {
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: .7rem;
  margin-top: 1.4rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--panel-line);
  background: transparent;
  color: var(--ivory-dim);
  transition:
    color .3s var(--ease),
    border-color .3s var(--ease);
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  margin: 0 0 1.2rem;
  padding: 0;
  color: var(--ivory);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-col a {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: .82rem;
  transition: color .3s var(--ease);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--panel-line);
  background: transparent;
  color: var(--muted);
  font-size: .7rem;
}
/* =========================================================
   28. FLOATING WHATSAPP
========================================================= */

.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid #25d366;
  border-radius: 50%;
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  0% {
    opacity: .7;
    transform: scale(.9);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}


/* =========================================================
   PAGE HEAD
========================================================= */

.page-head {
  padding: 4rem 0 1.2rem;
  text-align: center;
}

.page-head .eyebrow {
  margin-bottom: .65rem;
}

.page-head h1 {
  max-width: 350px;
  margin: 0 auto;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.page-head .breadcrumb {
  margin-top: 1rem;
  font-size: .78rem;
}


/* =========================================================
   30. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 960px) {

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

  .why-grid .why-row,
  .process-row {
    min-height: 190px;
    padding: 1.6rem;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

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

}

/* =========================================================
   DESKTOP — HERO
========================================================= */

@media (min-width: 641px) {

  .hero__content {
    transform: translateX(60%);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
  }


}

@media (min-width: 641px) {

  .event-types-section {
    padding-top: 1.5rem;
  }

}
/* =========================================================
   31. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 640px) {

  section {
    padding: 2.4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav {
    padding: 1rem 1.25rem;
  }

  .nav.scrolled {
    padding: .75rem 1.25rem;
  }

  .nav__brand .brand-icon {
    width: 34px;
    height: 34px;
  }

  .nav__brand .mark {
    font-size: 1.25rem;
  }

  .nav__brand .sub {
    font-size: .48rem;
  }

  .nav__links,
  .nav__cta .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    padding: 7.5rem 1.25rem 5rem;
  }

  .hero__frame {
    inset: 12px;
  }
.hero .eyebrow {
  margin-bottom: .45rem;
}

.hero h1 {
  font-size: 2rem;
}
  .hero p.lead {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .scroll-cue {
    left: 1.25rem;
    bottom: 1.5rem;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

    .page-head {
    padding: 3rem 0 1rem;
  }

  .page-head .eyebrow {
    margin-bottom: .4rem;
    font-size: .65rem;
  }

  .page-head h1 {
    max-width: 300px;
    font-size: 1.8rem;
    line-height: 1.08;
  }

  .page-head .breadcrumb {
    margin-top: .6rem;
    font-size: .7rem;
  }
  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 390px;
  }
  .services-card-grid {
    grid-template-columns: 1fr;
  }

  .services-main-card {
    min-height: 380px;
  }

  .services-main-card__content {
    padding: 1.25rem;
  }
  
  /* WHY + HOW IT WORKS */

  .why-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .why-grid .why-row,
  .process-row {
    min-height: auto;
    padding: 1.35rem;
  }

  .why-row .ic {
    width: 20px;
    height: 20px;
    margin-bottom: .8rem;
  }

  .process-row .num {
    width: 22px;
    margin-bottom: .8rem;
    font-size: 1.15rem;
  }

  /* ABOUT */

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split.reverse {
    direction: ltr;
  }

  /* SERVICES */

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

  /* FORMS */

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

  .form-wrap {
    padding: 1.5rem;
  }

  /* FOOTER */

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

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

  /* WHATSAPP */

  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

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

  /* PAGE HEADERS */

  .page-head {
    padding: 9rem 0 3rem;
  }

  /* GALLERY */

  .masonry {
    column-count: 1;
  }

  .art-tile__caption {
    opacity: 1;
    transform: none;
  }

  /* LIGHTBOX */

  .lightbox {
    padding: 4rem 1rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }

}


/* =========================================================
   32. LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {

  .container {
    padding-right: 40px;
    padding-left: 40px;
  }

  .nav {
    padding-right: 40px;
    padding-left: 40px;
  }

  .nav.scrolled {
    padding-right: 40px;
    padding-left: 40px;
  }

}


/* =========================================================
   33. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

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

}
/* =========================================================
   MOBILE FOOTER — 3 COLUMN LAYOUT
========================================================= */

@media (max-width: 640px) {

  .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem .8rem !important;

    width: 100% !important;
    margin: 0 !important;
    padding-bottom: 2.5rem !important;
  }

  /* Leon Events brand takes the full row */
  .footer-grid .footer-brand {
    grid-column: 1 / -1 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 0 .8rem !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .footer-grid .footer-brand p {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: .72rem !important;
    line-height: 1.55 !important;
  }

  /* Explore / Services / Contact */
  .footer-grid .footer-col {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .footer-grid .footer-col h4 {
    margin: 0 0 .75rem !important;
    padding: 0 !important;

    font-size: .62rem !important;
    letter-spacing: .08em !important;
  }

  /* Links within each column */
  .footer-grid .footer-col ul {
    display: flex !important;
    flex-direction: column !important;
    gap: .45rem !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
  }

  .footer-grid .footer-col li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
  }

  .footer-grid .footer-col a {
    display: inline-block !important;

    margin: 0 !important;
    padding: 0 !important;

    font-size: .68rem !important;
    line-height: 1.4 !important;
  }

  /* Footer bottom */
  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: .35rem !important;
    text-align: center !important;
  }

}
/* =======================================================
   INDIVIDUAL GALLERY PAGE — PHOTO GRID
======================================================= */

.gallery-section .art-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.gallery-section .art-tile {
  display: block;
  width: 100%;
  height: 360px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  background: var(--charcoal);
  cursor: pointer;
}

.gallery-section .art-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  .gallery-section .art-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
  }

  .gallery-section .art-tile {
    height: 220px;
  }
}
/* =======================================================
   RETURN TO GENERAL GALLERY
======================================================= */

.gallery-return {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 4rem;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s var(--ease), transform .3s var(--ease);
}

.gallery-return:hover {
  color: var(--gold-light);
  transform: translateX(-4px);
}
/* =======================================================
   MONEY & FLOWER — REDUCE HEADING TO GALLERY SPACE
======================================================= */

.money-flower-page-head {
  padding-bottom: 1rem;
}

.money-flower-page-head + .gallery-section {
  padding-top: 1rem;
  margin-top: -4rem;
}
/* =======================================================
   CORPORATE GALLERY — REDUCE HEADING TO GALLERY SPACE
======================================================= */

.corporate-gallery-section {
  padding-top: 0rem;
  margin-top: -4rem;
}
/* =======================================================
   WEDDINGS GALLERY — REDUCE HEADING TO GALLERY SPACE
======================================================= */

.weddings-gallery-section {
  padding-top: 0rem;
  margin-top: -4rem;
}
/* =======================================================
   PRE-WEDDINGS GALLERY — REDUCE HEADING TO GALLERY SPACE
======================================================= */

.pre-weddings-gallery-section {
  padding-top: 0rem;
  margin-top: -4rem;
}
/* =========================================================
   BIRTHDAYS GALLERY
========================================================= */

.birthdays-gallery-section {
  padding-top: 0rem;
  margin-top: -4rem;
}
/* Brighten Services page photos */
.services-main-card__image img {
  filter: brightness(1.15);
}

.services-main-card__image::after {
  opacity: 0 !important;
}
/* Services cards — improve text readability without darkening photos */

.services-main-card__content {
  background: rgba(90, 0, 0, 0.92);
  color: #fff !important;
}

.services-main-card__content h2,
.services-main-card__content p,
.services-main-card__content span {
  color: #fff !important;
}

.services-main-card__items span {
  border-color: rgba(212, 175, 55, 0.45);
}