:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #1c2330;
  --muted: #58647a;
  --purple: #FC50B5;
  --purple-strong: #d9308e;
  --green: #00a261;
  --green-strong: #007a49;
  --border: #dce2ea;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #f0e2f8 0%, var(--bg) 30%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--purple);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  border-radius: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  padding: 3px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: #FC50B5;
  font-weight: 800;
}

.brand-text span {
  font-size: 0.78rem;
  color: #5C7E6A;
  font-style: italic;
}

.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--purple);
}

.nav-cta {
  background: var(--purple);
  color: #fff !important;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
}

.lang-link {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  color: var(--purple) !important;
  font-weight: 700;
}

.lang-link:hover,
.lang-link:focus-visible {
  border-color: var(--purple);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.45rem 0.7rem;
  font-weight: 600;
}

.hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0.4rem;
}

h2 {
  color: var(--purple);
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 0.6rem;
  color: #FC50B5;
}

.hero-copy h1 {
  color: #5C7E6A;
  font-style: italic;
}

.lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 55ch;
}

.hero-copy .lead em {
  color: #FC50B5;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.btn {
  padding: 0.7rem 1.1rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-primary {
  background: #FC50B5;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.05);
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--purple);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--purple);
}

.highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.highlights li {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.92rem;
}

.hero-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  aspect-ratio: 12 / 11;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, #ddf5ec, #f2e4fa);
}

.hero-card-content {
  padding: 1rem 1.1rem 1.3rem;
}

