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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  background: #14120f;
  color: #f5f2ec;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.l-inner {
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .l-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1070px) {
  .l-inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 18, 15, 0.95);
  border-bottom: 1px solid rgba(201, 162, 92, 0.15);
}
.l-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.l-header__nav {
  display: none;
}
@media (min-width: 1070px) {
  .l-header__nav {
    display: block;
  }
}
.l-header__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.l-header__link {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c6c1b9;
  transition: color 0.2s ease;
}
.l-header__link:hover {
  color: #c9a25c;
}
.l-header__link--current {
  color: #c9a25c;
}

.l-footer {
  background: #0f0d0a;
  border-top: 1px solid rgba(201, 162, 92, 0.1);
}
.l-footer__container {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .l-footer__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  max-width: 350px;
}
.c-btn:hover {
  opacity: 0.85;
}
.c-btn--primary {
  background: #c9a25c;
  color: #14120f;
}
.c-btn--outline {
  background: #0f0d0a;
  border: 1px solid #c9a25c;
  color: #c9a25c;
}
.c-btn--outline-muted {
  background: transparent;
  border: 1px solid rgba(138, 128, 112, 0.3);
  color: #8a8070;
}
.c-btn--inline {
  width: auto;
}

.c-eyebrow {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #c9a25c;
  text-transform: uppercase;
}

.c-heading-1 {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #f5f2ec;
}
@media (min-width: 768px) {
  .c-heading-1 {
    font-size: 48px;
  }
}

.c-heading-2 {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.35;
  color: #f5f2ec;
}
@media (min-width: 768px) {
  .c-heading-2 {
    font-size: 30px;
  }
}

.c-heading-3 {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #f5f2ec;
}

.c-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-logo__mark {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(201, 162, 92, 0.6);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.c-logo__text {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #f5f2ec;
  white-space: nowrap;
}

.c-divider {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .c-divider--footer {
    grid-column: 1/-1;
  }
}
.c-divider__line {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(201, 162, 92, 0.2);
}
.c-divider__diamond {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  background: rgba(201, 162, 92, 0.4);
  transform: rotate(45deg);
}

.c-dots {
  display: flex;
  gap: 4px;
}
.c-dots__dot {
  width: 4px;
  height: 4px;
  background: rgba(201, 162, 92, 0.3);
  transform: rotate(45deg);
}

.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 40px;
  height: 40px;
  padding: 12px 8px;
}
@media (min-width: 1070px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger__line {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  background: #f5f2ec;
}

.c-close {
  position: relative;
  width: 40px;
  height: 40px;
}
.c-close__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #f5f2ec;
}
.c-close__line--1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-close__line--2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-tabs {
  display: flex;
  border: 1px solid rgba(201, 162, 92, 0.2);
}
@media (min-width: 768px) {
  .c-tabs {
    display: inline-flex;
  }
}
.c-tabs__btn {
  flex: 1 1 0;
  padding: 14px 8px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #8a8070;
  background: transparent;
}
@media (min-width: 768px) {
  .c-tabs__btn {
    flex: none;
    padding: 14px 32px;
    white-space: nowrap;
  }
}
.c-tabs__btn.is-active {
  background: #c9a25c;
  color: #14120f;
}

.p-radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 21px;
  cursor: pointer;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-radio-card + .p-radio-card {
  margin-top: 8px;
}
.p-radio-card__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.p-radio-card__radio {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(138, 128, 112, 0.4);
}
.p-radio-card__body {
  flex: 1 1 auto;
}
.p-radio-card__name {
  font-weight: 500;
  font-size: 14px;
  color: #f5f2ec;
}
.p-radio-card__price {
  font-weight: 300;
  font-size: 14px;
  color: #c9a25c;
  white-space: nowrap;
}
.p-radio-card__input:checked ~ .p-radio-card__radio {
  border-color: #c9a25c;
}
.p-radio-card__input:checked ~ .p-radio-card__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #c9a25c;
  border-radius: 50%;
}
.p-radio-card:has(.p-radio-card__input:checked) {
  background: rgba(201, 162, 92, 0.05);
  border-color: rgba(201, 162, 92, 0.6);
}
.p-radio-card--compact {
  padding: 17px;
}
.p-radio-card--compact .p-radio-card__name {
  font-weight: 500;
  font-size: 12px;
}
.p-radio-card--compact .p-radio-card__price {
  font-weight: 500;
  font-size: 12px;
}

.p-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-check-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-check-grid:has(.p-check-tile--top) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-check-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px;
  cursor: pointer;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-check-tile--top {
  align-items: flex-start;
  padding: 13px;
}
.p-check-tile__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.p-check-tile__box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(138, 128, 112, 0.4);
}
.p-check-tile--top .p-check-tile__box {
  margin-top: 2px;
}
.p-check-tile__label {
  font-weight: 500;
  font-size: 12px;
  color: #8a8070;
}
.p-check-tile--top .p-check-tile__label {
  font-size: 11px;
  line-height: 1.5;
}
.p-check-tile__input:checked ~ .p-check-tile__box {
  background: #c9a25c;
  border-color: #c9a25c;
}

