  :root {
    color-scheme: dark;
    --bg: #050505;
    --panel: #171717;
    --panel-soft: #202020;
    --text: #f3f3f3;
    --muted: #b8b8b8;
    --subtle: #818181;
    --line: #303030;
    --line-soft: #242424;
    --accent: #d8c8a2;
    --accent-soft: rgba(216, 200, 162, 0.28);
  }

  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    background:
      linear-gradient(180deg, #070707 0, var(--bg) 360px),
      var(--bg);
    color: var(--text);
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0;
  }

  body {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
  }

  a {
    color: inherit;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    width: min(1360px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 18px;
  }

  .brand-link {
    display: inline-flex;
    width: min(330px, 78vw);
    text-decoration: none;
  }

  .brand-link img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height 180ms ease, opacity 160ms ease, padding 180ms ease;
  }

  .site-header.is-nav-open .site-nav {
    max-height: 260px;
    opacity: 1;
    padding: 6px 0 2px;
  }

  .site-nav a {
    position: relative;
    padding: 12px 10px;
    border-top: 1px solid var(--line-soft);
    color: rgba(243, 243, 243, 0.62);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 160ms ease;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 0;
    left: 10px;
    height: 1px;
    background: transparent;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: #f5f5f5;
  }

  .site-nav a.is-active::after {
    background: var(--accent);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(216, 200, 162, 0.34);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
  }

  .nav-toggle span:not(.visually-hidden) {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent);
  }

  .home-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(330px, 44vw, 640px);
    margin: 0 auto;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.12) 30%, rgba(5, 5, 5, 0.08) 62%, rgba(5, 5, 5, 0.48)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0) 18%, rgba(5, 5, 5, 0.08) 78%, rgba(5, 5, 5, 0.72)),
      url("assets/hero-sphinx-spa.png") center / cover no-repeat;
  }

  .home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.04;
  }

  .home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.1)),
      radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 44%);
  }

  .page {
    width: min(1360px, 100%);
    margin: 0 auto;
    padding: 20px 16px 56px;
  }

  .page-header {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .page-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 128px;
    height: 1px;
    background: var(--accent);
  }

  .eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
  }

  .page-header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
  }

  .about-section {
    margin-bottom: 42px;
    padding: 0;
  }

  .about-section h1 {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .about-section h1::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 128px;
    height: 1px;
    background: var(--accent);
  }

  .about-text {
    max-width: 820px;
    margin: 18px 0 0;
    color: #dddddd;
    font-size: 15px;
    line-height: 2;
  }

  .profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .profile-card {
    position: relative;
    overflow: hidden;
    background: #151515;
    border: 1px solid #343434;
    border-radius: 8px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.035),
      0 18px 48px rgba(0, 0, 0, 0.28);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(216, 200, 162, 0.24);
    z-index: 1;
  }

  .profile-card:hover {
    border-color: rgba(216, 200, 162, 0.46);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.045),
      0 22px 58px rgba(0, 0, 0, 0.38);
    transform: translateY(-2px);
  }

  .image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--panel-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .image-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.18));
    pointer-events: none;
  }

  .profile-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
  }

  .profile-card:hover .profile-image {
    filter: contrast(1.04);
    transform: scale(1.015);
  }

  .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--subtle);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
      #202020;
  }

  .new-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    overflow: hidden;
    padding: 10px 15px;
    border: 1px solid rgba(216, 200, 162, 0.92);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)),
      rgba(8, 8, 8, 0.88);
    color: #f3dfaa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(5, 5, 5, 0.5),
      0 0 20px rgba(216, 200, 162, 0.28);
  }

  .new-badge::before {
    content: "";
    position: absolute;
    top: -60%;
    bottom: -60%;
    left: -85%;
    width: 34%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0)
    );
    transform: rotate(18deg);
    animation: badge-shine 2.8s ease-in-out infinite;
  }

  @keyframes badge-shine {
    0% {
      left: -85%;
    }

    48%,
    100% {
      left: 130%;
    }
  }

  .profile-body {
    position: relative;
    padding: 24px 22px 24px;
  }

  .profile-name {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.32);
  }

  .profile-stats,
  .profile-area,
  .profile-introduction {
    margin: 0;
  }

  .profile-stats {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
  }

  .profile-area {
    margin-top: 4px;
    color: var(--subtle);
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .profile-introduction {
    margin-top: 14px;
    color: #dddddd;
    font-size: 15px;
    line-height: 1.8;
  }

  .profile-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    text-decoration: none;
  }

  .profile-email:hover {
    color: var(--accent);
  }

  .profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 80px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #4a4a4a;
    background: rgba(255, 255, 255, 0.015);
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
  }

  .profile-link:hover {
    background: rgba(216, 200, 162, 0.08);
    border-color: var(--accent);
    color: #ffffff;
  }

  .link-icon {
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
  }

  .profile-link.icon-only {
    width: 46px;
    min-width: 46px;
    padding: 0;
  }

  .profile-link.icon-only .link-icon {
    font-size: 22px;
  }

  @media (max-width: 319px) {
    .profile-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 679px) {
    .page {
      padding: 30px 10px 44px;
    }

    h1,
    .page-header h2 {
      font-size: 38px;
    }

    .about-section {
      margin-bottom: 34px;
    }

    .about-text {
      font-size: 14px;
      line-height: 1.9;
    }

    .schedule-week-label,
    .schedule-week-label.compact {
      font-size: 14px;
      letter-spacing: 0.05em;
    }

    .profile-grid {
      gap: 12px;
    }

    .profile-body {
      padding: 14px 12px 16px;
    }

    .profile-name {
      font-size: 21px;
    }

    .profile-stats,
    .profile-introduction,
    .profile-email {
      font-size: 12px;
    }

    .profile-area {
      font-size: 11px;
    }

    .profile-link.icon-only {
      width: 36px;
      min-width: 36px;
      min-height: 36px;
    }

    .profile-link.icon-only .link-icon {
      font-size: 17px;
    }
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .empty-message {
    margin: 32px 0;
    color: var(--muted);
    text-align: center;
  }

  .menu-page {
    max-width: 1120px;
  }

  .schedule-page {
    max-width: 1120px;
    overflow-anchor: none;
  }

  .menu-hero {
    position: relative;
    margin-bottom: 24px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
  }

  .menu-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 128px;
    height: 1px;
    background: var(--accent);
  }

  .menu-hero h1 {
    color: #f4f4f4;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .menu-lead {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
  }

  .menu-duo,
  .menu-split,
  .four-hand-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-duo,
  .menu-split {
    margin-top: 14px;
  }

  .menu-panel,
  .contact-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid #343434;
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
      #151515;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.035),
      0 18px 48px rgba(0, 0, 0, 0.22);
  }

  .menu-panel::before,
  .contact-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(216, 200, 162, 0.24);
    z-index: 1;
  }

  .menu-panel h2,
  .contact-panel h2 {
    margin: 0;
    padding: 18px 18px 16px;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.018);
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
  }

  .menu-panel h2 span {
    color: var(--muted);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72em;
    font-weight: 400;
  }

  .price-list,
  .compact-price-list,
  .stay-list {
    padding: 0 16px;
  }

  .price-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    min-height: 92px;
    border-bottom: 1px solid var(--line);
  }

  .price-row:last-child,
  .compact-row:last-child,
  .stay-row:last-child {
    border-bottom: 0;
  }

  .price-time {
    display: flex;
    align-items: center;
    margin: 0;
    border-right: 1px solid var(--line);
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
  }

  .price-time::first-letter {
    font-size: 1.08em;
  }

  .price-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 16px 0 16px 18px;
  }

  .price-value {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
  }

  .price-description {
    margin: 8px 0 0;
    color: #e8e8e8;
    font-size: 15px;
    line-height: 1.6;
  }

  .menu-footnote {
    margin: 14px 14px 16px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.015);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }

  .wide-panel {
    margin-top: 14px;
    padding-bottom: 14px;
  }

  .four-hand-grid {
    padding: 14px;
  }

  .four-hand-grid h3 {
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.018);
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
  }

  .compact-price-list,
  .stay-list {
    border: 1px solid var(--line);
  }

  .compact-row,
  .stay-row {
    display: grid;
    grid-template-columns: 76px 1fr;
    border-bottom: 1px solid var(--line);
    color: #f2f2f2;
    font-size: 18px;
    line-height: 1.4;
  }

  .compact-row {
    grid-template-columns: 62px minmax(96px, 0.9fr) minmax(110px, 1fr);
  }

  .compact-row span,
  .stay-row span {
    min-width: 0;
    padding: 10px 12px;
    border-right: 1px solid var(--line);
  }

  .compact-row span:last-child,
  .stay-row span:last-child {
    border-right: 0;
  }

  .compact-person {
    color: var(--muted);
    font-size: 13px;
  }

  .accent-note {
    margin: 0 18px 8px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
  }

  .accent-note.small {
    margin-top: 4px;
    font-size: 14px;
    text-align: left;
  }

  .menu-note {
    margin: 0 18px 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
  }

  .stay-list {
    margin: 14px 18px 0;
    padding: 0;
  }

  .stay-row {
    grid-template-columns: 1fr 1.4fr;
    font-size: 22px;
    text-align: center;
  }

  .notice-list,
  .contact-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 18px;
    color: #dddddd;
    font-size: 15px;
    line-height: 1.75;
    list-style: none;
  }

  .notice-list li,
  .contact-list li {
    position: relative;
    padding-left: 1.25em;
  }

  .notice-list li::before,
  .contact-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    color: var(--accent);
  }

  .contact-panel {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .calendar-section {
    margin-top: 24px;
  }

  .calendar-section + .calendar-section {
    margin-top: 56px;
  }

  .calendar-section h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
  }

  .schedule-pager {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.018);
  }

  .schedule-pager.compact {
    margin-bottom: 16px;
  }

  .schedule-pager button {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    letter-spacing: 0.06em;
    cursor: pointer;
  }

  .schedule-pager button.is-active {
    border-color: rgba(216, 200, 162, 0.62);
    background: rgba(216, 200, 162, 0.1);
    color: #ffffff;
  }

  .schedule-pager button:disabled {
    cursor: default;
    opacity: 0.44;
  }

  .schedule-week-label {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    margin: 0 24px 16px 0;
    padding: 0;
    color: rgba(243, 243, 243, 0.72);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .schedule-week-label.compact {
    min-height: 0;
    margin: 0 24px 16px 0;
    font-size: 16px;
  }

  .upcoming-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .upcoming-day {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .upcoming-day h3 {
    margin: 0;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .upcoming-day h3 span {
    display: block;
    margin-top: 3px;
    color: var(--subtle);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .upcoming-rows {
    display: grid;
    gap: 8px;
  }

  .upcoming-row {
    display: grid;
    grid-template-columns: 136px minmax(140px, 1fr) minmax(90px, 0.7fr);
    gap: 10px;
    align-items: center;
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid var(--event-border, rgba(216, 200, 162, 0.46));
    border-radius: 6px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
      var(--event-bg, rgba(18, 18, 18, 0.92));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .upcoming-time,
  .upcoming-title,
  .upcoming-note {
    margin: 0;
    min-width: 0;
  }

  .upcoming-time {
    color: var(--event-accent, var(--accent));
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
  }

  .upcoming-title {
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .upcoming-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .week-board-wrap {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .week-board {
    display: grid;
    grid-template-columns: 64px repeat(7, minmax(148px, 1fr));
    min-width: 1100px;
    border: 1px solid #343434;
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
      #151515;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.035),
      0 18px 48px rgba(0, 0, 0, 0.22);
  }

  .week-hours {
    display: grid;
    grid-template-rows: 38px repeat(15, 54px);
    border-right: 1px solid var(--line);
    color: var(--subtle);
    font-size: 12px;
  }

  .week-hours span {
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid var(--line-soft);
  }

  .week-day {
    min-width: 0;
    border-right: 1px solid var(--line);
  }

  .week-day:last-child {
    border-right: 0;
  }

  .week-day h3 {
    display: grid;
    gap: 3px;
    margin: 0;
    min-height: 38px;
    padding: 8px 8px 7px;
    border-bottom: 1px solid var(--line);
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
  }

  .week-day h3 span {
    color: var(--accent);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .week-day-events {
    position: relative;
    height: 810px;
    background:
      repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 53px,
        var(--line-soft) 54px
      );
  }

  .week-event {
    position: absolute;
    top: var(--top);
    right: 6px;
    left: 6px;
    min-height: 34px;
    height: var(--height);
    overflow: hidden;
    padding: 7px 8px;
    border: 1px solid rgba(216, 200, 162, 0.56);
    border-color: var(--event-border, rgba(216, 200, 162, 0.56));
    border-radius: 6px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.015)),
      var(--event-bg, rgba(10, 10, 10, 0.92));
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
  }

  .week-event strong,
  .week-event span,
  .week-event small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .week-event strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .week-event span {
    margin-top: 3px;
    color: var(--event-accent, var(--accent));
    font-size: 11px;
    line-height: 1.25;
  }

  .week-event small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.2;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(1360px, calc(100% - 32px));
    margin: 56px auto 0;
    padding: 54px 0 58px;
    border-top: 1px solid rgba(216, 200, 162, 0.12);
    background: #050505;
    color: rgba(232, 232, 232, 0.58);
    font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  }

  .footer-menu h2 {
    margin: 0 0 12px;
    color: rgba(232, 232, 232, 0.55);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .footer-menu ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 1.2em;
    font-size: 22px;
    line-height: 1.2;
  }

  .footer-menu a {
    color: #78b937;
    text-decoration: none;
  }

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

  .footer-info {
    display: grid;
    gap: 26px;
    font-size: 21px;
    line-height: 1.55;
  }

  .footer-info p {
    margin: 0;
  }

  .footer-info strong {
    color: rgba(232, 232, 232, 0.68);
    font-weight: 700;
  }

  .contact-panel h2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .location-page {
    max-width: 1120px;
  }

  .location-map {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 4.2;
    min-height: 210px;
    margin-bottom: 28px;
    border-top: 1px solid rgba(216, 200, 162, 0.28);
    border-bottom: 1px solid rgba(216, 200, 162, 0.16);
    background: #101010;
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  }

  .location-map::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
  }

  .location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.18) contrast(0.96) brightness(0.92);
  }

  @media (max-width: 679px) {
    .location-map {
      aspect-ratio: 16 / 8.8;
      min-height: 240px;
      margin-bottom: 24px;
    }
  }

  .location-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 4px;
  }

  .location-visual {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-top: 1px solid rgba(216, 200, 162, 0.34);
    border-bottom: 1px solid rgba(216, 200, 162, 0.18);
    background: #151515;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  .location-visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1;
    pointer-events: none;
  }

  .location-visual::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.72));
    pointer-events: none;
  }

  .location-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
  }

  .location-visual.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(135deg, rgba(216, 200, 162, 0.13), rgba(255, 255, 255, 0) 42%),
      radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 44%),
      #151515;
  }

  .location-placeholder {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
    color: #ffffff;
    text-align: center;
  }

  .location-placeholder span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1;
    letter-spacing: 0.06em;
  }

  .location-placeholder small {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .location-content {
    display: grid;
    gap: 30px;
  }

  .location-block,
  .location-notes {
    position: relative;
    padding: 0 0 26px;
    border-bottom: 1px solid var(--line);
  }

  .location-block::before,
  .location-notes::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 96px;
    height: 1px;
    background: var(--accent);
  }

  .location-kicker {
    margin: 0 0 8px;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .location-block h2,
  .location-note-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.2;
  }

  .location-list {
    display: grid;
    gap: 0;
    margin: 18px 0 0;
    padding: 0;
    color: #dddddd;
    font-size: 16px;
    line-height: 1.7;
    list-style: none;
  }

  .location-list li {
    display: grid;
    grid-template-columns: 12px 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 13px 0;
    border-top: 1px solid var(--line-soft);
  }

  .location-list li::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    margin-top: 0.72em;
    border-radius: 50%;
    background: var(--accent);
  }

  .location-detail-grid {
    display: grid;
    gap: 0;
    margin-top: 18px;
    padding: 0;
  }

  .location-detail-grid > div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .location-detail-grid > div:last-child {
    border-bottom: 0;
  }

  .detail-label,
  .detail-value {
    margin: 0;
  }

  .detail-label {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .detail-value {
    color: #f2f2f2;
    font-size: 16px;
    line-height: 1.65;
  }

  .location-notes {
    display: grid;
    gap: 18px;
    margin-top: 30px;
  }

  .location-notes .contact-list {
    padding: 0;
    font-size: 15px;
  }

  .location-notes .contact-list li {
    padding: 0 0 0 1.35em;
  }

  @media (min-width: 680px) {
    .page {
      padding: 28px 20px 72px;
    }

    .profile-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .menu-hero {
      padding-bottom: 24px;
    }

    .menu-hero h1 {
      font-size: 44px;
    }

    .menu-duo,
    .menu-split,
    .four-hand-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compact-row {
      grid-template-columns: 70px 116px 1fr;
    }

    .compact-person {
      font-size: 14px;
    }

    .contact-panel {
      grid-template-columns: 220px 1fr;
    }

    .site-footer {
      grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1fr);
      justify-content: space-between;
      gap: 80px;
      padding-top: 74px;
      padding-bottom: 74px;
    }

    .footer-info {
      justify-self: end;
      max-width: 520px;
    }

    .contact-panel h2 {
      min-height: 100%;
    }

    .location-main {
      grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
      align-items: start;
      gap: 34px;
    }

    .location-visual,
    .location-visual img {
      min-height: 650px;
    }

    .location-visual {
      position: sticky;
      top: 24px;
    }

    .location-content {
      padding-top: 10px;
    }

    .location-notes {
      grid-template-columns: 240px 1fr;
      gap: 34px;
      align-items: start;
    }
  }

  @media (min-width: 1100px) {
    .site-header {
      grid-template-columns: minmax(240px, 360px) 1fr;
      min-height: 140px;
      padding: 20px 0;
    }

    .nav-toggle {
      display: none;
    }

    .site-nav {
      grid-column: auto;
      display: flex;
      justify-content: flex-end;
      gap: 28px;
      max-height: none;
      overflow: visible;
      opacity: 1;
      padding: 0 0 2px;
    }

    .site-nav a {
      flex: 0 0 auto;
      padding: 10px 18px 12px;
      border-top: 0;
      font-size: 18px;
    }
  }

  @media (min-width: 920px) {
    .page {
      padding-top: 30px;
    }

    .profile-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }
  }

  @media (max-width: 679px) {
    .site-header {
      width: min(100% - 20px, 1360px);
    }

    .home-hero {
      min-height: 300px;
    }

    .upcoming-day {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .upcoming-row {
      grid-template-columns: 1fr;
      gap: 4px;
      align-items: start;
    }

    .site-footer {
      width: min(100% - 20px, 1360px);
      margin-top: 42px;
      padding-top: 38px;
      padding-bottom: 44px;
    }

    .footer-menu h2 {
      font-size: 18px;
    }

    .footer-menu ul,
    .footer-info {
      font-size: 17px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .new-badge::before {
      animation: none;
    }

    .profile-card,
    .profile-image {
      transition: none;
    }
  }
