
  :root {
    --warm-beige: #FDF9F4;
    --sage-green: #6D7B6B;
    --sage-green-dark: #566159;
    --dusty-rose: #EAD8D3;
    --dusty-rose-dark: #d4b8b0;
    --text-primary: #3a3530;
    --text-secondary: #7a7370;
    --text-light: #b0ada9;
    --white: #ffffff;
    --border-light: rgba(109, 123, 107, 0.15);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    --easing: cubic-bezier(0.4, 0, 0.2, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    background: var(--warm-beige);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { text-decoration: none; color: inherit; }

  /* HEADER */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 249, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.4s var(--easing);
  }
  .site-header.scrolled { box-shadow: 0 2px 24px rgba(58,53,48,0.06); }

  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 108px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .header-nav { display: flex; align-items: center; gap: 32px; }
  .header-nav--left { justify-content: flex-start; }
  .header-nav--right { justify-content: flex-end; }

  .header-nav a {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s;
  }
  .header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--sage-green);
    transition: width 0.35s var(--easing);
  }
  .header-nav a:hover { color: #c9a09a; }
  .header-nav a:hover::after { width: 100%; }

  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s var(--easing);
  }
  .header-logo:hover { transform: scale(1.03); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span { display: block; width: 22px; height: 1px; background: var(--text-primary); }

  /* PAGE HERO */
  .page-hero {
    margin-top: 108px;
    padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 80px) clamp(32px, 4vw, 56px);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 108px;
    border-bottom: 1px solid var(--border-light);
  }

  .page-eyebrow {
    font-family: var(--font-serif);
    font-size: 11px;
    font-style: italic;
    letter-spacing: 0.24em;
    color: var(--sage-green);
    display: block;
    margin-bottom: 10px;
  }

  .page-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .page-date {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.1em;
  }

  /* CONTENT */
  .policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px);
  }

  .policy-intro {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
    letter-spacing: 0.04em;
    margin-bottom: clamp(40px, 5vw, 60px);
    padding-bottom: clamp(40px, 5vw, 60px);
    border-bottom: 1px solid var(--border-light);
  }

  .policy-section {
    margin-bottom: clamp(36px, 4vw, 52px);
  }

  .policy-section-num {
    font-family: var(--font-serif);
    font-size: 10px;
    font-style: italic;
    letter-spacing: 0.2em;
    color: var(--sage-green);
    display: block;
    margin-bottom: 8px;
  }

  .policy-section-title {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
  }

  .policy-text {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .policy-list {
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .policy-list li {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
  }

  .policy-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--dusty-rose-dark);
    font-size: 10px;
    top: 4px;
  }

  .policy-contact {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: clamp(24px, 3vw, 36px);
    margin-top: clamp(40px, 5vw, 60px);
  }

  .policy-contact-title {
    font-family: var(--font-serif);
    font-size: 10px;
    font-style: italic;
    letter-spacing: 0.2em;
    color: var(--sage-green);
    display: block;
    margin-bottom: 16px;
  }

  .policy-contact-text {
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .policy-contact-text a {
    color: var(--sage-green);
    border-bottom: 1px solid rgba(109,123,107,0.3);
    transition: border-color 0.3s;
  }
  .policy-contact-text a:hover { border-color: var(--sage-green); }

  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--warm-beige);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .mobile-menu.open { opacity: 1; }
  .mobile-menu a {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: #c9a09a; }
  .mobile-menu-close {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 300;
  }

  /* FOOTER */
  .site-footer {
    background: var(--warm-beige);
    border-top: 1px solid var(--border-light);
    padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px) clamp(24px, 3vw, 40px);
    margin-top: clamp(60px, 8vw, 100px);
  }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 64px);
    padding-bottom: clamp(40px, 5vw, 64px);
    border-bottom: 1px solid var(--border-light);
  }
  .footer-tagline { font-family: var(--font-serif); font-size: clamp(16px, 2vw, 22px); font-weight: 400; font-style: italic; color: var(--text-primary); line-height: 1.5; margin-bottom: 10px; }
  .footer-tagline-sub { font-family: var(--font-sans); font-size: 11.5px; font-weight: 300; color: var(--text-secondary); letter-spacing: 0.12em; }
  .footer-nav { display: flex; flex-direction: column; gap: 12px; text-align: right; }
  .footer-nav a { font-family: var(--font-sans); font-size: 11.5px; letter-spacing: 0.12em; color: var(--text-secondary); font-weight: 300; transition: color 0.3s; }
  .footer-nav a:hover { color: #c9a09a; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; }
  .footer-copy { font-family: var(--font-sans); font-size: 10.5px; color: var(--text-light); letter-spacing: 0.1em; font-weight: 300; }
  .footer-social { display: flex; gap: 20px; }
  .footer-social a { font-family: var(--font-serif); font-size: 11px; font-style: italic; color: var(--text-light); letter-spacing: 0.08em; transition: color 0.3s; }
  .footer-social a:hover { color: #c9a09a; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .header-nav { display: none; }
    .hamburger { display: flex; }
    .header-inner { grid-template-columns: auto 1fr auto; padding: 0 20px; height: 68px; }
    .header-logo { justify-content: flex-start; }
    .header-logo svg { width: 91px; height: 72px; }
    .hamburger { justify-self: end; }
    .page-hero { margin-top: 68px; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-top > div:first-child { display: flex; flex-direction: column; align-items: center; }
    .footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 8px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: center; }
    .footer-social { justify-content: center; }
  }