.p-hero {
  position: relative;
  overflow: hidden;
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.p-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #14120f 0%, rgba(20, 18, 15, 0.85) 50%, rgba(20, 18, 15, 0.3) 100%);
}
.p-hero__inner {
  position: relative;
  z-index: 1;
}
.p-hero {
  min-height: 680px;
}
.p-hero__container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (min-width: 768px) {
  .p-hero__container {
    max-width: 726px;
    padding-right: 0;
  }
}
.p-hero__eyebrow {
  margin-bottom: 24px;
}
.p-hero__heading {
  margin-bottom: 24px;
}
.p-hero__lead {
  max-width: 384px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}
.p-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .p-hero__actions {
    flex-direction: row;
  }
  .p-hero__actions .c-btn {
    width: auto;
  }
}
.p-hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-top: 25px;
  border-top: 1px solid rgba(201, 162, 92, 0.15);
}
@media (min-width: 768px) {
  .p-hero__stats {
    justify-content: flex-start;
  }
}

.p-hero-stat {
  display: flex;
  align-items: center;
  gap: 32px;
}
.p-hero-stat:not(:first-child) {
  padding-left: 32px;
  border-left: 1px solid rgba(201, 162, 92, 0.2);
}
.p-hero-stat__value {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: #c9a25c;
}
.p-hero-stat__label {
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #8a8070;
  white-space: nowrap;
}

.p-trust-bar {
  position: relative;
  overflow: hidden;
  background: #0f0d0a;
  border-top: 1px solid rgba(201, 162, 92, 0.1);
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
  padding: 16px 0;
  text-align: center;
}
.p-trust-bar__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.p-trust-bar__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 10, 0.3);
}
.p-trust-bar__list {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 31px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-trust-bar__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 32px;
    row-gap: 16px;
    padding: 0 80px;
  }
}
.p-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #8a8070;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-trust-bar__item:not(:first-child) {
    padding-left: 24px;
    border-left: 1px solid rgba(138, 128, 112, 0.3);
  }
}
.p-trust-bar__mark {
  color: rgba(201, 162, 92, 0.5);
}

.p-usp {
  position: relative;
  overflow: hidden;
}
.p-usp__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.p-usp__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 15, 0.5) 0%, rgba(20, 18, 15, 0.2) 50%, rgba(20, 18, 15, 0.5) 100%);
}
.p-usp__inner {
  position: relative;
  z-index: 1;
}
.p-usp__container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (min-width: 768px) {
  .p-usp__container {
    display: grid;
    grid-template-columns: 287px 1fr;
    column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .p-usp__intro {
    grid-column: 1;
  }
}
.p-usp__eyebrow {
  margin-bottom: 20px;
}
.p-usp__heading {
  margin-bottom: 20px;
}
.p-usp__lead {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}
.p-usp__cta {
  width: fit-content;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .p-usp__cta {
    margin: 0;
  }
}
.p-usp__cards {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
@media (min-width: 768px) {
  .p-usp__cards {
    grid-column: 2;
    grid-row: 1/-1;
    flex-direction: row;
    align-self: start;
  }
}

.p-usp-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #1c1a16;
}
.p-usp-card:not(:last-child) {
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
@media (min-width: 768px) {
  .p-usp-card:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(201, 162, 92, 0.1);
  }
}
@media (min-width: 768px) {
  .p-usp-card {
    flex: 1 1 0;
  }
}
.p-usp-card__number {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #c9a25c;
}
.p-usp-card__text {
  font-size: 12px;
  line-height: 1.625;
  color: #8a8070;
}

.p-voice {
  position: relative;
  overflow: hidden;
}
.p-voice__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.p-voice__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 15, 0.5) 0%, rgba(20, 18, 15, 0.2) 50%, rgba(20, 18, 15, 0.5) 100%);
}
.p-voice__inner {
  position: relative;
  z-index: 1;
}
.p-voice__container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-voice__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  text-align: center;
}
.p-voice__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .p-voice__cards {
    flex-direction: row;
  }
}
.p-voice__more {
  display: flex;
  justify-content: center;
}

.p-voice-card {
  padding: 29px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
@media (min-width: 768px) {
  .p-voice-card {
    flex: 1 1 0;
  }
}
.p-voice-card__category {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #c9a25c;
}
.p-voice-card__quote {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.625;
  color: #f5f2ec;
}
.p-voice-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 21px;
  border-top: 1px solid rgba(201, 162, 92, 0.1);
}
.p-voice-card__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #201e1a;
  border: 1px solid rgba(201, 162, 92, 0.2);
}
.p-voice-card__name {
  font-size: 12px;
  color: #8a8070;
}
.p-voice-card__person-text {
  display: flex;
  flex-direction: column;
}
.p-voice-card__attribute {
  margin-top: 2px;
  font-size: 10px;
  color: #8a8070;
}
.p-voice-card__stars {
  display: flex;
  gap: 2px;
  margin-left: auto;
  color: #c9a25c;
  font-size: 12px;
}

