
    @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: #B76E79;
      --secondary: #D4A0A7;
      --accent: #F5E1E4;
      --bg: #FFF9FA;
      --dark: #8B3A46;
      --text: #2D2024;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 400;
      color: var(--text);
      background-color: var(--bg);
      line-height: 1.8;
    }

    h1, h2, h3, h4 {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HEADER / NAV ===== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(255, 249, 250, 0.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--accent);
      transition: box-shadow 0.3s ease;
    }

    .site-header.scrolled {
      box-shadow: 0 2px 20px rgba(183, 110, 121, 0.15);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .logo-wrap {
      display: flex;
      flex-direction: column;
      text-decoration: none;
    }

    .logo-name {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--dark);
      line-height: 1.2;
    }

    .logo-tagline {
      font-size: 0.7rem;
      color: var(--primary);
      letter-spacing: 0.05em;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      text-decoration: none;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link.active {
      color: var(--primary);
    }

    .nav-link.active::after {
      width: 100%;
    }

    .nav-cta {
      background-color: var(--primary);
      color: #fff;
      padding: 10px 22px;
      border-radius: 12px;
      font-size: 0.875rem;
      text-decoration: none;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 500;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .nav-cta:hover {
      background-color: var(--dark);
      transform: translateY(-1px);
    }

    .hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger-btn span {
      display: block;
      width: 26px;
      height: 2px;
      background-color: var(--text);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger-btn.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background-color: var(--bg);
      border-top: 1px solid var(--accent);
      padding: 16px 24px 24px;
      gap: 4px;
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav-link {
      font-size: 1rem;
      color: var(--text);
      text-decoration: none;
      padding: 12px 0;
      border-bottom: 1px solid var(--accent);
      transition: color 0.3s ease;
    }

    .mobile-nav-link:hover {
      color: var(--primary);
    }

    .mobile-nav-cta {
      margin-top: 12px;
      background-color: var(--primary);
      color: #fff;
      padding: 14px 22px;
      border-radius: 12px;
      font-size: 0.95rem;
      text-decoration: none;
      text-align: center;
      font-weight: 500;
      transition: background-color 0.3s ease;
    }

    .mobile-nav-cta:hover {
      background-color: var(--dark);
    }

    /* ===== HERO ===== */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #f9e8eb 0%, #f5d6db 40%, #ead0d5 100%);
      z-index: 0;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -5%;
      width: 60%;
      height: 120%;
      background: radial-gradient(ellipse at center, rgba(183, 110, 121, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 50%;
      height: 80%;
      background: radial-gradient(ellipse at center, rgba(212, 160, 167, 0.2) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 24px;
    }

    .hero-content {
      animation: fadeInUp 0.9s ease forwards;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(183, 110, 121, 0.12);
      border: 1px solid rgba(183, 110, 121, 0.3);
      color: var(--dark);
      font-size: 0.8rem;
      padding: 6px 14px;
      border-radius: 30px;
      margin-bottom: 24px;
      font-weight: 500;
    }

    .hero-badge::before {
      content: '✦';
      color: var(--primary);
    }

    .hero-headline {
      font-size: 3rem;
      line-height: 1.3;
      color: var(--dark);
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .hero-headline span {
      color: var(--primary);
      position: relative;
    }

    .hero-headline span::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      border-radius: 2px;
    }

    .hero-description {
      font-size: 1.05rem;
      color: #6b4a51;
      margin-bottom: 36px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-block;
      background-color: var(--primary);
      color: #fff;
      padding: 14px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 16px rgba(183, 110, 121, 0.35);
    }

    .btn-primary:hover {
      background-color: var(--dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(139, 58, 70, 0.4);
    }

    .btn-outline {
      display: inline-block;
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 12px 28px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background-color: var(--primary);
      color: #fff;
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(183, 110, 121, 0.2);
    }

    .hero-stat-item {
      text-align: center;
    }

    .hero-stat-num {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1.8rem;
      color: var(--dark);
      line-height: 1;
      display: block;
    }

    .hero-stat-label {
      font-size: 0.75rem;
      color: #9a6570;
      margin-top: 4px;
      display: block;
    }

    .hero-visual {
      position: relative;
      animation: fadeInRight 0.9s ease 0.2s forwards;
      opacity: 0;
    }

    .hero-img-main {
      width: 100%;
      border-radius: 30px 30px 30px 100px;
      display: block;
      object-fit: cover;
      height: 480px;
      box-shadow: 0 20px 60px rgba(139, 58, 70, 0.2);
    }

    .hero-float-card {
      position: absolute;
      background-color: #fff;
      border-radius: 20px;
      padding: 16px 20px;
      box-shadow: 0 8px 30px rgba(139, 58, 70, 0.15);
    }

    .hero-float-card-1 {
      bottom: 40px;
      left: -30px;
    }

    .hero-float-card-2 {
      top: 40px;
      right: -20px;
    }

    .float-card-icon {
      font-size: 1.5rem;
      margin-bottom: 4px;
      display: block;
    }

    .float-card-label {
      font-size: 0.75rem;
      color: #9a6570;
      display: block;
    }

    .float-card-value {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 0.95rem;
      color: var(--dark);
      font-weight: 700;
      display: block;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      text-decoration: none;
    }

    .scroll-indicator-text {
      font-size: 0.7rem;
      color: var(--primary);
      letter-spacing: 0.1em;
    }

    .scroll-indicator-arrow {
      width: 32px;
      height: 32px;
      border: 2px solid var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: bounce 2s infinite;
    }

    .scroll-indicator-arrow::after {
      content: '↓';
      color: var(--primary);
      font-size: 0.9rem;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(5px); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* ===== SECTION SHARED ===== */
    .section-padding {
      padding: 60px 0;
    }

    .section-label {
      display: inline-block;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      color: var(--primary);
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-heading {
      font-size: 2rem;
      color: var(--dark);
      margin-bottom: 16px;
      line-height: 1.4;
    }

    .section-subtext {
      font-size: 1rem;
      color: #6b4a51;
      max-width: 580px;
      line-height: 1.9;
    }

    .section-header-center {
      text-align: center;
    }

    .section-header-center .section-subtext {
      margin: 0 auto;
    }

    /* ===== VALUE PILLARS ===== */
    .pillars-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .pillar-card {
      background-color: var(--bg);
      border-radius: 20px;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--accent);
    }

    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
    }

    .pillar-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(183, 110, 121, 0.18);
    }

    .pillar-icon-wrap {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--accent), rgba(212, 160, 167, 0.3));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 24px;
    }

    .pillar-title {
      font-size: 1.2rem;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .pillar-desc {
      font-size: 0.92rem;
      color: #6b4a51;
      line-height: 1.85;
    }

    /* ===== SERVICES ===== */
    .services-section {
      background-color: var(--bg);
      padding: 60px 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .service-card {
      background-color: #fff;
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--accent);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(183, 110, 121, 0.18);
    }

    .service-card-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }

    .service-card-body {
      padding: 24px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .service-card-icon {
      font-size: 1.6rem;
      margin-bottom: 12px;
    }

    .service-card-title {
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .service-card-desc {
      font-size: 0.85rem;
      color: #6b4a51;
      line-height: 1.8;
      flex: 1;
    }

    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 500;
      margin-top: 16px;
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .service-card-link:hover {
      gap: 10px;
    }

    /* ===== WELLNESS PHILOSOPHY ===== */
    .philosophy-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .philosophy-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .philosophy-img-wrap {
      position: relative;
    }

    .philosophy-img {
      width: 100%;
      border-radius: 20px 100px 20px 20px;
      display: block;
      object-fit: cover;
      height: 460px;
      box-shadow: 0 16px 50px rgba(139, 58, 70, 0.15);
    }

    .philosophy-accent-block {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 160px;
      height: 160px;
      background: linear-gradient(135deg, var(--accent), rgba(212, 160, 167, 0.4));
      border-radius: 20px;
      z-index: -1;
    }

    .philosophy-list {
      list-style: none;
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .philosophy-list-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .philosophy-list-icon {
      width: 28px;
      height: 28px;
      background-color: var(--accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .philosophy-list-text {
      font-size: 0.93rem;
      color: #6b4a51;
      line-height: 1.75;
    }

    /* ===== SUCCESS STORIES ===== */
    .stories-section {
      background-color: var(--bg);
      padding: 60px 0;
    }

    .stories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .story-card {
      background-color: #fff;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--accent);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .story-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(183, 110, 121, 0.18);
    }

    .story-card-header {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      padding: 28px 28px 20px;
      position: relative;
    }

    .story-quote-mark {
      font-size: 3rem;
      color: rgba(255,255,255,0.3);
      font-family: Georgia, serif;
      line-height: 1;
      display: block;
      margin-bottom: -8px;
    }

    .story-name {
      color: #fff;
      font-size: 1rem;
    }

    .story-age {
      color: rgba(255,255,255,0.8);
      font-size: 0.8rem;
      font-weight: 400;
      display: block;
      margin-top: 4px;
    }

    .story-body {
      padding: 24px 28px;
    }

    .story-quote {
      font-size: 0.9rem;
      color: #6b4a51;
      line-height: 1.85;
      margin-bottom: 20px;
      font-style: italic;
    }

    .story-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid var(--accent);
    }

    .story-metric {
      text-align: center;
    }

    .story-metric-label {
      font-size: 0.72rem;
      color: #9a6570;
      display: block;
      margin-bottom: 4px;
    }

    .story-metric-before {
      font-size: 0.85rem;
      color: #b5848e;
      display: block;
    }

    .story-metric-after {
      font-size: 1rem;
      color: var(--dark);
      font-family: 'Zen Maru Gothic', sans-serif;
      display: block;
    }

    .story-metric-arrow {
      color: var(--primary);
      font-size: 0.8rem;
    }

    /* ===== BLOG HIGHLIGHTS ===== */
    .blog-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .blog-card {
      background-color: var(--bg);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--accent);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(183, 110, 121, 0.18);
    }

    .blog-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .blog-card-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-card-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .blog-card-tag {
      background-color: var(--accent);
      color: var(--dark);
      font-size: 0.72rem;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: 500;
    }

    .blog-card-date {
      font-size: 0.75rem;
      color: #9a6570;
    }

    .blog-card-title {
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .blog-card-snippet {
      font-size: 0.85rem;
      color: #6b4a51;
      line-height: 1.8;
      flex: 1;
    }

    .blog-card-readmore {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 500;
      margin-top: 16px;
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .blog-card-readmore:hover {
      gap: 10px;
    }

    .blog-view-all {
      text-align: center;
      margin-top: 40px;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: linear-gradient(135deg, var(--dark) 0%, #6e2d36 60%, #8B3A46 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(245, 225, 228, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(212, 160, 167, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta-eyebrow {
      display: inline-block;
      color: var(--secondary);
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 16px;
      font-weight: 500;
    }

    .cta-heading {
      font-size: 2.4rem;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.4;
    }

    .cta-desc {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.05rem;
      max-width: 560px;
      margin: 0 auto 40px;
      line-height: 1.85;
    }

    .cta-buttons-wrap {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta-white {
      display: inline-block;
      background-color: #fff;
      color: var(--dark);
      padding: 14px 36px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .btn-cta-white:hover {
      background-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    }

    .btn-cta-outline {
      display: inline-block;
      border: 2px solid rgba(255,255,255,0.6);
      color: #fff;
      padding: 12px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .btn-cta-outline:hover {
      border-color: #fff;
      background-color: rgba(255,255,255,0.1);
    }

    .cta-contact-info {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.8);
      font-size: 0.9rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .cta-contact-item:hover {
      color: #fff;
    }

    .cta-contact-icon {
      width: 36px;
      height: 36px;
      background-color: rgba(255,255,255,0.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background-color: var(--text);
      color: rgba(255,255,255,0.7);
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      padding-bottom: 40px;
    }

    .footer-logo-name {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 1.05rem;
      color: #fff;
      margin-bottom: 12px;
      display: block;
    }

    .footer-about-text {
      font-size: 0.83rem;
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-contact-list li {
      font-size: 0.82rem;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .footer-contact-list a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-contact-list a:hover {
      color: var(--secondary);
    }

    .footer-col-heading {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 0.9rem;
      color: #fff;
      margin-bottom: 20px;
    }

    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-list a {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-nav-list a:hover {
      color: var(--secondary);
    }

    .footer-hours-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-hours-list li {
      font-size: 0.82rem;
      display: flex;
      justify-content: space-between;
      gap: 12px;
    }

    .footer-hours-day {
      color: rgba(255,255,255,0.5);
    }

    .footer-hours-time {
      color: rgba(255,255,255,0.85);
    }

    .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: 12px;
    }

    .footer-copyright {
      font-size: 0.78rem;
    }

    .footer-legal-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-legal-links a {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-legal-links a:hover {
      color: var(--secondary);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

    @media (max-width: 768px) {
      .main-nav {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px 60px;
      }

      .hero-visual {
        order: -1;
      }

      .hero-img-main {
        height: 300px;
        border-radius: 20px;
      }

      .hero-float-card-1 {
        left: 0;
        bottom: 16px;
      }

      .hero-float-card-2 {
        right: 0;
        top: 16px;
      }

      .hero-headline {
        font-size: 2rem;
      }

      .hero-stats {
        gap: 20px;
      }

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

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

      .philosophy-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .philosophy-accent-block {
        display: none;
      }

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

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

      .section-heading {
        font-size: 1.6rem;
      }

      .cta-heading {
        font-size: 1.8rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
  