
    @import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

    :root {
      --primary: #1E3A5F;
      --secondary: #2E5984;
      --accent: #C8D8E8;
      --bg: #F5F8FC;
      --dark: #0D1F36;
      --text: #1A1A2E;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 400;
      color: var(--text);
      background-color: var(--bg);
      line-height: 1.7;
      font-size: 16px;
    }

    h1, h2, h3, h4 {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HEADER / NAVIGATION ===== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(13, 31, 54, 0.95);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .site-logo {
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-decoration: none;
    }

    .logo-main {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      color: #ffffff;
      letter-spacing: 0.02em;
    }

    .logo-sub {
      font-size: 0.7rem;
      color: var(--accent);
      letter-spacing: 0.1em;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .main-nav a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.9rem;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all 0.2s ease;
      font-family: 'Noto Sans JP', sans-serif;
    }

    .main-nav a:hover {
      background-color: rgba(200, 216, 232, 0.2);
      color: #ffffff;
    }

    .main-nav a.nav-cta {
      background-color: var(--secondary);
      color: #ffffff;
      font-weight: 500;
    }

    .main-nav a.nav-cta:hover {
      background-color: var(--primary);
    }

    .hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: #ffffff;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .hamburger-btn.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.is-open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background-color: var(--dark);
      padding: 16px 24px 24px;
      border-top: 1px solid rgba(200, 216, 232, 0.2);
    }

    .mobile-nav.is-open {
      display: flex;
    }

    .mobile-nav a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 1rem;
      padding: 12px 0;
      border-bottom: 1px solid rgba(200, 216, 232, 0.1);
      font-family: 'Noto Sans JP', sans-serif;
    }

    .mobile-nav a:last-child {
      border-bottom: none;
    }

    .mobile-nav a:hover {
      color: var(--accent);
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    }

    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(200, 216, 232, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 89, 132, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(30, 58, 95, 0.4) 0%, transparent 40%);
    }

    .hero-scissors-deco {
      position: absolute;
      top: 10%;
      right: 5%;
      font-size: 8rem;
      opacity: 0.05;
      transform: rotate(-30deg);
      pointer-events: none;
    }

    .hero-comb-deco {
      position: absolute;
      bottom: 10%;
      left: 3%;
      font-size: 6rem;
      opacity: 0.05;
      transform: rotate(20deg);
      pointer-events: none;
    }

    .hero-content-wrap {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 120px 24px 80px;
      max-width: 860px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(200, 216, 232, 0.15);
      border: 1px solid rgba(200, 216, 232, 0.3);
      color: var(--accent);
      font-size: 0.8rem;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
      letter-spacing: 0.08em;
    }

    .hero-heading {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: #ffffff;
      line-height: 1.3;
      margin-bottom: 24px;
      letter-spacing: 0.02em;
    }

    .hero-heading span {
      color: var(--accent);
      display: block;
    }

    .hero-subtext {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      max-width: 600px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: var(--accent);
      color: var(--dark);
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background-color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: transparent;
      color: #ffffff;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 500;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 12px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.4);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-stat-item {
      text-align: center;
    }

    .hero-stat-num {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 2rem;
      color: var(--accent);
      display: block;
    }

    .hero-stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      z-index: 2;
    }

    .scroll-indicator span {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.1em;
    }

    .scroll-arrow {
      width: 24px;
      height: 24px;
      border-right: 2px solid rgba(255,255,255,0.4);
      border-bottom: 2px solid rgba(255,255,255,0.4);
      transform: rotate(45deg);
      animation: scrollBounce 1.5s infinite;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50% { transform: rotate(45deg) translateY(6px); }
    }

    /* ===== SECTION COMMON ===== */
    .section-block {
      padding: 80px 0;
    }

    .section-block-alt {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: var(--secondary);
      background-color: var(--accent);
      padding: 4px 14px;
      border-radius: 50px;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .section-title {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      color: var(--primary);
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 0.95rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* ===== BEFORE/AFTER SECTION ===== */
    .before-after-section {
      background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
    }

    .ba-carousel-wrapper {
      position: relative;
      overflow: hidden;
    }

    .ba-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .ba-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      padding: 0 4px;
    }

    .ba-card {
      border-radius: 20px;
      overflow: hidden;
      background-color: #ffffff;
      box-shadow: 0 4px 24px rgba(30, 58, 95, 0.1);
      position: relative;
    }

    .ba-slider-container {
      position: relative;
      width: 100%;
      padding-bottom: 75%;
      overflow: hidden;
      cursor: col-resize;
      user-select: none;
    }

    .ba-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ba-before-img {
      clip-path: inset(0 50% 0 0);
    }

    .ba-after-img {
      clip-path: inset(0 0 0 50%);
    }

    .ba-divider {
      position: absolute;
      top: 0;
      left: 50%;
      width: 3px;
      height: 100%;
      background-color: rgba(255,255,255,0.9);
      transform: translateX(-50%);
      z-index: 10;
      cursor: col-resize;
    }

    .ba-divider-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 36px;
      height: 36px;
      background-color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      font-size: 14px;
      color: var(--primary);
      font-weight: 700;
    }

    .ba-labels {
      position: absolute;
      top: 12px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 12px;
      z-index: 5;
      pointer-events: none;
    }

    .ba-label {
      background-color: rgba(30, 58, 95, 0.8);
      color: #ffffff;
      font-size: 0.7rem;
      padding: 3px 10px;
      border-radius: 50px;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .ba-card-info {
      padding: 16px 20px;
    }

    .ba-card-title {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1rem;
      color: var(--primary);
    }

    .ba-card-desc {
      font-size: 0.85rem;
      color: #666;
      margin-top: 4px;
    }

    .ba-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 32px;
    }

    .ba-prev-btn,
    .ba-next-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: var(--primary);
      color: #ffffff;
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
    }

    .ba-prev-btn:hover,
    .ba-next-btn:hover {
      background-color: var(--secondary);
    }

    .ba-dots {
      display: flex;
      gap: 8px;
    }

    .ba-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--accent);
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }

    .ba-dot.active {
      background-color: var(--primary);
      width: 24px;
      border-radius: 4px;
    }

    /* ===== SERVICES SECTION ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .service-card-item {
      background-color: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(30, 58, 95, 0.15);
    }

    .service-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .service-card-body {
      padding: 28px;
    }

    .service-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background-color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
    }

    .service-card-title {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .service-card-desc {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--secondary);
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .service-card-link:hover {
      gap: 10px;
    }

    /* ===== STYLISTS SECTION ===== */
    .stylists-section {
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
      color: #ffffff;
    }

    .stylists-section .section-title {
      color: #ffffff;
    }

    .stylists-section .section-desc {
      color: rgba(255,255,255,0.7);
    }

    .stylists-section .section-label {
      background-color: rgba(200, 216, 232, 0.2);
      color: var(--accent);
    }

    .stylist-carousel-wrapper {
      position: relative;
      overflow: hidden;
    }

    .stylist-track {
      display: flex;
      gap: 24px;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .stylist-card {
      min-width: calc(25% - 18px);
      background-color: rgba(255,255,255,0.07);
      border: 1px solid rgba(200, 216, 232, 0.15);
      border-radius: 20px;
      overflow: hidden;
      text-align: center;
      transition: background-color 0.3s ease;
      flex-shrink: 0;
    }

    .stylist-card:hover {
      background-color: rgba(255,255,255,0.12);
    }

    .stylist-photo {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
    }

    .stylist-card-body {
      padding: 24px 20px;
    }

    .stylist-name {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1.15rem;
      color: #ffffff;
      margin-bottom: 6px;
    }

    .stylist-role {
      font-size: 0.8rem;
      color: var(--accent);
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }

    .stylist-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
    }

    .stylist-tag {
      background-color: rgba(200, 216, 232, 0.15);
      color: rgba(255,255,255,0.8);
      font-size: 0.72rem;
      padding: 3px 10px;
      border-radius: 50px;
    }

    .stylist-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 36px;
    }

    .stylist-prev-btn,
    .stylist-next-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.15);
      color: #ffffff;
      border: 1px solid rgba(255,255,255,0.3);
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
    }

    .stylist-prev-btn:hover,
    .stylist-next-btn:hover {
      background-color: rgba(255,255,255,0.25);
    }

    .stylist-dots {
      display: flex;
      gap: 8px;
    }

    .stylist-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: rgba(200, 216, 232, 0.4);
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }

    .stylist-dot.active {
      background-color: var(--accent);
      width: 24px;
      border-radius: 4px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      background-color: var(--bg);
    }

    .testimonial-carousel-wrapper {
      position: relative;
      overflow: hidden;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .testimonial-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      padding: 4px;
    }

    .testimonial-card {
      background-color: #ffffff;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
      transition: transform 0.3s ease;
      position: relative;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
    }

    .testimonial-quote-mark {
      font-size: 4rem;
      color: var(--accent);
      font-family: 'Zen Maru Gothic', sans-serif;
      line-height: 1;
      margin-bottom: 8px;
      display: block;
    }

    .testimonial-stars {
      color: #F5A623;
      font-size: 1rem;
      margin-bottom: 14px;
    }

    .testimonial-text {
      font-size: 0.92rem;
      color: #444;
      line-height: 1.9;
      margin-bottom: 24px;
    }

    .testimonial-author-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--accent);
    }

    .testimonial-author-name {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 0.95rem;
      color: var(--primary);
    }

    .testimonial-author-detail {
      font-size: 0.78rem;
      color: #888;
    }

    .testimonial-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 36px;
    }

    .testi-prev-btn,
    .testi-next-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: var(--primary);
      color: #ffffff;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
    }

    .testi-prev-btn:hover,
    .testi-next-btn:hover {
      background-color: var(--secondary);
    }

    .testi-dots {
      display: flex;
      gap: 8px;
    }

    .testi-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--accent);
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }

    .testi-dot.active {
      background-color: var(--primary);
      width: 24px;
      border-radius: 4px;
    }

    /* ===== BOOKING WIDGET ===== */
    .booking-section {
      background: #ffffff;
    }

    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .booking-info-side h3 {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .booking-info-side p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .booking-hours-list {
      list-style: none;
      margin-bottom: 28px;
    }

    .booking-hours-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid var(--accent);
      font-size: 0.9rem;
    }

    .booking-hours-list li span:first-child {
      color: var(--primary);
      font-weight: 500;
    }

    .booking-hours-list li span:last-child {
      color: #555;
    }

    .booking-contact-line {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--secondary);
      font-size: 0.9rem;
      text-decoration: none;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .booking-contact-line:hover {
      color: var(--primary);
    }

    .booking-form-card {
      background-color: var(--bg);
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
    }

    .booking-form-title {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 24px;
      text-align: center;
    }

    .form-row {
      margin-bottom: 16px;
    }

    .form-row label {
      display: block;
      font-size: 0.85rem;
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 6px;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--accent);
      border-radius: 12px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      background-color: #ffffff;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      border-color: var(--secondary);
    }

    .form-row-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-submit-btn {
      width: 100%;
      padding: 14px;
      background-color: var(--primary);
      color: #ffffff;
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1.05rem;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 8px;
    }

    .form-submit-btn:hover {
      background-color: var(--secondary);
      transform: translateY(-2px);
    }

    /* ===== CTA BANNER ===== */
    .cta-banner-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, #3A6E9E 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-banner-deco {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 10% 50%, rgba(200, 216, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(13, 31, 54, 0.3) 0%, transparent 40%);
      pointer-events: none;
    }

    .cta-banner-inner {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .cta-discount-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #F5A623;
      color: var(--dark);
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 24px;
      letter-spacing: 0.04em;
    }

    .cta-banner-title {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      color: #ffffff;
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .cta-banner-title span {
      color: var(--accent);
    }

    .cta-banner-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      max-width: 580px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }

    .cta-banner-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #ffffff;
      color: var(--primary);
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 36px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .cta-btn-white:hover {
      background-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .cta-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: transparent;
      color: #ffffff;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 500;
      font-size: 1rem;
      padding: 14px 36px;
      border-radius: 12px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      transition: all 0.3s ease;
    }

    .cta-btn-ghost:hover {
      border-color: #ffffff;
      background-color: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background-color: var(--dark);
      color: rgba(255,255,255,0.8);
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
    }

    .footer-brand-name {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1.2rem;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .footer-brand-desc {
      font-size: 0.85rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.6);
      margin-bottom: 20px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 10px;
    }

    .footer-contact-item span:first-child {
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-col-title {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 0.95rem;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-list a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s ease;
    }

    .footer-nav-list a:hover {
      color: var(--accent);
    }

    .footer-hours-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-hours-list li {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      display: flex;
      justify-content: space-between;
      gap: 12px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copyright {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }

    .footer-legal-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-legal-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-legal-links a:hover {
      color: var(--accent);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hamburger-btn {
        display: flex;
      }

      .main-nav {
        display: none;
      }

      .hero-stats {
        gap: 24px;
      }

      .ba-slide {
        grid-template-columns: 1fr;
      }

      .stylist-card {
        min-width: calc(80% - 18px);
      }

      .testimonial-slide {
        grid-template-columns: 1fr;
      }

      .booking-grid {
        grid-template-columns: 1fr;
      }

      .form-row-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .section-block,
      .section-block-alt {
        padding: 60px 0;
      }
    }

    @media (max-width: 480px) {
      .stylist-card {
        min-width: calc(100% - 0px);
      }

      .hero-cta-group {
        flex-direction: column;
        align-items: center;
      }

      .cta-banner-btns {
        flex-direction: column;
        align-items: center;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .ba-slide {
        grid-template-columns: 1fr;
      }
    }
  