.p-reservation {
  position: relative;
  overflow: hidden;
}
.p-reservation__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.p-reservation__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.55);
}
.p-reservation__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 96px;
  text-align: center;
}
.p-reservation__line {
  width: 1px;
  height: 48px;
  margin-bottom: 0;
  background: rgba(201, 162, 92, 0.4);
}
.p-reservation__eyebrow {
  margin-top: 24px;
}
.p-reservation__heading {
  margin-top: 20px;
  max-width: 353px;
}
@media (min-width: 768px) {
  .p-reservation__heading {
    max-width: 550px;
  }
}
.p-reservation__lead {
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #8a8070;
}

.p-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer-brand {
    grid-column: span 4;
    margin-bottom: 0;
  }
}
.p-footer-brand__desc {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.625;
  color: #8a8070;
}
.p-footer-brand__address {
  margin-top: 20px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  color: #8a8070;
}

.p-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer-nav {
    grid-column: span 2;
    margin-bottom: 0;
  }
}
.p-footer-nav__title {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #c9a25c;
}
.p-footer-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.p-footer-nav__link {
  font-size: 12px;
  color: #8a8070;
}
.p-footer-nav__link:hover {
  color: #f5f2ec;
}

.p-footer-reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer-reserve {
    grid-column: span 6;
  }
}
.p-footer-reserve__title {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #c9a25c;
}
.p-footer-reserve__lead {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.625;
  color: #8a8070;
}

.p-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(201, 162, 92, 0.2);
}
@media (min-width: 768px) {
  .p-footer-bottom {
    grid-column: 1/-1;
    flex-direction: row;
    justify-content: space-between;
  }
}
.p-footer-bottom__copyright {
  font-weight: 500;
  font-size: 10px;
  color: #8a8070;
}

.p-drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  background: #14120f;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}
@media (min-width: 1070px) {
  .p-drawer {
    display: none;
  }
}
.p-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.p-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  height: 64px;
  border-bottom: 1px solid rgba(201, 162, 92, 0.15);
}
.p-drawer__nav {
  flex: 0 1 auto;
  overflow-y: auto;
}
.p-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-drawer__list li {
  width: 100%;
}
.p-drawer__link {
  display: block;
  width: 100%;
  padding: 20px 20px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  color: #8a8070;
  border-bottom: 1px solid rgba(201, 162, 92, 0.15);
}
.p-drawer__link--current {
  color: #c9a25c;
}
.p-drawer__cta {
  flex-shrink: 0;
  margin: 20px auto;
}

.p-page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.p-page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #14120f 0%, rgba(20, 18, 15, 0.6) 50%, rgba(20, 18, 15, 0.1) 100%);
}
.p-page-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .p-page-hero__container {
    padding-bottom: 96px;
  }
}
.p-page-hero__eyebrow {
  margin-bottom: 16px;
}
.p-page-hero__heading {
  margin-bottom: 20px;
}
.p-page-hero__lead {
  max-width: 448px;
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}

.p-process {
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-process__heading {
  margin-top: 12px;
}
.p-process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 162, 92, 0.15);
  margin-top: 56px;
}
@media (min-width: 768px) {
  .p-process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-process-card {
  display: flex;
  flex-direction: column;
  background: #1c1a16;
}
.p-process-card__photo {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
  background: #0f0d0a;
}
.p-process-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
}
.p-process-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-process-card__number {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #c9a25c;
}
.p-process-card__rule {
  width: 32px;
  height: 1px;
  background: rgba(201, 162, 92, 0.3);
}
.p-process-card__name {
  font-weight: 500;
  font-size: 12px;
  color: #f5f2ec;
}
.p-process-card__color {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(201, 162, 92, 0.7);
}
.p-process-card__desc {
  font-size: 11px;
  line-height: 1.625;
  color: #8a8070;
}

.p-chef {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (min-width: 768px) {
  .p-chef {
    display: grid;
    grid-template-columns: 365px 1fr;
    column-gap: 102px;
  }
}
.p-chef__photo {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  background: #1c1a16;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-chef__photo {
    grid-column: 1;
    grid-row: 1/-1;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .p-chef__intro {
    grid-column: 2;
  }
}
.p-chef__heading {
  margin-top: 20px;
}
.p-chef__lead {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}
.p-chef__lead + .p-chef__lead {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-chef__lead {
    max-width: 480px;
  }
}
.p-chef__quote {
  margin-top: 32px;
  padding-left: 21px;
  border-left: 1px solid rgba(201, 162, 92, 0.5);
}
@media (min-width: 768px) {
  .p-chef__quote {
    max-width: 480px;
  }
}
.p-chef__name {
  font-weight: 500;
  font-size: 14px;
  color: #f5f2ec;
}
.p-chef__role {
  margin-top: 4px;
  font-size: 12px;
  color: #8a8070;
}

.p-gallery {
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-gallery__heading {
  margin-top: 12px;
}
.p-gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .p-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .p-gallery__grid > .p-gallery__photo:first-child {
    grid-column: span 2;
  }
}
.p-gallery__row {
  display: flex;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-gallery__row {
    flex-direction: column;
  }
}
.p-gallery__photo {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #1c1a16;
}
.p-gallery__row .p-gallery__photo {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}
@media (min-width: 768px) {
  .p-gallery__row .p-gallery__photo {
    flex: none;
    width: 100%;
  }
}
.p-gallery__cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.p-course {
  position: relative;
  overflow: hidden;
}
.p-course__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.p-course__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 15, 0.5) 0%, rgba(20, 18, 15, 0.2) 50%, rgba(20, 18, 15, 0.5) 100%);
}
.p-course__container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-course__heading {
  margin-top: 12px;
}
.p-course__list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 162, 92, 0.15);
  margin-top: 48px;
}
@media (min-width: 768px) {
  .p-course__list {
    flex-direction: row;
  }
}

