@media (max-width: 768px) {

   .hero {
    height: 50vh;
    min-height: 260px;
  }

  .hero-box {
    min-height: 240px;
  }

  .hamburger {
    display: flex; 
    justify-self: end;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav.is-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    padding-top: 80px;
  }

  .gallery-list,
  .access-wrap,
  .price-cards {
    flex-direction: column;
  }

  .price-card:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  }

  .access-card {
    flex-direction: column;
    padding: 24px;
  }

  .map {
    height: 240px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .header-center {
    position: static;   
    transform: none;
  }


  .header-logo img {
    width: 170px;
    height: auto;
  }

  
  .site-name {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .site-tel {
    font-size: 0.75rem;
  }

  .site-name {
    font-size: 0.85rem;
  }

  .site-tel {
    display: none; 
  }

  .price-table th,
  .price-table td {
    font-size: 14px;
    padding: 12px 14px;
  }

  .header-nav {
    display: none; 
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: block; 
  }

  .access-card-wrap {
    flex-direction: column;
  }

  .access-map iframe {
    min-height: 260px;
  }


 .map {
    border-radius: 14px;
  }

  .price-block {
    padding: 24px 16px;
    margin-bottom: 40px;
  }

  body.price-page main {
    padding-top: 48px;
  }

  body.price-page .price-block {
    margin-bottom: 40px;
  }
  
  .price-notes {
    margin-bottom: 56px;
    padding: 20px 16px;
  }

  .gallery {
    padding: 0 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }


}