* { box-sizing: border-box; }

:root{
  /* Keep your current calming background */
  --bg: #8c86c9;

  /* Surfaces */
  --panel: rgba(245,244,252,0.94);
  --card: rgba(240,239,250,0.82);

  /* Text system */
  --ink: #1f2a44;                 /* main dark text */
  --muted: rgba(31,42,68,0.72);   /* supporting text */
  --white: #ffffff;               /* hero/header text */
  --accent: #2e3fd1;              /* links + action */

  /* Lines + shadows */
  --hairline: rgba(255,255,255,0.18);
  --border: rgba(31,42,68,0.10);
  --shadow: 0 10px 26px rgba(31,42,68,0.14);
}

html, body { height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.75;
  background: var(--bg);
  color: var(--ink);
}

/* Global links: never browser-blue */
a{
  color: var(--accent);
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(140,134,201,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.20);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--white);
}

.brand-photo{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.55);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.brand-text h1{
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--white);
}

.tagline{
  margin: 4px 0 0 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}

.nav a{
  color: rgba(255,255,255,0.96);
  font-weight: 650;
  font-size: 1.05rem;
  margin-left: 18px;
}
.nav a:hover{ text-decoration: underline; }

/* =========================
   HERO
========================= */

.hero{
  padding: 64px 0 42px 0;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.hero-left .friendly-line{
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}

.hero h2{
  margin: 0 0 18px 0;
  font-size: clamp(2.6rem, 3.6vw, 3.4rem);
  line-height: 1.12;
  font-weight: 850;
  color: var(--white);
}

.hero-sub{
  margin: 0 0 22px 0;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.92);
  max-width: 58ch;
}

.cta-row{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
}

.btn{
  display: inline-block;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.14);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
}
.btn:hover{ filter: brightness(1.05); text-decoration: none; }

.btn.primary{
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border-color: rgba(255,255,255,0.55);
}

.micro-note{
  margin: 16px 0 0 0;
  font-size: 1.03rem;
  color: rgba(255,255,255,0.90);
}

/* =========================
   RIGHT PANEL (QUICK PICK)
========================= */

.panel{
  background: var(--panel);
  border: 1px solid rgba(31,42,68,0.10);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.panel-title{
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}

.panel-sub{
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px 0;
}

.chip{
  display: inline-block;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(140,134,201,0.14);
  border: 1px solid rgba(140,134,201,0.28);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
}
.chip:hover{ filter: brightness(1.03); text-decoration: none; }

.mini-cards{
  display: grid;
  gap: 12px;
}

.mini-card{
  background: var(--card);
  border: 1px solid rgba(31,42,68,0.08);
  border-radius: 14px;
  padding: 14px;
}

.mini-card h4{
  margin: 0 0 8px 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink);
}

.mini-card p{
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
}

.panel-cta{
  display: inline-block;
  margin-top: 14px;
  font-weight: 850;
  color: var(--accent);
}

/* =========================
   SECTIONS
========================= */

.section{
  padding: 46px 0;
}

.section .container{
  background: var(--panel);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(31,42,68,0.10);
  box-shadow: 0 10px 26px rgba(31,42,68,0.10);
}

.section.alt .container{
  background: rgba(245,244,252,0.90);
}

.section-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.section-head h3{
  margin: 0;
  font-size: 1.7rem;
  font-weight: 850;
  color: var(--ink);
}

.section-sub{
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
  color: var(--muted);
}

/* Grids */

.grid-occasions,
.grid-vibes,
.cards,
.steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tile,
.card,
.step{
  background: var(--card);
  border: 1px solid rgba(31,42,68,0.08);
  border-radius: 16px;
  padding: 18px;
}

.tile h4,
.card h4,
.step h4{
  margin: 0 0 10px 0;
  font-size: 1.18rem;
  font-weight: 850;
  color: var(--ink);
}