.p-course-card {
  display: flex;
  flex-direction: column;
  background: #1c1a16;
}
.p-course-card:not(:last-child) {
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
@media (min-width: 768px) {
  .p-course-card:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(201, 162, 92, 0.1);
  }
}
@media (min-width: 768px) {
  .p-course-card {
    flex: 1 1 0;
  }
}
.p-course-card__ribbon {
  display: block;
  padding: 8px;
  background: #c9a25c;
  color: #14120f;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-align: center;
}
.p-course-card__ribbon--placeholder {
  visibility: hidden;
  height: 32px;
}
.p-course-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 28px;
}
.p-course-card__name {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #c9a25c;
}
.p-course-card__price {
  margin-top: 8px;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  color: #f5f2ec;
}
.p-course-card__sub {
  margin-top: 4px;
  font-size: 10px;
  color: #8a8070;
}
.p-course-card__desc {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.625;
  color: #8a8070;
}
.p-course-card__rule {
  margin-top: 20px;
  height: 1px;
  background: rgba(201, 162, 92, 0.2);
}
.p-course-card__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.p-course-card__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #8a8070;
}
.p-course-card__item-mark {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 6px;
  background: rgba(201, 162, 92, 0.5);
  transform: rotate(45deg);
}
.p-course-card__cta {
  margin-top: auto;
}

.p-pairing {
  position: relative;
  overflow: hidden;
}
.p-pairing__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.p-pairing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 15, 0.5) 0%, rgba(20, 18, 15, 0.2) 50%, rgba(20, 18, 15, 0.5) 100%);
}
.p-pairing__container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (min-width: 1070px) {
  .p-pairing__container {
    display: grid;
    grid-template-columns: 287px 1fr;
    column-gap: 24px;
  }
}
@media (min-width: 1070px) {
  .p-pairing__intro {
    grid-column: 1;
  }
}
.p-pairing__heading {
  margin-top: 16px;
}
.p-pairing__lead {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}
.p-pairing__list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 162, 92, 0.15);
  margin-top: 48px;
}
@media (min-width: 1070px) {
  .p-pairing__list {
    grid-column: 2;
    grid-row: 1/-1;
    flex-direction: row;
    margin-top: 0;
  }
}

.p-pairing-tier {
  padding: 24px;
  background: #1c1a16;
}
.p-pairing-tier:not(:last-child) {
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
@media (min-width: 1070px) {
  .p-pairing-tier:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(201, 162, 92, 0.1);
  }
}
@media (min-width: 1070px) {
  .p-pairing-tier {
    flex: 1 1 0;
  }
}
.p-pairing-tier__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.p-pairing-tier__name {
  font-weight: 500;
  font-size: 14px;
  color: #f5f2ec;
}
.p-pairing-tier__price {
  font-weight: 300;
  font-size: 24px;
  color: #f5f2ec;
}
.p-pairing-tier__sub {
  margin-top: 4px;
  font-size: 10px;
  color: #8a8070;
}
.p-pairing-tier__rule {
  margin-top: 16px;
  height: 1px;
  background: rgba(201, 162, 92, 0.2);
}
.p-pairing-tier__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.p-pairing-tier__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8a8070;
}
.p-pairing-tier__item-mark {
  color: rgba(201, 162, 92, 0.4);
}

