  :root {
    --cream: #F7F3E9;
    --cream-soft: #F1ECDF;
    --forest: #1E3328;
    --forest-deep: #16261D;
    --sage: #A9B79A;
    --sage-soft: #E4E7DB;
    --gold: #B08D53;
    --gold-soft: #D8C39B;
    --charcoal: #2B2A25;
    --charcoal-soft: #6B6A5F;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: "Noto Sans JP", sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    -webkit-font-smoothing: antialiased;
  }
  .page {
    width: 100%;
    background: var(--cream);
  }
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
  }
  .serif { font-family: "Shippori Mincho", serif; }

  /* header */
  header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 8px 32px;
  }
  .logo-mark {
    width: 44px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .logo {
    font-family: "Shippori Mincho", serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--forest);
  }

  /* hero */
  .hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
  }
  .hero svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 1.6s ease;
  }
  .hero-slide.active {
    opacity: 1;
  }
  /* copy */
  .copy {
    text-align: center;
    padding: 52px 32px 8px;
  }
  .copy .hero-eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 18px;
  }
  .copy h1 {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.7;
    color: var(--forest);
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  .copy p {
    font-size: 17px;
    line-height: 2.1;
    color: var(--charcoal-soft);
    letter-spacing: 0.5px;
  }

  section { padding: 68px 8px 8px; }
  .eyebrow {
    text-align: center;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .section-title {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 44px;
  }

  /* hours */
  .hours {
    max-width: 620px;
    margin: 0 auto;
  }
  .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 4px;
    border-bottom: 1px solid var(--sage-soft);
    font-size: 16px;
  }
  .hours-row:first-child { border-top: 1px solid var(--sage-soft); }
  .hours-row .period { color: var(--charcoal-soft); letter-spacing: 0.5px; }
  .hours-row .time { font-family: "Shippori Mincho", serif; font-weight: 600; letter-spacing: 1px; color: var(--forest); }

  /* price */
  .price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto 20px;
  }
  .price-card {
    background: #FFFFFF;
    border: 1px solid var(--sage-soft);
    padding: 36px 28px;
    text-align: center;
  }
  .price-card.member {
    border: 1px solid var(--gold);
    position: relative;
  }
  .badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest);
    color: var(--gold-soft);
    font-size: 10px;
    letter-spacing: 2px;
    padding: 5px 14px;
  }
  .price-card .ptitle {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 1px;
    margin-bottom: 22px;
  }
  .price-card .prow {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 11px 0;
    color: var(--charcoal-soft);
    border-top: 1px solid var(--sage-soft);
  }
  .price-card .prow:first-of-type { border-top: none; }
  .price-card .prow span:last-child { color: var(--charcoal); }

  /* access */
  .map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    height: 350px;
    background: var(--sage-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--charcoal-soft);
  }
  .address {
    max-width: 800px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: var(--charcoal-soft);
    letter-spacing: 0.5px;
  }
  .tel-line {
    max-width: 800px;
    margin: 10px auto 0;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 1px;
  }

  footer {
    margin-top: 64px;
    background: var(--forest-deep);
    padding: 48px 20px 32px;
  }
  footer .container { text-align: center; }
  footer .logo {
    color: var(--gold-soft);
    font-size: 18px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 14px;
  }
  footer .faddr {
    font-size: 14px;
    color: rgba(247,243,233,0.55);
    letter-spacing: 0.5px;
    line-height: 1.9;
  }

  @media (max-width: 600px) {
  header {
    padding: 20px 8px 16px;
  }
  .logo {
    font-size: 18px;
  }
    .price-grid {
      grid-template-columns: 1fr;
      max-width: 420px;
    }
  }
