/* ============================================
   POSH PARTY PRODUCTIONS — DESIGN TOKENS
   ============================================ */
:root{
  --cream: #F6EEE1;
  --cream-deep: #EFE3D1;
  --ink: #1E1814;
  --ink-soft: #4A423B;
  --rose: #CB3F65;
  --rose-deep: #8F2A46;
  --gold: #D4AA6A;
  --gold-deep: #A87F44;
  --green: #3F5A16;

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
  --edge: clamp(24px, 5vw, 64px);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
:focus-visible{ outline: 2px solid var(--rose-deep); outline-offset: 3px; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.eyebrow{
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin: 0 0 0.9em;
}

h1,h2,h3{
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}
h1{ font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2{ font-size: clamp(2rem, 4.4vw, 3.1rem); }
h1 em, h2 em{ font-style: italic; color: var(--rose-deep); }

p{ margin: 0 0 1em; color: var(--ink-soft); }
p:last-child{ margin-bottom: 0; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:0.5em;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-primary{
  background: var(--rose);
  color: var(--cream);
}
.btn-primary:hover{
  background: var(--rose-deep);
  transform: translateY(-1px);
}
.btn-ghost{
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover{
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

.text-link{
  font-weight: 500;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
  transition: border-color .2s ease, color .2s ease;
}
.text-link:hover{ color: var(--rose-deep); border-color: var(--rose-deep); }

.about-links{
  display:flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 0.4rem;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 238, 225, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(30,24,20,0.08);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-mark{ width: 34px; height: auto; }
.brand-word{
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.brand-word em{ font-style: italic; color: var(--rose-deep); }

.main-nav{
  display:flex;
  align-items:center;
  gap: 2.1rem;
  font-size: 0.92rem;
}
.main-nav a:not(.nav-cta){
  position: relative;
  color: var(--ink);
}
.main-nav a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-5px;
  height:1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:not(.nav-cta):hover::after{ transform: scaleX(1); transform-origin: left; }

.nav-cta{
  background: var(--ink);
  color: var(--cream);
  padding: 0.6em 1.3em;
  border-radius: 999px;
  transition: background-color .2s ease;
}
.nav-cta:hover{ background: var(--rose-deep); }

.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(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-nav{
  display:none;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0 var(--edge) 1.6rem;
  font-size: 1.05rem;
}
.mobile-nav a{ color: var(--ink); }
.mobile-nav .nav-cta{ display:inline-block; width: fit-content; }

.site-header.nav-open .mobile-nav{ display:flex; }

@media (max-width: 860px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-lede{
  max-width: 46ch;
  font-size: 1.08rem;
}
.hero-actions{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.hero-mark{
  display:flex;
  justify-content: center;
}
.hero-logo{
  width: min(340px, 100%);
}

.bubbles{
  position:absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bubbles span{
  position:absolute;
  bottom: -40px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: rise 4.5s ease-in forwards;
}
.bubbles span:nth-child(1){ left: 8%;  width:10px; height:10px; animation-delay: .1s; background: var(--rose); }
.bubbles span:nth-child(2){ left: 15%; width:6px;  height:6px;  animation-delay: .6s; }
.bubbles span:nth-child(3){ left: 22%; width:14px; height:14px; animation-delay: .3s; background: var(--green); opacity:0.5;}
.bubbles span:nth-child(4){ left: 78%; width:8px;  height:8px;  animation-delay: .8s; }
.bubbles span:nth-child(5){ left: 85%; width:12px; height:12px; animation-delay: .2s; background: var(--rose);}
.bubbles span:nth-child(6){ left: 91%; width:6px;  height:6px;  animation-delay: 1s;  }
.bubbles span:nth-child(7){ left: 65%; width:9px;  height:9px;  animation-delay: .5s; background: var(--green); opacity:0.5;}
.bubbles span:nth-child(8){ left: 40%; width:7px;  height:7px;  animation-delay: 1.2s;}
.bubbles span:nth-child(9){ left: 50%; width:11px; height:11px; animation-delay: .9s; background: var(--rose);}
.bubbles span:nth-child(10){left: 30%; width:5px;  height:5px;  animation-delay: 1.4s;}

@keyframes rise{
  0%{ opacity:0; transform: translateY(0) scale(0.8); }
  12%{ opacity:0.65; }
  90%{ opacity:0.35; }
  100%{ opacity:0; transform: translateY(-90vh) scale(1); }
}

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-mark{ order:-1; margin-bottom: 1rem; }
  .hero-logo{ width: min(220px, 60%); margin: 0 auto; }
}

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
.section-head{
  max-width: 640px;
  margin-bottom: clamp(2.2rem, 5vw, 3.4rem);
}
.section-lede{ margin-top: 1rem; max-width: 50ch; }

section{ padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

/* ============================================
   SERVICES
   ============================================ */
.service-list{
  border-top: 1px solid rgba(30,24,20,0.18);
}
.service-row{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(30,24,20,0.18);
  position: relative;
  transition: padding-left .25s ease;
}
.service-row::before{
  content:"";
  position:absolute;
  left: -18px; top:0; bottom:0;
  width: 4px;
  background: var(--rose);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s ease;
}
.service-row[data-accent="gold"]::before{ background: var(--gold-deep); }
.service-row[data-accent="green"]::before{ background: var(--green); }
.service-row:hover::before{ transform: scaleY(1); }
.service-row:hover{ padding-left: 14px; }

.service-name h3{ font-size: clamp(1.5rem, 2.6vw, 2rem); }
.service-desc{ max-width: 52ch; align-self: center; }

@media (max-width: 720px){
  .service-row{ grid-template-columns: 1fr; gap: 0.6rem; }
}

/* ============================================
   ABOUT
   ============================================ */
.about{ background: var(--cream-deep); }
.about-grid{
  display:grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.about-visual{
  display:flex;
  justify-content:center;
}
.about-mark{ width: min(240px, 100%); opacity: 0.92; }
.about-copy p{ max-width: 54ch; }

@media (max-width: 780px){
  .about-grid{ grid-template-columns: 1fr; text-align:left; }
  .about-visual{ order:-1; }
  .about-mark{ width: 140px; }
}

/* ============================================
   CELEBRATIONS / MOSAIC
   ============================================ */
.mosaic{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 12px;
}
.mosaic-tile{
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}
.mosaic-tile:nth-child(1){ grid-row: span 2; }
.mosaic-tile:nth-child(4){ grid-row: span 2; }
.mosaic-tile:nth-child(6){ grid-row: span 2; }
.mosaic-tile img{
  width: 100%; height: 100%;
  object-fit: cover;
  display:block;
  transition: transform .5s ease;
}
.mosaic-tile:hover img{ transform: scale(1.05); }
.mosaic-tile figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 0.9rem 1rem 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(0,0,0,0.62), rgba(0,0,0,0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.mosaic-tile:hover figcaption{ opacity: 1; transform: translateY(0); }

@media (max-width: 860px){
  .mosaic{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 130px; }
}
@media (max-width: 560px){
  .mosaic{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic-tile figcaption{ opacity: 1; transform: none; }
}

.mosaic-note{
  margin-top: 1.6rem;
  max-width: 46ch;
  font-size: 0.95rem;
}
.social-row{
  display:flex;
  gap: 1.8rem;
  margin-top: 1rem;
  font-weight: 500;
}
.social-row a{ border-bottom: 1px solid transparent; transition: border-color .2s ease, color .2s ease; }
.social-row a:hover{ color: var(--rose-deep); border-color: var(--rose-deep); }

/* ============================================
   IN MOTION (VIDEO)
   ============================================ */
.video-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 240px));
  justify-content: center;
  gap: 14px;
}
.video-tile{
  position:relative;
  margin:0;
  border-radius: 8px;
  overflow:hidden;
  aspect-ratio: 9/16;
  background: var(--ink);
}
.video-tile video{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}
.video-tile figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 0.9rem 1rem 0.8rem;
  font-size: 0.82rem;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(0,0,0,0.65), rgba(0,0,0,0));
}

@media (max-width: 860px){
  .video-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .video-grid{ grid-template-columns: 1fr; }
  .video-tile{ aspect-ratio: 16/10; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials{ background: var(--cream-deep); }
.testimonial-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card{
  margin:0;
  padding: 2.2rem 1.8rem;
  border-radius: 10px;
  color: var(--cream);
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}
.testimonial-card[data-tone="rose"]{ background: linear-gradient(165deg, var(--rose), var(--rose-deep)); }
.testimonial-card[data-tone="green"]{ background: linear-gradient(165deg, #5A7A24, var(--green)); }
.testimonial-card[data-tone="gold"]{ background: linear-gradient(165deg, var(--gold), var(--gold-deep)); color: var(--ink); }

.testimonial-card p{
  font-size: 0.94rem;
  line-height: 1.65;
  color: inherit;
  opacity: 0.94;
}
.testimonial-card footer{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
}
.testimonial-card .stars{
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

@media (max-width: 900px){
  .testimonial-grid{ grid-template-columns: 1fr; }
  .testimonial-card{ min-height: unset; }
}

/* ============================================
   INQUIRE / FORM
   ============================================ */
.inquire{ background: var(--ink); color: var(--cream); }
.inquire .eyebrow{ color: var(--gold); }
.inquire h2{ color: var(--cream); }
.inquire h2 em{ color: var(--gold); }
.inquire .section-lede{ color: rgba(246,238,225,0.72); }

.intake-form{ margin-top: 1rem; }
.hidden-field{ position:absolute; left:-9999px; }

.form-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
  margin-bottom: 1.4rem;
}
.form-grid-narrow{ grid-template-columns: 1fr 1.3fr; }

.field{
  display:flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 0.92rem;
}
.field > span{
  letter-spacing: 0.02em;
  color: rgba(246,238,225,0.85);
}
.field em{ font-style: italic; color: rgba(246,238,225,0.55); font-size: 0.9em; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field input[type="date"],
.field textarea{
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(246,238,225,0.06);
  border: 1px solid rgba(246,238,225,0.28);
  border-radius: 8px;
  padding: 0.85em 1em;
  transition: border-color .2s ease, background-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder{ color: rgba(246,238,225,0.4); }
.field input:focus, .field textarea:focus{
  border-color: var(--gold);
  background: rgba(246,238,225,0.1);
  outline: none;
}
.field-wide{ margin-bottom: 1.4rem; }
.field textarea{ resize: vertical; }

fieldset.field{ border: none; padding: 0; margin: 0 0 1.4rem; }
.radio-row{
  display:flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-size: 0.98rem;
  color: var(--cream);
}
.radio-row label{ display:flex; align-items:center; gap: 0.5em; cursor:pointer; }
.radio-row input[type="radio"]{ accent-color: var(--gold); width:16px; height:16px; }

.signature input{ font-family: var(--serif); font-style: italic; font-size: 1.2rem; }

.btn-submit{ margin-top: 0.6rem; }

@media (max-width: 720px){
  .form-grid, .form-grid-narrow{ grid-template-columns: 1fr; }
}

/* ============================================
   OUR STORY PAGE
   ============================================ */
.story-hero{
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
.story-hero-grid{
  display:grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items:center;
  gap: 2rem;
}
.story-hero h1{ font-size: clamp(2.8rem, 6vw, 4.4rem); }
.story-hero h1 em{ font-style: italic; color: var(--rose-deep); }
.story-visual{ display:flex; justify-content:center; }
.story-visual img{ width: min(180px, 100%); opacity: 0.9; }

.story-photo{
  width: min(320px, 100%);
  opacity: 1 !important;
  border-radius: 10px;
  box-shadow: 0 18px 40px -12px rgba(30,24,20,0.35);
  animation: photo-enter 1s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes photo-enter{
  0%{ opacity: 0; transform: translateY(28px) scale(0.96); }
  100%{ opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce){
  .story-photo{ animation: none; }
}

@media (max-width: 720px){
  .story-hero-grid{ grid-template-columns: 1fr; }
  .story-visual{ order: -1; }
  .story-visual img{ width: 110px; }
}

.story-body{ padding-top: 0; padding-bottom: clamp(4rem, 8vw, 6rem); }
.story-copy{ max-width: 680px; }
.story-copy .lead{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-deep);
  margin-bottom: 1.4rem;
}
.story-copy p{ font-size: 1.03rem; line-height: 1.75; }
.story-pullquote{
  margin: 2.2rem 0 2.4rem;
  padding: 1.6rem 0 1.6rem 1.6rem;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
}

/* ============================================
   THE VISION
   ============================================ */
.vision{
  background: var(--ink);
  color: var(--cream);
}
.vision .eyebrow{ color: var(--gold); }
.vision-title{
  font-size: clamp(2rem, 4.2vw, 3rem);
  color: var(--gold);
  margin-bottom: 0.9em;
}
.vision-inner{
  max-width: 680px;
}
.vision-text{
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(246,238,225,0.82);
}
.vision-tagline{
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  color: var(--gold);
}

/* ============================================
   CLOSING CTA (home page)
   ============================================ */
.closing-cta{ background: var(--ink); color: var(--cream); text-align:center; }
.closing-cta .eyebrow{ color: var(--gold); }
.closing-cta h2{ color: var(--cream); }
.closing-cta h2 em{ color: var(--gold); font-style: italic; }
.closing-cta-inner{
  max-width: 560px;
  margin: 0 auto;
  display:flex;
  flex-direction: column;
  align-items:center;
}
.closing-cta .section-lede{ color: rgba(246,238,225,0.75); margin-top: 1rem; }
.closing-cta .btn{ margin-top: 1.8rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero{
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(1rem, 3vw, 1.5rem);
}
.services-hero h1{ font-size: clamp(2.6rem, 5.5vw, 4rem); }
.services-hero h1 em{ font-style: italic; color: var(--rose-deep); }
.services-hero .section-lede{ margin-top: 1rem; }

.services-cta{
  margin-top: 2.2rem;
  display:flex;
  align-items:center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.services-cta p{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  margin: 0;
  color: var(--rose-deep);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-hero{ padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.faq-hero h1{ font-size: clamp(2.6rem, 5.5vw, 3.8rem); }
.faq-hero h1 em{ font-style: italic; color: var(--rose-deep); }
.faq-hero .section-lede{ margin-top: 1rem; }

.faq-list-section{ padding-top: 0; }
.faq-list{
  border-top: 1px solid rgba(30,24,20,0.18);
  max-width: 780px;
}
.faq-item{
  border-bottom: 1px solid rgba(30,24,20,0.18);
  padding: 0.3rem 0;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  flex-shrink:0;
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--rose-deep);
  transition: transform .2s ease;
}
.faq-item[open] summary::after{ content:"–"; }
.faq-answer{
  padding: 0 0 1.4rem;
  max-width: 62ch;
}
.faq-answer p{ font-size: 0.98rem; }

.faq-cta{
  margin-top: 2.6rem;
  display:flex;
  align-items:center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.faq-cta p{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  margin: 0;
  color: var(--rose-deep);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer{
  background: var(--cream-deep);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid rgba(30,24,20,0.1);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-mark{ width: 46px; margin-bottom: 1rem; }
.footer-label{
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9em;
}
.footer-links{ display:flex; flex-direction: column; gap: 0.7em; font-size: 0.95rem; }
.footer-links a:hover{ color: var(--rose-deep); }

.footer-base{
  border-top: 1px solid rgba(30,24,20,0.12);
  padding: 1.4rem 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (max-width: 640px){
  .footer-grid{ grid-template-columns: 1fr; }
}
