/* Base styles are loaded separately by the PHP layout. */
:root {
  --terracotta: #9b4b32;
  --terracotta-deep: #743622;
  --sand: #dfc59f;
  --soft-white: #fffdf8;
}
body {
  min-width: 320px;
}
a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}
.newsletter-success {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 16px !important;
}
.home-page .hero__image {
  background: #28291a;
}
.home-page .hero__image img {
  height: 100%;
  object-fit: cover;
}
.home-page .menu-card__image img {
  inset: 0 !important;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
.home-page .menu-card:nth-child(1) .menu-card__image img {
  object-position: 50% 45%;
}
.home-page .menu-card:nth-child(2) .menu-card__image img {
  object-fit: contain;
  padding: 30px;
}
.home-page .menu-card:nth-child(3) .menu-card__image img {
  object-position: center;
}
.home-page .features span img {
  width: 58px;
  height: 58px;
  margin-inline: auto;
}
.inner-hero {
  position: relative;
  overflow: hidden;
}
.inner-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}
.inner-hero h2,
.about-page h2,
.menu-page h2,
.space-page h2,
.contact-page h2 {
  letter-spacing: -0.025em;
} /* About */
.about-page {
  background: var(--paper);
}
.about-page .about-hero {
  min-height: min(850px, calc(100vh - 34px));
  display: grid;
  grid-template-columns: 54% 46%;
  color: white;
  background: var(--olive-deep);
}
.about-page .about-hero__media {
  position: relative;
  min-height: 760px;
  background: #28291a;
  transform: none;
}
.about-page .about-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(25, 25, 13, 0.04),
    rgba(25, 25, 13, 0.28)
  );
}
.about-page .about-hero__media img {
  height: 100%;
  object-fit: cover;
}
.about-page .about-hero__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 165px clamp(44px, 6vw, 104px) 72px;
  background: radial-gradient(
      circle at 88% 12%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    ),
    linear-gradient(135deg, #5c5e35, var(--olive-deep));
  isolation: isolate;
}
.about-page .about-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.25) 0.6px,
    transparent 0.6px
  );
  background-size: 5px 5px;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.about-page .about-hero h1 {
  color: var(--ivory);
  font-size: clamp(58px, 5.6vw, 86px);
  line-height: 0.91;
}
.about-page .about-hero h1 em {
  color: #decba7;
  font-weight: 400;
}
.about-hero__content > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
}
.text-link--light {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
.about-hero__signature {
  align-self: flex-end;
  margin: auto -10px 0 0;
  color: #dcc69e;
  font-family: var(--slogan);
  font-size: clamp(28px, 2.6vw, 40px);
  font-style: italic;
  transform: rotate(-4deg);
}
.about-hero__ring {
  position: absolute;
  top: 100px;
  right: -120px;
  width: 340px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}
.about-hero__ring::before,
.about-hero__ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
}
.about-hero__ring::before {
  inset: 24px;
}
.about-hero__ring::after {
  inset: 55px;
}
.about-origin {
  overflow: hidden;
}
.about-origin__grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}
.about-origin__visual {
  position: relative;
  padding: 0 0 50px 38px;
}
.about-origin__visual::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 74%;
  border: 1px solid var(--brass);
}
.about-origin__visual figure {
  position: relative;
  height: 610px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-origin__visual figure img {
  height: 100%;
  object-fit: cover;
}
.about-origin__note {
  position: absolute;
  right: -38px;
  bottom: 0;
  width: 235px;
  padding: 24px 28px;
  color: white;
  background: var(--olive);
  box-shadow: 0 18px 45px rgba(30, 25, 15, 0.18);
}
.about-origin__note span {
  color: var(--clay);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-origin__note p {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}
.about-origin__copy h2,
.about-values__heading h2,
.about-table h2,
.about-gather h2 {
  margin: 0;
  color: var(--olive-deep);
  font-size: clamp(45px, 5vw, 70px);
  line-height: 0.98;
}
.about-origin__copy > p:not(.eyebrow) {
  color: var(--muted);
}
.about-origin__copy .about-origin__lead {
  margin: 30px 0 24px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.4;
}
.about-meaning {
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-meaning__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.about-meaning h2 {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--ivory);
  font-size: clamp(44px, 5.3vw, 74px);
  font-weight: 400;
  line-height: 1.05;
}
.about-meaning__rule {
  width: 1px;
  height: 64px;
  margin: 36px auto 28px;
  background: rgba(255, 255, 255, 0.3);
}
.about-meaning__inner > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
}
.about-values {
  background: var(--ivory);
}
.about-values__heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 68px;
}
.about-values__heading > p {
  max-width: 580px;
  margin: 0 0 8px;
  color: var(--muted);
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.about-page .value-card {
  min-height: 360px;
  padding: 38px 40px 44px;
}
.about-page .value-card + .value-card {
  border-left: 1px solid var(--line);
}
.about-page .value-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
.about-page .value-card__top span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 18px;
}
.about-page .value-card__top img {
  width: 56px;
  height: 56px;
}
.about-page .value-card h3 {
  margin: 0 0 12px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}
