/* -------------------------
   GLOBAL THEME & RESET
   ------------------------- */
   :root{
    --sky-100: #E8F7FF;
    --sky-200: #CFF0FF;
    --sky-300: #9EE7FF;
    --sky-500: #4FBEE8;
    --accent-dark: #174b5b;
    --muted-ink: rgba(10,10,10,0.72);
    --card-glass: rgba(255,255,255,0.75);
    --shadow-soft: 0 10px 30px rgba(12,40,60,0.08);
    --ease: cubic-bezier(.2,.9,.2,1);
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
    width: 100%;
    font-family: 'Montserrat Alternates', sans-serif;
    background: var(--cream);
    color: var(--dark-choco);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  a { text-decoration: none; color: inherit; }
  button { font: inherit; cursor: pointer; border: none; background: none; }

.hero.dreamy-scoop {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* HERO SECTION — full screen layout */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
}

/* Fullscreen video background */
.hero-videoo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  color: #333;
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.hero-topline {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 1rem;
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Buttons layout */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive layout */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }
  .hero-content {
    padding: 1.5rem;
    max-width: 90%;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }
}

/* For larger screens (1024px+) */
@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
    gap: 1.25rem;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(249, 255, 230, 0.15),
    rgba(182, 240, 255, 0.25)
  );
  z-index: 1;
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #402804;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 100;
  background: linear-gradient(90deg, #8ffffb, #ffd6a5, #caffbf);
  -webkit-background-clip: text;
  font-family: 'Lily Script One', cursive;

  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: text-glaze 6s linear infinite;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #5b4636;
  margin-top: 12px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.landing-section {
  padding: clamp(60px, 8vw, 120px) 5%;
  display: flex;
  justify-content: center;
}

.landing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

.landing-copy {
  flex: 1 1 460px;
}

.landing-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 1rem;
}

.landing-copy p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 560px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.landing-actions .btn {
  font-size: clamp(14px, 1vw, 16px);
  padding: 12px 28px;
}

.landing-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.landing-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Responsive tweak for mobile */
@media (max-width: 768px) {
  .landing-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .landing-actions {
    justify-content: flex-start;
  }
}

  /* -------------------------
     FADE ANIMATION
     ------------------------- */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* -------------------------
   BUTTON RESPONSIVENESS
   ------------------------- */

/* Tablet adjustments */
@media (max-width: 1024px) {
  .btn {
    font-size: clamp(14px, 1.6vw, 16px);
    padding: clamp(10px, 1.8vw, 14px) clamp(24px, 3vw, 36px);
  }
}

/* Mobile landscape and below */
@media (max-width: 768px) {
  .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    text-align: center;
    font-size: clamp(13px, 2vw, 15px);
    padding: clamp(9px, 2vw, 12px) clamp(20px, 4vw, 30px);
  }

  .btn:hover {
    transform: translateY(-1px);
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .btn {
    font-size: 0.85rem;
    padding: 8px 18px;
    max-width: 260px;
  }
}
.button-group {
  display: flex;
  justify-content: flex-start; 
  gap: 1rem;
  flex-wrap: wrap; 
  margin-top: 1.2rem; 
}

/* Layout container */
.landing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 1rem;
}

/* Left text block */
.landing-copy {
  flex: 1 1 400px;
  max-width: 550px;
}

/* Right image block */
.landing-image {
  flex: 1 1 350px;
  text-align: right;
}

.landing-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

/* Button group */
.landing-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* this creates spacing between the buttons */
}

/* Responsive */
@media (max-width: 900px) {
  .landing-inner {
    flex-direction: column;
    text-align: center;
  }

  .landing-image {
    text-align: center;
    margin-top: 2rem;
  }

  .landing-actions {
    justify-content: center;
  }
}

  /* -------------------------
     CONTENT SECTIONS
     ------------------------- */
  .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 48px;
    align-items: center;
  }
  
  .content-text h2 {
    font-size: clamp(24px, 2.6vw, 36px);
    color: var(--dark-choco);
    margin-bottom: 10px;
  }
  
  .content-text p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  
  .media-section video {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }
  
  @media (max-width: 980px) {
    .content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-content {
      padding: 32px 28px;
    }
  }

