/* Nova Event Services — styles */
:root {
  --ink: #000000;
  --sand: #e4e0d7;
  --ink-60: rgba(0, 0, 0, .6);
  --sand-80: #efece5;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--sand);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  scroll-behavior: smooth
}

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto
}

a {
  color: var(--sand);
  text-decoration: none
}

a:hover {
  opacity: .85
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(228, 224, 215, .15)
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0
}

.brand img {
  height: 40px;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0))
}

.site-header nav {
  display: flex;
  gap: 1.25rem
}

.site-header nav a {
  font-weight: 600;
  letter-spacing: .02em
}

.menu {
  display: none;
  background: none;
  border: 1px solid var(--sand);
  color: var(--sand);
  padding: .4rem .6rem;
  border-radius: .5rem
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(228, 224, 215, .15);
  overflow: hidden
}

.hero-inner {
  padding: 8rem 0 6rem
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(42px, 8.5vw, 120px);
  line-height: .9;
  margin: 0;
}

.hero h1 span {
  font-weight: 500;
  opacity: .9;
  letter-spacing: .05em
}

.hero .tag {
  font-size: clamp(18px, 1.6vw, 26px);
  opacity: .9;
  margin: .75rem 0 2rem
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn {
  border: 1px solid var(--sand);
  padding: .9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em
}

.btn.primary {
  background: var(--sand);
  color: var(--ink)
}

.btn.ghost {
  background: transparent
}

.shine {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 55vh;
  background: radial-gradient(ellipse at 50% 20%, var(--sand) 0%, rgba(228, 224, 215, .6) 30%, transparent 60%);
  filter: blur(80px);
  opacity: .08;
  pointer-events: none
}

/* Marquee */
.marquee {
  border-block: 1px solid rgba(228, 224, 215, .15);
  overflow: hidden
}

.marquee .track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  padding: 1rem 0;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

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

/* Work */
.work {
  padding: 4.5rem 0
}

.work h2,
.services h2,
.about h2,
.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 48px);
  margin: 0 0 .5rem
}

.lead {
  color: var(--sand);
  opacity: .85;
  max-width: 70ch
}

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

.card {
  background: #0a0a0a;
  border: 1px solid rgba(228, 224, 215, .15);
  border-radius: 18px;
  overflow: hidden
}

.card figcaption {
  padding: .9rem 1rem;
  color: var(--sand);
  opacity: .8;
  font-size: .95rem;
  border-top: 1px solid rgba(228, 224, 215, .1)
}

.ph {
  aspect-ratio: 16/10;
  background: linear-gradient(120deg, #141414, #0a0a0a);
  position: relative
}

.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(228, 224, 215, .05) 0 2px, transparent 2px 4px)
}

.ph1 {
  background-image: linear-gradient(120deg, #141414, #0e0e0e)
}

.ph2 {
  background-image: linear-gradient(120deg, #141414, #0c0c0c)
}

.ph3 {
  background-image: linear-gradient(120deg, #141414, #0b0b0b)
}

.ph4 {
  background-image: linear-gradient(120deg, #141414, #090909)
}

.ph5 {
  background-image: linear-gradient(120deg, #141414, #070707)
}

.ph6 {
  background-image: linear-gradient(120deg, #141414, #050505)
}

/* Services */
.services {
  background: #0b0b0b;
  border-block: 1px solid rgba(228, 224, 215, .12);
  padding: 4.5rem 0
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem
}

.svc {
  border: 1px solid rgba(228, 224, 215, .15);
  padding: 1.25rem;
  border-radius: 16px;
  background: #0f0f0f
}

.svc h3 {
  margin: .25rem 0 .5rem
}

.svc p {
  opacity: .9
}

.link {
  display: inline-block;
  margin-top: .75rem;
  text-decoration: underline
}

/* About */
.about {
  padding: 4.5rem 0
}

.about-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start
}

.about-card {
  border: 1px solid rgba(228, 224, 215, .15);
  padding: 1.25rem;
  border-radius: 16px;
  background: #0f0f0f
}

.bullets {
  line-height: 1.7
}

/* Contact */
.contact {
  background: #0b0b0b;
  border-top: 1px solid rgba(228, 224, 215, .12);
  padding: 4.5rem 0
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start
}

.cards {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap
}

.cards .mini {
  border: 1px solid rgba(228, 224, 215, .15);
  padding: 1rem;
  border-radius: 12px;
  background: #0f0f0f;
  min-width: 240px
}

#quoteForm {
  border: 1px solid rgba(228, 224, 215, .15);
  padding: 1rem;
  border-radius: 16px;
  background: #0f0f0f
}

#quoteForm label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-weight: 600
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
  background: #0b0b0b;
  border: 1px solid rgba(228, 224, 215, .2);
  color: var(--sand);
  padding: .8rem;
  border-radius: 10px
}

#quoteForm .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 10px 0;
}

.disclaimer {
  font-size: .85rem;
  opacity: .7;
  margin: .5rem 0 0
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(228, 224, 215, .12);
  padding: 1.2rem 0;
  background: #000;
  display:none;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap
}

.foot .id {
  display: flex;
  align-items: center;
  gap: .6rem
}

.foot .id img {
  height: 28px;
  border-radius: 6px
}

.copy {
  opacity: .7
}

/* Responsive */
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .about-inner {
    grid-template-columns: 1fr
  }

  .contact-inner {
    grid-template-columns: 1fr
  }
}

@media (max-width: 700px) {
  .site-header nav {
    display: none
  }

  .menu {
    display: block
  }

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

  .svc-grid {
    grid-template-columns: 1fr
  }

  #quoteForm .row {
    grid-template-columns: 1fr
  }
}