.about-page .value-card p {
  margin: 0;
  color: var(--muted);
}
.about-table {
  min-height: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-table__image {
  min-height: 700px;
  overflow: hidden;
}
.about-table__image img {
  height: 100%;
  object-fit: cover;
}
.about-table__content {
  display: flex;
  align-items: center;
  padding: clamp(70px, 8vw, 130px);
}
.about-table__inner {
  max-width: 560px;
}
.about-table__inner > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
}
.about-steps {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.about-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.about-steps li > span {
  color: var(--brass);
  font-family: var(--serif);
}
.about-steps h3 {
  margin: 0 0 4px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.about-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.about-gather {
  overflow: hidden;
}
.about-gather__heading {
  max-width: 800px;
  margin: 0 auto 68px;
  text-align: center;
}
.about-gather__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}
.about-gather figure {
  margin: 0;
}
.about-gather figure img {
  height: 620px;
  object-fit: cover;
}
.about-gather figcaption {
  margin-top: 12px;
  color: var(--olive);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.about-gather__aside > img {
  height: 340px;
  object-fit: cover;
  margin-bottom: 30px;
}
.about-gather__aside > p {
  color: var(--muted);
}
.about-manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(105px, 13vw, 180px) 0;
  text-align: center;
  background: var(--sand);
}
.about-manifesto::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 80vw);
  aspect-ratio: 1;
  border: 1px solid rgba(85, 87, 47, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.about-manifesto__inner {
  position: relative;
}
.about-manifesto blockquote {
  max-width: 850px;
  margin: 0 auto 22px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: clamp(43px, 5.3vw, 72px);
  line-height: 1.06;
}
.about-manifesto__inner > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #6e5d47;
} /* Menu */
.menu-page {
  background: var(--paper);
}
.menu-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  color: white;
  background: #432315 url("../menu/menu-hero.webp") center / cover no-repeat;
}
.menu-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(38, 24, 14, 0.92),
    rgba(77, 40, 23, 0.65) 45%,
    rgba(50, 28, 17, 0.1)
  );
}
.menu-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 112px;
}
.menu-hero h1 {
  color: white;
  font-size: clamp(62px, 7vw, 94px);
  line-height: 0.93;
}
.menu-hero__content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 30px;
  color: rgba(255, 255, 255, 0.74);
}
.menu-category-nav {
  position: sticky;
  top: 92px;
  z-index: 55;
  overflow-x: auto;
  color: var(--olive-deep);
  background: rgba(248, 244, 234, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.menu-category-nav .shell {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  white-space: nowrap;
}
.menu-category-nav a {
  position: relative;
  padding: 22px 0 19px;
  font-family: var(--serif);
  font-size: 14px;
}
.menu-category-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 14px;
  height: 1px;
  background: var(--terracotta);
  transition: right 0.25s ease;
}
.menu-category-nav a:hover::after {
  right: 0;
}
.menu-intro {
  padding-bottom: 70px;
  text-align: center;
}
.menu-intro__inner {
  max-width: 800px;
}
.menu-intro h2,
.rice-menu h2,
.menu-booking h2 {
  margin: 0;
  color: var(--olive-deep);
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1;
}
.menu-intro__inner > p:last-child {
  max-width: 690px;
  margin: 25px auto 0;
  color: var(--muted);
}
.menu-card-section {
  padding: 0 0 clamp(95px, 10vw, 145px);
}
.menu-card-grid,
.entree-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu-group-card {
  position: relative;
  min-height: 690px;
  padding: clamp(30px, 4vw, 54px);
  overflow: hidden;
  color: var(--olive-deep);
  background: #eee5d3;
  border: 1px solid rgba(85, 87, 47, 0.15);
  box-shadow: 0 20px 55px rgba(45, 37, 22, 0.08);
}
.menu-group-card--1 {
  border-radius: 76px 14px 68px 16px;
  color: white;
  background: var(--terracotta);
}
.menu-group-card--2 {
  border-radius: 14px 88px 20px 62px;
}
.menu-group-card--3 {
  border-radius: 48px 14px 92px 18px;
}
.menu-group-card--4 {
  border-radius: 18px 66px 14px 88px;
  color: white;
  background: var(--olive);
}
.menu-group-card__heading {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.menu-group-card__heading > span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 18px;
}
.menu-group-card--1 .menu-group-card__heading > span,
.menu-group-card--4 .menu-group-card__heading > span {
  color: var(--clay);
}
.menu-group-card__heading p {
  margin: 0 0 2px;
  opacity: 0.65;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.menu-group-card__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1;
}
.menu-group-card__image {
  height: 335px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 22px;
}
.menu-group-card__image img {
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(36, 28, 18, 0.16));
}
.dish-list {
  position: relative;
  z-index: 2;
}
.dish-list > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid currentColor;
  border-color: rgba(85, 87, 47, 0.2);
}
.menu-group-card--1 .dish-list > div,
.menu-group-card--4 .dish-list > div {
  border-color: rgba(255, 255, 255, 0.22);
}
.dish-list span {
  font-family: var(--serif);
  font-size: 20px;
}
.dish-list i {
  flex: 1;
  border-bottom: 1px dotted currentColor;
  opacity: 0.25;
}
.dish-list b {
  font-size: 13px;
  font-weight: 500;
}
.menu-quote {
  padding: clamp(95px, 10vw, 145px) 0;
  color: white;
  text-align: center;
  background: var(--olive-deep);
}
.menu-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}
.menu-quote h2 {
  max-width: 900px;
  margin: 8px auto 20px;
  color: var(--ivory);
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.05;
}
.menu-quote span {
  color: var(--clay);
  font-family: var(--serif);
  font-style: italic;
}
.entree-banner {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--terracotta-deep);
}
.entree-banner__image {
  min-height: 650px;
}
.entree-banner__image img {
  height: 100%;
  object-fit: cover;
}
.entree-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(65px, 8vw, 120px);
  color: white;
}
.entree-banner h2 {
  margin: 0;
  color: white;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1;
}
.entree-banner__content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.7);
}
.entree-banner__content > span {
  color: var(--clay);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.menu-card-section--entree {
  padding-top: clamp(90px, 10vw, 140px);
}
.menu-group-card--entree {
  min-height: 820px;
}
.menu-group-card__description {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
}
.menu-group-card--4 .menu-group-card__description {
  color: rgba(255, 255, 255, 0.64);
}
.menu-group-card__image--entree {
  height: 370px;
}
.hotpot-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  color: white;
  background: var(--olive-deep);
}
.hotpot-section__image {
  min-height: 700px;
}
.hotpot-section__image img {
  height: 100%;
  object-fit: cover;
}
.hotpot-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(65px, 8vw, 120px);
}
.hotpot-section h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(54px, 6vw, 82px);
}
.hotpot-section__rule {
  width: 80px;
  height: 1px;
  margin: 28px 0;
  background: var(--clay);
}
.hotpot-section h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 500;
}
.hotpot-section__content > p:not(.eyebrow) {
  margin: 10px 0 2px;
  color: rgba(255, 255, 255, 0.65);
}
.hotpot-section b {
  margin-top: 8px;
  color: var(--clay);
  font-size: 18px;
}
.hotpot-section__content > span {
  max-width: 390px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-style: italic;
}
.rice-menu__heading {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}
.rice-menu__heading > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
}
.rice-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.rice-card {
  min-height: 610px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #eadfc9;
  border: 1px solid var(--line);
}
.rice-card--one {
  border-radius: 72px 14px 62px 14px;
}
.rice-card--two {
  border-radius: 14px 86px 14px 68px;
  color: white;
  background: var(--olive);
}
.rice-card > img {
  height: 400px;
  object-fit: contain;
  padding: 35px;
}
.rice-card > div {
  position: relative;
  padding: 30px 38px 38px;
  border-top: 1px solid currentColor;
  border-color: rgba(85, 87, 47, 0.18);
}
.rice-card--two > div {
  border-color: rgba(255, 255, 255, 0.22);
}
.rice-card span {
  position: absolute;
  right: 38px;
  top: 34px;
  color: var(--brass);
  font-family: var(--serif);
}
.rice-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}
.rice-card p {
  margin: 4px 0 12px;
  opacity: 0.65;
}
.rice-card b {
  color: var(--terracotta);
  font-size: 15px;
}
.rice-card--two b {
  color: var(--clay);
}
.menu-booking {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ddc39e url("../menu/bg-booking.webp") center / cover no-repeat;
}
.menu-booking__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: left;
}
.menu-booking__inner > * {
  width: min(480px, 48%);
}
.menu-booking__inner > p:not(.eyebrow) {
  color: #6d5a43;
}
.menu-booking__inner > div {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.menu-booking__inner > div a:last-child {
  color: var(--olive-deep);
  font-weight: 500;
} /* Space */
.space-page {
  background: var(--paper);
}
.space-hero {
  min-height: 850px;
  display: flex;
  align-items: center;
  color: white;
  background: var(--olive-dark);
}
.space-hero > img,
.space-hero__shade {
  position: absolute;
  inset: 0;
  height: 100%;
}
.space-hero > img {
  object-fit: cover;
}
.space-hero__shade {
  background: linear-gradient(
    90deg,
    rgba(30, 31, 17, 0.87),
    rgba(31, 32, 18, 0.5) 45%,
    rgba(31, 32, 18, 0.08)
  );
}
.space-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 112px;
}
.space-hero h1 {
  color: white;
  font-size: clamp(60px, 7vw, 92px);
  line-height: 0.94;
}
.space-hero__content > p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
}
.space-intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 100px);
  align-items: end;
}
.space-intro h2,
.space-feature h2,
.space-gallery h2,
.workshop-space h2,
.space-details h2 {
  margin: 0;
  color: var(--olive-deep);
  font-size: clamp(45px, 5vw, 60px);
  line-height: 1.2;
}
.space-intro__copy {
  color: var(--muted);
}
.space-feature {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--ivory);
}
.space-feature__image {
  min-height: 720px;
}
.space-feature__image img {
  height: 100%;
  object-fit: cover;
}
.space-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(65px, 8vw, 120px);
}
.space-feature__copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
}
.space-feature__facts {
  display: grid;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.space-feature__facts span {
  color: var(--olive);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.space-gallery {
  background: var(--paper);
}
.space-gallery__heading {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.space-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.space-gallery figure {
  margin: 0;
}
.space-gallery figure:nth-child(n) {
  grid-column: span 6;
}
.space-gallery img {
  height: 420px;
  object-fit: cover;
}
.space-gallery__square img {
  object-position: center;
}
.space-gallery figcaption {
  margin-top: 10px;
  color: var(--olive);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.workshop-space {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--olive-deep);
}
.workshop-space__media {
  min-height: 700px;
}
.workshop-space__media img {
  height: 100%;
  object-fit: cover;
}
.workshop-space__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(65px, 8vw, 120px);
  color: white;
}
.workshop-space h2 {
  color: var(--ivory);
}
.workshop-space__panel > p:not(.eyebrow) {
  margin: 26px 0 18px;
  color: rgba(255, 255, 255, 0.65);
}
.workshop-space ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.workshop-space li {
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.space-details__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}
.space-details__image {
  position: relative;
}
.space-details__image::before {
  content: "";
  position: absolute;
  inset: 28px -28px -28px 28px;
  z-index: -1;
  border: 1px solid var(--brass);
}
.space-details__image img {
  aspect-ratio: 1;
  object-fit: cover;
}
.space-details__copy > p:not(.eyebrow) {
  color: var(--muted);
} /* Contact */
.contact-page {
  background: var(--paper);
}
.contact-hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: 58% 42%;
  background: var(--olive-deep);
}
.contact-hero__image {
  min-height: 730px;
}
.contact-hero__image img {
  height: 100%;
  object-fit: cover;
}
.contact-hero__panel {
  display: flex;
  align-items: center;
  padding: 150px clamp(45px, 6vw, 100px) 70px;
  color: white;
  background: radial-gradient(
      circle at 100% 0,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    ),
    var(--olive-deep);
}
.contact-hero h1 {
  color: var(--ivory);
  font-size: clamp(60px, 6vw, 88px);
  line-height: 0.94;
}
.contact-hero__content > p:not(.eyebrow) {
  max-width: 460px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.68);
}
.contact-info__heading {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}
.contact-info h2,
.booking-section h2,
.contact-map h2,
.contact-workshop h2 {
  margin: 0;
  color: var(--olive-deep);
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.contact-info-card {
  min-height: 330px;
  padding: 38px 36px;
}
.contact-info-card + .contact-info-card {
  border-left: 1px solid var(--line);
}
.contact-info-card > img {
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
}
.contact-info-card > span {
  display: block;
  margin-bottom: 7px;
  color: var(--brass);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.contact-info-card h3 {
  margin: 0 0 5px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}
.contact-info-card p,
.contact-info-card small {
  display: block;
  margin: 0 0 16px;
  color: var(--muted);
}
.contact-info-card > a {
  color: var(--olive);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-section {
  min-height: 900px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  background: var(--ivory);
}
.booking-section__image {
  min-height: 850px;
}
.booking-section__image img {
  height: 100%;
  object-fit: cover;
}
.booking-section__content {
  display: flex;
  align-items: center;
  padding: clamp(65px, 8vw, 120px);
}
.booking-section__content > div {
  width: 100%;
  max-width: 720px;
}
.booking-section__lead {
  max-width: 620px;
  margin: 26px 0 32px;
  color: var(--muted);
}
.contact-booking-form {
  display: grid;
  gap: 18px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact-form-row--three {
  grid-template-columns: repeat(3, 1fr);
}
.contact-booking-form label {
  display: grid;
  gap: 7px;
  color: var(--olive-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-booking-form input,
.contact-booking-form select,
.contact-booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  text-transform: none;
  letter-spacing: normal;
}
.contact-booking-form textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
.contact-form-actions > a {
  color: var(--olive);
  font-size: 12px;
}
.form-notice {
  margin: 0;
  color: var(--olive);
  font-size: 12px;
}
.contact-map {
  position: relative;
  min-height: 620px;
}
.contact-map iframe {
  width: 100%;
  height: 620px;
  display: block;
  border: 0;
  filter: saturate(0.58) sepia(0.15);
}
.contact-map__card {
  position: absolute;
  top: 60%;
  left: max(24px, calc((100vw - 1000px) / 2));
  width: min(440px, calc(100vw - 48px));
  padding: 35px;
  background: rgba(248, 244, 234, 0.95);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}
.contact-map__card h2 {
  font-size: clamp(24px, 4vw, 30px);
}
.contact-map__card > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}
.contact-workshop {
  background: var(--paper);
}
.contact-workshop__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}
.contact-workshop__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 30px;
  color: var(--muted);
}
.contact-workshop__grid > img {
  aspect-ratio: 1;
  object-fit: cover;
}
@media (max-width: 1050px) {
  .about-page .about-hero,
  .contact-hero {
    grid-template-columns: 1fr 1fr;
  }
  .about-origin__grid,
  .space-intro__grid,
  .space-details__grid,
  .contact-workshop__grid {
    gap: 60px;
  }
  .about-table__content,
  .entree-banner__content,
  .hotpot-section__content,
  .space-feature__copy,
  .workshop-space__panel,
  .booking-section__content {
    padding: 70px 52px;
  }
  .menu-category-nav .shell {
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
    padding-inline: 24px;
  }
  .menu-group-card {
    padding: 38px;
  }
  .contact-info-card {
    padding-inline: 28px;
  }
}
@media (max-width: 820px) {
  .menu-category-nav {
    top: 80px;
  }
  .about-page .about-hero,
  .contact-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .about-page .about-hero__media,
  .contact-hero__image {
    min-height: 570px;
  }
  .about-page .about-hero__panel,
  .contact-hero__panel {
    min-height: 600px;
    padding: 45px 36px 70px;
  }
  .about-origin__grid,
  .about-values__heading,
  .about-gather__grid,
  .space-intro__grid,
  .space-details__grid,
  .contact-workshop__grid {
    grid-template-columns: 1fr;
  }
  .about-origin__copy {
    max-width: 650px;
  }
  .about-origin__visual {
    width: min(600px, 94%);
  }
  .about-values__heading {
    align-items: start;
    gap: 25px;
  }
  .about-values__grid,
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
  .about-page .value-card,
  .contact-info-card {
    min-height: 250px;
  }
  .about-page .value-card + .value-card,
  .contact-info-card + .contact-info-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .about-page .value-card__top {
    margin-bottom: 0px;
	align-items: center;
    justify-content: center;
  }
  .about-page .value-card__top img {
    width: 156px;
    height: 156px;
}
  .about-page .value-card__top span {color: var(--line);font-size: 72px;}
  .about-page .value-card h3 {  margin: 0;}
  
  
  .about-table,
  .entree-banner,
  .hotpot-section,
  .space-feature,
  .workshop-space,
  .booking-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .about-table__image,
  .entree-banner__image,
  .hotpot-section__image,
  .space-feature__image,
  .workshop-space__media,
  .booking-section__image {
    min-height: 560px;
  }
  .about-table__content,
  .entree-banner__content,
  .hotpot-section__content,
  .space-feature__copy,
  .workshop-space__panel,
  .booking-section__content {
    padding: 75px max(24px, calc((100vw - 680px) / 2));
  }
  .about-gather figure img {
    height: 520px;
  }
  .menu-hero,
  .space-hero {
    min-height: 760px;
  }
  .menu-card-grid,
  .entree-card-grid,
  .rice-card-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }
  .menu-group-card {
    min-height: 650px;
  }
  .menu-group-card--entree {
    min-height: 780px;
  }
   .menu-booking h2 {    
    font-size: clamp(24px, 6vw, 30px);     
}
  .menu-booking__inner {
    align-items: flex-start;
	padding: 30px 0px 0 30px;
	backdrop-filter: blur(0px);
    border-radius: 40px;
  }
  
  .menu-booking__inner .button {
    
    padding: 12px 5px;
    
}
  
  
  .menu-booking__inner > * {
    width: min(500px, 85%);
  }
  .space-gallery figure,
  .space-gallery figure:nth-child(n) {
    grid-column: span 12;
  }
  .space-gallery img {
    height: 520px;
  }
  .contact-map__card {
    top: auto;
    bottom: 24px;
    transform: none;
  }
  .contact-form-row--three {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .about-page .about-hero__media,
  .contact-hero__image {
    min-height: 260px;
  }
  .about-page .about-hero__panel,
  .contact-hero__panel {
    min-height: 540px;
    padding-inline: 24px;
  }
  .about-page .about-hero h1,
  .contact-hero h1,
  .menu-hero h1,
  .space-hero h1 {
    font-size:48px;
  }
  
  .menu-intro h2, .rice-menu h2, .menu-booking h2 {
   
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1;
}
  
  
  .about-origin__visual {
    width: calc(100% - 18px);
    padding-left: 18px;
  }
  .about-origin__visual figure {
    height: 470px;
  }
  .about-origin__note {
    right: -18px;
    width: 200px;
    padding: 20px;
  }
  .about-table__image,
  .entree-banner__image,
  .hotpot-section__image,
  .space-feature__image,
  .workshop-space__media,
  .booking-section__image {
    min-height: 430px;
  }
  .about-gather figure img,
  .space-gallery img {
    height: 420px;
  }
  .menu-hero,
  .space-hero {
    min-height: 700px;
  }
  .menu-category-nav {
    top: 79px;
  }
  .menu-group-card {
    min-height: 600px;
    padding: 30px 24px;
  }
  .menu-group-card--1 {
    border-radius: 48px 10px 44px 12px;
  }
  .menu-group-card--2 {
    border-radius: 10px 54px 12px 42px;
  }
  .menu-group-card--3 {
    border-radius: 38px 10px 58px 12px;
  }
  .menu-group-card--4 {
    border-radius: 12px 48px 10px 56px;
  }
  .menu-group-card__image,
  .menu-group-card__image--entree {
    height: 300px;
	margin: 0;
  }
  .dish-list span {
    font-size: 17px;
  }
  .rice-card {
    min-height: 540px;
  }
  .rice-card > img {
    height: 340px;
    padding: 24px;
  }
  .menu-booking {  background-position:left bottom; }
  .menu-booking__inner > * {
    width: 100%;
  }
  .menu-booking__inner p {
    margin: 0 0 5px;
  }
  .menu-booking__inner > div a:last-child {
   
    font-size: 24px;
   
}
  .menu-booking__inner > div {
    align-items: flex-start;
    margin-top: 150px;

  }
  
  
  .contact-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .space-details__image {
    margin-right: 20px;
  }
  .contact-form-row,
  .contact-form-row--three {
    grid-template-columns: 1fr;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 680px;
    height: 680px;
  }
  .contact-map__card {
    left: 18px;
    bottom: 18px;
    width: calc(100vw - 36px);
    padding: 30px 24px;
  }
}
