/* =========================================================
   Andrews Event Planning and Design LLC
   Main stylesheet — style.css
   Light lilac editorial theme
   ========================================================= */

:root {
  --lw: #FAF8FE;   /* lilac white background */
  --dv: #3A2E5C;   /* deep violet text */
  --va: #5C4A8A;   /* violet accent (links, labels) */
  --li: #B9A6E8;   /* lilac (buttons, chips) */
  --pl: #E5DFF8;   /* pale lilac (chip backgrounds) */
  --hl: #E0D7F4;   /* hairline */
  --ink: #2A2140;  /* dark ink on lilac fills */
  --vad: #4A3A73;  /* deep violet hover */
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #FAF8FE;
  color: #3A2E5C;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: #3A2E5C;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

a {
  color: #5C4A8A;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #4A3A73;
}

/* =========================================================
   Breadcrumb navigation
   ========================================================= */

.crumb-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  height: 68px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5DFF8;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3A2E5C;
  white-space: nowrap;
}

.brand:hover {
  color: #5C4A8A;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid #E5DFF8;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #5C4A8A;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
}

.breadcrumb a {
  color: #3A2E5C;
  font-weight: 500;
  padding: 4px 0;
}

.breadcrumb a:hover {
  color: #5C4A8A;
}

.breadcrumb a.active {
  color: #5C4A8A;
  font-weight: 700;
  border-bottom: 2px solid #5C4A8A;
}

.sep {
  color: #B9A6E8;
  font-weight: 300;
  user-select: none;
}

/* =========================================================
   Hero — mirrored split (graphic left, text right)
   ========================================================= */

.mirror-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 40px 96px;
}

.balloon-cluster {
  position: relative;
  width: 100%;
  height: 440px;
}

.balloon-cluster::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  background-color: #F0EBFB;
  border-radius: 50%;
}

.balloon {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}

.balloon .stem {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 120px;
  background-color: #5C4A8A;
  border-radius: 0 0 50% 50%;
  transform-origin: top center;
}

.balloon .knot {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  margin-top: 114px;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #5C4A8A;
}

.balloon.b1 {
  width: 170px;
  height: 170px;
  left: 8%;
  top: 90px;
  background-color: #5C4A8A;
}

.balloon.b1 .stem {
  transform: rotate(16deg);
}

.balloon.b2 {
  width: 230px;
  height: 230px;
  left: 30%;
  top: 10px;
  background-color: #B9A6E8;
}

.balloon.b3 {
  width: 150px;
  height: 150px;
  left: 42%;
  top: 220px;
  background-color: #E5DFF8;
  border: 3px solid #FFFFFF;
}

.balloon.b3 .stem {
  transform: rotate(-18deg);
  height: 90px;
}

.hero-text {
  padding: 8px 0;
}

.eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background-color: #E5DFF8;
  color: #5C4A8A;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-headline {
  font-size: clamp(34px, 4.4vw, 56px);
  color: #3A2E5C;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: #3A2E5C;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.btn-primary {
  background-color: #B9A6E8;
  color: #2A2140;
  border: 2px solid #B9A6E8;
}

.btn-primary:hover {
  background-color: #A48FDD;
  border-color: #A48FDD;
  color: #2A2140;
}

.btn-outline {
  background-color: transparent;
  color: #5C4A8A;
  border: 2px solid #5C4A8A;
}

.btn-outline:hover {
  background-color: #5C4A8A;
  color: #FFFFFF;
}

/* =========================================================
   Editorial sections
   ========================================================= */

.editorial {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.intro-section,
.approach-section,
.services-section,
.numbers-section,
.closing-section {
  padding: 72px 24px;
}

.section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5C4A8A;
  margin-bottom: 16px;
}

.intro-section h2,
.approach-section h2,
.services-section h2,
.numbers-section h2,
.closing-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 28px;
  padding-bottom: 20px;
  position: relative;
}

.intro-section h2::after,
.approach-section h2::after,
.services-section h2::after,
.numbers-section h2::after,
.closing-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background-color: #B9A6E8;
}

.intro-section p,
.approach-section p,
.closing-section p {
  font-size: 18px;
  line-height: 1.85;
  color: #3A2E5C;
}

.approach-section p {
  position: relative;
  padding-left: 28px;
}

.sq-marker {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 13px;
  height: 13px;
  background-color: #B9A6E8;
  display: inline-block;
}

/* Services sub-blocks */
.service-block {
  padding: 34px 0;
  border-bottom: 1px solid #E0D7F4;
}

.service-block:first-of-type {
  padding-top: 8px;
}

.service-block:last-of-type {
  border-bottom: none;
  padding-bottom: 8px;
}

.service-block h3 {
  font-size: 24px;
  color: #5C4A8A;
  margin-bottom: 14px;
}

.service-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #3A2E5C;
}

/* Numbers row */
.num-lead {
  font-size: 17px;
  color: #3A2E5C;
  max-width: 620px;
  margin: -8px 0 32px;
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #E0D7F4;
  border-bottom: 1px solid #E0D7F4;
}

.num-cell {
  padding: 40px 20px;
  text-align: center;
  border-left: 1px solid #E0D7F4;
}