/* ============================
   HOLLOW VARIANT — Cat Button
   ============================ */
   .hollow {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 300;
    font-size: 18px;
    padding: 16px 40px;
    color: #000000;
    background: transparent;
    border: 0.5px solid rgba(100, 201, 255, 0.7);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(58, 176, 240, 0.15);
  }
  

  .hollow:hover {
    background: linear-gradient(135deg, rgba(58, 176, 240, 0.15), rgba(230, 253, 255, 0.4));
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(58, 176, 240, 0.25);
  }
  
  /* Active / tap effect */
  .hollow:active {
    transform: scale(0.96);
    box-shadow: 0 3px 10px rgba(58, 176, 240, 0.25);
  }
  
/* ----------------------------
   DRIPPING BUTTON
---------------------------- */
.cat-btn-drip {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 300;
  font-size: 18px;
  padding: 16px 40px;
  color: #000000;
  border: 0.5px solid rgba(100, 201, 255, 0.7);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(58, 176, 240, 0.4), #e6fdff);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Fixes button alignment for "Transform Your Event" section */
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem; /* space between buttons */
  margin-top: 1.5rem;
}

/* Ensure both buttons behave the same */
.button-group .btn,
.button-group .cat-btn-drip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 180px; /* ensures consistent width */
  padding: 0.8rem 1.4rem;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .button-group .btn,
  .button-group .cat-btn-drip {
    width: 80%; 
    max-width: 280px;
  }
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

/* General button style consistency */
.button-group .btn,
.button-group .cat-btn-drip {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 180px;
  padding: 0.9rem 1.6rem;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

/* OUTLINE variant */
.button-group .cat-btn-drip.btn-outline {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

/* ---------- Responsive behavior ---------- */

@media (min-width: 1024px) {
  .button-group {
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
  }
}

/* Tablet layout fix (768px and up to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .button-group {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 0.5rem; 
    margin-top: 1.2rem;
  }

  .button-group .btn,
  .button-group .cat-btn-drip {
    width: 155px; 
    text-align: center;
    margin: 0; 
  }
}


/* Mobile (<768px) */
@media (max-width: 767px) {
  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .button-group .btn,
  .button-group .cat-btn-drip {
    width: 85%;
    max-width: 280px;
  }
}

.cat-btn-drip::before,
.cat-btn-drip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: drip 2.4s infinite ease-in-out;
}

.cat-btn-drip::after {
  left: 80%;
  animation-delay: 1.2s;
}

.cat-btn-drip::before {
  left: 20%;
}

.cat-btn-drip:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255, 182, 193, 0.6);
}

/* ----------------------------
   ANIMATIONS
---------------------------- */
@keyframes drip {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(12px) scale(1.2); opacity: 0.8; }
  100% { transform: translateY(24px) scale(0.8); opacity: 0; }
}

