/* ===================== SECTIONS ===================== */

/* ---- Social proof bar ---- */
.proofbar { background: var(--ink); color: var(--paper); padding: 30px var(--pad); }
.proof-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px 6px; text-align: center;
}
.proof-stat .num {
  font-family: var(--font-display); font-size: clamp(30px, 9vw, 44px);
  line-height: 0.9; color: var(--accent);
}
.proof-stat .lbl {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,.62); margin-top: 7px;
}
.proof-socials {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
}
.social-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 9px 14px; border-radius: 100px; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px;
  transition: background .15s ease, transform .15s ease;
}
.social-chip:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.social-chip .count { color: rgba(255,255,255,.55); font-weight: 600; }

/* ---- About ---- */
.about__grid { display: grid; gap: 24px; }
.about__media { position: relative; }
.about__media image-slot, .about__img { width: 100%; height: 360px; object-fit: cover; border-radius: 16px; display: block; }
.about p { color: var(--ink-soft); margin: 0 0 16px; text-wrap: pretty; }
.about p strong { color: var(--ink); }
.signature {
  font-family: var(--font-display); font-size: 30px; color: var(--accent);
  margin-top: 8px; letter-spacing: 0.01em;
}
@media (min-width: 760px) {
  .about__grid { grid-template-columns: 0.85fr 1fr; align-items: center; gap: 40px; }
  .about__media image-slot, .about__img { height: 460px; }
}

/* ---- Services / Why ---- */
.services { background: var(--paper-2); }
.service-list { display: grid; gap: 14px; }
.service {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: transform .18s ease, box-shadow .18s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -22px rgba(23,18,15,.4); }
.service__no {
  font-family: var(--font-display); font-size: 26px; color: var(--accent);
  line-height: 1; width: 44px;
}
.service h3 { font-family: var(--font-head); font-weight: 800; font-size: 19px; margin: 0 0 6px; }
.service p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
@media (min-width: 700px) { .service-list { grid-template-columns: 1fr 1fr; } }

/* ---- New launches ---- */
.launch-row { display: grid; gap: 16px; align-items: stretch; }
.launch-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--paper-2); display: flex; flex-direction: column;
}
.launch-card image-slot, .launch-card__img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; border: none; border-bottom: 1px solid var(--line); display: block; }
.launch-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.launch-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.launch-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 20px; margin: 0; text-wrap: balance; }
.launch-meta { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.status-pill {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 100px; white-space: nowrap;
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent-ink);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.launch-card__foot {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
}
.launch-card__foot .psf { font-family: var(--font-head); font-weight: 800; font-size: 17px; }
.launch-card__foot .psf small { font-weight: 500; color: var(--ink-soft); font-size: 12px; }
@media (min-width: 760px) { .launch-row { grid-template-columns: repeat(3, 1fr); } }

/* ---- Home tours (vertical reels) ---- */
.tours { background: var(--ink); color: var(--paper); }
.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tour {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  aspect-ratio: 9 / 16; background: #000; cursor: pointer;
}
.tour video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour__loading {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em;
  color: rgba(255,255,255,.5);
}
.tour__mute {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.25);
  color: #fff; display: grid; place-items: center;
  backdrop-filter: blur(4px); transition: background .15s ease, transform .12s ease;
}
.tour__mute:hover { background: rgba(0,0,0,.75); }
.tour__mute:active { transform: scale(.92); }
.tour__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff;
  pointer-events: none;
}
.tour__label .meta { font-family: var(--font-mono); font-weight: 400; font-size: 10.5px; opacity: .7; margin-top: 3px; letter-spacing: .05em; }
@media (min-width: 760px) { .tour-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gallery-grid image-slot, .gallery-grid img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; border-radius: 12px; display: block; }
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

/* ---- Testimonials ---- */
.testimonials { background: var(--paper-2); }
.t-track { display: grid; gap: 16px; }
.t-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); display: flex; flex-direction: column; }
.t-stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 14px; }
.t-card blockquote { margin: 0 0 12px; font-size: 16px; line-height: 1.55; font-weight: 500; text-wrap: pretty; }
.t-card blockquote.is-clamped { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.t-more { background: none; border: 0; padding: 0; margin: 0 0 18px; align-self: flex-start; font-family: var(--font-head); font-weight: 800; font-size: 13px; color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.t-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-who image-slot { display: none; }
.t-who .nm { font-family: var(--font-head); font-weight: 800; font-size: 14px; }
.t-who .rl { font-size: 12.5px; color: var(--ink-soft); }
@media (min-width: 760px) { .t-track { grid-template-columns: repeat(3, 1fr); align-items: start; } }

/* ---- Social links ---- */
.socials-big { display: grid; gap: 12px; }
.social-row {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2);
  transition: transform .15s ease, border-color .15s ease;
}
.social-row:hover { transform: translateY(-2px); border-color: var(--ink); }
.social-row .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: #fff; flex: none; }
.social-row .nm { font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.social-row .hd { font-size: 13px; color: var(--ink-soft); }
.social-row .go { margin-left: auto; color: var(--ink-soft); }

/* ---- Footer CTA ---- */
.footcta { background: var(--accent); color: #fff; text-align: center; }
.footcta .section-title { color: #fff; }
.footcta .btn--primary { background: #fff; color: var(--accent-deep); }
.footcta .btn--primary:hover { background: var(--ink); color: #fff; }
.footcta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.footcta .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.foot-bottom {
  background: var(--ink); color: rgba(255,255,255,.6); padding: 26px var(--pad);
  font-size: 13px; text-align: center;
}
.foot-bottom .brandmark { justify-content: center; color: #fff; margin-bottom: 10px; }
.foot-disc { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em; line-height: 1.7; margin-top: 14px; opacity: .6; }
