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

    :root {
      --white: #ffffff;
      --paper: #FBFAF8;
      --ink: #2A2825;
      --ink-soft: #6A675F;
      --ink-faint: #9A968C;
      --accent: #A8451E;
      --line: #EBE7DE;
      --line-soft: #F2EFE9;
      --font-serif: 'Noto Serif JP', serif;
      --font-sans: 'Noto Sans JP', sans-serif;
      --max-width: 920px;
      --reading-width: 720px;
      --section-padding: 132px 32px;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--white);
      color: var(--ink);
      font-family: var(--font-sans);
      font-weight: 300;
      line-height: 1.9;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background-color: rgba(255, 255, 255, 0.88);
      border-bottom: 1px solid var(--line-soft);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .header-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-logo {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 1rem;
      color: var(--ink);
      letter-spacing: 0.24em;
      text-decoration: none;
    }

    .header-logo span {
      display: block;
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.28em;
      color: var(--ink-faint);
      margin-top: 4px;
    }

    .header-tel {
      font-family: var(--font-serif);
      font-size: 0.7rem;
      font-weight: 300;
      color: var(--ink-faint);
      letter-spacing: 0.18em;
      text-decoration: none;
      text-align: right;
    }

    .header-tel strong {
      display: block;
      font-size: 1rem;
      font-weight: 400;
      color: var(--ink);
      letter-spacing: 0.12em;
      margin-top: 2px;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 560px;
      max-height: 900px;
      overflow: hidden;
    }

    .hero-image {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.04);
      animation: heroZoom 18s ease-out forwards;
    }

    @keyframes heroZoom {
      to { transform: scale(1); }
    }

    .hero-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(28, 30, 24, 0.46) 0%,
        rgba(28, 30, 24, 0.18) 38%,
        rgba(28, 30, 24, 0.30) 72%,
        rgba(28, 30, 24, 0.50) 100%
      );
    }

    .hero-logo {
      position: absolute;
      top: 96px;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 2;
    }

    .hero-logo p {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 0.95rem;
      letter-spacing: 0.42em;
      color: rgba(247, 244, 238, 0.95);
      text-indent: 0.42em;
    }

    .hero-copy {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      text-align: center;
      width: 100%;
      padding: 0 24px;
    }

    .hero-copy h1 {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(1.5rem, 3.4vw, 2.1rem);
      line-height: 2.6;
      letter-spacing: 0.24em;
      color: #F7F4EE;
      text-indent: 0.24em;
      text-shadow: 0 1px 24px rgba(0, 0, 0, 0.22);
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .hero-scroll span {
      font-family: var(--font-serif);
      font-size: 0.62rem;
      letter-spacing: 0.34em;
      color: rgba(247, 244, 238, 0.8);
      text-indent: 0.34em;
    }

    .hero-scroll-line {
      width: 1px;
      height: 48px;
      background-color: rgba(247, 244, 238, 0.5);
      overflow: hidden;
      position: relative;
    }

    .hero-scroll-line::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(247, 244, 238, 0.95);
      animation: scrollLine 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes scrollLine {
      0% { transform: translateY(-100%); }
      60%, 100% { transform: translateY(100%); }
    }

    /* ===== INTRO BRIDGE ===== */
    .intro {
      padding: 120px 32px;
      text-align: center;
      background-color: var(--white);
    }

    .intro-poem {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(1.05rem, 2vw, 1.3rem);
      line-height: 2.9;
      letter-spacing: 0.18em;
      color: var(--ink);
      max-width: var(--reading-width);
      margin: 0 auto 40px;
      text-indent: 0.18em;
    }

    .intro-text {
      font-family: var(--font-sans);
      font-weight: 300;
      font-size: 0.9rem;
      line-height: 2.4;
      letter-spacing: 0.08em;
      color: var(--ink-soft);
      max-width: 560px;
      margin: 0 auto;
    }

    /* ===== SECTION BASE ===== */
    section { padding: var(--section-padding); }

    .section-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .section-head {
      text-align: center;
      margin-bottom: 80px;
    }

    .section-label {
      font-family: var(--font-serif);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.42em;
      color: var(--accent);
      margin-bottom: 24px;
      text-indent: 0.42em;
      display: block;
    }

    .section-label::after {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background-color: var(--accent);
      opacity: 0.5;
      margin: 22px auto 0;
    }

    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(1.35rem, 3vw, 1.95rem);
      font-weight: 400;
      letter-spacing: 0.12em;
      color: var(--ink);
      line-height: 1.9;
      text-indent: 0.12em;
    }

    .section-lead {
      font-family: var(--font-sans);
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--ink-soft);
      max-width: var(--reading-width);
      margin: 28px auto 0;
      line-height: 2.4;
      letter-spacing: 0.06em;
    }

    /* ===== HISTORY ===== */
    .history-grid {
      display: grid;
      grid-template-columns: 0.85fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .history-image img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
    }

    .history-quote {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--ink);
      letter-spacing: 0.1em;
      line-height: 2.1;
      margin-bottom: 36px;
    }

    .history-quote::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background-color: var(--accent);
      margin-bottom: 28px;
    }

    .history-text {
      font-size: 0.86rem;
      line-height: 2.4;
      color: var(--ink-soft);
      margin-bottom: 24px;
      letter-spacing: 0.04em;
    }

    .history-facts {
      margin-top: 48px;
      border-top: 1px solid var(--line);
    }

    .history-fact {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 16px;
      padding: 20px 4px;
      border-bottom: 1px solid var(--line);
      align-items: baseline;
    }

    .history-fact dt {
      font-family: var(--font-serif);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      color: var(--accent);
    }

    .history-fact dd {
      font-size: 0.84rem;
      font-weight: 300;
      color: var(--ink-soft);
      line-height: 1.8;
      letter-spacing: 0.04em;
    }

    /* ===== HIGHLIGHTS ===== */
    .highlights { background-color: var(--white); }

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

    .highlight-card-image {
      width: 100%;
      height: 280px;
      overflow: hidden;
      margin-bottom: 28px;
    }

    .highlight-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.9s cubic-bezier(0.2, 0, 0.2, 1);
    }

    .highlight-card:hover .highlight-card-image img {
      transform: scale(1.05);
    }

    .highlight-card-num {
      font-family: var(--font-serif);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 14px;
    }

    .highlight-card-title {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: var(--ink);
      margin-bottom: 18px;
      line-height: 1.6;
    }

    .highlight-card-text {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--ink-soft);
      line-height: 2.2;
      letter-spacing: 0.03em;
    }

    /* ===== ZAZEN ===== */
    .zazen { background-color: var(--paper); }

    .zazen-inner {
      max-width: var(--reading-width);
      margin: 0 auto;
    }

    .zazen-card {
      background-color: var(--white);
      border: 1px solid var(--line);
      padding: 72px 64px;
      text-align: center;
    }

    .zazen-card-label {
      font-family: var(--font-serif);
      font-size: 0.66rem;
      letter-spacing: 0.42em;
      color: var(--accent);
      margin-bottom: 24px;
      text-indent: 0.42em;
    }

    .zazen-card-title {
      font-family: var(--font-serif);
      font-size: clamp(1.2rem, 3vw, 1.6rem);
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--ink);
      margin-bottom: 48px;
      line-height: 1.9;
    }

    .zazen-badges {
      display: flex;
      justify-content: center;
      gap: 36px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }

    .zazen-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-serif);
      font-size: 0.82rem;
      font-weight: 400;
      color: var(--ink);
      letter-spacing: 0.08em;
    }

    .zazen-badge-icon {
      width: 17px;
      height: 17px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.3;
      flex-shrink: 0;
    }

    .zazen-details {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      margin-bottom: 48px;
      text-align: left;
    }

    .zazen-detail {
      padding: 26px 32px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .zazen-detail dt {
      font-family: var(--font-serif);
      font-size: 0.66rem;
      font-weight: 400;
      letter-spacing: 0.26em;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .zazen-detail dd {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.7;
      letter-spacing: 0.04em;
    }

    .zazen-schedule {
      text-align: left;
      margin-bottom: 56px;
    }

    .zazen-schedule-title {
      font-family: var(--font-serif);
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.26em;
      color: var(--accent);
      margin-bottom: 24px;
      text-align: center;
    }

    .zazen-schedule-list {
      list-style: none;
      max-width: 380px;
      margin: 0 auto;
    }

    .zazen-schedule-list li {
      display: flex;
      align-items: baseline;
      gap: 24px;
      padding: 16px 0;
      border-bottom: 1px solid var(--line-soft);
      font-size: 0.86rem;
      font-weight: 300;
      color: var(--ink-soft);
      letter-spacing: 0.04em;
    }

    .zazen-schedule-list li:last-child { border-bottom: none; }

    .zazen-schedule-time {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 0.84rem;
      color: var(--accent);
      min-width: 48px;
      flex-shrink: 0;
    }

    .zazen-note {
      font-size: 0.78rem;
      font-weight: 300;
      color: var(--ink-faint);
      line-height: 2.2;
      margin-bottom: 48px;
      letter-spacing: 0.04em;
    }

    .zazen-cta {
      display: inline-block;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-family: var(--font-serif);
      font-size: 0.84rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      padding: 18px 52px;
      text-decoration: none;
      transition: background-color 0.4s ease, color 0.4s ease;
      text-indent: 0.2em;
    }

    .zazen-cta:hover {
      background-color: var(--accent);
      color: var(--white);
    }

    /* ===== ACCESS ===== */
    .access { background-color: var(--white); }

    .access-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .access-map {
      width: 100%;
      height: 380px;
      border: 1px solid var(--line);
      overflow: hidden;
    }

    .access-map img,
    .access-map iframe {
      width: 100%;
      height: 100%;
      display: block;
    }

    .access-info-title {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--ink);
      margin-bottom: 36px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }

    .access-items {
      display: flex;
      flex-direction: column;
    }

    .access-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid var(--line-soft);
    }

    .access-item-icon {
      width: 19px;
      height: 19px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.3;
      flex-shrink: 0;
      margin-top: 4px;
    }

    .access-item-body dt {
      font-family: var(--font-serif);
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.24em;
      color: var(--accent);
      margin-bottom: 6px;
    }

    .access-item-body dd {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--ink-soft);
      line-height: 1.8;
      letter-spacing: 0.04em;
    }

    .access-tel-block {
      margin-top: 44px;
      padding-top: 36px;
      border-top: 1px solid var(--line);
      text-align: center;
    }

    .access-tel-label {
      font-family: var(--font-serif);
      font-size: 0.68rem;
      letter-spacing: 0.32em;
      color: var(--accent);
      margin-bottom: 14px;
      text-indent: 0.32em;
    }

    .access-tel-number {
      font-family: var(--font-serif);
      font-size: 1.7rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--ink);
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
    }

    .access-tel-number:hover { color: var(--accent); }

    .access-tel-note {
      font-size: 0.74rem;
      font-weight: 300;
      color: var(--ink-faint);
      letter-spacing: 0.04em;
    }

    /* ===== FOOTER ===== */
    footer {
      background-color: var(--paper);
      border-top: 1px solid var(--line);
      padding: 88px 32px 56px;
      text-align: center;
    }

    .footer-name {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: var(--ink);
      margin-bottom: 10px;
      text-indent: 0.2em;
    }

    .footer-sub {
      font-family: var(--font-serif);
      font-size: 0.66rem;
      font-weight: 300;
      letter-spacing: 0.28em;
      color: var(--ink-faint);
      margin-bottom: 36px;
      text-indent: 0.28em;
    }

    .footer-divider {
      width: 36px;
      height: 1px;
      background-color: var(--line);
      margin: 0 auto 36px;
    }

    .footer-tel {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--ink);
      text-decoration: none;
      display: block;
      margin-bottom: 18px;
    }

    .footer-tel:hover { color: var(--accent); }

    .footer-address {
      font-size: 0.74rem;
      font-weight: 300;
      color: var(--ink-soft);
      letter-spacing: 0.08em;
      margin-bottom: 44px;
    }

    .footer-copy {
      font-family: var(--font-serif);
      font-size: 0.64rem;
      font-weight: 300;
      color: var(--ink-faint);
      letter-spacing: 0.14em;
    }

    /* ===== FADE IN ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 1.1s cubic-bezier(0.2, 0, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0, 0.2, 1);
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-delay-1 { transition-delay: 0.12s; }
    .fade-in-delay-2 { transition-delay: 0.24s; }
    .fade-in-delay-3 { transition-delay: 0.36s; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 860px) {
      :root { --section-padding: 88px 24px; }

      .header-inner { padding: 16px 24px; }
      .header-logo { font-size: 0.92rem; }

      .hero { height: 86vh; min-height: 480px; }
      .hero-logo { top: 80px; }

      .intro { padding: 80px 24px; }

      .section-head { margin-bottom: 56px; }

      .history-grid { grid-template-columns: 1fr; gap: 48px; }
      .history-image img { height: 380px; }

      .highlights-grid { grid-template-columns: 1fr; gap: 56px; }
      .highlight-card-image { height: 320px; }

      .zazen-card { padding: 48px 28px; }
      .zazen-details { grid-template-columns: 1fr; }
      .zazen-badges { gap: 24px; }

      .access-grid { grid-template-columns: 1fr; gap: 48px; }
      .access-map { height: 300px; }
    }

    @media (max-width: 480px) {
      .hero-copy h1 { line-height: 2.4; }
      .header-tel { font-size: 0.62rem; }
      .header-tel strong { font-size: 0.9rem; }
      .history-fact { grid-template-columns: 96px 1fr; gap: 12px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-image img { animation: none; transform: scale(1); }
      .hero-scroll-line::after { animation: none; }
      .fade-in { transition: opacity 0.4s ease; transform: none; }
    }