@keyframes text-glaze {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

   /* -------------------------
     FEATURES GRID (keeps original)
     ------------------------- */
     .features-section { padding: 36px 20px; margin-top: 8px; background: linear-gradient(180deg, transparent 0%, rgba(235, 255, 253, 0.5) 100%); }
     .features-inner { max-width:1200px; margin:0 auto; text-align:center; }
     .features-heading { margin:0 0 18px 0; font-weight:300; color:var(--milk-choco); font-size: clamp(20px,2.2vw,28px); }
     .features-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
     .feature-card { background:#fff; padding:20px; border-radius:14px; box-shadow:var(--shadow-soft); transition: transform 260ms var(--ease), box-shadow 260ms var(--ease); text-align:left; }
     .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
     .feature-icon { width:52px; height:52px; background-size:contain; background-repeat:no-repeat; margin-bottom:12px; }
     .feature-card h3 { margin:0 0 8px 0; color:var(--dark-choco); font-weight:400; font-size:1.02rem; }
     .feature-card p { margin:0 0 12px 0; color:var(--muted); font-size:.96rem; }
     .card-actions { text-align:left; }
     .action-pill { display:inline-flex; align-items:center; gap:8px; background: linear-gradient(180deg,#fff,var(--beige)); border:1px solid rgba(64,40,4,0.06); padding:8px 12px; border-radius:999px; cursor:pointer; }
     .action-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
     
     @media (max-width: 980px) {
       .features-grid { grid-template-columns: 1fr; }
     }
     
     /* -------------------------
        LANDING CTA (kept)
        ------------------------- */
     .landing-section { padding: 40px 20px; margin-top: 6px; }
     .landing-inner { max-width:1200px; margin:0 auto; display:flex; gap:18px; align-items:center; }
     .landing-copy { flex:1; }
     .landing-image { width:320px; flex:0 0 320px; border-radius:12px; overflow:hidden; }
     .landing-image img { width:100%; height:auto; display:block; }
     @media (max-width: 820px) {
       .landing-inner { flex-direction:column; text-align:center; }
       .landing-image { width:100%; }
     }
     

/* CONTACT FORM LAYOUT */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f6ffff, #fbfdff);
  text-align: center;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-heading {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: #000;
  margin-bottom: 1.2rem;
}

/* FORM ROWS */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  text-align: left;
}

.form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #b5dbff;
  box-shadow: 0 0 0 3px rgba(181, 219, 255, 0.4);
}

/* ACTIONS AREA */
.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ENSURE BUTTON MATCHES OTHER BTN-DRIP */
.form-actions .cat-btn-drip {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  padding: clamp(10px, 1.2vw, 14px) clamp(22px, 3vw, 36px);
  width: auto;
  min-width: 120px;
}
     
     /* -------------------------
        FAQ / ACCORDION
        ------------------------- */
     .faq { padding: 36px 20px; margin-top: 6px; }
     .faq-inner { max-width:900px; margin:0 auto; text-align:left; }
     .faq h2 {text-align:center; margin:0 0 6px 0; font-size:1.4rem; font-weight:600; color:var(--dark-choco); }
     .faq .muted {text-align:center; color:var(--muted); margin-bottom:14px; }

     .acc-icon { font-weight:900; color:var(--muted); }
     .faq-extra { text-align:center; margin-top:18px; }
     .faq-extra .btn-outline { padding:8px 16px; }

/* --------- Accordion: consistent alignment & smooth open --------- */

.accordion {
  border-top: 1px solid rgba(64,40,4,0.06);
}

/* container item */
.accordion-item {
  border-bottom: 1px solid rgba(64,40,4,0.06);
  overflow: visible;
}


.accordion-q {
  width: 100%;
  text-align: left;
  padding: 14px 44px 14px 12px;    
  background: transparent;
  border: 0;
  font-weight: 555;
  display: block;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  box-sizing: border-box;
  line-height: 1.35;
  color: inherit;
}


.accordion-q .acc-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;             
  text-align: center;
  pointer-events: none;     
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.accordion-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;          
  transition: max-height 0.4s cubic-bezier(.2,.9,.3,1), padding 0.25s ease;
  box-sizing: border-box;
}

/* when open, give vertical padding and a roomy max-height */
.accordion-item.open .accordion-a {
  max-height: 480px; 
  padding: 10px 12px 14px;   
}

.accordion-a p {
  margin: 0;
  padding: 0;
  line-height: 1.55;
  color: inherit;
}

.accordion-a ul,
.accordion-a ol {
  margin: 0;
  padding-left: 1.05rem; /* small, consistent indent */
}

/* optional: subtle transition for text opacity for smoothness */
.accordion-a > * {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.accordion-item.open .accordion-a > * {
  opacity: 1;
  transform: translateY(0);
}

/* hover/focus affordances on the question */
.accordion-q:hover,
.accordion-q:focus {
  color: var(--muted, #79c864);
  outline: none;
}

     /* -------------------------
        FOOTER
        ------------------------- */
        .site-footer {background: linear-gradient(180deg, #D9FEF8 0%, #DFE5FF 100%); padding: 40px 20px; border-top:1px solid rgba(0,0,0,0.03); }
     .footer-container { max-width:1200px; margin:0 auto; display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap; justify-content:space-between; }
     .footer-columns { display:flex; gap:20px; flex:1; justify-content:flex-end; }
     .footer-column { min-width:160px; }
     .footer-logo { width:88px; height:auto; display:block; }
     
     @media (max-width: 640px) {
       .footer-container { flex-direction:column; align-items:center; text-align:center; }
     }
     
     @media (max-width: 480px) {
       .footer-columns { flex-direction:column; gap:12px; align-items:center; }
       .footer-column { min-width: unset; text-align:center; }
       .footer-logo { margin-bottom: 12px; }
     }
     
     /* -------------------------
        Reveal animation
        ------------------------- */
     .reveal { opacity:0; transform:translateY(18px); transition: all 650ms var(--ease); }
     .reveal.visible, .reveal.visible * { opacity:1; transform:none; }
     
     /* -------------------------
        Video Section (
        ------------------------- */
     .video-section {
       display:flex;
       flex-direction:column;
       align-items:center;
       justify-content:center;
       width:100%;
       max-width:1280px;
       margin: 32px auto;
       padding: 24px;
       box-sizing: border-box;
     }
     .video-container {
       width:100%;
       max-width:1280px;
       aspect-ratio: 16/9;
       overflow:hidden;
       border-radius:12px;
       box-shadow: var(--shadow-soft);
     }
     .video-container video { width:100%; height:100%; object-fit:cover; }
     
     /* -------------------------
        Accessibility focus
        ------------------------- */
     a:focus, button:focus, input:focus, textarea:focus {
       outline: 3px solid rgba(64, 123, 165, 0.18);
       outline-offset: 3px;
       transition: outline .12s;
     }
     
     /* -------------------------
        Additional guard rails to remove stray whitespace
        ------------------------- */
     main, header, section { display:block; margin:0; padding:0; box-sizing:border-box; }
     .container, .content, .inner { margin:0 auto; box-sizing:border-box; }

     .catering-layout,
     .rectangle-10,
     .catering-info,
     .landing-section-wrapper,
     .accordion-list,
     .contact-section[style], 
     .contact-section[style] * {
     }
     
     /* Reset Navbar Placeholder */
   #navbar-placeholder {
     margin: 0;
     padding: 0;
     height: 0;
   }
  
   nav, .navbar {
     margin: 0;
     padding: 0;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 999;
   }
   
  
   body {
     margin: 0;
     padding-top: 90px;
   }
/* FAQ Extra Section */
.faq-extra {
  text-align: center;
  margin: 4rem auto 2rem;
  max-width: 700px;
  padding: 2rem 1rem;
}

.faq-extra h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  color: #0a0501;
  margin-bottom: 0.8rem;
}

.faq-extra p {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #333;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.faq-extra .cat-btn-drip {
  display: inline-block;
  padding: clamp(10px, 1.2vw, 14px) clamp(20px, 3vw, 36px);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  margin: 0 auto;
  text-align: center;
}


@media (max-width: 768px) {
  .faq-extra {
    padding: 2rem 1.2rem;
  }

  .faq-extra .cat-btn-drip {
    width: auto;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .faq-extra h3 {
    font-size: 1.4rem;
  }

  .faq-extra p {
    font-size: 0.95rem;
  }

  .faq-extra .cat-btn-drip {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.form-actions {
  text-align: center;
  margin-top: 1.5rem;
}

.form-actions .cat-btn-drip {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  padding: clamp(10px, 1.2vw, 14px) clamp(20px, 3vw, 36px);
  width: auto;
}
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.feature-card:hover {
  transform: rotate3d(1, 1, 0, 6deg);
  box-shadow: 0 18px 30px rgba(46, 55, 117, 0.2);
}

.reveal {
  opacity: 1 !important;
  transform: none !important;
}
:root {
  --cream: #fffaf2;
  --muted: rgba(0, 0, 0, 0.6);
  --beige: #f8f5ec;
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-strong: 0 12px 24px rgba(0,0,0,0.16);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}
