/* ============================================================
   Lunar Productions — Elegant celestial AV production site
   Palette: midnight navy · moonlight ivory · champagne gold
   ============================================================ */

:root {
  /* Core */
  --midnight:   #0B0D1F;
  --navy:       #0F1126;
  --navy-2:     #14173180;
  --panel:      #16193A;
  --panel-soft: #1B1F45;
  --line:       rgba(233, 231, 220, 0.10);
  --line-soft:  rgba(233, 231, 220, 0.06);

  /* Text */
  --ivory:      #F4F1E8;
  --ivory-dim:  #C9C9DA;
  --muted:      #9298B8;

  /* Accent — champagne gold */
  --gold:       #D8B877;
  --gold-soft:  #E7CE9A;
  --gold-deep:  #B8935288;

  /* Glow */
  --glow-blue:  rgba(120, 150, 255, 0.14);
  --glow-gold:  rgba(216, 184, 119, 0.12);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Jost", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--ivory);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Background layers ------------------------------------------------- */
#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 78% 8%, var(--glow-blue), transparent 70%),
    radial-gradient(50% 40% at 12% 22%, var(--glow-gold), transparent 70%),
    radial-gradient(70% 60% at 50% 110%, rgba(90, 110, 210, 0.10), transparent 70%);
  background-color: var(--navy);
}

main, .nav, .footer, .mobile-menu { position: relative; z-index: 2; }

/* Typography -------------------------------------------------------- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.01em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  color: var(--ivory);
}
.italic { font-style: italic; color: var(--gold-soft); }

.section-intro {
  max-width: 46ch;
  margin: 1.4rem auto 0;
  color: var(--ivory-dim);
  font-size: 1.05rem;
}

/* Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #221a08;
  box-shadow: 0 8px 30px -8px rgba(216, 184, 119, 0.5);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(216, 184, 119, 0.65); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(216,184,119,0.05); }
.btn--full { width: 100%; }

/* Navigation -------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 13, 31, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; text-decoration: none; }
/* The official Lunar Productions lockup. It is a stacked three-part mark
   (LUNAR / moon-phase rule / PRODUCTIONS), so it is sized by height and
   shrinks slightly once the nav condenses on scroll. */
.brand__logo {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.nav.scrolled .brand__logo { height: 44px; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold-soft); }
.nav__cta {
  border: 1px solid var(--line);
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  color: var(--ivory) !important;
  transition: all 0.35s var(--ease);
}
.nav__cta:hover { border-color: var(--gold); color: var(--gold-soft) !important; background: rgba(216,184,119,0.06); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ivory); transition: all 0.35s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(78vw, 320px);
  background: rgba(13, 15, 34, 0.97);
  backdrop-filter: blur(18px);
  border-left: 1px solid var(--line);
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  padding: 2rem 2.6rem;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--ivory);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--gold-soft); }
.mobile-menu__cta { color: var(--gold) !important; }

/* Hero -------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.6rem 4rem;
  position: relative;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.78);
}
/* Vignette + navy wash so the wordmark and copy stay dominant */
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(65% 55% at 50% 48%, rgba(11,13,31,0.62), rgba(11,13,31,0.80) 80%),
    linear-gradient(180deg, rgba(11,13,31,0.86) 0%, rgba(11,13,31,0.40) 40%, rgba(15,17,38,0.96) 100%);
}
.hero__content { max-width: 860px; position: relative; z-index: 1; }
.hero .eyebrow { letter-spacing: 0.4em; }
.hero__title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: var(--ivory);
  margin-bottom: 1.6rem;
  text-shadow: 0 0 60px rgba(120, 150, 255, 0.18);
}
.hero__lede {
  max-width: 54ch;
  margin: 0 auto 2.6rem;
  color: var(--ivory-dim);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Moon-phase divider echoing the logo */
.hero__phases {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
  margin-top: 3.4rem;
}
.hero__phases span {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.hero__phases span:nth-child(1){ background: var(--gold); box-shadow: inset -4px 0 0 var(--gold); border-radius:50%; opacity:.35; width:8px;height:8px;}
.hero__phases span:nth-child(2){ background: var(--ivory); box-shadow: inset -6px 0 0 rgba(244,241,232,.25); opacity:.5;}
.hero__phases span:nth-child(3){ background: var(--ivory); box-shadow: inset -3px 0 0 rgba(244,241,232,.35); opacity:.7;}
.hero__phases span:nth-child(4){ background: var(--ivory); box-shadow: 0 0 14px 2px rgba(244,241,232,.4);}
.hero__phases span:nth-child(5){ background: var(--ivory); box-shadow: inset 3px 0 0 rgba(244,241,232,.35); opacity:.7;}
.hero__phases span:nth-child(6){ background: var(--ivory); box-shadow: inset 6px 0 0 rgba(244,241,232,.25); opacity:.5;}
.hero__phases span:nth-child(7){ background: var(--gold); opacity:.35; width:8px;height:8px;}

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--muted);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100%{ transform: scaleY(0.4); opacity:.4;} 50%{ transform: scaleY(1); opacity:1;} }

