:root {
    --sage: #7a8c6e;
    --sage-light: #b5c4a3;
    --cream: #f5f0e8;
    --ivory: #faf7f2;
    --warm-brown: #8b6e52;
    --dusty-rose: #c9a49a;
    --deep-green: #3d5142;
    --charcoal: #2c2c2c;
    --gold: #c4a35a;
    --mist: #e8e4dc;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--ivory);
    color: var(--charcoal);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    /* 禁止：コピー・選択 */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(250,247,242,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(122,140,110,0.15);
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }

  nav.scrolled {
    background: rgba(250,247,242,0.98);
    padding: 0.8rem 3rem;
    box-shadow: 0 4px 20px rgba(61,81,66,0.08);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--deep-green);
  }

  .nav-logo span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    display: block;
    color: var(--sage);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 300;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--sage); }

  .nav-cta {
    background: var(--deep-green);
    color: var(--ivory) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em;
    transition: background 0.3s !important;
  }

  .nav-cta:hover { background: var(--sage) !important; color: var(--ivory) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 5rem 6rem;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    color: var(--sage);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--sage);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--deep-green);
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
  }

  .hero-subtitle-jp {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.05rem;
    color: var(--warm-brown);
    letter-spacing: 0.3em;
    margin-bottom: 2.5rem;
    font-weight: 400;
  }

  .hero-tagline {
    font-size: 14px;
    line-height: 2.2;
    color: #555;
    letter-spacing: 0.08em;
    max-width: 360px;
    margin-bottom: 3.5rem;
    border-left: 2px solid var(--sage-light);
    padding-left: 1.5rem;
  }

  .hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .badge {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    padding: 0.45rem 1rem;
    border: 1px solid var(--sage-light);
    color: var(--sage);
    border-radius: 20px;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--deep-green);
    color: var(--ivory);
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    transition: all 0.4s;
    width: fit-content;
  }

  .hero-cta:hover {
    background: var(--sage);
    gap: 1.5rem;
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-right-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
  }

  .hero-float-card {
    background: rgba(250,247,242,0.9);
    backdrop-filter: blur(10px);
    padding: 1.8rem 2rem;
    border-left: 3px solid var(--gold);
    max-width: 280px;
    margin-bottom: 2rem;
    animation: floatUp 0.8s ease 0.6s both;
  }

  @keyframes floatUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-float-card .label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--sage);
    margin-bottom: 0.5rem;
  }

  .hero-float-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--charcoal);
    font-family: 'Shippori Mincho', serif;
  }

  /* SVG botanical elements */
  .botanical-svg {
    position: absolute;
    opacity: 0.12;
  }

  /* ─── SECTION COMMON ─── */
  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: var(--sage);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .section-label::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--sage-light);
  }

  .section-title-jp {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--deep-green);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }

  /* ─── ABOUT ─── */
  #about {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  #about::before {
    content: 'ABOUT';
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14rem;
    color: rgba(122,140,110,0.04);
    font-weight: 300;
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
  }

  .about-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-text p {
    font-size: 14px;
    line-height: 2.4;
    color: #4a4a4a;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }

  .about-highlight {
    background: var(--deep-green);
    color: var(--ivory);
    padding: 2rem 2.5rem;
    margin-top: 2rem;
    position: relative;
  }

  .about-highlight::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(255,255,255,0.15);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
  }

  .about-highlight p {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    line-height: 2.2;
    color: rgba(250,247,242,0.9);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
  }

  .about-visual {
    position: relative;
  }

  .about-visual-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #d4e0c8, #c0aa88, #9e8060);
    position: relative;
    overflow: hidden;
  }

  .about-visual-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(61,81,66,0.6), transparent);
  }

  .about-visual-accent {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 55%;
    aspect-ratio: 1;
    background: var(--mist);
    border: 8px solid var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    padding: 1.5rem;
  }

  .about-visual-accent .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--deep-green);
    font-weight: 300;
    line-height: 1;
  }

  .about-visual-accent .desc {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--sage);
    line-height: 1.8;
  }

  .about-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 14px;
    color: #555;
    letter-spacing: 0.08em;
  }

  .feature-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
  }

  /* ─── SERVICE ─── */
  #service {
    padding: 8rem 0;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
  }

  #service::after {
    content: 'SERVICE';
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    color: rgba(122,140,110,0.04);
    font-weight: 300;
    pointer-events: none;
    line-height: 1;
  }

  .service-header {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 4rem;
  }

  /* New: full-width alternating photo + text rows */
  .service-rows {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    overflow: hidden;
  }

  .service-row.reverse { direction: rtl; }
  .service-row.reverse > * { direction: ltr; }

  .service-row-photo {
    position: relative;
    overflow: hidden;
    background: var(--mist);
  }

  .service-row-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }



  .service-row-photo.dark { background: var(--deep-green); }
  .service-row-photo.mid { background: #8a9e7e; }
  .service-row-photo.light { background: var(--sage-light); }

  .service-row-photo .photo-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--deep-green);
    color: var(--ivory);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    padding: 0.3rem 0.8rem;
    z-index: 2;
  }

  .service-row.reverse .service-row-photo .photo-tag {
    left: auto;
    right: 1.5rem;
  }

  .service-row-text {
    background: var(--cream);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-row.highlight .service-row-text {
    background: var(--deep-green);
  }

  .service-row-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(122,140,110,0.18);
    margin-bottom: 0.8rem;
  }

  .service-row.highlight .service-row-num { color: rgba(255,255,255,0.1); }

  .service-row-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.15rem;
    color: var(--deep-green);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .service-row.highlight .service-row-title { color: var(--cream); }

  .service-row-sub {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--sage);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
  }

  .service-row.highlight .service-row-sub { color: var(--sage-light); }

  .service-row-desc {
    font-size: 14px;
    line-height: 2.2;
    color: #555;
    letter-spacing: 0.04em;
  }

  .service-row.highlight .service-row-desc { color: rgba(250,247,242,0.8); }

  @media (max-width: 900px) {
    .service-rows { padding: 0 2rem; }
    .service-row { grid-template-columns: 1fr; }
    .service-row.reverse { direction: ltr; }
    .service-row-photo { min-height: 260px; }
    .service-row-text { padding: 2.5rem 2rem; }
  }

  /* ─── MENU ─── */
  #menu {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
  }

  .menu-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .menu-recommended {
    margin-bottom: 5rem;
  }

  .menu-recommended-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.1rem;
    color: var(--deep-green);
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .menu-recommended-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .menu-divider {
    height: 1px;
    background: var(--sage-light);
    margin: 0.5rem 0 2.5rem;
    opacity: 0.5;
  }

  .menu-items {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(181,196,163,0.3);
    gap: 2rem;
    transition: background 0.3s;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .menu-item:hover {
    background: rgba(122,140,110,0.04);
  }

  .menu-item-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    color: var(--deep-green);
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
  }

  .menu-item-catch {
    color: var(--warm-brown);
    font-weight: 600;
    display: block;
    margin: 0.5rem 0 0.8rem;
    line-height: 1.6;
    font-size: 14px;
    font-family: 'Shippori Mincho', serif;
  }

  .menu-item-desc {
    font-size: 14px;
    color: #777;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }

  .menu-item-right {
    text-align: right;
    flex-shrink: 0;
  }

  .menu-price {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.3rem;
    color: var(--warm-brown);
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .menu-price sup {
    font-size: 0.6em;
    vertical-align: super;
  }

  .menu-tag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .tag-popular { background: var(--dusty-rose); color: white; }
  .tag-new { background: var(--sage); color: white; }
  .tag-first { background: var(--gold); color: white; }
  .tag-mens { background: var(--deep-green); color: white; }
  .tag-womens { background: var(--warm-brown); color: white; }

  /* ─── NEW STANDOUT MENU ─── */
  .menu-item.standout-single {
    background: rgba(196,163,90,0.06); /* Very light gold */
    border: 1px solid var(--gold);
    padding: 1.5rem 1rem !important;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    grid-template-columns: 1fr auto !important; /* Force single column grid */
  }

  .menu-item.standout-single:hover {
    background: rgba(196,163,90,0.1);
  }

  @media (max-width: 900px) {
    .menu-item.standout-single {
      display: flex !important;
      flex-direction: column !important;
      padding: 1.5rem !important;
    }
    .menu-item.standout-single .menu-item-left {
      display: contents !important; /* Back to contents to allow shared flex flow with right-side */
    }
    .menu-item.standout-single .menu-item-name {
      order: 1;
    }
    .menu-item.standout-single .menu-item-catch {
      order: 2;
      margin-top: 0.5rem;
    }
    .menu-item.standout-single .menu-item-right {
      order: 3;
      margin-top: 0.5rem;
    }
    .menu-item.standout-single .menu-item-desc {
      order: 4;
      margin-top: 0.5rem;
    }
  }

  /* Campaign banner */
  .campaign-strip {
    background: var(--deep-green);
    color: var(--ivory);
    text-align: center;
    padding: 0.8rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .campaign-strip span {
    opacity: 0.6;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  /* ─── OWNER MESSAGE ─── */
  #owner {
    padding: 8rem 0;
    background: var(--ivory);
  }

  .owner-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 5rem;
    align-items: center;
  }

  .owner-photo {
    position: relative;
  }

  .owner-photo-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #d8c9b0, #b09878);
    position: relative;
  }

  .owner-photo-frame::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--sage-light);
    z-index: -1;
  }

  .owner-name-block {
    background: var(--deep-green);
    color: var(--ivory);
    padding: 1rem 1.5rem;
    margin-top: -1px;
  }

  .owner-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.2rem;
  }

  .owner-role {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--sage-light);
  }

  .owner-message {
    position: relative;
  }

  .owner-message-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--sage-light);
    line-height: 0.8;
    margin-bottom: -1rem;
    opacity: 0.5;
  }

  .owner-message p {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    line-height: 2.6;
    color: #4a4a4a;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }

  .owner-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--sage);
    font-weight: 300;
    margin-top: 1.5rem;
    opacity: 0.7;
  }

  /* ─── Access ─── */
  #info {
    padding: 8rem 0;
    background: var(--deep-green);
    position: relative;
    overflow: hidden;
  }

  #info::before {
    content: 'INFO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20rem;
    color: rgba(255,255,255,0.02);
    font-weight: 300;
    pointer-events: none;
    white-space: nowrap;
  }

  .info-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  .info-header .section-label { color: var(--sage-light); }
  .info-header .section-label::after { background: rgba(181,196,163,0.3); }

  .info-table {
    width: 100%;
    border-collapse: collapse;
  }

  .info-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .info-table td {
    padding: 1rem 0;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.05em;
    vertical-align: top;
  }

  .info-table td:first-child {
    color: var(--sage-light);
    font-size: 0.67rem;
    letter-spacing: 0.18em;
    width: 120px;
    padding-top: 1.1rem;
  }

  .info-table td:last-child {
    color: rgba(250,247,242,0.85);
  }

  .access-note {
    font-size: 14px;
    line-height: 2;
    color: rgba(250,247,242,0.65);
    letter-spacing: 0.05em;
    border-left: 2px solid var(--sage);
    padding-left: 1.2rem;
  }

  /* ─── CTA ─── */
  #cta {
    padding: 8rem 0;
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(122,140,110,0.15);
    pointer-events: none;
  }

  #cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(122,140,110,0.1);
    pointer-events: none;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--deep-green);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-style: italic;
  }

  .cta-sub {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.85rem;
    color: var(--warm-brown);
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
  }

  .cta-desc {
    font-size: 14px;
    color: #777;
    line-height: 2;
    letter-spacing: 0.06em;
    margin-bottom: 3rem;
  }

  .cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--deep-green);
    color: var(--ivory);
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    transition: all 0.4s;
    font-family: 'Zen Kaku Gothic New', sans-serif;
  }

  .btn-primary:hover { background: var(--sage); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--deep-green);
    color: var(--deep-green);
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    transition: all 0.4s;
    font-family: 'Zen Kaku Gothic New', sans-serif;
  }

  .btn-secondary:hover {
    background: var(--deep-green);
    color: var(--ivory);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #1e2820;
    color: rgba(250,247,242,0.5);
    text-align: center;
    padding: 2.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  footer .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(250,247,242,0.7);
    letter-spacing: 0.3em;
    margin-bottom: 0.8rem;
    font-weight: 300;
  }

  /* ─── ANIMATIONS ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1), transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  }

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

  /* ─── HERO ANIMATIONS ─── */
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes heroImageZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
  }

  .hero-right img {
    animation: heroImageZoom 6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }

  .hero-eyebrow { animation: heroFadeIn 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.2s both; }
  .hero-title { animation: heroFadeIn 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s both; }
  .hero-subtitle-jp { animation: heroFadeIn 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.6s both; }
  .hero-tagline { animation: heroFadeIn 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.8s both; }
  .hero-badges { animation: heroFadeIn 1.4s cubic-bezier(0.33, 1, 0.68, 1) 1.0s both; }
  .hero-cta { animation: heroFadeIn 1.4s cubic-bezier(0.33, 1, 0.68, 1) 1.2s both; }

  /* ─── PAGE TOP ─── */
  .page-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100;
    width: 60px;
    height: 60px;
    background: var(--deep-green);
    color: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    box-shadow: 0 10px 30px rgba(61,81,66,0.2);
  }

  .page-top::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1.5px solid var(--ivory);
    border-left: 1.5px solid var(--ivory);
    transform: rotate(45deg);
    margin-bottom: 3px;
    margin-top: 5px;
  }

  .page-top.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .page-top:hover {
    background: var(--sage);
    transform: translateY(-5px);
  }

  @media (max-width: 900px) {
    .page-top {
      right: 20px;
      bottom: 20px;
      width: 50px;
      height: 50px;
    }
    .page-top.is-show {
      bottom: 90px; /* CTAバーの高さ分上げる */
    }
  }

  /* ─── FIXED CTA SP ─── */
  .fixed-cta-sp {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 110;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 15px;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .fixed-cta-sp.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .fixed-cta-sp a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: opacity 0.3s;
  }

  .fixed-cta-insta {
    background: var(--sage);
    color: white;
  }

  .fixed-cta-reserve {
    background: var(--deep-green);
    color: white;
  }

  @media (max-width: 900px) {
    .fixed-cta-sp {
      display: flex;
    }
  }

  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 200;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.35s ease;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* SP drawer */
  .sp-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--ivory);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .sp-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .sp-menu a {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.5rem;
    color: var(--deep-green);
    text-decoration: none;
    letter-spacing: 0.2em;
    padding: 0.8rem 0;
    transition: color 0.2s;
  }

  .sp-menu a:hover { color: var(--sage); }

  .sp-menu .sp-menu-cta {
    margin-top: 1.5rem;
    background: var(--deep-green);
    color: var(--ivory) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.2em;
    padding: 1rem 2.5rem;
    font-family: 'Zen Kaku Gothic New', sans-serif !important;
  }

  .sp-menu-close-area {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--sage);
    cursor: pointer;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .sp-menu { display: flex; }

    /* Hero: 100svh */
    .hero {
      grid-template-columns: 1fr;
      grid-template-rows: 42vh 1fr;
      min-height: 100svh;
    }

    .hero-left {
      padding: 1.8rem 1.5rem 1.5rem;
      justify-content: flex-start;
      order: 2;
    }

    .hero-title { font-size: 2.8rem; margin-bottom: 0.2rem; }

    .hero-subtitle-jp {
      font-size: 0.82rem;
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
    }

    .hero-tagline {
      font-size: 0.72rem;
      line-height: 1.9;
      margin-bottom: 1.2rem;
      max-width: 100%;
    }

    .hero-badges {
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .badge { font-size: 0.58rem; padding: 0.3rem 0.7rem; }

    .hero-cta { padding: 0.85rem 1.8rem; font-size: 0.7rem; }

    .hero-right {
      order: 1;
      min-height: unset;
    }

    .hero-right img {
      position: absolute;
      inset: 0;
    }

    .hero-right-inner { display: none; }

    .about-grid, .info-inner, .owner-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 0 2rem;
    }

    .service-header, .menu-inner, .cta-inner {
      padding: 0 2rem;
    }

    .about-visual-accent { display: none; }

    /* ─── Decor SP ─── */
    #about::before {
      font-size: 4.5rem;
      top: 0;
      left: auto;
      right: -1rem;
      bottom: auto;
      transform: rotate(90deg);
      transform-origin: top right;
      color: rgba(122,140,110,0.1);
      letter-spacing: 0.1em;
      white-space: nowrap;
    }

    #service::after {
      font-size: 4.5rem;
      top: 0;
      left: auto;
      right: -1rem;
      bottom: auto;
      transform: rotate(90deg);
      transform-origin: top right;
      color: rgba(122,140,110,0.1);
      white-space: nowrap;
    }

    #info::before {
      font-size: 4.5rem;
      top: 0;
      left: auto;
      right: -1rem;
      bottom: auto;
      transform: rotate(90deg);
      transform-origin: top right;
      color: rgba(255,255,255,0.08);
      white-space: nowrap;
    }

    /* MENU SP layout adjustment */
    .menu-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
      padding: 2rem 0;
    }
    .menu-item-left {
      display: contents;
    }
    .menu-item-right {
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .menu-item-name { order: 1; }
    .menu-item-right { order: 2; }
    .menu-item-desc { order: 3; }

    /* CTA SP adjustment */
    .cta-buttons {
      gap: 1.5rem;
    }
  }

  /* ─── UTILITIES ─── */
  .sp-br { display: none; }
  @media (max-width: 900px) {
    .sp-br { display: block; }
  }

  /* Flower petals background decoration */
  .petal-bg {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
  }
