@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@500;600;700&display=swap');

:root {
  --color-bg: #fbf8f4 !important;
  --color-surface: #f3ebe6 !important;
  --color-text: #2c2024 !important;
  --color-accent: #7d173b !important;
  --color-accent-2: #b9925f !important;
  --color-divider: color-mix(in srgb, #8f745f 32%, transparent) !important;
  --color-accent-100: #f9e9ef !important;
  --color-accent-200: #f2cfdb !important;
  --color-accent-300: #dda7ba !important;
  --color-accent-400: #c87995 !important;
  --color-accent-500: #a84568 !important;
  --color-accent-600: #68102f !important;
  --color-accent-700: #570c28 !important;
  --color-accent-800: #43071d !important;
  --color-accent-900: #2c0312 !important;
  --font-heading: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif !important;
  --font-heading-weight: 600 !important;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif !important;
  --font-display: 'Cormorant Garamond', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
}

html {
  background: #fbf8f4;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at 10% 0%, rgba(185, 146, 95, .08), transparent 30rem), var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-synthesis: none;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 500 !important;
  letter-spacing: .015em;
}

h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600 !important;
  letter-spacing: .015em;
}

header h1 {
  font-family: var(--font-display);
  font-weight: 500 !important;
  letter-spacing: -.025em;
}

blockquote {
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
}

[style*="font-family: var(--font-heading)"][style*="font-weight: 800"] {
  font-weight: 600 !important;
}

.hero-luxe h1 {
  font-weight: 500 !important;
}

.site-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grayscale { filter: none !important; }

.nav {
  padding: 13px clamp(22px, 3.5vw, 68px) !important;
  border-bottom: 1px solid rgba(185, 146, 95, .38);
  background: rgba(251, 248, 244, .9) !important;
  box-shadow: 0 8px 28px rgba(71, 42, 48, .05);
  backdrop-filter: blur(18px) saturate(1.25);
}

.nav > div {
  max-width: none !important;
  gap: clamp(18px, 2vw, 34px) !important;
  flex-wrap: nowrap !important;
}

.nav-brand {
  display: inline-flex !important;
  min-width: 190px;
  align-items: center;
  gap: 11px;
  color: var(--color-text) !important;
}

.brand-emblem {
  width: 46px;
  height: 46px;
  flex: none;
  object-fit: contain;
}

.brand-lockup { display: grid; line-height: 1; }

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .12em;
}

.brand-lockup small {
  margin-top: 5px;
  color: #8b6a73;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  text-decoration: none;
}

.footer-brand-emblem {
  width: 58px;
  height: 58px;
  flex: none;
  object-fit: contain;
}

.footer-brand-lockup {
  display: grid;
  line-height: 1;
}

.footer-brand-lockup strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .12em;
}

.footer-brand-lockup small {
  margin-top: 6px;
  color: #8b6a73;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
}

.nav > div > a:not(.nav-brand):not(.btn) {
  position: relative;
  padding: 12px 0 10px;
  color: #4a383d;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
}

.nav > div > a:not(.nav-brand):not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b9925f, transparent);
  content: '';
  transform: scaleX(0);
  transition: transform .3s ease;
}

.nav > div > a:not(.nav-brand):not(.btn):hover::after,
.nav > div > a[aria-current='page']:not(.nav-brand)::after { transform: scaleX(1); }

.btn {
  border-radius: 999px !important;
  letter-spacing: .06em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.btn-primary {
  border: 1px solid rgba(255, 255, 255, .18) !important;
  background: linear-gradient(135deg, #8b1d46, #62102e) !important;
  color: #fffaf7 !important;
  box-shadow: 0 10px 26px rgba(98, 16, 46, .2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9a2853, #72163a) !important;
  box-shadow: 0 14px 30px rgba(98, 16, 46, .28);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(125, 23, 59, .28) !important;
  background: rgba(255, 255, 255, .44) !important;
}

.nav .btn-primary {
  padding: 12px 22px !important;
  font-size: 12px !important;
}

.hero-luxe {
  position: relative;
  min-height: calc(100svh - 75px);
  overflow: hidden;
  isolation: isolate;
}

.hero-luxe-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: heroReveal 1.3s cubic-bezier(.2, .7, 0, 1) both;
}

.hero-luxe-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(251, 248, 244, .98) 0%, rgba(251, 248, 244, .9) 29%, rgba(251, 248, 244, .48) 50%, transparent 68%), linear-gradient(180deg, rgba(255,255,255,.08), rgba(75,34,45,.09));
}

.hero-luxe::after {
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .48);
  content: '';
  pointer-events: none;
}

