  :root {
    --paper: #f6efe0;
    --paper-soft: #f1e9d6;
    --paper-deep: #e8dec5;
    --ink: #2a221e;
    --ink-soft: #5a4f44;
    --ink-mute: #998b78;
    --line: #d7caab;
    --line-soft: #e3d8bb;
    --accent: #d23527;     /* 朱色 — ロゴカラー */
    --accent-soft: #e07568;
    --logo-url: url('assets/images/logo.png');
    --gold: #b09056;
    --night: #1a1612;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .serif { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-weight: 400; }
  .latin { font-family: "Cormorant Garamond", serif; font-style: italic; letter-spacing: 0.04em; }
  .mono { font-family: "JetBrains Mono", monospace; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; }

  /* ============= HEADER ============= */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s, background 0.3s;
  }
  header.over-light { color: var(--ink); background: rgba(246,239,224,0.85); backdrop-filter: blur(4px); }
  header.scrolled { background: rgba(246,239,224,0.95); padding: 18px 48px; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
  .brand { display: flex; flex-direction: column; line-height: 1.1; }
  .brand-logo-wrap {
    overflow: hidden;
    transition: max-width 0.5s cubic-bezier(0.22,1,0.36,1);
    max-width: 320px;
    height: 56px;
    display: block;
  }
  header.scrolled .brand-logo-wrap { max-width: 56px; height: 44px; }
  .brand-logo { height: 100%; width: auto; display: block; transition: height 0.3s; }
  .brand .jp { font-family: "Shippori Mincho", serif; font-size: 22px; letter-spacing: 0.18em; color: inherit; }
  .brand .en { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 13px; letter-spacing: 0.22em; opacity: 0.7; margin-top: 4px; }
  nav.global { display: flex; gap: 36px; align-items: center; }
  nav.global a.nav-item { display: flex; flex-direction: column; align-items: center; line-height: 1.1; position: relative; padding-bottom: 2px; }
  nav.global a.nav-item .jp { font-family: "Shippori Mincho", serif; font-size: 13px; letter-spacing: 0.18em; color: inherit; }
  nav.global a.nav-item .en { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 11px; letter-spacing: 0.22em; opacity: 0.7; margin-top: 2px; }
  nav.global a.nav-item::after {
    content: ""; position: absolute; bottom: -8px; left: 50%; width: 0; height: 1px;
    background: var(--accent); transform: translateX(-50%); transition: width 0.4s ease;
  }
  nav.global a.nav-item:hover::after { width: 24px; }

  .lang { display: flex; gap: 10px; margin-left: 16px; padding-left: 24px; border-left: 1px solid currentColor;
    font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 13px; letter-spacing: 0.18em; opacity: 0.7; }
  .lang a.active { opacity: 1; font-weight: 500; }
  .lang span.sep { opacity: 0.5; }

  .book-cta {
    margin-left: 24px; padding: 12px 22px;
    border: 1px solid currentColor;
    font-family: "Shippori Mincho", serif; font-size: 13px; letter-spacing: 0.2em;
    transition: all 0.3s;
  }
  header.scrolled .book-cta { border-color: var(--ink); color: var(--ink); }
  .book-cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .book-cta .arrow { margin-left: 8px; font-family: serif; }

  /* default header over hero = light text */
  header:not(.scrolled) { color: var(--paper); }
  header:not(.scrolled) .book-cta { border-color: var(--paper); color: var(--paper); }

  /* ============= HERO ============= */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: var(--night);
  }
  .hero-slides {
    position: absolute; inset: 0;
  }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    animation: heroFade 28s infinite;
    will-change: opacity, transform;
  }
  .hero-slide:nth-child(1) { animation-delay: -1s; opacity: 1; }
  .hero-slide:nth-child(2) { animation-delay: 7s; }
  .hero-slide:nth-child(3) { animation-delay: 14s; }
  .hero-slide:nth-child(4) { animation-delay: 21s; }
  @keyframes heroFade {
    0%   { opacity: 0; transform: scale(1.04); }
    3%   { opacity: 1; }
    25%  { opacity: 1; transform: scale(1.10); }
    28%  { opacity: 0; transform: scale(1.10); }
    100% { opacity: 0; transform: scale(1.04); }
  }
  .hero-scrim {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,22,18,0.55) 0%, rgba(26,22,18,0.15) 35%, rgba(26,22,18,0.25) 70%, rgba(26,22,18,0.75) 100%),
      linear-gradient(to right, rgba(26,22,18,0.3), rgba(26,22,18,0));
    z-index: 1;
  }

  .hero-overlay {
    position: absolute; inset: 0;
    z-index: 3;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 140px 60px 80px;
    color: var(--paper);
  }
  .hero-top-meta {
    display: flex; justify-content: space-between; align-items: flex-start;
  }
  .hero-location {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 16px; letter-spacing: 0.2em; color: var(--paper); opacity: 0.85;
    display: flex; flex-direction: column; gap: 4px;
  }
  .hero-location .jp { font-family: "Shippori Mincho", serif; font-style: normal; font-size: 14px; letter-spacing: 0.32em; }

  .hero-scroll-hint {
    writing-mode: vertical-rl;
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 12px; letter-spacing: 0.32em; color: var(--paper); opacity: 0.7;
    text-transform: uppercase; align-self: flex-end;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-scroll-hint::after { content: ""; width: 1px; height: 40px; background: rgba(246,239,224,0.5); }

  .hero-copy { max-width: 1200px; }
  .hero-copy .lede {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 22px; letter-spacing: 0.16em; color: var(--paper); opacity: 0.9;
    margin-bottom: 28px; display: flex; align-items: center; gap: 18px;
  }
  .hero-copy .lede::before { content: ""; width: 50px; height: 1px; background: var(--paper); opacity: 0.6; }
  .hero-copy h1 {
    font-family: "Shippori Mincho", serif; font-weight: 400;
    font-size: clamp(56px, 8vw, 128px);
    line-height: 1.18; letter-spacing: 0.08em;
    color: var(--paper);
    margin-bottom: 36px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .hero-copy h1 small {
    display: block; font-size: 0.32em; letter-spacing: 0.18em; margin-top: 24px; color: var(--paper); opacity: 0.8;
  }
  .hero-foot {
    display: flex; justify-content: space-between; align-items: flex-end; color: var(--paper);
  }
  .hero-foot .latin { font-size: 14px; letter-spacing: 0.2em; opacity: 0.75; line-height: 1.7; max-width: 480px; }

  /* wave divider */
  .wave-divider { position: relative; margin-top: -1px; background: var(--paper); z-index: 4; }
  .wave-divider svg { display: block; width: 100%; height: 80px; }
  .wave-divider.flip svg { transform: scaleY(-1); }

  /* ============= SECTION ============= */
  .section { padding: 140px 80px; position: relative; }
  .section-head {
    display: flex; align-items: baseline; gap: 28px;
    margin-bottom: 80px; padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }
  .section-head .en {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 64px; color: var(--accent); letter-spacing: 0.02em; line-height: 1;
  }
  .section-head .jp {
    font-family: "Shippori Mincho", serif; font-size: 22px; letter-spacing: 0.32em; color: var(--ink);
  }
  .section-head .num {
    margin-left: auto;
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 16px; letter-spacing: 0.24em; color: var(--ink-mute);
  }

  /* ============= ABOUT ============= */
  .about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: start; }
  .about-text { padding-top: 20px; }
  .about-text h2 {
    font-family: "Shippori Mincho", serif; font-weight: 400;
    font-size: 48px; line-height: 1.6; letter-spacing: 0.08em;
    margin-bottom: 48px; color: var(--ink);
  }
  .about-text h2 em { font-style: normal; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 4px; }
  .about-text p {
    font-size: 16px; line-height: 2.2; color: var(--ink-soft);
    margin-bottom: 28px; letter-spacing: 0.08em;
  }
  .about-text .signature {
    margin-top: 48px;
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 14px; letter-spacing: 0.2em; color: var(--ink-mute);
    display: flex; align-items: center; gap: 14px;
  }
  .about-text .signature::before { content: ""; width: 40px; height: 1px; background: var(--ink-mute); }

  .about-photos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 80px);
    gap: 16px;
    position: relative;
  }
  .about-photos .ph {
    position: relative; overflow: hidden;
    background-size: cover; background-position: center;
    background-color: #2a1818;
  }
  .ph1 { grid-column: 1 / 4; grid-row: 1 / 4; }
  .ph2 { grid-column: 4 / 7; grid-row: 1 / 3; }
  .ph3 { grid-column: 4 / 7; grid-row: 3 / 5; }
  .ph4 { grid-column: 1 / 3; grid-row: 4 / 7; }
  .ph5 { grid-column: 3 / 5; grid-row: 5 / 7; }
  .ph6 { grid-column: 5 / 7; grid-row: 5 / 7; }

  /* ============= PHOTO ROLL ============= */
  .photoroll { padding: 60px 0 140px; overflow: hidden; position: relative; }
  .photoroll-track {
    display: flex; gap: 24px;
    animation: scroll-loop 80s linear infinite;
    will-change: transform;
  }
  @keyframes scroll-loop { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .roll-photo {
    flex-shrink: 0;
    width: 380px; height: 480px;
    background-size: cover; background-position: center;
    background-color: #2a1818;
  }
  .roll-photo.tall { width: 320px; }
  .roll-photo.wide { width: 560px; }

  /* ============= PLANS ============= */
  #plans { background: var(--paper-soft); padding-top: 160px; padding-bottom: 180px; }
  .plans-intro { max-width: 760px; margin-bottom: 80px; }
  .plans-intro p { font-size: 16px; line-height: 2.2; color: var(--ink-soft); letter-spacing: 0.08em; }

  .plans-subhead {
    display: flex; align-items: baseline; gap: 24px;
    margin: 0 0 40px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .plans-subhead .en {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 28px; color: var(--accent); letter-spacing: 0.04em;
  }
  .plans-subhead .jp {
    font-family: "Shippori Mincho", serif; font-size: 18px; letter-spacing: 0.22em; color: var(--ink);
  }
  .plans-subhead .count {
    margin-left: auto;
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 13px; letter-spacing: 0.24em; color: var(--ink-mute);
  }

  .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 100px; }
  .plan-card {
    background: var(--paper);
    display: flex; flex-direction: column;
    transition: transform 0.4s;
    position: relative;
  }
  .plan-card:hover { transform: translateY(-6px); }
  .plan-card .img {
    aspect-ratio: 4 / 3;
    background-size: cover; background-position: center;
    background-color: #3a1414;
    position: relative;
  }
  .plan-card.featured::before {
    content: "一番人気 / POPULAR";
    position: absolute; top: 16px; right: 16px;
    background: var(--accent); color: var(--paper);
    font-family: "Shippori Mincho", serif;
    font-size: 11px; letter-spacing: 0.22em;
    padding: 6px 12px; z-index: 2;
  }
  .plan-card .body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex: 1; }
  .plan-card .tag {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 13px; letter-spacing: 0.24em; color: var(--accent);
    text-transform: uppercase; margin-bottom: 12px;
  }
  .plan-card h3 {
    font-family: "Shippori Mincho", serif; font-weight: 400;
    font-size: 22px; line-height: 1.5; letter-spacing: 0.06em;
    color: var(--ink); margin-bottom: 6px;
  }
  .plan-card .sub {
    font-size: 13px; color: var(--ink-mute); letter-spacing: 0.06em;
    line-height: 1.7; margin-bottom: 20px;
  }
  .plan-card .season {
    display: inline-block;
    font-family: "Shippori Mincho", serif;
    font-size: 11px; letter-spacing: 0.16em;
    padding: 4px 10px;
    border: 1px solid var(--gold); color: var(--gold);
    margin-bottom: 14px;
    align-self: flex-start;
  }
  .plan-card .price {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex; align-items: baseline; gap: 8px;
  }
  .plan-card .price .yen {
    font-family: "Shippori Mincho", serif; font-weight: 500;
    font-size: 32px; color: var(--accent); line-height: 1;
  }
  .plan-card .price .yen .pre { font-size: 18px; color: var(--ink); margin-right: 2px; }
  .plan-card .price .unit {
    font-family: "Shippori Mincho", serif;
    font-size: 12px; color: var(--ink-mute); letter-spacing: 0.1em;
  }

  /* premium plans (2 wider cards) */
  .premium-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    margin-top: 56px;
  }
  .premium-card {
    display: flex; flex-direction: column;
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(26,22,18,0.18);
    border-top: 3px solid var(--accent);
    transition: transform 0.4s;
  }
  .premium-card:hover { transform: translateY(-8px); }
  .premium-card::after {
    content: "✱";
    position: absolute; top: 20px; right: 24px;
    font-family: "Cormorant Garamond", serif;
    color: var(--gold); opacity: 0.5;
    font-size: 18px; z-index: 2;
    letter-spacing: 0.2em;
  }
  .premium-card .img {
    aspect-ratio: 4 / 3;
    background-size: cover; background-position: center;
    background-color: #4a1414;
  }
  .premium-card .body {
    padding: 48px 44px 52px;
    display: flex; flex-direction: column; flex: 1;
  }
  .premium-card .price {
    margin-top: auto;
    padding-top: 28px; border-top: 1px solid rgba(246,239,224,0.2);
    display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  }
  .premium-card .tag {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 16px; letter-spacing: 0.3em; color: var(--accent-soft);
    text-transform: uppercase; margin-bottom: 18px;
  }
  .premium-card h3 {
    font-family: "Shippori Mincho", serif; font-weight: 400;
    font-size: 38px; line-height: 1.4; letter-spacing: 0.06em;
    color: var(--paper); margin: 0 0 16px;
  }
  .premium-card .sub {
    font-size: 14px; color: rgba(246,239,224,0.75); line-height: 1.9; letter-spacing: 0.08em;
    margin-bottom: 28px;
  }
  .premium-card .price .yen {
    font-family: "Shippori Mincho", serif; font-weight: 500;
    font-size: 48px; color: var(--paper); line-height: 1;
  }
  .premium-card .price .unit { font-family: "Shippori Mincho", serif; font-size: 13px; color: rgba(246,239,224,0.7); letter-spacing: 0.12em; }

  .plans-subhead.is-premium {
    margin-top: 100px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ink);
  }
  .plans-subhead.is-premium .en {
    font-size: 38px; color: var(--accent);
  }
  .plans-subhead.is-premium .jp {
    font-size: 22px; color: var(--ink);
  }
  .plans-subhead.is-premium::before {
    content: "✱";
    font-family: "Cormorant Garamond", serif;
    font-size: 18px; color: var(--accent);
    margin-right: 4px;
    align-self: center;
  }

  /* ============= TRY-ON RESERVATION ============= */
  #tryon { padding-top: 160px; padding-bottom: 160px; }
  .tryon-intro { max-width: 760px; margin-bottom: 80px; }
  .tryon-intro p { font-size: 16px; line-height: 2.2; color: var(--ink-soft); letter-spacing: 0.08em; }

  .tryon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .tryon-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-size: cover; background-position: center;
    background-color: #2a1818;
    color: var(--paper);
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .tryon-card::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(26,22,18,0.15) 0%, rgba(26,22,18,0.1) 40%, rgba(26,22,18,0.85) 100%);
    z-index: 1;
  }
  .tryon-card .body { position: relative; z-index: 2; padding: 48px; }
  .tryon-card .tag {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 14px; letter-spacing: 0.28em; color: var(--paper);
    opacity: 0.8; text-transform: uppercase; margin-bottom: 16px;
  }
  .tryon-card h3 {
    font-family: "Shippori Mincho", serif; font-weight: 400;
    font-size: 38px; line-height: 1.5; letter-spacing: 0.08em;
    color: var(--paper); margin-bottom: 14px;
  }
  .tryon-card .items {
    font-family: "Shippori Mincho", serif;
    font-size: 15px; letter-spacing: 0.12em; color: var(--paper);
    opacity: 0.85; margin-bottom: 32px;
  }
  .tryon-card .cta {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 14px 26px;
    border: 1px solid var(--paper);
    font-family: "Shippori Mincho", serif;
    font-size: 13px; letter-spacing: 0.22em; color: var(--paper);
    transition: all 0.3s;
    align-self: flex-start;
  }
  .tryon-card .cta:hover { background: var(--paper); color: var(--ink); }

  /* ============= ACCESS ============= */
  #access { background: var(--paper-deep); padding-top: 160px; padding-bottom: 180px; }
  .access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .access-info { padding-right: 40px; }
  .access-info .addr {
    font-family: "Shippori Mincho", serif; font-size: 20px;
    line-height: 1.9; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 12px;
  }
  .access-info .addr-en {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 14px; letter-spacing: 0.16em; color: var(--ink-mute); margin-bottom: 36px;
  }
  .access-info .info-dl {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: grid; grid-template-columns: 120px 1fr; row-gap: 16px; column-gap: 24px;
    font-size: 14px;
    margin-bottom: 36px;
  }
  .access-info .info-dl dt {
    font-family: "Shippori Mincho", serif; color: var(--ink-mute);
    letter-spacing: 0.16em; font-size: 13px;
  }
  .access-info .info-dl dd { color: var(--ink); letter-spacing: 0.08em; font-family: "Shippori Mincho", serif; }
  .access-info .gmap-link {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px; border: 1px solid var(--ink);
    font-family: "Shippori Mincho", serif;
    font-size: 14px; letter-spacing: 0.18em; transition: all 0.3s;
  }
  .access-info .gmap-link:hover { background: var(--ink); color: var(--paper); }
  .access-tagline {
    margin-top: 48px;
    font-family: "Shippori Mincho", serif;
    font-size: 15px; line-height: 2.1;
    color: var(--ink-soft); letter-spacing: 0.1em;
    padding-top: 24px; border-top: 1px solid var(--line);
  }

  .access-map {
    aspect-ratio: 4 / 5;
    position: relative; overflow: hidden;
    background: #2a221e;
  }
  .access-map iframe {
    width: 100%; height: 100%; border: 0;
    filter: sepia(0.18) saturate(0.85) brightness(0.95);
  }

  /* ============= FOOTER ============= */
  footer { background: var(--night); color: var(--paper); padding: 0 80px 60px; position: relative; }
  .footer-kv {
    aspect-ratio: 16 / 6;
    background-size: cover; background-position: center;
    background-color: #3a1818;
    margin: 0 -80px 80px;
    padding-top: 60px;
  }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 80px; margin-bottom: 80px; padding-top: 60px; }
  .footer-brand .jp {
    font-family: "Shippori Mincho", serif; font-size: 32px; letter-spacing: 0.22em; margin-bottom: 16px; color: var(--paper);
  }
  .footer-brand .en {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 16px; letter-spacing: 0.24em; color: rgba(246,239,224,0.6); margin-bottom: 36px;
  }
  .footer-brand p { font-size: 14px; line-height: 2; letter-spacing: 0.08em; color: rgba(246,239,224,0.7); }
  .footer-col h5 {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(246,239,224,0.5); margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(246,239,224,0.15);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    font-family: "Shippori Mincho", serif; font-size: 14px;
    letter-spacing: 0.12em; padding: 10px 0; color: var(--paper);
  }
  .footer-col ul li a:hover { color: var(--accent-soft); }
  .footer-col ul li .en {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 11px; letter-spacing: 0.18em; color: rgba(246,239,224,0.4); margin-left: 10px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(246,239,224,0.15);
    padding-top: 40px; display: flex; justify-content: space-between; align-items: center;
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 12px; letter-spacing: 0.22em; color: rgba(246,239,224,0.4); text-transform: uppercase;
  }

  /* ============= side dots ============= */
  .side-dots {
    position: fixed; right: 32px; top: 50%; transform: translateY(-50%);
    z-index: 90; display: flex; flex-direction: column; gap: 22px;
    mix-blend-mode: difference;
  }
  .side-dots a {
    width: 8px; height: 8px; border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(220,210,180,0.6);
    transition: all 0.3s; position: relative;
  }
  .side-dots a.active { background: rgba(220,210,180,0.9); border-color: rgba(220,210,180,0.9); }

  /* reveal animation */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.2s ease, transform 1.2s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (max-width: 1100px) {
    .about-grid, .access-grid { grid-template-columns: 1fr; gap: 60px; }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-grid, .tryon-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============= MODAL ============= */
  .modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(26,22,18,0.78);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .modal-backdrop.open { opacity: 1; visibility: visible; }
  .modal {
    background: var(--paper);
    width: 100%; max-width: 1280px; max-height: 88vh;
    display: grid; grid-template-columns: 1.1fr 1fr;
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.98);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  }
  .modal-backdrop.open .modal { transform: translateY(0) scale(1); opacity: 1; }
  .modal-close {
    position: absolute; top: 18px; right: 18px;
    width: 48px; height: 48px;
    background: rgba(246,239,224,0.95);
    border: 1px solid var(--line);
    cursor: pointer;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px; line-height: 1;
    color: var(--ink);
    z-index: 5;
    transition: all 0.2s;
  }
  .modal-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .modal-gallery {
    position: relative;
    background: var(--ink);
    overflow: hidden;
  }
  .modal-main {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    min-height: 480px;
    transition: background-image 0.3s ease;
  }
  .modal-thumbs {
    position: absolute; bottom: 20px; left: 20px;
    display: flex; gap: 8px;
    z-index: 2;
  }
  .modal-thumb {
    width: 60px; height: 60px;
    background-size: cover; background-position: center;
    cursor: pointer;
    border: 1px solid rgba(246,239,224,0.3);
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
  }
  .modal-thumb.active, .modal-thumb:hover { opacity: 1; border-color: var(--paper); }
  .modal-body {
    padding: 56px 48px;
    overflow-y: auto;
    display: flex; flex-direction: column;
  }
  .modal-tag {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 14px; letter-spacing: 0.28em; color: var(--accent);
    text-transform: uppercase; margin-bottom: 16px;
  }
  .modal-title {
    font-family: "Shippori Mincho", serif; font-weight: 400;
    font-size: 38px; letter-spacing: 0.06em; line-height: 1.4;
    color: var(--ink); margin: 0 0 8px;
  }
  .modal-subtitle {
    font-size: 14px; color: var(--ink-mute);
    letter-spacing: 0.08em; margin-bottom: 24px;
    font-family: "Shippori Mincho", serif;
  }
  .modal-season {
    display: inline-block; align-self: flex-start;
    font-family: "Shippori Mincho", serif;
    font-size: 11px; letter-spacing: 0.16em;
    padding: 4px 10px;
    border: 1px solid var(--gold); color: var(--gold);
    margin-bottom: 24px;
  }
  .modal-desc {
    font-size: 15px; line-height: 2; color: var(--ink-soft);
    letter-spacing: 0.08em; margin: 0 0 28px;
    padding-bottom: 28px; border-bottom: 1px solid var(--line);
  }
  .modal-spec {
    display: grid; grid-template-columns: 110px 1fr;
    row-gap: 14px; column-gap: 20px;
    font-size: 14px; margin: 0 0 24px;
  }
  .modal-spec dt {
    font-family: "Shippori Mincho", serif; color: var(--ink-mute);
    letter-spacing: 0.14em; font-size: 13px;
  }
  .modal-spec dd { color: var(--ink); line-height: 1.7; letter-spacing: 0.06em; font-family: "Shippori Mincho", serif; margin: 0; }
  .modal-notes {
    font-size: 12px; color: var(--ink-soft);
    line-height: 1.9; letter-spacing: 0.06em;
    white-space: pre-line;
    padding: 16px 18px;
    background: var(--paper-soft);
    border-left: 2px solid var(--accent);
    margin-bottom: 28px;
  }
  .modal-price-row {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    flex-wrap: wrap;
  }
  .modal-price { line-height: 1.2; white-space: nowrap; }
  .modal-price .yen {
    font-family: "Shippori Mincho", serif; font-weight: 500;
    font-size: 36px; color: var(--accent);
  }
  .modal-price .unit {
    font-family: "Shippori Mincho", serif; font-size: 12px;
    color: var(--ink-mute); letter-spacing: 0.1em; margin-left: 6px;
  }
  .modal-cta {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 16px 26px;
    background: var(--ink); color: var(--paper);
    font-family: "Shippori Mincho", serif;
    font-size: 13px; letter-spacing: 0.18em;
    transition: background 0.3s;
    border: 1px solid var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .modal-cta:hover { background: var(--accent); border-color: var(--accent); }
  body.modal-open { overflow: hidden; }

  .plan-card, .premium-card { cursor: pointer; }

  @media (max-width: 900px) {
    .modal { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
    .modal-gallery { min-height: 280px; }
    .modal-main { min-height: 280px; }
    .modal-body { padding: 36px 28px; }
  }

/* ============= PLANS PAGE ============= */
.subhero {
  position: relative;
  padding: 180px 80px 80px;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}
.subhero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.subhero-title-block .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.subhero-title-block .jp {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.14em;
  line-height: 1.4;
  font-weight: 400;
  display: block;
}
.subhero-title-block .num {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  margin-top: 22px;
  text-transform: uppercase;
}
.subhero-intro {
  font-size: 15px;
  line-height: 2.0;
  color: var(--ink-soft);
  max-width: 480px;
}
.subhero-intro .lede {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}

.plans-detail-wrap {
  padding: 0 80px;
  background: var(--paper);
}

.plan-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.plan-detail:last-of-type { border-bottom: 1px solid var(--line); }
.plan-detail.is-reverse .plan-detail__media { order: 2; }
.plan-detail__media {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
}
.plan-detail__media::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  pointer-events: none;
}
.plan-detail__body {
  max-width: 540px;
}
.plan-detail__no {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.plan-detail__title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 14px;
}
.plan-detail__sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.plan-detail__season {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent);
  margin-bottom: 28px;
}
.plan-detail__desc {
  font-size: 14px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.plan-detail__spec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px 24px;
  margin: 0 0 32px;
}
.plan-detail__spec dt {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  padding-top: 6px;
  border-top: 1px solid var(--line);
  margin: 0;
}
.plan-detail__spec dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink);
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.plan-detail__notes {
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-mute);
  margin-bottom: 32px;
  white-space: pre-line;
}
.plan-detail__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  gap: 24px;
  flex-wrap: wrap;
}
.plan-detail__price {
  font-family: "Shippori Mincho", serif;
}
.plan-detail__price .yen {
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: 0.04em;
  display: inline-block;
}
.plan-detail__price .unit {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-left: 8px;
}
.plan-detail__cta {
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  white-space: nowrap;
  transition: all 0.3s;
}
.plan-detail__cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.plan-detail__cta .arrow { font-family: serif; margin-left: 8px; }