.tile p,
.card p,
.step p{
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.card-hook{
  margin: 0 0 12px 0;
  color: var(--muted);
}

/* Lists */
.clean-list{
  margin: 0 0 12px 0;
  padding-left: 18px;
  color: var(--muted);
}
.clean-list li{ margin-bottom: 8px; }
.clean-list strong{ color: var(--ink); }

.card-link{
  font-weight: 850;
  color: var(--accent);
}

/* Callout */

.callout{
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(140,134,201,0.14);
  border: 1px solid rgba(140,134,201,0.22);
  color: var(--ink);
}
.callout strong{ color: var(--ink); }

/* Final CTA container */
.final-cta{
  text-align: center;
}
.final-cta h3{
  margin: 0 0 10px 0;
  font-size: 1.7rem;
  font-weight: 850;
  color: var(--ink);
}
.final-cta p{
  margin: 0 0 16px 0;
  color: var(--muted);
}

/* =========================
   FOOTER
========================= */

.site-footer{
  padding: 30px 0 46px 0;
  color: rgba(255,255,255,0.92);
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-note{
  margin: 0;
  color: rgba(255,255,255,0.88);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-occasions,
  .grid-vibes,
  .cards,
  .steps{ grid-template-columns: 1fr; }

  .nav a{ margin-left: 12px; }
}
.preview-btn{
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:#ffffff;
  cursor:pointer;
  font-size:16px;
}

.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:none;
  align-items:center;
  justify-content:center;
}

.modal-dialog{
  background:#ffffff;
  padding:24px;
  border-radius:18px;
  max-width:500px;
  width:90%;
}

.modal-close{
  float:right;
  background:none;
  border:none;
  font-size:18px;
  cursor:pointer;
}


#testimonials .preview-btn{
  background:#ffffff;
  color:#1f2a44;
}
/* Narrow testimonial container */
.wrap.narrow{
  max-width: 900px;
  margin: 0 auto;
}

/* Improve testimonial card layout */
#testimonials .quotes{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

#testimonials .quote{
  background: rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(31,42,68,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(6px);
}

#testimonials blockquote{
  font-size: 19px;
  line-height: 1.7;
}

#testimonials figcaption{
  margin-top: 14px;
  font-weight: 600;
}

#testimonials .preview-btn{
  margin-top: 16px;
}


/* Fix ultra-narrow testimonial columns */

#testimonials .quotes{
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
  align-items: start;
}

#testimonials .quote{
  width: 100%;
  min-width: 340px;
}

#testimonials blockquote{
  text-align: left;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}



/* Dark testimonial text for better contrast */
#testimonials h3,
#testimonials .section-sub,
#testimonials blockquote,
#testimonials figcaption {
  color: var(--ink);
}


/* Order form improvements */

#order input,
#order select,
#order textarea{
  width: 100%;
  max-width: 520px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(31,42,68,0.25);
  font-size: 16px;
}

#order textarea{
  min-height: 120px;
  resize: vertical;
}

#order label{
  display:block;
  margin-top:16px;
  font-weight:600;
}
/* Luxurious, spacious order form */

#order .container{
  padding: 44px;
}

#order form{
  max-width: 860px;
  margin: 0 auto;
}

#order label{
  display:block;
  margin: 18px 0 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

#order input,
#order select,
#order textarea{
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(31,42,68,0.22);
  font-size: 18px;
  background: #ffffff;
}

#order textarea{
  min-height: 170px;
  line-height: 1.5;
}

#order button,
#order .btn,
#order input[type="submit"]{
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
}
/* FORCE full-width luxury order form */

#order .container{
  padding: 60px !important;
}

#order form{
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

#order input,
#order select,
#order textarea{
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  font-size: 18px;
}

#order textarea{
  min-height: 220px;
}

#order button,
#order input[type="submit"]{
  margin-top: 28px;
  padding: 18px 28px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
}
/* Force form rows to stack and stretch */

#order form p,
#order form div,
#order form label{
  display: block;
  width: 100%;
}

#order input,
#order select,
#order textarea{
  display: block;
  width: 100%;
  max-width: 100%;
}
/* Make form fields full-width even when nested inside labels */

#order label{
  display:block !important;
  width: 100% !important;
}

#order label input,
#order label select,
#order label textarea{
  display:block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin-top: 10px;
}

#order input,
#order select,
#order textarea{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
/* Luxury form grid layout */

#request .form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

#request .field{
  display: flex;
  flex-direction: column;
}

#request .field.full{
  grid-column: 1 / -1;
}

#request input,
#request select,
#request textarea{
  width: 100%;
}