    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      flex-direction: column;
    }
    .home .site-header{
      border:0px;
    }
    .home .site-header.scrolled{
      border-bottom: 3px solid #d33367;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 0;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1360px;
      margin: 0 auto;
      padding: 100px 28px 80px;
      width: 100%;
    }

    .hero-content {
      max-width: 680px;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(211, 51, 103, 0.2);
      border: 1px solid rgba(211, 51, 103, 0.3);
      border-radius: var(--radius-full);
      color: var(--magenta-200);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 24px;
      backdrop-filter: blur(4px);
    }

    .hero-label span {
      width: 6px;
      height: 6px;
      background: var(--magenta-400);
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(42px, 5.5vw, 68px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    .hero-title em {
      font-style: normal;
      color: var(--magenta-400);
    }

    .hero-subtitle {
      font-size: 18px;
      color: rgba(255,255,255,0.8);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-stats-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: rgba(0,0,0,0.35);
      backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .hero-stats-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      justify-content: center;
      gap: 0;
    }

    .hero-stat {
      flex: 1;
      max-width: 280px;
      text-align: center;
      padding: 24px 20px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .hero-stat:last-child { border-right: none; }

    .hero-stat-value {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 800;
      color: var(--magenta-400);
      margin-bottom: 2px;
    }

    .hero-stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    /* ===== SECTION COMMON ===== */
    .section { padding: 96px 28px; }
    .section-alt { background: var(--light-50); }

    .section-inner {
      max-width: 1360px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 56px;
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--magenta-500);
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 800;
      color: var(--black);
      letter-spacing: -0.5px;
      margin-bottom: 12px;
      line-height: 1.15;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--dark-text-secondary);
      line-height: 1.6;
    }

    /* ===== HOW IT WORKS ===== */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 44px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--magenta-100), var(--magenta-300), var(--magenta-100));
      z-index: 0;
    }

    .step-card {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-number {
      width: 64px;
      height: 64px;
      background: var(--white);
      border: 3px solid var(--magenta-500);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 800;
      color: var(--magenta-500);
      margin: 0 auto 20px;
      box-shadow: 0 4px 16px rgba(211, 51, 103, 0.15);
    }

    .step-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 14px;
      color: var(--dark-text-secondary);
      line-height: 1.5;
      max-width: 240px;
      margin: 0 auto;
    }

    /* ===== ABOUT / FEATURES ===== */
    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-image {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      box-shadow: var(--shadow-lg);
    }

    .about-image-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      padding: 12px 20px;
      background: var(--magenta-500);
      color: var(--white);
      border-radius: var(--radius-md);
      font-weight: 700;
      font-size: 14px;
      box-shadow: var(--shadow-md);
    }

    .about-content .section-label { text-align: left; }
    .about-content .section-title { text-align: left; }

    .about-text {
      font-size: 16px;
      color: var(--dark-text-secondary);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 36px;
    }

    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--light-50);
      border-radius: var(--radius-md);
      border: 1px solid var(--light-200);
    }

    .about-feature-icon {
      width: 40px;
      height: 40px;
      background: var(--magenta-100);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about-feature-icon svg { width: 20px; height: 20px; color: var(--magenta-500); }

    .about-feature h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 2px;
    }

    .about-feature p {
      font-size: 13px;
      color: var(--dark-text-secondary);
    }

    /* ===== PRICING ===== */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .pricing-card {
      background: var(--white);
      border: 1px solid var(--light-300);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--magenta-300);
    }

    .pricing-card.featured {
      border-color: var(--magenta-500);
      box-shadow: 0 8px 40px rgba(211, 51, 103, 0.15);
    }

    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: 16px;
      right: -32px;
      background: var(--magenta-500);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 6px 40px;
      transform: rotate(45deg);
    }

    .pricing-icon {
      width: 56px;
      height: 56px;
      background: var(--magenta-100);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .pricing-icon svg { width: 26px; height: 26px; color: var(--magenta-500); }

    .pricing-card h3 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 8px;
    }

    .pricing-card .price {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 800;
      color: var(--magenta-500);
      margin-bottom: 4px;
    }

    .pricing-card .price small {
      font-size: 16px;
      font-weight: 500;
      color: var(--light-600);
    }

    .pricing-card .price-note {
      font-size: 13px;
      color: var(--light-600);
      margin-bottom: 20px;
    }

    .pricing-features {
      list-style: none;
      text-align: left;
      margin-bottom: 28px;
      margin: 0;
    }

    .pricing-features li {
      padding: 8px 0;
      font-size: 14px;
      color: var(--dark-text-secondary);
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--light-200);
    }

    .pricing-features li:last-child { border-bottom: none; }

    .pricing-features li svg { width: 16px; height: 16px; color: var(--magenta-500); flex-shrink: 0; }

    /* ===== SERVICES GRID ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .service-home-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: transform var(--transition), box-shadow var(--transition);
      display: flex;
      flex-direction: column;
    }

    .service-home-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .service-home-img {
      height: 300px;
      background-size: cover;
      background-position: center;
    }

    .service-home-body {
      padding: 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .service-home-footer {
      margin-top: auto;
      padding-top: 16px;
    }

    .service-home-icon {
      width: 48px;
      height: 48px;
      background: var(--magenta-100);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .service-home-icon svg {
      width: 24px;
      height: 24px;
      color: var(--magenta-500);
    }

    .service-home-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 8px;
    }

    .service-home-desc {
      font-size: 14px;
      color: var(--dark-text-secondary);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .service-home-price {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: var(--magenta-500);
      margin-bottom: 20px;
    }

    .service-home-price small {
      font-size: 14px;
      font-weight: 500;
      color: var(--dark-text-secondary);
    }

    .service-home-additional {
      margin-bottom: 12px;
      padding: 10px 14px;
      background: var(--magenta-100);
      border-left: 3px solid var(--magenta-500);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-size: 0.82rem;
      color: var(--dark-text-secondary);
      line-height: 1.5;
      white-space: pre-line;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--light-200);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: all var(--transition);
    }

    .testimonial-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }

    .testimonial-stars svg { width: 18px; height: 18px; fill: #fbbf24; color: #fbbf24; }

    .testimonial-text {
      font-size: 15px;
      color: var(--dark-text-secondary);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--magenta-300), var(--magenta-500));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 16px;
    }

    .testimonial-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
    }

    .testimonial-role {
      font-size: 12px;
      color: var(--light-600);
    }

    /* ===== EVENTS ===== */
    .events-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .event-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 16/10;
      cursor: pointer;
      transition: all var(--transition);
    }

    .event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

    .event-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
    }

    .event-card:hover .event-card-bg { transform: scale(1.05); }

    .event-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
    }

    .event-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px;
      z-index: 1;
    }

    .event-card-tag {
      display: inline-block;
      padding: 4px 12px;
      background: var(--magenta-500);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: var(--radius-full);
      margin-bottom: 10px;
    }

    .event-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
    }

    .event-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.8);
    }

    /* ===== CAFÉ PREVIEW ===== */
    .cafe-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .cafe-content .section-label { text-align: left; }
    .cafe-content .section-title { text-align: left; }

    .cafe-text {
      font-size: 16px;
      color: var(--dark-text-secondary);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .cafe-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .cafe-tag {
      padding: 8px 18px;
      background: var(--light-100);
      border: 1px solid var(--light-300);
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      color: var(--light-700);
    }

    .cafe-image-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .cafe-img {
      border-radius: var(--radius-md);
      aspect-ratio: 1;
      background-size: cover;
      background-position: center;
      transition: all var(--transition);
    }

    .cafe-img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

    .cafe-img:first-child {
      grid-row: 1 / 3;
      aspect-ratio: auto;
    }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      background:
        linear-gradient(135deg, rgba(0,0,0,0.85), rgba(211,51,103,0.25)),
        url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?w=1920&q=80') center/cover no-repeat;
      padding: 80px 28px;
      text-align: center;
    }

    .cta-banner-inner {
      max-width: 680px;
      margin: 0 auto;
    }

    .cta-banner h2 {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .cta-banner p {
      font-size: 17px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .cta-banner .hero-buttons { justify-content: center; }

    /* ===== CONTACT / MAP ===== */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: start;
    }

    .contact-info-card {
      background: var(--white);
      border: 1px solid var(--light-300);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }

    .contact-info-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 24px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--light-200);
    }

    .contact-item:last-of-type { border-bottom: none; }

    .contact-item-icon {
      width: 40px;
      height: 40px;
      background: var(--magenta-100);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-item-icon svg { width: 18px; height: 18px; color: var(--magenta-500); }

    .contact-item h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 2px;
    }

    .contact-item p {
      font-size: 14px;
      color: var(--dark-text-secondary);
    }

    .contact-item a {
      color: var(--magenta-500);
      text-decoration: none;
    }

    .contact-item a:hover { text-decoration: underline; }

    .contact-map {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--light-300);
      box-shadow: var(--shadow-sm);
      height: 100%;
      min-height: 400px;
      background: var(--light-100);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      min-height: 400px;
      border: none;
    }

    .map-placeholder {
      text-align: center;
      color: var(--light-600);
      padding: 40px;
    }

    .map-placeholder svg { width: 48px; height: 48px; margin-bottom: 12px; color: var(--light-400); }
    .map-placeholder p { font-size: 14px; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .about-layout, .cafe-layout, .contact-layout { grid-template-columns: 1fr; }
      .pricing-grid, .services-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .hero-stats-inner { flex-wrap: wrap; }
      .hero-stat { flex: 1 1 50%; border-right: none; }
      .events-layout { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .hero { min-height: 100vh; }
      .hero-inner { padding: 100px 20px 60px; }
      .hero-title { letter-spacing: -1px; }
      .hero-stats-inner { display: flex; flex-direction: row;}
      .hero-stat-value { font-size: 5vw; }
      .hero-stat-label { font-size: 3vw; }
      .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .steps-grid::before { display: none; }
      .pricing-grid, .services-grid { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }
      .cta-banner h2 { font-size: 28px; }
      .cta-banner-inner { padding: 40px 24px; }
      .cafe-image-grid { grid-template-columns: 1fr 1fr; }
      .cafe-img:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 10;
      }
      .cafe-img:nth-child(2),
      .cafe-img:nth-child(3) { aspect-ratio: 1; }
      .contact-info .contact-item { padding: 14px 0; }
      .contact-form .form-row { grid-template-columns: 1fr; gap: 16px; }
      .contact-form .btn-cta { width: 100%; justify-content: center; min-height: 44px; }
      .pricing-card, .service-card, .event-card { padding: 24px; }
      .hero-stat {
        padding: 12px 10px;
      }
    }

    @media (max-width: 480px) {
      .steps-grid { grid-template-columns: 1fr; }
      .hero-buttons { flex-direction: column; }
      .hero-buttons .btn-cta { text-align: center; justify-content: center; width: 100%; min-height: 44px; }
      .cta-banner h2 { font-size: 22px; }
      .cta-banner p { font-size: 14px; }
      .pricing-card, .service-card, .event-card { padding: 20px; }
      .pricing-card .price-amount { font-size: 32px; }
      .section-label { font-size: 10px; letter-spacing: 2px; }
    }

/* ===== GLOBAL RESPONSIVE SCALE (spec 2026-04-18) ===== */
@media (max-width: 1024px) {
  .section { padding: 80px 28px; }
  .section-title { font-size: 32px; }
  .hero-title { font-size: 42px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .section-title { font-size: 28px; }
  .section-header { margin-bottom: 40px; }
  .hero-title { font-size: 28px; }
  .hero-inner { padding: 80px 20px 48px; }
  .hero-buttons .btn-cta { min-height: 44px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 16px; }
  .section-title { font-size: 22px; }
  .hero-title { font-size: 26px; }
  .hero-inner { padding: 64px 16px 40px; }
}