.p-options {
  position: relative;
  overflow: hidden;
}
.p-options__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.p-options__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 15, 0.5) 0%, rgba(20, 18, 15, 0.2) 50%, rgba(20, 18, 15, 0.5) 100%);
}
.p-options__container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-options__heading {
  margin-top: 12px;
}
.p-options__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(201, 162, 92, 0.15);
  margin-top: 48px;
}
@media (min-width: 768px) {
  .p-options__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-option-tile {
  padding: 20px;
  background: #1c1a16;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
.p-option-tile:nth-child(odd) {
  border-right: 1px solid rgba(201, 162, 92, 0.1);
}
.p-option-tile:nth-last-child(-n+2) {
  border-bottom: none;
}
@media (min-width: 768px) {
  .p-option-tile {
    border-right: 1px solid rgba(201, 162, 92, 0.1);
    border-bottom: 1px solid rgba(201, 162, 92, 0.1);
  }
  .p-option-tile:nth-child(4n) {
    border-right: none;
  }
  .p-option-tile:nth-last-child(-n+4) {
    border-bottom: none;
  }
}
.p-option-tile__name {
  font-weight: 500;
  font-size: 12px;
  color: #f5f2ec;
  white-space: nowrap;
}
.p-option-tile__price {
  margin-top: 6px;
  font-weight: 300;
  font-size: 18px;
  color: #c9a25c;
}
.p-option-tile__sub {
  margin-top: 4px;
  font-size: 10px;
  color: #8a8070;
}

.p-allergy {
  position: relative;
  overflow: hidden;
}
.p-allergy__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.p-allergy__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 15, 0.5) 0%, rgba(20, 18, 15, 0.2) 50%, rgba(20, 18, 15, 0.5) 100%);
}
.p-allergy__container {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (min-width: 768px) {
  .p-allergy__container {
    display: grid;
    grid-template-columns: 365px 1fr;
    column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .p-allergy__intro {
    grid-column: 1;
  }
}
.p-allergy__heading {
  margin-top: 16px;
}
.p-allergy__lead {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}
.p-allergy__card {
  margin-top: 32px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
  padding: 29px;
}
@media (min-width: 768px) {
  .p-allergy__card {
    grid-column: 2;
    grid-row: 1/-1;
    margin-top: 0;
  }
}
.p-allergy__label {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #c9a25c;
}
.p-allergy__checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.p-allergy__footnote {
  margin-top: 24px;
  padding: 21px 16px 16px;
  background: rgba(20, 18, 15, 0.5);
  border-top: 1px solid rgba(201, 162, 92, 0.1);
  font-size: 11px;
  line-height: 1.5;
  color: #8a8070;
}

.p-allergy-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-allergy-check__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(201, 162, 92, 0.4);
}
.p-allergy-check__box-inner {
  width: 6px;
  height: 6px;
  background: rgba(201, 162, 92, 0.4);
}
.p-allergy-check__label {
  font-size: 12px;
  color: #8a8070;
}

.p-mini-cta {
  position: relative;
  overflow: hidden;
}
.p-mini-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.p-mini-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.55);
}
.p-mini-cta__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.p-mini-cta__heading {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.33;
  color: #f5f2ec;
}
.p-mini-cta__lead {
  max-width: 353px;
  margin-top: 12px;
  margin-bottom: 32px;
  font-size: 14px;
  color: #8a8070;
}

.p-space {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-space-panel {
  margin-top: 56px;
}
@media (min-width: 1070px) {
  .p-space-panel {
    display: grid;
    grid-template-columns: 1fr 365px;
    column-gap: 24px;
  }
}
.p-space-panel__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1070px) {
  .p-space-panel__gallery {
    grid-column: 1;
    grid-row: 1/-1;
  }
}
@media (min-width: 1070px) {
  .p-space-panel__intro {
    grid-column: 2;
  }
}
.p-space-panel__main-photo {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  background: #1c1a16;
}
.p-space-panel__sub-photos {
  display: flex;
  gap: 16px;
}
.p-space-panel__sub-photo {
  display: block;
  width: 100%;
  height: 176px;
  object-fit: cover;
  background: #1c1a16;
}
.p-space-panel__heading {
  margin-top: 20px;
}
.p-space-panel__specs {
  margin-top: 24px;
}
.p-space-panel__quote {
  margin-top: 28px;
  padding: 21px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
  font-size: 12px;
  line-height: 1.625;
  color: #8a8070;
}
.p-space-panel__cta {
  display: block;
  margin: 28px auto 0;
  width: 100%;
}

.p-space-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 14px 0 15px;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
.p-space-spec__label {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #c9a25c;
}
.p-space-spec__value {
  font-size: 12px;
  color: #8a8070;
}

.p-floorplan {
  background: #1c1a16;
  border-top: 1px solid rgba(201, 162, 92, 0.1);
}
.p-floorplan__container {
  padding-top: 64px;
  padding-bottom: 64px;
}
.p-floorplan__box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 256px;
  margin-top: 20px;
  background: #14120f;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-floorplan__label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #8a8070;
}

.p-voice-hero {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-voice-hero {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
  }
}
.p-voice-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-voice-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #14120f 0%, rgba(20, 18, 15, 0.7) 50%, rgba(20, 18, 15, 0.1) 100%);
}
.p-voice-hero__container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .p-voice-hero__container {
    width: 100%;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 24px;
    align-items: end;
  }
}
.p-voice-hero__eyebrow {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-voice-hero__eyebrow {
    grid-column: 1;
    grid-row: 1;
  }
}
.p-voice-hero__heading {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-voice-hero__heading {
    grid-column: 1;
    grid-row: 2;
  }
}
.p-voice-hero__lead {
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}
@media (min-width: 768px) {
  .p-voice-hero__lead {
    grid-column: 1;
    grid-row: 3;
    max-width: 520px;
  }
}
.p-voice-hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-voice-hero__stats {
    grid-column: 2;
    grid-row: 1/-1;
    align-self: end;
    margin-top: 0;
  }
}

