/* ===== HEADER & NAV ===== */

.site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 250, 250, 0.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 12px rgba(255, 107, 107, 0.12);
      z-index: 1000;
      transition: box-shadow 0.3s ease;
    }

.nav-wrapper {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

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

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

.nav-logo-sub {
      font-size: 0.68rem;
      color: var(--secondary);
      letter-spacing: 0.05em;
    }

.nav-menu {
      display: flex;
      list-style: none;
      align-items: center;
      gap: 2rem;
    }

.nav-menu a {
      text-decoration: none;
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

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

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

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

.nav-cta-btn {
      background-color: var(--primary);
      color: #fff !important;
      padding: 10px 22px;
      border-radius: 50px;
      font-size: 0.875rem !important;
      font-weight: 700 !important;
      transition: background-color 0.3s ease, transform 0.2s ease !important;
      box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
    }

.nav-cta-btn::after {
      display: none !important;
    }

.nav-cta-btn:hover {
      background-color: var(--dark) !important;
      transform: translateY(-2px);
    }

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

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

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

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

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

.mobile-nav {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: rgba(255, 250, 250, 0.98);
      backdrop-filter: blur(10px);
      z-index: 999;
      padding: 16px 0;
      box-shadow: 0 8px 24px rgba(255, 107, 107, 0.15);
    }

.mobile-nav.is-open {
      display: block;
    }

.mobile-nav-list {
      list-style: none;
      padding: 0 24px;
    }

.mobile-nav-list li {
      border-bottom: 1px solid var(--accent);
    }

.mobile-nav-list a {
      display: block;
      padding: 14px 8px;
      text-decoration: none;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

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

/* ===== FOOTER ===== */

.site-footer {
      background-color: var(--text);
      color: #ccc;
      padding: 60px 0 0;
    }

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

.footer-brand-name {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: #fff;
      margin-bottom: 6px;
    }

.footer-brand-tagline {
      font-size: 0.8rem;
      color: var(--secondary);
      margin-bottom: 16px;
    }

.footer-desc {
      font-size: 0.85rem;
      color: #aaa;
      line-height: 1.8;
      margin-bottom: 20px;
    }

.footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.83rem;
      color: #aaa;
      margin-bottom: 8px;
      line-height: 1.5;
    }

.footer-contact-item .icon {
      color: var(--secondary);
      flex-shrink: 0;
      margin-top: 2px;
    }

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

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

.footer-nav-list a {
      text-decoration: none;
      color: #aaa;
      font-size: 0.85rem;
      transition: color 0.3s ease;
    }

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

.footer-hours-item {
      font-size: 0.83rem;
      color: #aaa;
      margin-bottom: 8px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
    }

.footer-hours-item span:last-child {
      color: #ccc;
    }

.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;
      color: #777;
    }

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

.footer-legal-links a {
      font-size: 0.78rem;
      color: #777;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

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

  .hamburger-btn {
        display: flex;
      }

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

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

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