/* ============================================================
   QIANGMO — peach-flare light theme stylesheet
   Palette: cream-white #FBF6F2 · deep brown #4A2F22
            peach flare #E8875A · light apricot #F6D8C8
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4A2F22;
  background-color: #FBF6F2;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: #C96A3F; text-decoration: none; }
a:hover { color: #4A2F22; }

h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; color: #4A2F22; line-height: 1.2; margin: 0 0 16px 0; font-weight: 700; }

p { margin: 0 0 16px 0; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- KITE NAVIGATION ---------- */

.kite-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #FBF6F2;
  border-bottom: 3px solid #E8875A;
}

.kite-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kite-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #4A2F22;
  text-decoration: none;
}

.kite-brand span { color: #E8875A; }

.kite-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}

.kite-links li { display: flex; align-items: center; }

.kite-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4A2F22;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 4px 0;
  position: relative;
}

.kite-link:hover { color: #C96A3F; }

.kite-marker {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #E8875A;
  transform: rotate(45deg);
  position: relative;
  flex: none;
}

.kite-marker::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: #E8875A;
  transform: translateX(-50%);
}

.kite-links li.active .kite-link {
  box-shadow: inset 0 -3px 0 0 #E8875A;
}

.kite-links li.active .kite-link,
.kite-links li.active .kite-marker { background-color: #4A2F22; }

.kite-links li.active .kite-marker::after { background-color: #4A2F22; }

.kite-toggle {
  display: none;
  background: none;
  border: 2px solid #E8875A;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.kite-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background-color: #4A2F22;
  border-radius: 3px;
  transition: transform 0.25s ease;
}

.kite-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.kite-toggle.open span:nth-child(2) { transform: scaleX(0); }
.kite-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- FIREWORK HERO ---------- */

.firework-hero {
  background-color: #FBF6F2;
  border-bottom: 3px solid #F6D8C8;
  position: relative;
}

.firework-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-copy { flex: 1 1 auto; max-width: 720px; }

.eyebrow-chip {
  display: inline-block;
  background-color: #E8875A;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 26px;
}

.hero-title {
  font-size: 56px;
  font-size: clamp(40px, 5.2vw, 60px);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: italic;
  color: #E8875A;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.8;
  color: #6B4A36;
  margin-bottom: 34px;
  max-width: 640px;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  padding: 15px 34px;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

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

.btn-primary { background-color: #E8875A; color: #FFFFFF; border: 2px solid #E8875A; }
.btn-primary:hover { background-color: #C96A3F; border-color: #C96A3F; color: #FFFFFF; }

.btn-ghost { background-color: transparent; color: #4A2F22; border: 2px solid #4A2F22; }
.btn-ghost:hover { background-color: #4A2F22; color: #FBF6F2; }

.hero-art { flex: none; display: flex; align-items: center; justify-content: center; }

/* Firework burst graphic */
.firework-burst {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 40px;
}

.burst-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #4A2F22;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ray {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 8px;
  border-radius: 8px;
  transform-origin: left center;
  transform: translate(9px, -4px) rotate(0deg);
}

.ray-apricot { background-color: #F6D8C8; }
.ray-peach { background-color: #E8875A; }

.ray-r2 { transform: translate(9px, -4px) rotate(60deg); }
.ray-r3 { transform: translate(9px, -4px) rotate(120deg); }
.ray-r4 { transform: translate(9px, -4px) rotate(180deg); }
.ray-r5 { transform: translate(9px, -4px) rotate(240deg); }
.ray-r6 { transform: translate(9px, -4px) rotate(300deg); }

/* ---------- SECTION HEADERS ---------- */

.section-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C96A3F;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 18px;
  color: #6B4A36;
  max-width: 760px;
}

/* ---------- SERVICE GRID ---------- */

.service-grid-section {
  background-color: #FFFFFF;
  border-top: 3px solid #F6D8C8;
  border-bottom: 3px solid #F6D8C8;
  padding: 96px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 52px;
}

.service-card {
  background-color: #FBF6F2;
  border-top: 5px solid #E8875A;
  padding: 40px 38px;
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -22px #E8875A;
}

.card-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
  color: #E8875A;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 16px;
  color: #5E402F;
  margin-bottom: 0;
}

/* ---------- METRIC STRIP ---------- */

.metric-strip {
  background-color: #FBF6F2;
  padding: 84px 0;
}

.metric-row {
  display: flex;
  align-items: stretch;
}

.metric-item {
  flex: 1 1 0;
  text-align: center;
  padding: 8px 28px;
  border-left: 1px solid #E8875A;
}

.metric-item:first-child { border-left: none; }

.metric-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  color: #E8875A;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4A2F22;
}

/* ---------- STATEMENT SPLIT ---------- */

.statement-section {
  background-color: #FFFFFF;
  border-top: 3px solid #F6D8C8;
  border-bottom: 3px solid #F6D8C8;
  padding: 96px 0;
}

.statement-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}

.statement-left {
  border-right: 2px solid #E8875A;
  padding-right: 64px;
  display: flex;
  align-items: flex-start;
}

.statement-headline {
  font-size: 40px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  margin: 0;
}

.statement-headline strong { color: #E8875A; }

.statement-right {
  padding-left: 64px;
}

.statement-right p {
  font-size: 17px;
  color: #5E402F;
  margin-bottom: 24px;
}

/* ---------- CTA BAND ---------- */

.cta-band {
  background-color: #E8875A;
  padding: 88px 0;
  text-align: center;
}

.cta-band h2 {
  color: #4A2F22;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-band p {
  color: #4A2F22;
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 36px;
}

.btn-dark {
  background-color: #4A2F22;
  color: #FFFFFF;
  border: 2px solid #4A2F22;
}

.btn-dark:hover { background-color: #2E1C12; border-color: #2E1C12; color: #FFFFFF; }

/* ---------- BAZAAR FOOTER ---------- */

.bazaar-footer {
  margin-top: 0;
}

.bazaar-top {
  background-color: #FBF6F2;
  border-top: 3px solid #F6D8C8;
  padding: 52px 0 46px;
}

.bazaar-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  align-items: start;
}

.bazaar-zone { padding: 0 34px; }
.bazaar-zone:first-child { padding-left: 0; }
.bazaar-zone:last-child { padding-right: 0; }

.bazaar-zone + .bazaar-zone { border-left: 1px solid #E8875A; }

.bazaar-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #4A2F22;
  margin: 0 0 10px 0;
  text-decoration: none;
}

.bazaar-wordmark span { color: #E8875A; }

.bazaar-company {
  font-size: 14px;
  color: #5E402F;
  line-height: 1.6;
  margin: 0;
  max-width: 260px;
}

.bazaar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bazaar-links a {
  color: #4A2F22;
  font-weight: 600;
  font-size: 15px;
}

.bazaar-links a:hover { color: #C96A3F; }

.bazaar-contact {
  font-size: 15px;
  color: #4A2F22;
  line-height: 1.9;
  margin: 0;
}

.bazaar-contact a { color: #4A2F22; font-weight: 600; }
.bazaar-contact a:hover { color: #C96A3F; }

.bazaar-bottom {
  background-color: #E8875A;
  padding: 18px 0;
  text-align: center;
}

.bazaar-bottom p {
  margin: 0;
  color: #4A2F22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.bazaar-bottom a { color: #4A2F22; text-decoration: underline; }
.bazaar-bottom a:hover { color: #FFFFFF; }

/* ---------- SUBPAGE (services / contact) ---------- */

.subpage-hero {
  background-color: #FBF6F2;
  border-bottom: 3px solid #F6D8C8;
  padding: 72px 0 76px;
}

.subpage-hero h1 {
  font-size: 46px;
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 18px;
  max-width: 840px;
}

.subpage-hero .hero-sub { margin-bottom: 0; }

.section-solid { background-color: #FBF6F2; padding: 96px 0; }
.section-plain { background-color: #FFFFFF; border-top: 3px solid #F6D8C8; border-bottom: 3px solid #F6D8C8; padding: 96px 0; }

/* Service detail blocks */
.service-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 44px;
  padding: 44px 0;
  border-bottom: 1px solid #F6D8C8;
}

.service-block:last-child { border-bottom: none; }

.service-block .block-index {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 700;
  color: #E8875A;
  line-height: 1;
}

.service-block h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-block p {
  font-size: 16px;
  color: #5E402F;
}

.service-block ul {
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
}

.service-block ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: #4A2F22;
}

.service-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  background-color: #E8875A;
  transform: rotate(45deg);
}

/* Process overview */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.process-step {
  background-color: #FBF6F2;
  border-top: 4px solid #E8875A;
  border-radius: 10px;
  padding: 30px 26px;
}

.process-step .step-num {
  display: inline-block;
  background-color: #E8875A;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.process-step h3 { font-size: 20px; margin-bottom: 10px; }
.process-step p { font-size: 15px; color: #5E402F; margin-bottom: 0; }

/* ---------- CONTACT PAGE ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2, .contact-panel h2 { font-size: 28px; }

.contact-block {
  margin-bottom: 28px;
  padding-left: 0;
}

.contact-block h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C96A3F;
  margin-bottom: 8px;
}

.contact-block p { color: #4A2F22; font-size: 17px; margin-bottom: 4px; }
.contact-block a { color: #4A2F22; font-weight: 600; }
.contact-block a:hover { color: #C96A3F; }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { padding: 6px 0; color: #4A2F22; font-size: 16px; border-bottom: 1px dashed #F6D8C8; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span { font-weight: 700; }

.contact-panel {
  background-color: #FFFFFF;
  border: 3px solid #F6D8C8;
  border-top: 5px solid #E8875A;
  border-radius: 14px;
  padding: 40px 38px;
}

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

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #4A2F22;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 2px solid #E8D6C6;
  border-radius: 10px;
  background-color: #FBF6F2;
  color: #4A2F22;
  font-family: inherit;
  font-size: 16px;
  padding: 13px 16px;
  transition: border-color 0.15s ease;
}

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

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

.form-submit { margin-top: 6px; border: none; }

.form-status {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #4A2F22;
  min-height: 22px;
}

/* FAQ accordion */
.faq-list { margin-top: 40px; }

.faq-item {
  background-color: #FBF6F2;
  border: 2px solid #F6D8C8;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #4A2F22;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  color: #E8875A;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p { padding: 0 24px 22px; margin: 0; font-size: 16px; color: #5E402F; }

/* ---------- REVEAL ANIMATION ---------- */

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

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

/* ---------- RESPONSIVE ---------- */

@media (max-width: 980px) {
  .firework-hero-inner { flex-direction: column; padding: 64px 24px; }
  .hero-copy { max-width: 100%; }
  .hero-art { order: -1; }
  .firework-burst { width: 190px; height: 190px; margin: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .statement-split { grid-template-columns: 1fr; gap: 48px; }
  .statement-left { border-right: none; border-bottom: 2px solid #E8875A; padding: 0 0 40px; }
  .statement-right { padding: 0; }
  .metric-row { flex-wrap: wrap; }
  .metric-item { flex: 1 1 45%; border-left: none; padding: 24px 12px; }
  .metric-item:nth-child(odd) { border-right: 1px solid #E8875A; }
  .bazaar-grid { grid-template-columns: 1fr; gap: 34px; }
  .bazaar-zone { padding: 0; border: none !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 18px; }
  .cta-band h2 { font-size: 32px; }
}

@media (max-width: 680px) {
  .kite-toggle { display: flex; }
  .kite-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: #FBF6F2;
    border-bottom: 3px solid #E8875A;
    padding: 10px 24px 22px;
    gap: 4px;
    display: none;
  }
  .kite-links.open { display: flex; }
  .kite-links li { display: flex; }
  .kite-links li.active .kite-link { box-shadow: inset 3px 0 0 0 #E8875A; }
  .kite-link { padding: 12px 0; width: 100%; font-size: 17px; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 17px; }
  .process-grid { grid-template-columns: 1fr; }
  .metric-item { flex: 1 1 100%; border-right: none !important; }
  .metric-num { font-size: 44px; }
  .contact-panel { padding: 28px 22px; }
  .bazaar-links { gap: 12px 20px; }
  .section-title { font-size: 30px; }
}

/* Small safety: JS-free reveal */