/* Premium accent for No.07/08 */
.plan-detail.is-premium {
  background: linear-gradient(180deg, rgba(210,53,39,0.04), transparent);
  border-top: 1px solid var(--accent);
}
.plan-detail.is-premium .plan-detail__no { color: var(--accent); }

/* Common notes block at end */
.plans-footer-notes {
  margin: 0 80px;
  padding: 60px 0 120px;
  border-top: 1px solid var(--line);
}
.plans-footer-notes h4 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 20px;
}
.plans-footer-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plans-footer-notes li {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.plans-footer-notes li:first-child { border-top: 0; }

/* Tryon section in plans page */
.tryon-section {
  background: var(--paper-soft);
  padding: 120px 80px;
  border-top: 1px solid var(--line);
}

@media (max-width: 960px) {
  .subhero { padding: 120px 28px 60px; }
  .subhero-inner { grid-template-columns: 1fr; gap: 32px; }

  .plans-detail-wrap { padding: 0 28px; }
  .plan-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .plan-detail.is-reverse .plan-detail__media { order: 0; }
  .plan-detail__spec { grid-template-columns: 100px 1fr; }
  .plans-footer-notes { margin: 0 28px; padding: 40px 0 80px; }
  .tryon-section { padding: 80px 28px; }
}


/* ===================================================================
   FORMS (reservation.html / reservation-group.html / thanks.html)
   トンマナ：kimono-kan.jp（WordPress + Elementor + WPForms）に寄せる
   ・白基調・ゴシック・控えめなアクセント
   ・italic不使用、和文の部分書体変更も不使用
   =================================================================== */

/* === Scope reset for form pages === */
.form-page,
.form-page * {
  font-style: normal !important;
}

.form-page {
  background: #ffffff;
  color: #2a221e;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
               "Hiragino Sans", "Hiragino Kaku Gothic ProN",
               "Yu Gothic", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* === Reset header for form pages === */
.form-page header {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid #e8e3d8;
  padding: 20px 32px;
  color: #2a221e;
  backdrop-filter: none;
}
.form-page header.scrolled {
  background: #ffffff;
  border-bottom: 1px solid #e8e3d8;
  padding: 20px 32px;
}
.form-page header .brand-logo-wrap {
  max-width: 220px;
  height: 44px;
}
.form-page header.scrolled .brand-logo-wrap {
  max-width: 220px;
  height: 44px;
}
.form-page header .brand-logo {
  filter: none;
}
.form-page nav.global { gap: 24px; }
.form-page nav.global a.nav-item {
  flex-direction: row;
  gap: 4px;
}
.form-page nav.global a.nav-item .jp {
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #2a221e;
}
.form-page nav.global a.nav-item .en {
  font-family: inherit;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #999;
  margin-top: 0;
  margin-left: 4px;
}
.form-page nav.global a.nav-item::after { display: none; }
.form-page header .lang,
.form-page header .book-cta { display: none; }

/* === Language Switcher === */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding-left: 20px;
}
.lang-switcher a {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #999;
  padding: 6px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap;
  line-height: 1;
}
.lang-switcher a:hover {
  color: #2a221e;
  border-color: #e5dfd2;
}
.lang-switcher a.is-active {
  color: #2a221e;
  border-color: #2a221e;
  font-weight: 500;
}
@media (max-width: 840px) {
  header.scrolled { flex-wrap: wrap; row-gap: 8px; }
  .lang-switcher {
    width: 100%;
    margin: 0;
    padding: 6px 0 0 0;
    justify-content: flex-end;
    gap: 1px;
  }
  .lang-switcher a { font-size: 10px; padding: 5px 7px; }
}

/* === Form wrapper === */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.form-head {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e3d8;
}
.form-head .kicker {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #d23527;
  margin-bottom: 12px;
  font-weight: 500;
}
.form-head h1 {
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #2a221e;
}
.form-head .lead {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.95;
  color: #555;
  max-width: 640px;
}

/* === Sections === */
.form-section {
  margin-bottom: 48px;
  padding-top: 36px;
  border-top: 1px solid #ede9df;
}
.form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}
.form-section__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.form-section__no {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #d23527;
  font-weight: 600;
}
.form-section__title {
  font-family: inherit;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: #2a221e;
}
.form-section__note {
  font-family: inherit;
  font-size: 13px;
  color: #777;
  margin-bottom: 18px;
  line-height: 1.8;
}