.p-testimonials {
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-testimonials__heading {
  margin-top: 12px;
}
.p-testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .p-testimonials__list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
  }
  .p-testimonials__list .p-voice-card:nth-child(1) {
    grid-column: 1/span 8;
  }
  .p-testimonials__list .p-voice-card:nth-child(2) {
    grid-column: 9/span 4;
  }
  .p-testimonials__list .p-voice-card:nth-child(3) {
    grid-column: 1/span 4;
  }
  .p-testimonials__list .p-voice-card:nth-child(4) {
    grid-column: 5/span 8;
  }
}

.p-instagram {
  padding-top: 96px;
  padding-bottom: 96px;
}
.p-instagram__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.p-instagram__followers {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #8a8070;
}
.p-instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.p-instagram__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #1c1a16;
}

.p-faq {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (min-width: 768px) {
  .p-faq {
    display: grid;
    grid-template-columns: 210px 1fr;
    column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .p-faq__sidebar {
    grid-column: 1;
  }
}
.p-faq__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-faq__tags {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
.p-faq__list {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-faq__list {
    grid-column: 2;
    grid-row: 1/-1;
    margin-top: 0;
  }
}

.p-faq-tag {
  padding: 9px 13px;
  font-weight: 500;
  font-size: 12px;
  color: #8a8070;
  background: transparent;
  border: 1px solid rgba(201, 162, 92, 0.15);
}

.p-faq-item {
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
.p-faq-item__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  text-align: left;
}
.p-faq-item__category {
  display: block;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #c9a25c;
}
.p-faq-item__question {
  display: block;
  margin-top: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #f5f2ec;
}
.p-faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  font-weight: 500;
  font-size: 16px;
  color: #c9a25c;
  border: 1px solid rgba(201, 162, 92, 0.4);
}
.p-faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.p-faq-item__answer-inner {
  padding-bottom: 24px;
  font-size: 13px;
  line-height: 1.7;
  color: #8a8070;
}
.p-faq-item.is-open .p-faq-item__icon {
  transform: rotate(45deg);
}
.p-faq-item.is-open .p-faq-item__answer {
  max-height: 300px;
}

.p-faq-cta {
  position: relative;
  overflow: hidden;
}
.p-faq-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.p-faq-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 18, 15, 0.75) 0%, rgba(20, 18, 15, 0.45) 50%, rgba(20, 18, 15, 0.75) 100%);
}
.p-faq-cta__container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .p-faq-cta__container {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 24px;
  }
}
.p-faq-cta__heading {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: #f5f2ec;
}
@media (min-width: 768px) {
  .p-faq-cta__heading {
    grid-column: 1;
    grid-row: 1;
  }
}
.p-faq-cta__lead {
  margin-top: 8px;
  font-size: 14px;
  color: #8a8070;
}
@media (min-width: 768px) {
  .p-faq-cta__lead {
    grid-column: 1;
    grid-row: 2;
  }
}
.p-faq-cta__actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-faq-cta__actions {
    grid-column: 2;
    grid-row: 1/-1;
    margin-top: 0;
  }
}

.p-access-hero {
  position: relative;
  overflow: hidden;
}
.p-access-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.p-access-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #14120f 0%, rgba(20, 18, 15, 0.55) 50%, rgba(20, 18, 15, 0.1) 100%);
}
.p-access-hero__container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .p-access-hero__container {
    display: flex;
    align-items: stretch;
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .p-access-hero__intro {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
.p-access-hero__eyebrow {
  margin-bottom: 16px;
}
.p-access-hero__heading {
  margin-bottom: 20px;
}
.p-access-hero__lead {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}
@media (min-width: 768px) {
  .p-access-hero__lead {
    max-width: 444px;
  }
}
.p-access-hero__card {
  background: #14120f;
  border: 1px solid rgba(201, 162, 92, 0.15);
  padding: 29px;
}
@media (min-width: 768px) {
  .p-access-hero__card {
    flex: 1;
  }
}

.p-access-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: 12px 0 13px;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
.p-access-info:last-child {
  border-bottom: none;
  padding-top: 12px;
  padding-bottom: 0;
}
.p-access-info__label {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #c9a25c;
}
.p-access-info__value {
  font-size: 12px;
  color: #8a8070;
}

.p-map {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-map {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .p-map__mapcol {
    grid-column: 1/span 8;
  }
}
.p-map__embed {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
@media (min-width: 768px) {
  .p-map__embed {
    height: 384px;
  }
  .p-map__embed iframe {
    width: 100%;
    height: 100%;
  }
}
.p-map__embed-label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #8a8070;
}
.p-map__route {
  margin-top: 56px;
}
@media (min-width: 768px) {
  .p-map__route {
    grid-column: 9/span 4;
    grid-row: 1/3;
    margin-top: 0;
  }
}
.p-map__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.p-route-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.p-route-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  font-weight: 500;
  font-size: 10px;
  color: #c9a25c;
  border: 1px solid rgba(201, 162, 92, 0.4);
}
.p-route-step__text {
  padding-top: 6px;
  font-size: 12px;
  line-height: 1.625;
  color: #8a8070;
}

.p-photo-directions {
  margin-top: 40px;
}
.p-photo-directions__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.p-photo-directions__photo {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: cover;
  background: #1c1a16;
}

.p-parking {
  padding-top: 80px;
  padding-bottom: 80px;
}
.p-parking__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 162, 92, 0.15);
  margin-top: 24px;
}