.hero-quick-info {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-quick-info li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.hero-quick-info svg {
  color: var(--purple);
  flex-shrink: 0;
}

.hero-card-cta {
  width: 100%;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.24;
  z-index: -1;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: var(--purple);
  top: -80px;
  right: -60px;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: var(--green);
  bottom: -60px;
  left: -70px;
}

.section {
  padding: 3.5rem 0;
}

.section-soft {
  background: linear-gradient(to bottom, rgba(125, 44, 156, 0.06), rgba(0, 162, 97, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ===================== About Section ===================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.14);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.about-photo-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: #FC50B5;
  color: #fff;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
  line-height: 1.2;
}

.about-badge-num {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-copy h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.about-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
  line-height: 1.7;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.about-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.9rem 0.85rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-pillar svg {
  color: var(--purple);
  flex-shrink: 0;
}

.about-pillar strong {
  font-size: 0.88rem;
  line-height: 1.3;
  display: block;
}

.about-pillar p {
  font-size: 0.81rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.about-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(135deg, rgba(125, 44, 156, 0.07), rgba(0, 162, 97, 0.06));
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

.about-info-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.about-info-item svg {
  color: var(--purple);
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

.two-col,
.location-grid,
.hiring-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.panel-accent {
  background: linear-gradient(180deg, #fff, #f9fbff);
  border-top: 4px solid var(--green);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.section-head {
  margin-bottom: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  margin: 0;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: scale-down;
}

.gallery-item figcaption {
  padding: 0.6rem 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hiring-poster {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.hiring-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  background: linear-gradient(135deg, #fce4f5, #e7e9ff);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.contact-wrap {
  text-align: center;
}

.contact-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  text-align: left;
}

.contact-icon {
  flex-shrink: 0;
  color: var(--purple);
  display: flex;
  align-items: center;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-item .label {
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-item .value {
  font-weight: 700;
  color: var(--purple-strong);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.footer-wrap a {
  color: var(--purple);
  font-weight: 600;
}

/* ===================== Floating Back-to-Top ===================== */

.back-to-top {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FC50B5;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(125, 44, 156, 0.38);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  filter: brightness(1.12);
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .location-grid,
  .hiring-layout {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    width: min(260px, 92vw);
    padding: 0.8rem;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.45rem;
  }

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

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

/* ===================== Grand Opening Banner ===================== */

.go-banner {
  display: none; /* Hidden by default — remove this line to re-enable for promos/events */
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #080010 0%, #250025 40%, #FF00EE 65%, #00200f 100%);
  color: #fff;
}

/* Marquee ribbon */
.go-ribbon {
  background: linear-gradient(90deg, #b87a00, #f0c830, #d49500, #f0c830, #b87a00);
  color: #000000;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.38rem 0;
}

.go-ribbon-track {
  display: inline-block;
  white-space: nowrap;
  animation: go-marquee 20s linear infinite;
}

@keyframes go-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Main body */
.go-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.2rem 0 2.6rem;
  position: relative;
  z-index: 1;
}

.go-poster {
  width: clamp(130px, 18vw, 230px);
  border-radius: 1rem;
  box-shadow: 0 10px 48px rgba(0, 0, 0, 0.5);
  animation: go-float 4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes go-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-10px) rotate(1.5deg); }
}

.go-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5d050;
  margin: 0 0 0.45rem;
}

.go-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  margin: 0 0 0.45rem;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5d050;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.5);
}

.go-date {
  font-size: 1.05rem;
  font-weight: 600;
  color: #b6f5d8;
  margin: 0 0 1.4rem;
  opacity: 0.95;
}

/* Countdown */
.go-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.go-unit {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.7rem;
  padding: 0.5rem 0.9rem;
  min-width: 66px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.go-num {
  font-size: 2.1rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.go-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-top: 0.2rem;
}

.go-sep {
  font-size: 2rem;
  font-weight: 900;
  opacity: 0.4;
  align-self: flex-start;
  padding-top: 0.35rem;
  line-height: 1;
}

/* CTA button */
.go-cta {
  background: linear-gradient(135deg, #f5d050, #e09000);
  color: #1e0630 !important;
  border-color: transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.go-cta:hover,
.go-cta:focus-visible {
  filter: brightness(1.08);
}

/* Close button */
.go-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.go-close:hover,
.go-close:focus-visible {
  background: rgba(255, 255, 255, 0.25);
}

/* Sparkle particles */
.go-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.go-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5d050;
  opacity: 0;
  animation: go-twinkle 3.2s ease-in-out infinite;
}

.go-spark:nth-child(1) { top: 14%; left:  8%; animation-delay: 0s;    background: #f5d050; }
.go-spark:nth-child(2) { top: 68%; left: 11%; animation-delay: 0.6s;  background: #b6f5d8; width: 5px; height: 5px; }
.go-spark:nth-child(3) { top: 22%; left: 55%; animation-delay: 1.1s;  background: #fff;    width: 9px; height: 9px; }
.go-spark:nth-child(4) { top: 78%; left: 72%; animation-delay: 1.7s;  background: #f5d050; }
.go-spark:nth-child(5) { top:  9%; left: 88%; animation-delay: 0.8s;  background: #b6f5d8; width: 5px; height: 5px; }
.go-spark:nth-child(6) { top: 55%; left: 95%; animation-delay: 2.2s;  background: #fff;    }

@keyframes go-twinkle {
  0%, 100% { opacity: 0;    transform: scale(0.4); }
  50%       { opacity: 0.9; transform: scale(1.5); }
}

@media (max-width: 760px) {
  .go-body {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.2rem;
    padding: 1.6rem 0 2rem;
  }

  .go-poster {
    margin: 0 auto;
    width: clamp(130px, 55vw, 190px);
  }

  .go-countdown {
    justify-content: center;
  }

  .go-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== UBAD Carousel ===================== */

.ubad-carousel {
  position: relative;
  overflow: hidden;
  background: #1a0530;
  aspect-ratio: 21 / 6;
  user-select: none;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  width: 100%;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 10;
  padding: 0;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(0, 0, 0, 0.6);
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.carousel-prev { left: 0.9rem; }
.carousel-next { right: 0.9rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

@media (max-width: 760px) {
  .ubad-carousel {
    aspect-ratio: 21 / 9;
  }
}

@media (max-width: 400px) {
  .carousel-btn {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }
}

.ubad-carousel.is-empty {
  display: none;
}

/* ===================== Google Review Section ===================== */

.review-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.review-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-copy h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.review-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
  line-height: 1.7;
}

.review-stars {
  color: #fbbc04;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.review-qr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.review-qr-card img {
  width: 220px;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}

.review-qr-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

.review-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.38rem 0.9rem 0.38rem 0.5rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.07);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  width: fit-content;
}

@media (max-width: 760px) {
  .review-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .review-lead {
    max-width: 100%;
  }

  .review-qr-card {
    margin: 0 auto;
    max-width: 220px;
  }
}

/* ===================== Team Section ===================== */

.team-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.team-group-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 1.1rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.team-group-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--purple);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 320px;
  gap: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.13);
}

.team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  background: linear-gradient(135deg, #f2e4fa, #ddf5ec);
  flex-shrink: 0;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}


.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.team-nick {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}

.team-name {
  font-weight: 500;
  font-size: 0.76rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.3;
}

.team-role {
  font-size: 0.76rem;
  color: var(--purple);
  font-weight: 600;
  margin: 0;
}

.team-quote {
  font-size: 0.78rem;
  font-style: italic;
  color: #5C7E6A;
  margin: 0.4rem 0 0;
  line-height: 1.45;
}

.team-quote::before { content: '\201C'; }
.team-quote::after  { content: '\201D'; }

@media (max-width: 760px) {
  .team-grid {
    flex-direction: column;
  }

  .team-card {
    width: 100%;
    flex-direction: row;
    text-align: left;
    padding: 1.2rem;
    gap: 1.2rem;
  }

  .team-avatar {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
  }

  .team-info {
    justify-content: center;
  }
}