/* === Fields === */
.field { margin-bottom: 22px; }
.field--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field__label {
  display: block;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #2a221e;
  margin-bottom: 8px;
  font-weight: 500;
}
.field__required {
  display: inline-block;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #ffffff;
  background: #d23527;
  padding: 1px 7px;
  margin-left: 8px;
  border-radius: 2px;
  font-weight: 500;
  vertical-align: 1px;
}
.field__help {
  font-family: inherit;
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  line-height: 1.7;
}

/* === Child rows === */
.child-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 10px;
  background: #faf8f3;
  border: 1px solid #e8e3d6;
  border-radius: 4px;
}
.child-row__no {
  font-size: 13px;
  color: #666;
  min-width: 52px;
  font-weight: 500;
}
.child-row select,
.child-row input[type="number"] {
  font-family: inherit;
  font-size: 14px;
  padding: 8px 10px;
  border: 1px solid #d8d3c8;
  border-radius: 3px;
  background: #fff;
}
.child-row select {
  flex: 1;
  min-width: 90px;
}
.child-row input[type="number"] {
  width: 80px;
}
.child-row__unit {
  font-size: 13px;
  color: #666;
}
@media (max-width: 540px) {
  .child-row { flex-wrap: wrap; gap: 8px 10px; }
  .child-row__no { width: 100%; min-width: 0; }
}