.hero-luxe-content {
  display: flex;
  width: min(94%, 1600px);
  min-height: calc(100svh - 75px);
  margin: 0 auto;
  padding: clamp(78px, 10vh, 130px) clamp(28px, 5vw, 84px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-luxe-kicker {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 13px;
  color: #7d173b;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeUp .75s .1s both;
}

.hero-luxe-kicker span { width: 44px; height: 1px; background: #b9925f; }

.hero-luxe h1 {
  margin: 0;
  color: #3b252c;
  font-family: var(--font-display);
  font-size: clamp(62px, 7.2vw, 126px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .88;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.hero-luxe h1 span {
  display: block;
  animation: heroType 1s cubic-bezier(.2,.7,0,1) both;
}

.hero-luxe h1 span:last-child {
  margin-left: .35em;
  color: #74183a;
  animation-delay: .12s;
}

.hero-luxe-copy {
  max-width: 35em;
  margin: 35px 0 0;
  color: rgba(59, 37, 44, .78);
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: .055em;
  line-height: 2;
  animation: fadeUp .8s .3s both;
}

.hero-luxe-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 26px;
  animation: fadeUp .8s .45s both;
}

.hero-luxe-actions .btn {
  padding: 15px 27px !important;
  font-family: var(--font-display);
  font-size: 14px;
}

.hero-text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(125, 23, 59, .4);
  color: #5f1832;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
}

.hero-luxe-signature {
  position: absolute;
  right: clamp(35px, 4vw, 76px);
  bottom: clamp(30px, 5vh, 58px);
  margin: 0;
  color: rgba(255,255,255,.92);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 34px);
  font-style: italic;
  letter-spacing: .04em;
  text-shadow: 0 2px 18px rgba(55,24,34,.35);
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroType {
  from { opacity: 0; transform: translateY(45px); }
  to { opacity: 1; transform: none; }
}

.style-filters {
  display: flex;
  gap: 12px 10px;
  flex-wrap: wrap;
}

.filter-chip {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid rgba(125, 23, 59, .35);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.filter-chip:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.filter-chip.is-active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fffaf7;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-divider);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .25s ease;
}

.mobile-menu {
  display: none;
}

@media (max-width: 760px) {
  .nav {
    padding: 12px 18px !important;
  }

  .nav > div {
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .nav-brand {
    min-width: auto;
    gap: 7px;
  }

  .brand-emblem {
    width: 38px;
    height: 38px;
  }

  .brand-lockup strong { font-size: 22px; }
  .brand-lockup small { font-size: 6px; }

  .footer-brand-emblem {
    width: 50px;
    height: 50px;
  }

  .footer-brand-lockup strong { font-size: 28px; }

  .nav > div > a:not(.nav-brand):not(.btn) {
    display: none;
  }

  .nav > div > .btn {
    display: none !important;
  }

  .nav-toggle {
    position: absolute;
    top: 10px;
    right: 18px;
    display: flex !important;
    border: 0;
    border-radius: 50%;
    background: #7d173b;
    color: #fffaf7;
    flex: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(98, 16, 46, .2);
  }

  .mobile-menu {
    position: fixed;
    inset: 66px 0 auto;
    z-index: 49;
    padding: 18px;
    border-bottom: 2px solid var(--color-divider);
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
  }

  .mobile-menu.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--color-divider);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu .mobile-reserve {
    grid-column: 1 / -1;
    margin-top: 12px;
    border: 0;
    background: linear-gradient(135deg, #8b1d46, #62102e) !important;
    color: #fffaf7 !important;
    text-align: center;
  }

  main section div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  main section div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  main :is(section, footer) div[style*="grid-template-columns: minmax(0, 3fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0px, 3fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0, 4fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0px, 4fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0, 5fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0px, 5fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0, 6fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0px, 6fr)"] {
    grid-template-columns: 1fr !important;
  }

  main section div[style*="grid-template-columns: 120px"] {
    grid-template-columns: 48px 1fr !important;
  }

  main section div[style*="grid-template-columns: 120px"] > :last-child {
    grid-column: 2;
  }

  main section dl[style*="grid-template-columns: 88px"] {
    grid-template-columns: 1fr !important;
  }

  main section a[style*="grid-template-columns: 110px"],
  main section article[style*="grid-template-columns: 130px"] {
    grid-template-columns: 88px 1fr !important;
  }

  main section a[style*="grid-template-columns: 110px"] > :last-child,
  main section article[style*="grid-template-columns: 130px"] > :last-child {
    grid-column: 1 / -1;
  }

  main section a[style*="grid-template-columns: 110px"] > :last-child {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .table {
    display: block;
    overflow-x: auto;
  }

  .hero-luxe,
  .hero-luxe-content {
    min-height: 600px;
  }

  .hero-luxe-image {
    object-position: 82% center;
  }

  .hero-luxe-wash {
    background: linear-gradient(90deg, rgba(251,248,244,.96) 0%, rgba(251,248,244,.84) 52%, rgba(251,248,244,.2) 100%), linear-gradient(180deg, rgba(251,248,244,.3), rgba(53,26,35,.14));
  }

  .hero-luxe::after { inset: 12px; }

  .hero-luxe-content {
    width: 100%;
    padding: 72px 28px 96px;
    justify-content: flex-start;
  }

  .hero-luxe-kicker {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero-luxe h1 {
    font-size: clamp(50px, 14vw, 66px);
    line-height: .92;
  }

  .hero-luxe h1 span:last-child { margin-left: .12em; }

  .hero-luxe-copy {
    width: 100%;
    max-width: 330px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }

  .hero-luxe-copy br { display: none; }

  .hero-luxe-actions {
    margin-top: 24px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-luxe-signature {
    right: 24px;
    bottom: 24px;
    font-size: 20px;
  }

  footer[style*="border-top"] {
    padding-top: 48px !important;
  }

  footer div[style*="grid-template-columns: minmax(0px, 5fr)"] {
    gap: 36px !important;
  }

  footer div[style*="grid-template-columns: minmax(0px, 5fr)"] > div + div {
    padding-top: 32px;
    border-top: 1px solid var(--color-divider);
  }

  footer a:not(.footer-brand) {
    display: block;
    padding: 6px 0;
  }

  footer div[style*="display: grid; gap: 10px"] {
    gap: 4px !important;
  }
}

@media (max-width: 420px) {
  .nav > div > .btn span {
    display: none;
  }

  .brand-lockup small { display: none; }

  .hero-text-link { font-size: 13px; }
}