/* Small hero for inner pages */
.hero-sm {
  min-height: auto;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(228, 224, 215, .12)
}

/* Catalog */
.catalog {
  padding: 3rem 0
}

.catalog-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem
}

.search {
  background: #0b0b0b;
  border: 1px solid rgba(228, 224, 215, .2);
  color: var(--sand);
  padding: .8rem 1rem;
  border-radius: 999px;
  min-width: 260px
}

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

.item {
  border: 1px solid rgba(228, 224, 215, .15);
  background: #0f0f0f;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.item .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  margin: .25rem 0 .5rem
}

.pill {
  border: 1px solid rgba(228, 224, 215, .25);
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .8rem;
  opacity: .9
}

.price {
  opacity: .9;
  font-weight: 700
}

.btn.small {
  padding: .6rem .9rem;
  font-size: .9rem;
  align-self: flex-start
}

@media(max-width:900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .catalog-grid {
    grid-template-columns: 1fr
  }
}


/* Catalog and card images */
.itm-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: .6rem
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover
}

/* === Nova Header & Hero Patch === */
:root {
  --nes-beige: #e4e0d7;
  --nes-text: #000;
}

.nes-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--nes-beige);
  color: var(--nes-text);
  padding: 16px 0 8px;
}

.nes-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nes-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.nes-logo {
  height: 200px;
  width: auto;
  display: inline-block;
}

.nes-logo-link {
  display: inline-block;
}

.nes-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 10px 0 6px;
}

.nes-nav a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 10px;
}

.nes-nav a:hover {
  text-decoration: underline;
}

.nes-hero,
.hero,
.banner,
.top-hero {
  background: var(--nes-beige) !important;
  color: #000 !important;
}

.nes-hero *,
.hero *,
.banner *,
.top-hero * {
  color: #000 !important;
}


/* === We Create. Hero Title Patch === */
.nes-hero-title {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-align: center !important;
  margin: 0 auto 12px !important;
  line-height: 1.05 !important;
  /* Scales from mobile to desktop while staying close to original size */
  font-size: clamp(40px, 8vw, 96px) !important;
}


/* === Final Layout Adjustments === */
:root {
  --nes-beige: #e4e0d7;
  --nes-text: #000;
}

/* Header */
.nes-header {
  background: var(--nes-beige);
  color: var(--nes-text);
  padding: 10px 0 6px !important;
}

.nes-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nes-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.nes-logo {
  width: 280px !important;
  height: auto !important;
  display: inline-block;
}

/* Larger logo */
.nes-nav {
  margin-top: 6px !important;
}

/* tighter gap below nav */

/* Hero */
.nes-hero,
.hero,
.banner,
.top-hero {
  background: var(--nes-beige) !important;
  color: #000 !important;
  min-height: 150px !important;
  /* thinner hero */
  padding: 36px 0 !important;
  display: flex !important;
  align-items: center !important;
  /* vertical center */
}

.nes-hero .nes-hero-title,
.hero .nes-hero-title,
.banner .nes-hero-title,
.top-hero .nes-hero-title {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-align: left !important;
  /* flush left */
  margin: 0 !important;
  margin-left: 0px !important;
  /* align under logo padding */
  line-height: 1.05 !important;
  font-size: 50px !important;
}

/* Ensure links/buttons in hero adopt black on beige, but we're removing primary CTAs anyway */
.nes-hero a,
.hero a,
.banner a,
.top-hero a {
  color: #000 !important;
}


/* === Thin Header/Nav Banner Patch === */
.nes-header {
  padding: 2px 0 0 !important;
  background: #e4e0d7 !important;
}

.nes-header-inner {
  padding: 0 16px !important;
}

.nes-header-top {
  margin: 0 !important;
}

.nes-nav {
  margin-top: 0 !important;
  padding: 2px 0 4px !important;
}

.nes-nav a {
  padding: 6px 10px !important;
}

/* keep text size, just slightly tighter link box */


/* === Ultra Thin Header/Nav Banner Patch === */
.nes-header {
  padding: 0 !important;
  margin: 0 !important;
  background: #e4e0d7 !important;
}

.nes-header-top {
  margin: 0 !important;
  padding-bottom: 2px !important;
}

.nes-nav {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

.nes-nav a {
  padding: 4px 8px !important;
}


/* === Super Thin Nav Override (high specificity) === */
header.nes-header nav.nes-nav {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1 !important;
  min-height: 0 !important;
}

header.nes-header nav.nes-nav a {
  display: inline-block;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* Remove any accidental gap wrappers */
header.nes-header .nes-header-inner,
header.nes-header .nes-header-top {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


/* === Final Balanced Header Adjustment === */
.nes-header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  background: #e4e0d7 !important;
}

.nes-header-inner {
  padding: 0 16px !important;
}

.nes-header-top {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.nes-nav {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 8px !important;
  line-height: 1.2 !important;
}

.nes-nav a {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
}



/* New css */
.nes-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nes-header {
  padding: 25px 0 !important;
}