/* === Inputs === */
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field input[type="time"],
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  background: #ffffff;
  border: 1px solid #cfcabc;
  border-radius: 3px;
  color: #2a221e;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #d23527;
  box-shadow: 0 0 0 2px rgba(210,53,39,0.12);
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23666' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.7;
}

/* === Radio categories === */
.radio-cat { margin-bottom: 20px; }
.radio-cat__head {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #e0dccf;
  font-weight: 500;
}
.radio-list { display: grid; gap: 6px; }
.radio-item { display: block; position: relative; }
.radio-item input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.radio-item__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #d6d3cc;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
}
.radio-item__inner::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  border: 1px solid #b8b3a4;
  border-radius: 50%;
  background: #fff;
  transition: all 0.15s;
}
.radio-item__inner > span:first-of-type {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.radio-item__inner:hover { border-color: #d23527; }
.radio-item input[type="radio"]:checked + .radio-item__inner {
  border-color: #d23527;
  background: #fdf6f5;
}
.radio-item input[type="radio"]:checked + .radio-item__inner::before {
  border-color: #d23527;
  background: radial-gradient(circle, #d23527 0%, #d23527 40%, #fff 45%);
}
.radio-item__name {
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #2a221e;
  line-height: 1.5;
  font-weight: 500;
}
.radio-item__sub {
  display: block;
  font-family: inherit;
  font-size: 12px;
  color: #888;
  margin-top: 3px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.radio-item__price {
  font-family: inherit;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  color: #2a221e;
  font-weight: 600;
}
.radio-item__price small {
  font-family: inherit;
  font-size: 11px;
  color: #888;
  margin-left: 4px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.radio-item__tag {
  display: inline-block;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #fff;
  background: #d23527;
  padding: 1px 7px;
  margin-left: 6px;
  vertical-align: 2px;
  border-radius: 2px;
  font-weight: 500;
}

/* === Validation error states (after first submit attempt) === */
.was-submitted .field input:invalid:required,
.was-submitted .field select:invalid:required,
.was-submitted .field textarea:invalid:required {
  border-color: #d23527;
  background: #fff5f4;
}
.was-submitted .field:has(input:invalid:required) .field__label,
.was-submitted .field:has(select:invalid:required) .field__label,
.was-submitted .field:has(textarea:invalid:required) .field__label {
  color: #d23527;
}
.was-submitted .radio-cat:has(input[type="radio"]:invalid:required) {
  position: relative;
}
.was-submitted .radio-cat:has(input[type="radio"]:invalid:required)::before {
  content: "▲ プランを1つお選びください";
  display: block;
  font-size: 12px;
  color: #d23527;
  font-weight: 600;
  margin-bottom: 8px;
}
.was-submitted .consent:has(input:invalid:required) .consent__text {
  color: #d23527;
}
.was-submitted .consent:has(input:invalid:required) {
  background: #fff5f4;
  padding-left: 10px;
  border-left: 3px solid #d23527;
}

/* === Option note (conditional hair/makeup) === */
.opt-note {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 3px;
  border-left: 3px solid #d6d3cc;
  background: #faf8f3;
  font-size: 12.5px;
  line-height: 1.85;
}
.opt-note--default {
  border-left-color: #c89a1f;
  background: #fdf9ec;
  color: #7a5e0a;
}
.opt-note--included {
  border-left-color: #2c8d4f;
  background: #effaef;
  color: #1f6238;
}
.opt-note strong { color: inherit; font-weight: 600; }

/* === Inline radio row (gender etc.) === */
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-row__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #ffffff;
  border: 1px solid #d6d3cc;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  font-size: 14px;
  color: #2a221e;
}
.radio-row__item input[type="radio"] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #d23527;
  cursor: pointer;
}
.radio-row__item:hover { border-color: #d23527; }
.radio-row__item:has(input:checked) {
  border-color: #d23527;
  background: #fdf6f5;
}

/* === Checkboxes === */
.check-list { display: grid; gap: 6px; }
.check-item { display: block; position: relative; }
.check-item input[type="checkbox"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.check-item__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #d6d3cc;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
}
.check-item__inner::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 16px; height: 16px;
  border: 1px solid #b8b3a4;
  background: #fff;
  margin-right: 10px;
  border-radius: 2px;
  transition: all 0.15s;
}
.check-item__inner:hover { border-color: #d23527; }
.check-item input[type="checkbox"]:checked + .check-item__inner {
  border-color: #d23527;
  background: #fdf6f5;
}
.check-item input[type="checkbox"]:checked + .check-item__inner::before {
  background: #d23527 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'><path fill='none' stroke='white' stroke-width='2' d='M1 5l3 3 7-7'/></svg>") center no-repeat;
  border-color: #d23527;
}
.check-item__name {
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #2a221e;
  font-weight: 500;
}
.check-item__price {
  font-family: inherit;
  font-size: 13px;
  white-space: nowrap;
  color: #2a221e;
  font-weight: 600;
}

/* === Policy box === */
.policy-box {
  background: #faf8f3;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 18px 22px;
  margin-bottom: 16px;
}
.policy-box h4 {
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #d23527;
  font-weight: 600;
  margin-bottom: 12px;
}
.policy-box p,
.policy-box li {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.9;
  color: #444;
}
.policy-box ul { padding-left: 1.2em; }
.policy-box strong { color: #2a221e; }
.policy-box .todo {
  color: #d23527;
  font-size: 11px;
  margin-top: 10px;
  padding: 8px 10px;
  background: #fce9e7;
  border-left: 3px solid #d23527;
  border-radius: 0 2px 2px 0;
}

/* === Consent === */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0 4px;
  cursor: pointer;
}
.consent input[type="checkbox"] {
  margin: 3px 0 0 0;
  width: 17px;
  height: 17px;
  accent-color: #d23527;
  flex-shrink: 0;
}
.consent__text {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.8;
  color: #2a221e;
}

/* === Submit === */
.form-submit-row {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e8e3d8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.btn-submit {
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.24em;
  padding: 14px 56px;
  background: #d23527;
  color: #ffffff;
  border: 1px solid #d23527;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 600;
}
.btn-submit:hover {
  background: #b32d20;
  border-color: #b32d20;
}
.form-submit-row .note {
  font-family: inherit;
  font-size: 12px;
  color: #888;
  text-align: center;
  line-height: 1.8;
}

/* === Crosslink === */
.form-crosslink {
  margin-top: 32px;
  padding: 22px 24px;
  background: #faf8f3;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  text-align: center;
}
.form-crosslink p {
  font-family: inherit;
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.8;
}
.form-crosslink a {
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #d23527;
  border-bottom: 1px solid #d23527;
  padding-bottom: 2px;
  font-weight: 500;
}

/* === Thanks page === */
.thanks-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  text-align: center;
}
.thanks-wrap .seal {
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #d23527;
  margin-bottom: 28px;
  position: relative;
}
.thanks-wrap .seal::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 10px;
  border-left: 2px solid #d23527;
  border-bottom: 2px solid #d23527;
  transform: translate(-50%, -70%) rotate(-45deg);
}
.thanks-wrap h1 {
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #2a221e;
}
.thanks-wrap .lead {
  font-family: inherit;
  font-size: 14px;
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
}
.thanks-next {
  text-align: left;
  background: #faf8f3;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.thanks-next h3 {
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #d23527;
  margin-bottom: 14px;
  font-weight: 600;
}
.thanks-next ol {
  padding-left: 1.4em;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.95;
  color: #2a221e;
}
.thanks-next ol li { margin-bottom: 4px; }

.thanks-contact {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.95;
  color: #555;
}
.thanks-contact .label {
  display: inline-block;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #999;
  width: 60px;
  font-weight: 500;
}
.thanks-contact .value {
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #2a221e;
  font-weight: 500;
}
.thanks-back {
  display: inline-block;
  margin-top: 40px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #555;
  border-bottom: 1px solid #d6d3cc;
  padding-bottom: 2px;
}
.thanks-back:hover { color: #d23527; border-color: #d23527; }

/* === Footer override for form pages === */
.form-page footer {
  background: #2a221e;
  color: #d6d3cc;
  padding: 48px 32px 28px;
}
.form-page footer .footer-kv { display: none; }
.form-page footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}
.form-page footer .footer-brand p,
.form-page footer .footer-col ul,
.form-page footer .footer-col h5 {
  font-family: inherit;
}
.form-page footer .footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 600;
}
.form-page footer .footer-col li {
  font-size: 12px;
  line-height: 1.9;
}
.form-page footer .footer-col .en {
  font-family: inherit;
  font-style: normal;
  font-size: 10px;
  color: #999;
  margin-left: 6px;
  letter-spacing: 0.1em;
}
.form-page footer .footer-bottom {
  max-width: 960px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: #999;
  display: flex;
  justify-content: space-between;
}

/* === Responsive === */
@media (max-width: 720px) {
  .form-wrap { padding: 40px 18px 72px; }
  .field--inline { grid-template-columns: 1fr; gap: 14px; }
  .radio-item__inner,
  .check-item__inner { padding: 11px 14px; }
  .btn-submit { width: 100%; padding: 14px; }
  .form-page header { padding: 16px 18px; }
  .form-page header .brand-logo-wrap { height: 36px; max-width: 180px; }
  .form-page nav.global { display: none; }
  .form-page footer .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-page footer .footer-bottom { flex-direction: column; gap: 6px; }
  .thanks-wrap { padding: 56px 18px 80px; }
}