.p-parking-card {
  padding: 20px;
  background: #1c1a16;
}
.p-parking-card__name {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33;
  color: #f5f2ec;
}
.p-parking-card__row {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(201, 162, 92, 0.6);
}
.p-parking-card__row + .p-parking-card__row {
  margin-top: 4px;
}
.p-parking-card__value {
  color: #8a8070;
}

.p-reserve-hero {
  position: relative;
  overflow: hidden;
}
.p-reserve-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.p-reserve-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #14120f 0%, rgba(20, 18, 15, 0.55) 50%, rgba(20, 18, 15, 0.1) 100%);
}
.p-reserve-hero__container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .p-reserve-hero__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .p-reserve-hero__intro {
    grid-column: 1;
  }
}
.p-reserve-hero__eyebrow {
  margin-bottom: 16px;
}
.p-reserve-hero__heading {
  margin-bottom: 20px;
}
.p-reserve-hero__lead {
  font-size: 14px;
  line-height: 1.625;
  color: #8a8070;
}
.p-reserve-hero__badges {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-reserve-hero__badges {
    grid-column: 2;
    grid-row: 1/-1;
    justify-content: center;
    margin-top: 0;
  }
}

.p-reserve-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.p-reserve-badge__mark {
  font-size: 20px;
  line-height: 1.4;
  color: #c9a25c;
}
.p-reserve-badge__label {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #8a8070;
  white-space: nowrap;
}

.p-steps {
  display: flex;
  align-items: center;
  overflow-x: auto;
  background: #0f0d0a;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
@media (min-width: 768px) {
  .p-steps {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    overflow-x: visible;
  }
}

.p-step {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.p-step__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  white-space: nowrap;
}
.p-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(138, 128, 112, 0.3);
  color: rgba(138, 128, 112, 0.5);
}
.p-step__label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(138, 128, 112, 0.5);
}
.p-step__connector {
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: rgba(201, 162, 92, 0.15);
}
.p-step.is-active .p-step__btn {
  background: #c9a25c;
}
.p-step.is-active .p-step__number {
  border-color: #14120f;
  color: #14120f;
}
.p-step.is-active .p-step__label {
  color: #14120f;
}
.p-step.is-done .p-step__number {
  background: #c9a25c;
  border-color: #c9a25c;
  color: #14120f;
}
.p-step.is-done .p-step__label {
  color: #8a8070;
}

.p-calendar {
  margin-top: 20px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 21px;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
.p-calendar__nav-btn {
  padding: 7px 13px;
  font-weight: 500;
  font-size: 12px;
  color: #8a8070;
  border: 1px solid rgba(201, 162, 92, 0.2);
}
.p-calendar__month {
  font-weight: 500;
  font-size: 14px;
  color: #f5f2ec;
}
.p-calendar__body {
  padding: 20px;
}
.p-calendar__weekdays, .p-calendar__dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.p-calendar__weekday {
  padding: 4px 0;
  font-weight: 500;
  font-size: 10px;
  text-align: center;
  color: rgba(201, 162, 92, 0.6);
}
.p-calendar__dates {
  margin-top: 4px;
}
.p-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 21px;
  padding-top: 21px;
  border-top: 1px solid rgba(201, 162, 92, 0.1);
}

.p-calendar-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-weight: 500;
  font-size: 12px;
  color: rgba(138, 128, 112, 0.2);
  border: 1px solid transparent;
  background: none;
}
.p-calendar-date--empty {
  visibility: hidden;
}
.p-calendar-date--soldout {
  color: rgba(138, 128, 112, 0.3);
  text-decoration: line-through;
  cursor: not-allowed;
}
.p-calendar-date--available {
  color: #f5f2ec;
  border-color: rgba(201, 162, 92, 0.3);
}
.p-calendar-date--future {
  color: #f5f2ec;
}
.p-calendar-date__dot {
  width: 4px;
  height: 4px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(201, 162, 92, 0.5);
}
.p-calendar-date.is-selected {
  background: #c9a25c;
  border-color: #c9a25c;
  color: #14120f;
}
.p-calendar-date.is-selected .p-calendar-date__dot {
  background: #14120f;
}

.p-calendar-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #8a8070;
}
.p-calendar-legend-item__icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}
.p-calendar-legend-item__icon--selected {
  background: #c9a25c;
}
.p-calendar-legend-item__icon--available {
  border: 1px solid rgba(201, 162, 92, 0.3);
}

