
*, *::before, *::after { box-sizing: border-box; }
:root {
  --c-purple: #5b21b6;
  --c-purple-deep: #4c1d95;
  --c-purple-light: #a78bfa;
  --c-yellow: #facc15;
  --c-yellow-soft: #fde68a;
  --c-bg: #faf5ff;
  --c-card: #ffffff;
  --c-text: #1e1b4b;
  --c-muted: #6b7280;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 4px 20px rgba(91, 33, 182, 0.08);
  --shadow-card: 0 8px 32px rgba(91, 33, 182, 0.10);
}
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem; line-height: 1.7; color: var(--c-text); background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; letter-spacing: -0.015em; line-height: 1.25;
  color: var(--c-text);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-purple); text-decoration: none; }
a:hover { text-decoration: underline; }

.shell { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* === FLOATING GLASSMORPHIC HEADER === */
.site-header {
  position: sticky; top: 16px; z-index: 50;
  max-width: 1100px; margin: 16px auto 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(91, 33, 182, 0.10);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.logo-pill {
  display: inline-flex; align-items: center;
  background: #fff; border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 2px 8px rgba(91, 33, 182, 0.08);
}
.logo-pill img { display: block; max-height: 44px; width: auto; height: auto; }
.site-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: var(--c-text);
  padding: 8px 16px; border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--c-purple); color: #fff; text-decoration: none;
}
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  background: var(--c-yellow); color: var(--c-purple-deep) !important;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none !important; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
}
.phone-pill:hover { background: #eab308; transform: translateY(-1px); }

/* === HERO BENTO GRID === */
.hero {
  padding: 36px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.hero-main {
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-main::before {
  content: ""; position: absolute;
  top: -60px; right: -60px; width: 220px; height: 220px;
  background: var(--c-purple-light); opacity: 0.25;
  border-radius: 50%;
}
.hero-main h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  margin: 0 0 18px; font-weight: 700;
  position: relative; z-index: 1;
}
.hero-main .lead {
  font-size: 1.02rem; line-height: 1.75; margin: 0;
  color: #ede9fe; position: relative; z-index: 1;
}
.hero-cta {
  background: var(--c-yellow);
  color: var(--c-purple-deep);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.hero-cta::before {
  content: ""; position: absolute;
  bottom: -50px; left: -50px; width: 160px; height: 160px;
  background: #fde047; border-radius: 50%; opacity: 0.5;
}
.hero-cta .cta-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 10px; opacity: 0.85;
  position: relative; z-index: 1;
}
.hero-cta .cta-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  margin-bottom: 14px; line-height: 1.15;
  position: relative; z-index: 1;
}
.hero-cta .cta-phone {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background: var(--c-purple-deep); color: #fff !important;
  font-weight: 700; font-size: 1.05rem;
  padding: 14px 22px; border-radius: 999px;
  text-decoration: none !important;
  position: relative; z-index: 1;
  box-shadow: 0 4px 14px rgba(76, 29, 149, 0.3);
}
.hero-cta .cta-phone:hover { background: #3b0764; }

.hero-image-card {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.hero-image-card img {
  width: 100%; max-height: 460px; object-fit: cover;
  display: block;
}

/* === ARTICLE BENTO === */
.article { padding: 28px 0 40px; }
.article-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}
.bento-card {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(167, 139, 250, 0.12);
}
.bento-card.full { grid-column: 1 / -1; }
.bento-card h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0 0 14px;
  color: var(--c-purple-deep);
}
.bento-card h2::before {
  content: ""; display: inline-block;
  width: 8px; height: 24px;
  background: var(--c-yellow);
  border-radius: 4px;
  margin-right: 12px;
  vertical-align: -4px;
}
.bento-card p {
  font-size: 1rem; line-height: 1.78; margin: 0 0 14px;
  color: var(--c-text);
}
.bento-card p:last-child { margin-bottom: 0; }
.bento-card p a { color: var(--c-purple); font-weight: 700; border-bottom: 2px solid var(--c-yellow); }
.bento-card p a:hover { color: var(--c-purple-deep); text-decoration: none; }

.bento-card.image-card {
  padding: 0; overflow: hidden;
  display: flex; align-items: stretch;
}
.bento-card.image-card img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover; display: block;
}

/* List bento (2x3 grid) */
.list-section { margin-top: 20px; }
.list-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0 0 18px; color: var(--c-purple-deep);
  padding: 0 8px;
}
.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.list-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(167, 139, 250, 0.12);
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.14);
}
.list-num {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-yellow); color: var(--c-purple-deep);
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 0.85rem;
  min-width: 36px; height: 36px;
  border-radius: 999px; padding: 0 10px;
}
.list-text { font-size: 0.96rem; line-height: 1.6; color: var(--c-text); }

.bento-card.closing {
  background: var(--c-yellow);
  color: var(--c-purple-deep);
  border: none;
  box-shadow: 0 8px 32px rgba(250, 204, 21, 0.35);
}
.bento-card.closing h2 { color: var(--c-purple-deep); }
.bento-card.closing h2::before { background: var(--c-purple-deep); }
.bento-card.closing p { color: var(--c-purple-deep); }
.bento-card.closing a { color: var(--c-purple-deep); border-bottom-color: var(--c-purple-deep); }

/* === MAP === */
.map-section { padding: 12px 0 48px; }
.map-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(167, 139, 250, 0.12);
}
.map-card iframe { width: 100%; height: 420px; border: 0; display: block; }

/* === FOOTER === */
.site-footer {
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-deep) 100%);
  color: #ede9fe;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding: 48px 0 24px;
  margin-top: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.footer-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  backdrop-filter: blur(8px);
}
.footer-card h3 {
  font-family: 'Poppins', sans-serif;
  color: #fff; font-size: 1.05rem; margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.footer-card p { margin: 5px 0; line-height: 1.6; font-size: 0.95rem; color: #ddd6fe; }
.footer-card a { color: var(--c-yellow); }
.footer-card a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center; font-size: 0.85rem; color: #c4b5fd;
}

/* === RESPONSIVE === */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .list-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-main { padding: 32px 28px; }
  .bento-card { padding: 26px; }
  .bento-card.image-card img { min-height: 220px; }
}
@media (max-width: 560px) {
  .site-header { top: 8px; margin: 8px 12px 0; padding: 8px 10px; }
  .header-inner { gap: 8px; }
  .logo-pill img { max-height: 36px; }
  .site-nav { width: 100%; order: 3; gap: 4px; justify-content: center; }
  .site-nav a { font-size: 0.82rem; padding: 6px 12px; }
  .phone-pill { padding: 8px 14px; font-size: 0.88rem; }
  .list-grid { grid-template-columns: 1fr; }
  .map-card iframe { height: 320px; }
  .site-footer { border-top-left-radius: 24px; border-top-right-radius: 24px; padding: 36px 0 20px; }
}
