/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */

.topbar {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.82);
}

.topbar-inner {
  min-height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 12.5px;
  letter-spacing: 0.4px;
}

.topbar-msg::before {
  content: "\2605";
  color: var(--gold);
  margin-right: 8px;
}

.topbar-link {
  color: #fff;
  font-weight: 700;
}

.topbar-link:hover { color: var(--rose-soft); }

@media (max-width: 700px) {
  .topbar-inner { padding: 8px 0; text-align: center; font-size: 11.5px; }
  .topbar-link { display: none; }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  position: absolute;
  top: var(--bar-h);
  left: 0;
  right: 0;
  z-index: 30;
  color: var(--ink);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(252, 248, 245, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -20px rgba(54, 32, 45, 0.5);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

/* Logo (left) */
.logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 11px;
  height: 11px;
  flex: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 0 0 4px rgba(194, 93, 131, 0.14);
}

.logo-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--ink);
  white-space: nowrap;
}

/* Links (centered, with dividers + icons) */
.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a + a {
  border-left: 1px solid var(--line);
}

.nav-links a svg {
  width: 15px;
  height: 15px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover svg { opacity: 1; }

.nav-links .nav-order { color: var(--rose-deep); }

/* Social (right) */
.nav-social {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social a {
  display: inline-flex;
  color: var(--ink-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-social a:hover { color: var(--rose); transform: translateY(-1px); }

.nav-social svg { width: 19px; height: 19px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  justify-self: end;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

/* ============================================================
   GRIDS
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* ============================================================
   CARDS
   ============================================================ */

.use-card,
.step-card,
.pricing-card,
.testimonial,
.about-panel {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.use-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--rose-soft);
}

/* Feature (icon badge) */
.feature-grid {
  gap: 36px 24px;
}

.feature-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-badge {
  width: 124px;
  height: 124px;
  margin-bottom: 20px;
  background: url("../assets/badge.svg") center / contain no-repeat;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}

.feature-card:hover .feature-badge {
  transform: translateY(-4px) scale(1.03);
}

.feature-icon {
  width: 54px;
  height: 54px;
  color: var(--plum);
}

.feature-card h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 280px;
}

/* Use / occasion card */
.use-card {
  padding: 30px 26px;
}

.use-card h3 { margin-bottom: 8px; }

.use-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Step card */
.step-card {
  padding: 32px 26px;
}

.step-number {
  display: inline-flex;
  font-family: "Fraunces", Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--rose);
  opacity: 0.85;
  margin-bottom: 16px;
}

.step-card h3 { margin-bottom: 8px; }

/* About panel */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-panel {
  padding: 12px 30px;
  background: var(--card);
}

.about-item {
  display: grid;
  gap: 3px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.about-item:last-child { border-bottom: none; }

.about-item strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

.about-item span {
  color: var(--muted);
  font-size: 15px;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-card {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-card.featured {
  border: 1.5px solid var(--rose);
  box-shadow: var(--shadow);
}

.pricing-card .pill {
  align-self: flex-start;
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  margin-bottom: 6px;
}

.pricing-card h3 { margin: 0; }

.price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 2px;
}

.pricing-card > .muted { font-size: 14px; }

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 12px;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 15px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--blush);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a8466b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card .btn { margin-top: auto; width: 100%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial {
  padding: 34px 30px;
}

.testimonial .stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.testimonial div {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial strong {
  font-weight: 700;
  font-size: 15px;
}

.testimonial span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13.5px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  width: 100%;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover { border-color: var(--rose-soft); }

.faq-item.active {
  border-color: var(--rose);
  box-shadow: var(--shadow-sm);
}

.faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-deep);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-panel {
  padding: 4px 24px 20px;
  color: var(--ink-soft);
  display: none;
}

.faq-item.active + .faq-panel { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-card > div { display: grid; gap: 2px; }

.contact-card span.muted {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-card p { font-size: 16px; font-weight: 600; }

.contact-form {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line-strong);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(194, 93, 131, 0.14);
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .btn { width: 100%; margin-top: 4px; }

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  text-align: center;
}

.cta-band .container {
  padding: 84px 24px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.cta-band h2 { color: #fff; max-width: 640px; }

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  font-size: 18px;
}

.cta-band .btn {
  margin-top: 18px;
  background: #fff;
  color: var(--rose-deep);
  border-color: #fff;
}

.cta-band .btn:hover {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo { margin-bottom: 16px; }

.footer-logo .logo-text { color: #fff; }

.footer p { color: rgba(255, 255, 255, 0.6); max-width: 320px; }

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a { color: rgba(255, 255, 255, 0.72); font-weight: 600; }
.footer-links a:hover { color: #fff; }

.footer-links span.muted {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .nav-links,
  .nav-social { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .logo { justify-self: start; }
  .nav-toggle { display: flex; }

  .nav.open .nav-links {
    display: grid;
    gap: 4px;
    position: absolute;
    top: 70px;
    left: 5vw;
    right: 5vw;
    background: var(--card);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.open .nav-links a {
    border-left: none;
    justify-content: flex-start;
    padding: 13px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  .nav.open .nav-links a:hover { background: var(--blush); }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .contact-form { padding: 24px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .cta-band .container { padding: 60px 20px; }
}