.p-reserve-form {
  padding: 80px 0 0;
}
@media (min-width: 768px) {
  .p-reserve-form {
    padding: 64px 0;
  }
}
@media (min-width: 768px) {
  .p-reserve-form__container {
    display: grid;
    grid-template-columns: 1fr 287px;
    column-gap: 24px;
    align-items: start;
  }
}
@media (min-width: 768px) {
  .p-reserve-form__main {
    grid-column: 1;
  }
}
.p-reserve-form__seats {
  margin-top: 48px;
}
.p-reserve-form__block {
  margin-top: 48px;
}
.p-reserve-form__group {
  margin-top: 16px;
}

.p-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .p-form-row {
    gap: 24px;
  }
}

.p-time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.p-time-slot {
  padding: 11px 1px;
  font-weight: 500;
  font-size: 12px;
  color: #8a8070;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-time-slot.is-active {
  color: #14120f;
  background: #c9a25c;
  border-color: #c9a25c;
}

.p-party-select {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 16px;
  padding: 0 12px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
  color: #f5f2ec;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.2);
}

.p-party-hint {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.5;
  color: #8a8070;
}

.p-seat-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.p-seat-card {
  padding: 21px;
  text-align: left;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-seat-card__title {
  font-weight: 500;
  font-size: 14px;
  color: #f5f2ec;
}
.p-seat-card__meta {
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(201, 162, 92, 0.6);
}
.p-seat-card__desc {
  margin-top: 4px;
  font-size: 11px;
  color: #8a8070;
}
.p-seat-card.is-selected {
  background: rgba(201, 162, 92, 0.05);
  border-color: rgba(201, 162, 92, 0.6);
}

.p-reserve-form__next {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

.p-summary {
  margin-top: 56px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
@media (min-width: 768px) {
  .p-summary {
    grid-column: 2;
    grid-row: 1/-1;
    align-self: start;
    margin-top: 0;
    position: sticky;
    top: 88px;
  }
}
.p-summary__head {
  padding: 16px 24px 17px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #c9a25c;
  background: #201e1a;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
.p-summary__body {
  padding: 24px;
}
.p-summary__divider {
  height: 1px;
  margin-top: 20px;
  background: rgba(201, 162, 92, 0.2);
}
.p-summary__pricing {
  margin-top: 20px;
}
.p-summary__notice {
  margin-top: 20px;
  padding: 17px;
  background: #14120f;
  border: 1px solid rgba(201, 162, 92, 0.1);
}
.p-summary__notice-title {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #c9a25c;
}
.p-summary__notice-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.p-summary__notice-item {
  font-size: 11px;
  line-height: 1.625;
  color: #8a8070;
}

.p-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 12px;
}
.p-summary-row + .p-summary-row {
  margin-top: 10px;
}
.p-summary-row__label {
  color: #8a8070;
}
.p-summary-row__value {
  color: #f5f2ec;
}
.p-summary-row--price .p-summary-row__value {
  color: #c9a25c;
}
.p-summary-row--muted {
  margin-top: 6px;
}
.p-summary-row--muted .p-summary-row__value {
  color: #8a8070;
}

.p-customer-form {
  margin-top: 8px;
}

.p-field {
  margin-top: 24px;
}

.p-field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.p-field-row.p-field {
  margin-top: 0;
}

.p-field__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #c9a25c;
}

.p-field__label-optional {
  color: #8a8070;
}

.p-field__input,
.p-field__textarea {
  display: block;
  width: 100%;
  padding: 13px 17px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  color: #8a8070;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.2);
}
.p-field__input::placeholder,
.p-field__textarea::placeholder {
  color: #8a8070;
}

.p-field__textarea {
  min-height: 112px;
  line-height: 1.43;
  resize: vertical;
}

.p-agreement {
  padding: 17px;
  margin-top: 24px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-agreement__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: #8a8070;
}
.p-agreement__box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1px solid rgba(201, 162, 92, 0.4);
}

.p-form-actions {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 24px;
}

.p-review {
  margin-top: 40px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-review__head {
  padding: 16px 24px 17px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #c9a25c;
  background: #201e1a;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}

.p-review-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px 17px;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
.p-review-row:last-child {
  border-bottom: none;
}
.p-review-row__label {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #c9a25c;
}
.p-review-row__value {
  font-size: 12px;
  color: #f5f2ec;
  text-align: right;
}

.p-email-preview {
  margin-top: 40px;
}
.p-email-preview__card {
  margin-top: 16px;
  padding: 25px;
  background: #1c1a16;
  border: 1px solid rgba(201, 162, 92, 0.15);
}
.p-email-preview__meta {
  padding-bottom: 17px;
  font-family: "Consolas", monospace;
  font-size: 10px;
  color: #8a8070;
  border-bottom: 1px solid rgba(201, 162, 92, 0.1);
}
.p-email-preview__body {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.625;
  color: #8a8070;
}

.u-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;
}