.num-cell:first-child {
  border-left: none;
}

.num {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: #3A2E5C;
  line-height: 1;
}

.num-cell .num-suffix {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: #3A2E5C;
}

.num-label {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5C4A8A;
}

/* Closing */
.closing-section {
  text-align: center;
}

.closing-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.closing-section p {
  max-width: 680px;
  margin: 0 auto 34px;
}

/* =========================================================
   Footer — single line
   ========================================================= */

.line-footer {
  border-top: 1px solid #E5DFF8;
  padding: 24px 40px;
  text-align: center;
  background-color: #FFFFFF;
}

.line-footer p {
  font-size: 14px;
  color: #3A2E5C;
  line-height: 1.9;
}

.line-footer a {
  color: #5C4A8A;
  font-weight: 600;
}

.line-footer .dot {
  color: #B9A6E8;
  padding: 0 8px;
}

/* =========================================================
   Scroll reveal
   ========================================================= */

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Secondary page hero (services / contact)
   ========================================================= */

.page-hero {
  background-color: #E5DFF8;
  padding: 72px 40px;
  border-bottom: 1px solid #E0D7F4;
}

.page-hero .inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  background-color: #FFFFFF;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 18px;
  max-width: 680px;
  color: #3A2E5C;
}

/* =========================================================
   Services page
   ========================================================= */

.services-main {
  padding: 0 24px;
}

.service-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
  border-bottom: 1px solid #E0D7F4;
}

.service-section:last-of-type {
  border-bottom: none;
}

.service-section h2 {
  font-size: 28px;
  color: #5C4A8A;
  margin-bottom: 16px;
}

.service-section p {
  font-size: 17px;
  line-height: 1.85;
  color: #3A2E5C;
}

.process-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 0;
}

.process-section h2 {
  font-size: 32px;
  margin-bottom: 36px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.process-step {
  background-color: #FFFFFF;
  border: 1px solid #E0D7F4;
  border-radius: 12px;
  padding: 28px 24px;
}

.process-step .step-num {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #B9A6E8;
  color: #2A2140;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: #3A2E5C;
}

.cta-band {
  background-color: #5C4A8A;
  padding: 64px 40px;
  text-align: center;
}

.cta-band .inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-band h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 16px;
}

.cta-band p {
  color: #E5DFF8;
  font-size: 17px;
  margin-bottom: 28px;
}

.cta-band .btn-primary {
  background-color: #B9A6E8;
  border-color: #B9A6E8;
}

/* =========================================================
   Contact page
   ========================================================= */

.contact-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.contact-info h2,
.contact-form-wrap h2 {
  font-size: 26px;
  margin-bottom: 22px;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  padding: 16px 0;
  border-bottom: 1px solid #E0D7F4;
  font-size: 16px;
  color: #3A2E5C;
}

.contact-info li strong {
  display: block;
  color: #5C4A8A;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-info a {
  color: #3A2E5C;
}

.contact-info a:hover {
  color: #5C4A8A;
}

.contact-form {
  background-color: #FFFFFF;
  border: 1px solid #E0D7F4;
  border-radius: 14px;
  padding: 34px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #5C4A8A;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 16px;
  font-family: inherit;
  color: #3A2E5C;
  background-color: #FAF8FE;
  border: 1px solid #E0D7F4;
  border-radius: 8px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #B9A6E8;
}

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

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  background-color: #E5DFF8;
  color: #3A2E5C;
  border-radius: 8px;
  font-size: 15px;
}

.form-status.visible {
  display: block;
}

/* FAQ */
.faq-section h2 {
  font-size: 28px;
  margin-bottom: 26px;
}

.faq-lead {
  font-size: 16px;
  color: #3A2E5C;
  margin: -12px 0 24px;
}

.faq-item {
  border: 1px solid #E0D7F4;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #3A2E5C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .plus {
  flex: 0 0 auto;
  font-size: 22px;
  color: #5C4A8A;
  transition: transform 0.25s ease;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 16px;
  color: #3A2E5C;
}

.faq-item.open .faq-answer {
  display: block;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .mirror-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 24px 72px;
  }

  .balloon-cluster {
    height: 340px;
    order: 2;
  }

  .balloon-cluster::before {
    width: 320px;
    height: 320px;
  }

  .balloon.b1 { left: 10%; }
  .balloon.b2 { left: 32%; }
  .balloon.b3 { left: 40%; top: 180px; }

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

@media (max-width: 720px) {
  .crumb-nav {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .breadcrumb {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px 20px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5DFF8;
    display: none;
  }

  .crumb-nav.nav-open .breadcrumb {
    display: flex;
  }

  .breadcrumb .sep {
    display: none;
  }

  .breadcrumb a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #F0ECFA;
  }

  .breadcrumb a.active {
    border-bottom: 1px solid #F0ECFA;
    box-shadow: inset 3px 0 0 #5C4A8A;
  }

  .numbers-row {
    grid-template-columns: 1fr 1fr;
  }

  .num-cell:nth-child(odd) {
    border-left: none;
  }

  .num-cell:nth-child(n+3) {
    border-top: 1px solid #E0D7F4;
  }

  .line-footer {
    padding: 20px;
  }
}