/* Marquee ----------------------------------------------------------- */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.5rem 0;
  overflow: hidden;
  background: rgba(11, 13, 31, 0.4);
}
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ivory-dim);
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Section frame ----------------------------------------------------- */
section { padding: 6.5rem 1.6rem; }
.section-head { max-width: var(--maxw); margin: 0 auto 3.6rem; text-align: center; }

/* Intro ------------------------------------------------------------- */
.intro { max-width: var(--maxw); margin: 0 auto; }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.intro__media {
  display: block;
  margin-bottom: 1.8rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.intro__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.9;
}
.intro__body p { color: var(--ivory-dim); font-size: 1.1rem; }
.stats { display: flex; gap: 2.5rem; margin-top: 2.6rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-serif); font-size: 2.6rem; color: var(--gold-soft); font-weight: 500; line-height: 1; }
.stat span { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* Services cards ---------------------------------------------------- */
.services { max-width: var(--maxw); margin: 0 auto; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  padding: 2.4rem 2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(27,31,69,0.5), rgba(15,17,38,0.3));
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -10%, var(--glow-gold), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-deep); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6); }
.card:hover::after { opacity: 1; }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(216, 184, 119, 0.08);
  border: 1px solid var(--line);
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.7rem; color: var(--ivory); margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* Occasions --------------------------------------------------------- */
.occasions { max-width: var(--maxw); margin: 0 auto; }
.occasions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.occasion {
  min-height: 340px;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(20,23,49,0.2), rgba(11,13,31,0.85)),
              radial-gradient(140% 120% at 80% 0%, rgba(120,150,255,0.16), transparent 55%);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.occasion--wide { grid-column: span 2; }
.occasion__media { position: absolute; inset: 0; z-index: 0; }
.occasion__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.8s var(--ease), opacity 0.6s var(--ease);
}
.occasion:hover .occasion__media img { transform: scale(1.05); opacity: 0.68; }
/* Legibility scrim under the label */
.occasion__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,31,0.30) 0%, rgba(11,13,31,0.55) 45%, rgba(11,13,31,0.94) 100%);
}
.occasion::before {
  z-index: 2;
  content: "✦";
  position: absolute;
  top: 1.6rem; right: 1.8rem;
  color: var(--gold);
  opacity: 0.5;
  font-size: 1rem;
}
.occasion:hover { transform: translateY(-4px); border-color: var(--gold-deep); }
.occasion__label { padding: 2rem 2.2rem; position: relative; z-index: 1; }
.occasion__label h3 { font-size: 2rem; color: var(--ivory); margin-bottom: 0.5rem; }
.occasion__label p { color: var(--ivory-dim); font-size: 0.98rem; max-width: 46ch; }
.occasions__more {
  text-align: center;
  margin-top: 2.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-size: 1rem;
}
.occasions__more span { font-family: var(--font-serif); font-style: italic; color: var(--gold-soft); font-size: 1.2rem; }

/* Process ----------------------------------------------------------- */
.process { max-width: var(--maxw); margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { padding: 2rem 1.6rem; border-top: 1px solid var(--line); position: relative; }
.step__num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 0.8rem; opacity: 0.9; }
.step h3 { font-size: 1.5rem; color: var(--ivory); margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* Work gallery ------------------------------------------------------ */
.work { max-width: var(--maxw); margin: 0 auto; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(120% 100% at 30% 0%, rgba(120,150,255,0.18), transparent 55%),
    radial-gradient(120% 120% at 90% 100%, rgba(216,184,119,0.12), transparent 55%),
    linear-gradient(160deg, #171A3B, #0C0E22);
  transition: transform 0.5s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(255,255,255,0.015) 22px 23px);
  pointer-events: none;
}
.gallery__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); opacity: 0.85; }
.gallery__item span {
  background: linear-gradient(180deg, transparent, rgba(11,13,31,0.92));
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--ivory-dim);
  position: relative; z-index: 1;
}
.gallery__item:hover { transform: scale(1.02); }

/* Quote ------------------------------------------------------------- */
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote__mark { color: var(--gold); font-size: 1.4rem; margin-bottom: 1.6rem; letter-spacing: 0.5em; }
.quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  color: var(--ivory);
}
.quote cite { display: block; margin-top: 1.8rem; font-style: normal; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* Contact ----------------------------------------------------------- */
.contact { max-width: var(--maxw); margin: 0 auto; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(27,31,69,0.55), rgba(11,13,31,0.4));
  position: relative;
  overflow: hidden;
}
.contact__inner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 100% 0%, var(--glow-gold), transparent 60%);
  pointer-events: none;
}
.contact__intro p { color: var(--ivory-dim); margin-top: 1rem; max-width: 40ch; }
.contact__meta { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact__meta li { display: flex; flex-direction: column; gap: 2px; }
.contact__meta span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.contact__meta a { color: var(--ivory); text-decoration: none; font-size: 1.05rem; }
.contact__meta a:hover { color: var(--gold-soft); }
.contact__meta em { font-style: normal; font-size: 0.86rem; color: var(--muted); margin-top: 3px; }

.contact__depts { margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
.contact__depts-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.contact__depts ul { list-style: none; margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.55rem; }
.contact__depts li { display: flex; align-items: baseline; gap: 0.9rem; }
.contact__depts li > span {
  min-width: 68px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__depts a { color: var(--ivory-dim); text-decoration: none; font-size: 0.95rem; }
.contact__depts a:hover { color: var(--gold-soft); }

/* Testimonials ------------------------------------------------------ */
.testimonials { max-width: var(--maxw); margin: 0 auto; }
.testimonials__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.testimonial {
  padding: 2.4rem 2.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(27,31,69,0.5), rgba(15,17,38,0.3));
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--gold-deep); }
.testimonial__mark { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.1rem; }
.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--ivory);
}
.testimonial figcaption { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 2px; }
.testimonial figcaption strong { font-weight: 500; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); }
.testimonial figcaption span { font-size: 0.8rem; color: var(--muted); }

.contact__form { position: relative; z-index: 1; }
.field { margin-bottom: 1.2rem; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(11, 13, 31, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,184,119,0.12);
}
.field select option { background: var(--navy); }
.form-note { margin-top: 1rem; color: var(--gold-soft); font-size: 0.9rem; text-align: center; }
.form-note--error { color: #f0a8a0; }
.form-note--error a { color: inherit; text-decoration: underline; }
/* Honeypot — off-screen rather than display:none, which some bots skip. */
.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.btn[aria-busy='true'] { opacity: 0.65; pointer-events: none; }

/* Footer ------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 3.5rem 1.6rem 2rem;
  background: rgba(9, 11, 26, 0.6);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__logo { width: 172px; max-width: 100%; height: auto; display: block; }
.footer__tag { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.9rem; }
.footer__email { margin-top: 6px; }
.footer__email a { color: var(--gold-soft); text-decoration: none; font-size: 0.86rem; }
.footer__email a:hover { color: var(--gold); }
.footer__sep { color: var(--muted); margin: 0 0.4rem; font-size: 0.8rem; }
.footer__links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer__links a { color: var(--ivory-dim); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer__links a:hover { color: var(--gold-soft); }
.footer__base {
  max-width: var(--maxw);
  margin: 1.6rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.footer__made { font-family: var(--font-serif); font-style: italic; color: var(--gold); opacity: 0.75; }

/* Reveal animation -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .occasions__grid { grid-template-columns: 1fr 1fr; }
  .occasion--wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.4rem; padding: 2.4rem; }
}

@media (max-width: 620px) {
  section { padding: 4.5rem 1.3rem; }
  .cards { grid-template-columns: 1fr; }
  .occasions__grid { grid-template-columns: 1fr; }
  .occasion--wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .field--split { grid-template-columns: 1fr; }
  .stats { gap: 1.6rem; }
  .stat strong { font-size: 2.1rem; }
  .brand__logo { height: 42px; }
  .nav.scrolled .brand__logo { height: 38px; }
  .hero { padding-top: 7rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
