@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
}

:root {
  --pine: #0b4f43;
  --pine-deep: #073a31;
  --pine-ink: #052c26;
  --ivory: #f6f1e7;
  --paper: #fffdf8;
  --ink: #252925;
  --muted: #65685f;
  --stone: #c9bdab;
  --stone-light: #e5ddd0;
  --wine: #7b342f;
  --white: #fff;
  --whatsapp: #197f45;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --shadow: 0 30px 80px rgb(7 58 49 / 13%);
  --shell: 78rem;
  --header-height: 6rem;
  --section-space: clamp(5rem, 8vw, 8.5rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 5rem);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

figure,
blockquote,
p,
h1,
h2,
h3,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 4.4vw, 4.65rem);
  letter-spacing: -.035em;
}

h3 {
  margin-bottom: .8rem;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  letter-spacing: -.02em;
}

a {
  color: inherit;
  text-underline-offset: .23em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #efc66f;
  outline-offset: 4px;
}

address {
  font-style: normal;
}

.responsive-image {
  background: var(--stone-light);
}

.shell {
  width: min(calc(100% - clamp(2rem, 6vw, 6rem)), var(--shell));
  margin-inline: auto;
}

.shell--wide {
  --shell: 90rem;
}

.shell--narrow {
  --shell: 48rem;
}

.section {
  padding-block: var(--section-space);
}

.section--paper {
  background: var(--paper);
}

.section--ivory {
  background-color: var(--ivory);
  background-image: radial-gradient(rgb(123 52 47 / 5%) .6px, transparent .6px);
  background-size: 7px 7px;
}

.section--pine {
  background: var(--pine-deep);
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.25rem;
  color: var(--pine);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentcolor;
  content: "";
}

.eyebrow--light {
  color: #c9dfd5;
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  line-height: 1.48;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  background: var(--paper);
  color: var(--pine-deep);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.button,
.wp-element-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.45rem;
  border: 1px solid var(--pine);
  border-radius: 2px;
  background: var(--pine);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .25s var(--ease), background-color .25s ease, border-color .25s ease;
}

.button:hover,
.wp-element-button:hover {
  transform: translateY(-2px);
  border-color: var(--pine-deep);
  background: var(--pine-deep);
}

.button--small {
  min-height: 2.75rem;
  padding: .66rem 1.15rem;
  font-size: .84rem;
}

.button--paper {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--pine-deep);
}

.button--paper:hover {
  border-color: var(--ivory);
  background: var(--ivory);
}

.button--ghost-light {
  border-color: rgb(255 255 255 / 62%);
  background: transparent;
  color: var(--white);
}

.button--ghost-light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 10%);
}

.button--whatsapp {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
}

.button--block {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
}

.button-row--dark {
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: .65rem;
  color: var(--pine-deep);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(.25rem);
}

.text-link--light {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: var(--white);
  transition: height .3s var(--ease), background-color .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 5rem;
  border-color: var(--stone-light);
  background: rgb(246 241 231 / 97%);
  box-shadow: 0 8px 30px rgb(7 58 49 / 7%);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-logo {
  position: relative;
  display: block;
  width: clamp(7.8rem, 10vw, 9.5rem);
  height: 3.8rem;
  flex: 0 0 auto;
}

.brand-logo img {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: auto;
  aspect-ratio: 500 / 197;
  object-fit: contain;
  transform: translateY(-50%);
  transition: opacity .25s ease;
}

.brand-logo__dark {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  aspect-ratio: 500 / 197;
  transform: translateY(-50%);
  background: var(--pine);
  -webkit-mask: url("../images/la-pineta-logo-dark.webp") left center / contain no-repeat;
  mask: url("../images/la-pineta-logo-dark.webp") left center / contain no-repeat;
  opacity: 0;
  transition: opacity .25s ease;
}

.site-header.is-scrolled .brand-logo__light,
.site-header.is-open .brand-logo__light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo__dark,
.site-header.is-open .brand-logo__dark {
  opacity: 1;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.25rem);
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.5vw, 1.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation ul a {
  position: relative;
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: .82rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-navigation ul a::after {
  position: absolute;
  right: 0;
  bottom: .28rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentcolor;
  content: "";
  transition: transform .25s var(--ease);
}

.primary-navigation ul a:hover::after,
.primary-navigation ul a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header:not(.is-scrolled, .is-open) .navigation-booking {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--pine-deep);
}

.menu-toggle,
.mobile-booking {
  display: none;
}

/* Heroes */
.hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero--home {
  min-height: max(46rem, 96svh);
}

.hero--contact {
  min-height: 76svh;
}

.hero__media,
.hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  animation: hero-enter 1.4s var(--ease) both;
}

.hero__image--room {
  object-position: center 57%;
}

.hero--menu .hero__image {
  object-position: center 53%;
}

.hero--cuisine .hero__image {
  object-position: center 48%;
}

.hero--chef .hero__image {
  object-position: center 32%;
}

.hero__overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgb(3 27 23 / 84%) 0%, rgb(3 27 23 / 60%) 44%, rgb(3 27 23 / 15%) 84%), linear-gradient(0deg, rgb(3 27 23 / 62%), transparent 55%);
}

.hero__content {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: clamp(5rem, 10vh, 8rem);
}

.hero__content h1 {
  max-width: 12ch;
}

.hero--internal .hero__content h1,
.hero--contact .hero__content h1 {
  max-width: 14ch;
  font-size: clamp(3.5rem, 6.2vw, 6.25rem);
}

.hero--cuisine .hero__content h1 {
  max-width: 13ch;
}

.hero__lead {
  max-width: 42rem;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.48;
}

.hero__scroll {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes hero-enter {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

/* Shared layouts */
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.split--intro {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.split--portrait {
  grid-template-columns: minmax(17rem, .78fr) minmax(0, 1fr);
}

.section-copy {
  max-width: 38rem;
}

.section-copy p:not(.eyebrow, .lede) {
  color: var(--muted);
}

.section-copy .text-link,
.section-copy > .button {
  margin-top: 1.1rem;
}

.section-copy--light p:not(.eyebrow) {
  color: #dceae4;
}

.framed-media {
  position: relative;
  margin: 0;
}

.framed-media::before {
  position: absolute;
  z-index: 0;
  inset: -1rem -1rem 2.5rem 2rem;
  border: 1px solid var(--stone);
  content: "";
}

.framed-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.framed-media--landscape img {
  aspect-ratio: 3 / 2;
}

.framed-media figcaption,
.image-duo figcaption,
.rice-feature figcaption,
.chef-profile figcaption,
.rice-chapter figcaption {
  position: relative;
  z-index: 2;
  margin-top: .9rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .9rem;
  font-style: italic;
}

.section-heading {
  max-width: 60rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading > p:last-child {
  max-width: 39rem;
  color: var(--muted);
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  align-items: end;
  gap: 4rem;
}

.section-heading--split h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: .5rem;
}

/* Home */
.proof-strip {
  border-bottom: 1px solid var(--stone-light);
  background: var(--paper);
}

.proof-strip ul {
  display: grid;
  min-height: 5.25rem;
  grid-template-columns: repeat(4, 1fr);
  margin-block: 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-right: 1px solid var(--stone-light);
  color: var(--pine-deep);
  font-family: var(--font-display);
  font-size: 1.02rem;
  text-align: center;
}

.proof-strip li:first-child {
  border-left: 1px solid var(--stone-light);
}

.table-story__grid {
  display: grid;
  grid-template-columns: minmax(18rem, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.table-story__copy h2 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 4vw, 4.25rem);
}

.table-collage {
  position: relative;
  display: grid;
  min-height: 43rem;
  grid-template-columns: 1fr .38fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.table-collage figure {
  margin: 0;
}

.table-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.table-collage figure:hover img {
  transform: scale(1.018);
}

.table-collage__main {
  position: relative;
  grid-row: 1 / 3;
  overflow: hidden;
}

.table-collage__main figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: .9rem 1rem;
  background: rgb(255 253 248 / 92%);
  color: var(--pine-deep);
  font-family: var(--font-display);
  font-size: .9rem;
}

.table-collage__service,
.table-collage__detail {
  overflow: hidden;
}

.menu-feature {
  position: relative;
  overflow: hidden;
  background: var(--pine-deep);
  color: var(--white);
}

.menu-feature::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgb(255 255 255 / 5%) 25%);
  content: "";
  pointer-events: none;
}

.menu-feature__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.menu-feature__intro {
  align-self: start;
}

.menu-feature__intro h2 {
  max-width: 11ch;
}

.menu-feature__intro > p:not(.eyebrow) {
  max-width: 34rem;
  color: #d9e7e1;
}

.menu-feature__intro .button-row {
  margin-top: 2rem;
}

.menu-family-list {
  margin: 0 0 3rem;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 24%);
  list-style: none;
}

.menu-family-list li {
  display: grid;
  grid-template-columns: 2.5rem minmax(10rem, .65fr) 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.menu-family-list span,
.menu-family-list small {
  color: #a9c7ba;
  font-size: .74rem;
}

.menu-family-list strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.menu-feature__image {
  position: relative;
  width: 72%;
  margin: 0 0 0 auto;
}

.menu-feature__image::before {
  position: absolute;
  inset: -1.25rem 2rem 2rem -1.25rem;
  border: 1px solid rgb(255 255 255 / 28%);
  content: "";
}

.menu-feature__image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.menu-feature__image figcaption {
  position: relative;
  margin-top: .8rem;
  color: #bcd1c8;
  font-family: var(--font-display);
  font-size: .88rem;
  font-style: italic;
}

.chef-editorial__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 4rem;
}

.chef-editorial__heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.chef-editorial__heading > p {
  color: var(--muted);
}

.chef-editorial__grid {
  display: grid;
  grid-template-columns: minmax(16rem, .75fr) minmax(17rem, .8fr) minmax(19rem, 1fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
}

.chef-editorial__portrait {
  margin: 0;
}

.chef-editorial__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.chef-editorial__portrait figcaption {
  margin-top: .75rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .88rem;
  font-style: italic;
}

.chef-editorial__story {
  padding-top: 2rem;
}

.chef-editorial__story > p:not(.lede) {
  color: var(--muted);
}

.chef-editorial blockquote,
.chef-profile blockquote {
  margin: 2.25rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid var(--wine);
  color: var(--wine);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.45;
}

.press-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 4px solid var(--wine);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.press-card__label {
  color: var(--wine);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.press-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.press-card > p:not(.press-card__label) {
  color: var(--muted);
}

.press-card__image-link {
  display: block;
  margin-top: 1.5rem;
  color: var(--pine-deep);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.press-card__image-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 1407 / 540;
  margin-bottom: .75rem;
  border: 1px solid var(--stone-light);
  object-fit: contain;
}

.village-feature {
  position: relative;
  overflow: hidden;
}

.village-feature__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(2rem, .15fr) minmax(16rem, .62fr) minmax(20rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.village-feature__number {
  align-self: start;
  color: var(--stone-light);
  font-family: var(--font-display);
  font-size: clamp(8rem, 15vw, 15rem);
  line-height: .72;
}

.village-feature__media {
  position: relative;
  max-width: 32.875rem;
  margin: 0;
  padding: 0 1.5rem 1.5rem 0;
}

.village-feature__media::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 74%;
  height: 74%;
  background: var(--stone-light);
  content: "";
}

.village-feature__media img {
  width: 100%;
  max-height: 39rem;
  object-fit: contain;
}

.village-feature__media figcaption {
  position: absolute;
  right: 2.25rem;
  bottom: .35rem;
  z-index: 1;
  color: var(--pine-deep);
  font-family: var(--font-display);
  font-size: .86rem;
  font-style: italic;
}

.village-feature__copy h2 {
  max-width: 11ch;
}

.reasons__grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.reasons__intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.reason-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  display: grid;
  grid-template-columns: 2.25rem minmax(11rem, .75fr) 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--stone-light);
}

.reason-list li:last-child {
  border-bottom: 1px solid var(--stone-light);
}

.reason-list span {
  color: var(--wine);
  font-size: .7rem;
  font-weight: 700;
}

.reason-list strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
}

.reason-list p {
  margin: 0;
  color: var(--muted);
}

/* Menu page */
.section-index {
  position: sticky;
  z-index: 30;
  top: 5rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--stone-light);
  background: rgb(255 253 248 / 97%);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.section-index .shell {
  display: flex;
  min-height: 4rem;
  align-items: center;
  gap: 1.65rem;
}

.section-index span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-index a {
  position: relative;
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.section-index a.is-active,
.section-index a:hover {
  color: var(--wine);
}

.menu-page {
  background-color: var(--paper);
  background-image: linear-gradient(90deg, transparent calc(50% - .5px), rgb(201 189 171 / 22%) 50%, transparent calc(50% + .5px));
}

.menu-book {
  --shell: 64rem;
}

.menu-category {
  padding-block: 1rem clamp(5rem, 8vw, 7.5rem);
  scroll-margin-top: 10rem;
}

.menu-category__header {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--pine-deep);
}

.menu-category__header > span {
  color: var(--wine);
  font-size: .72rem;
  font-weight: 700;
}

.menu-category__header h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.menu-category__header small {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-category__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 5rem);
}

.menu-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--stone-light);
}

.menu-item__title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1rem;
}

.menu-item h3 {
  margin-bottom: .55rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.menu-item__price {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  white-space: nowrap;
}

.menu-item__description {
  margin-bottom: .7rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
}

.menu-item__note {
  display: inline-block;
  margin: 0 0 .6rem;
  padding: .2rem .45rem;
  background: var(--ivory);
  color: var(--wine);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.menu-item__allergens {
  margin: 0;
  color: #777970;
  font-size: .7rem;
  line-height: 1.5;
}

.menu-item__allergens strong {
  color: var(--ink);
}

.menu-item--notice .menu-item__allergens {
  padding-left: .65rem;
  border-left: 2px solid var(--wine);
  color: var(--wine);
}

.menu-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 0 clamp(5rem, 8vw, 7rem);
  padding: 2rem;
  background: var(--wine);
  color: var(--white);
}

.menu-inline-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.menu-inline-cta p span {
  display: block;
  color: #e7c6c1;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.menu-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-light);
}

.menu-contact-row p {
  margin: 0;
}

.menu-notices__grid {
  display: grid;
  grid-template-columns: minmax(15rem, .65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.menu-notices__grid h2 {
  max-width: 10ch;
}

.notice-list article {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--stone);
}

.notice-list article:last-child {
  border-bottom: 1px solid var(--stone);
}

.notice-list article > span {
  color: var(--wine);
  font-size: .7rem;
  font-weight: 700;
}

.notice-list h3 {
  margin-bottom: .45rem;
  font-size: 1.35rem;
}

.notice-list p {
  margin: 0;
  color: var(--muted);
}

/* Cuisine */
.image-duo {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.image-duo figure {
  margin: 0;
}

.image-duo figure:first-child {
  max-width: 27rem;
}

.image-duo figure:last-child {
  margin-top: 6rem;
}

.image-duo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-duo figure:last-child img {
  aspect-ratio: 4 / 3;
}

.rice-feature__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(17rem, .62fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.rice-feature__copy {
  max-width: 42rem;
}

.rice-feature__copy > p:not(.eyebrow) {
  color: #d9e7e1;
}

.rice-feature__copy .button {
  margin-top: 1rem;
}

.rice-feature__media {
  margin: 0;
}

.rice-feature__media img {
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
}

.rice-feature figcaption {
  color: #b8d0c5;
}

.craft-notes__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.craft-notes__intro h2 {
  max-width: 14ch;
  margin: 0;
}

.craft-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.craft-notes article {
  min-height: 22rem;
  padding: 2rem;
  border-right: 1px solid var(--stone);
}

.craft-notes article:last-child {
  border-right: 0;
}

.craft-notes article > span {
  color: var(--wine);
  font-size: .7rem;
  font-weight: 700;
}

.craft-notes h3 {
  margin-top: 4rem;
}

.craft-notes p {
  color: var(--muted);
}

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.season-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.season-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.season-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem 2rem 1.5rem;
  background: linear-gradient(transparent, rgb(3 27 23 / 92%));
  color: var(--white);
}

.season-grid figcaption strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.season-grid figcaption span {
  max-width: 18rem;
  font-size: .82rem;
  text-align: right;
}

/* Restaurant */
.editorial-intro {
  display: grid;
  grid-template-columns: minmax(12rem, .45fr) minmax(0, 1.55fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.editorial-intro h2 {
  max-width: 13ch;
}

.editorial-intro__text {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.editorial-intro__text p:last-child {
  color: var(--muted);
}

.chef-profile__grid {
  display: grid;
  grid-template-columns: minmax(17rem, .68fr) minmax(20rem, 1fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.chef-profile__portrait {
  margin: 0;
}

.chef-profile__portrait img {
  width: 100%;
  max-height: 45rem;
  object-fit: cover;
}

.chef-profile__copy h2 {
  font-size: clamp(2.7rem, 4vw, 4.25rem);
}

.article-feature {
  border-top: 1px solid var(--stone-light);
  border-bottom: 1px solid var(--stone-light);
}

.article-feature__grid {
  display: grid;
  grid-template-columns: minmax(18rem, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.article-feature__copy h2 {
  max-width: 11ch;
}

.article-feature__copy > p:not(.eyebrow, .lede) {
  color: var(--muted);
}

.article-feature__scan {
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--stone);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.article-feature__scan a {
  display: block;
  color: var(--pine-deep);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.article-feature__scan img {
  width: 100%;
  height: auto;
  aspect-ratio: 1407 / 540;
  margin-bottom: .8rem;
  border: 1px solid var(--stone-light);
  object-fit: contain;
}

.article-feature__scan figcaption {
  margin-top: .8rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .85rem;
  font-style: italic;
}

.rice-chapter__grid {
  display: grid;
  grid-template-columns: .18fr 1fr .7fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.rice-chapter__index {
  display: grid;
  color: #9cbcaf;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rice-chapter__index strong {
  color: rgb(255 255 255 / 17%);
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 500;
  letter-spacing: -.05em;
}

.rice-chapter__grid > div:nth-child(2) > p:not(.eyebrow) {
  color: #d9e7e1;
}

.rice-chapter__grid > div:nth-child(2) .button {
  margin-top: 1rem;
}

.rice-chapter figure {
  margin: 0;
}

.rice-chapter figure img {
  width: 100%;
  max-height: 36rem;
  object-fit: cover;
}

.rice-chapter figcaption {
  color: #b8d0c5;
}

.room-feature {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
}

.room-feature__image,
.room-feature__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.room-feature__image img {
  object-fit: cover;
  object-position: center 58%;
}

.room-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(3 27 23 / 80%), rgb(3 27 23 / 12%));
  content: "";
}

.room-feature__card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 44rem;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.room-feature__card h2,
.room-feature__card p:not(.eyebrow) {
  max-width: 35rem;
}

.room-feature__card p:not(.eyebrow) {
  color: #deebe5;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-intro {
  max-width: 31rem;
}

.contact-intro p:last-child {
  color: var(--muted);
}

.contact-panel {
  border-top: 1px solid var(--stone);
}

.contact-panel article {
  display: grid;
  grid-template-columns: minmax(7rem, .55fr) minmax(0, 1fr);
  gap: .5rem 2rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--stone);
}

.contact-panel article > :not(.contact-panel__label) {
  grid-column: 2;
}

.contact-panel__label {
  grid-row: 1 / 5;
  margin: 0;
  color: var(--wine);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-panel address,
.contact-panel__value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.4;
  text-decoration: none;
}

.contact-panel article > p:not(.contact-panel__label) {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.contact-panel__company strong {
  color: var(--ink);
}

.contact-panel .button + .button {
  margin-top: .5rem;
}

.opening-hours {
  width: 100%;
  margin: 0;
}

.opening-hours div {
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) auto;
  gap: 1.5rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--stone-light);
}

.opening-hours div:last-child {
  border-bottom: 0;
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
}

.opening-hours dd {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.directions-card {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border: 1px solid var(--stone);
  background: var(--ivory);
  text-align: center;
}

.directions-card > span {
  display: grid;
  width: 6rem;
  height: 6rem;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px solid var(--pine);
  border-radius: 50%;
  color: var(--pine);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
}

.directions-card > p {
  margin-bottom: .5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.directions-card small {
  margin-top: 1.2rem;
  color: var(--muted);
}

.contact-routes {
  background: var(--paper);
}

.contact-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-routes a {
  display: grid;
  min-height: 13rem;
  align-content: center;
  gap: .25rem;
  padding: 2rem;
  border-right: 1px solid var(--stone-light);
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease;
}

.contact-routes a:first-child {
  border-left: 1px solid var(--stone-light);
}

.contact-routes a:hover {
  background: var(--pine-deep);
  color: var(--white);
}

.contact-routes span {
  color: var(--wine);
  font-size: .7rem;
  font-weight: 700;
}

.contact-routes strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.contact-routes small {
  color: var(--muted);
}

.contact-routes a:hover span,
.contact-routes a:hover small {
  color: #c5dcd2;
}

/* Reservation and footer */
.reservation-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background: var(--pine);
  color: var(--white);
}

.reservation-band::after {
  position: absolute;
  right: -5rem;
  bottom: -9rem;
  width: 27rem;
  height: 18rem;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  content: "";
}

.reservation-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .55fr);
  align-items: center;
  gap: 3rem;
}

.reservation-band h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
}

.reservation-band p:not(.eyebrow) {
  margin: 0;
  color: #deebe5;
}

.reservation-band__actions {
  display: grid;
  gap: 1.15rem;
  justify-items: start;
}

.site-footer {
  padding-top: clamp(4rem, 7vw, 7rem);
  background: var(--pine-ink);
  color: #e7eee9;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.5fr) minmax(10rem, .7fr) minmax(14rem, .8fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
}

.footer-logo {
  width: clamp(8rem, 25vw, 10.5rem);
  height: auto;
  max-width: 100%;
  aspect-ratio: 500 / 197;
  margin-bottom: 1.75rem;
  object-fit: contain;
  align-self: flex-start;
}

.site-footer__brand p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.3;
}

.footer-heading {
  margin-bottom: 1.4rem;
  color: #a9c7ba;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}

.site-footer__nav a,
.site-footer__contact a {
  text-decoration-color: transparent;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: var(--white);
  text-decoration-color: currentcolor;
}

.site-footer__contact address {
  margin-bottom: .5rem;
}

.site-footer__legal {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: #9eb3aa;
  font-size: .72rem;
}

.site-footer__legal p {
  max-width: 58rem;
  margin: 0;
}

.site-footer__legal div {
  display: flex;
  flex: 0 0 auto;
  gap: 1rem;
}

/* Generic and 404 */
.generic-page__header {
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  background: var(--pine-deep);
  color: var(--white);
}

.generic-page__header h1 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
}

.prose {
  font-size: 1.05rem;
}

.prose > * + * {
  margin-top: 1.3em;
}

.prose h2,
.prose h3 {
  margin-top: 2em;
}

.prose a {
  color: var(--pine-deep);
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  color: var(--white);
}

.not-found__media,
.not-found__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.not-found__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.not-found__overlay {
  z-index: -1;
  background: rgb(3 27 23 / 82%);
}

.not-found__content {
  padding-block: calc(var(--header-height) + 4rem) 5rem;
}

.not-found__content h1 {
  max-width: 11ch;
}

.not-found__content > p:not(.eyebrow) {
  max-width: 37rem;
  margin-bottom: 2rem;
}

@media (max-width: 68rem) {
  .primary-navigation ul {
    gap: .75rem;
  }

  .primary-navigation ul a {
    font-size: .74rem;
  }

  .brand-logo {
    width: 7.8rem;
  }

  .chef-editorial__grid {
    grid-template-columns: .75fr 1fr;
  }

  .press-card {
    grid-column: 1 / -1;
  }

  .press-card__image-link img {
    max-height: 20rem;
    object-fit: contain;
  }

  .village-feature__grid {
    grid-template-columns: .52fr 1fr;
  }

  .village-feature__number {
    display: none;
  }

  .reason-list li {
    grid-template-columns: 2rem .8fr 1fr;
  }
}

@media (max-width: 58rem) {
  :root {
    --header-height: 4.25rem;
    --section-space: clamp(3.5rem, 8vw, 5rem);
  }

  body {
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom));
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    height: var(--header-height);
  }

  .site-header.is-open {
    height: var(--header-height);
    min-height: 0;
    background: var(--ivory);
    backdrop-filter: none;
  }

  .site-header.is-open .site-header__inner {
    height: var(--header-height);
  }

  .brand-logo {
    width: clamp(6.8rem, 24vw, 7.8rem);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 3.2rem;
    min-height: 2.4rem;
    align-items: center;
    justify-content: flex-end;
    gap: .4rem;
    padding: .3rem .5rem;
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 4px;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle {
    border-color: var(--stone);
  }

  .menu-toggle__icon {
    position: relative;
    display: block;
    width: 1.2rem;
    height: .8rem;
  }

  .menu-toggle__icon span {
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    border-radius: 1px;
    background: currentcolor;
    transition: top .25s ease, transform .25s ease;
  }

  .menu-toggle__icon span:first-child { top: .1rem; }
  .menu-toggle__icon span:last-child { top: .6rem; }
  .site-header.is-open .menu-toggle__icon span:first-child { top: .35rem; transform: rotate(45deg); }
  .site-header.is-open .menu-toggle__icon span:last-child { top: .35rem; transform: rotate(-45deg); }

  .primary-navigation {
    position: fixed;
    z-index: 10;
    inset: var(--header-height) 0 auto;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 1.25rem 1.5rem 1.75rem;
    transform: translateY(-.5rem);
    border-top: 1px solid var(--stone-light);
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    box-shadow: 0 16px 36px rgb(5 44 38 / 14%);
    transition: visibility .25s, opacity .25s ease, transform .25s var(--ease);
  }

  .site-header.is-open .primary-navigation {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .primary-navigation ul {
    display: grid;
    gap: 0;
  }

  .primary-navigation ul li {
    border-bottom: 1px solid var(--stone-light);
  }

  .primary-navigation ul a {
    min-height: 2.85rem;
    padding: .65rem 0;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
  }

  .primary-navigation ul a::after {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    background: none;
    color: var(--pine);
    content: "→";
    font-size: 1.1rem;
  }

  .navigation-booking {
    width: 100%;
    min-height: 2.85rem;
    margin-top: .5rem;
  }

  .mobile-booking {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(3.5rem + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    padding: .65rem 1.25rem calc(.65rem + env(safe-area-inset-bottom));
    background: var(--pine);
    color: var(--white);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 -6px 20px rgb(3 27 23 / 16%);
  }

  .nav-open .mobile-booking {
    visibility: hidden;
  }

  .hero--home {
    min-height: clamp(24rem, 70svh, 32rem);
  }

  .hero--internal,
  .hero--contact {
    min-height: auto;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgb(3 27 23 / 86%) 0%, rgb(3 27 23 / 38%) 74%, rgb(3 27 23 / 52%) 100%);
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2.5rem;
  }

  .hero--internal .hero__content,
  .hero--contact .hero__content {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 2rem;
  }

  .hero__content h1 {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }

  .hero--internal .hero__content h1,
  .hero--contact .hero__content h1 {
    font-size: clamp(1.85rem, 6vw, 2.6rem);
    max-width: 18ch;
    margin-bottom: .85rem;
  }

  .hero__scroll {
    display: none;
  }

  .split,
  .split--intro,
  .split--portrait,
  .section-heading--split,
  .table-story__grid,
  .menu-feature__grid,
  .chef-editorial__heading,
  .village-feature__grid,
  .reasons__grid,
  .menu-notices__grid,
  .rice-feature__grid,
  .editorial-intro,
  .chef-profile__grid,
  .article-feature__grid,
  .reservation-band__inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 3.5rem;
  }

  .split--reverse-mobile .split__copy {
    order: -1;
  }

  .section-heading--split,
  .chef-editorial__heading {
    gap: 1.25rem;
  }

  .proof-strip ul {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip li:nth-child(2) {
    border-right: 1px solid var(--stone-light);
  }

  .proof-strip li:nth-child(-n+2) {
    border-bottom: 1px solid var(--stone-light);
  }

  .table-collage {
    min-height: 38rem;
  }

  .menu-feature__image {
    width: 68%;
  }

  .chef-editorial__grid {
    grid-template-columns: .75fr 1fr;
  }

  .village-feature__media {
    width: min(100%, 30rem);
    margin-inline: auto;
  }

  .village-feature__copy {
    max-width: 42rem;
  }

  .reasons__intro {
    position: static;
  }

  .reason-list li {
    grid-template-columns: 2rem 1fr;
  }

  .reason-list p {
    grid-column: 2;
  }

  .section-index {
    top: var(--header-height);
  }

  .menu-page {
    background-image: none;
  }

  .menu-category__items {
    grid-template-columns: 1fr 1fr;
  }

  .craft-notes__grid {
    grid-template-columns: 1fr;
  }

  .craft-notes article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--stone);
  }

  .craft-notes article:last-child {
    border-bottom: 0;
  }

  .craft-notes h3 {
    margin-top: 2rem;
  }

  .editorial-intro__text {
    grid-template-columns: 1fr 1fr;
  }

  .rice-chapter__grid {
    grid-template-columns: .15fr 1fr;
  }

  .rice-chapter figure {
    grid-column: 2;
    max-width: 27rem;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .contact-routes__grid {
    grid-template-columns: 1fr;
  }

  .contact-routes a,
  .contact-routes a:first-child {
    min-height: 9rem;
    border-right: 1px solid var(--stone-light);
    border-bottom: 1px solid var(--stone-light);
    border-left: 1px solid var(--stone-light);
  }
}

@media (max-width: 42rem) {
  .shell {
    width: min(calc(100% - 1.75rem), var(--shell));
  }

  h1 {
    letter-spacing: -.035em;
  }

  h2 {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  }

  .eyebrow {
    margin-bottom: .85rem;
  }

  .button-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .65rem;
  }

  .button-row .button {
    width: 100%;
    min-height: 2.85rem;
  }

  .button-row .text-link {
    justify-content: center;
  }

  .hero__content {
    text-align: left;
  }

  .hero__content .eyebrow {
    justify-content: flex-start;
  }

  .hero__content h1,
  .hero__lead {
    margin-right: 0;
    margin-left: 0;
  }

  .hero__content h1 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .hero--internal .hero__content h1,
  .hero--contact .hero__content h1 {
    font-size: clamp(1.65rem, 6vw, 2.15rem);
  }

  .hero__lead {
    font-size: .95rem;
    line-height: 1.42;
  }

  .proof-strip li {
    padding: .75rem .35rem;
    font-size: .82rem;
  }

  .framed-media::before {
    inset: -.65rem -.5rem 1.8rem 1rem;
  }

  .table-collage {
    min-height: 31rem;
    grid-template-columns: 1fr .42fr;
    gap: .6rem;
  }

  .table-collage__main figcaption {
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    padding: .65rem;
    font-size: .78rem;
  }

  .menu-family-list li {
    grid-template-columns: 2rem 1fr;
  }

  .menu-family-list small {
    grid-column: 2;
  }

  .menu-feature__image {
    width: calc(100% - 1.25rem);
  }

  .chef-editorial__grid {
    grid-template-columns: 1fr;
  }

  .chef-editorial__portrait {
    width: min(100%, 25rem);
  }

  .press-card {
    grid-column: auto;
  }

  .village-feature__media {
    padding: 0 1rem 1rem 0;
  }

  .village-feature__media figcaption {
    right: 1.5rem;
    font-size: .76rem;
  }

  .section-index .shell {
    width: max-content;
    min-width: 100%;
    padding-inline: 1rem;
  }

  .menu-category {
    padding-bottom: 4.5rem;
  }

  .menu-category__header {
    grid-template-columns: 2rem 1fr;
  }

  .menu-category__header small {
    grid-column: 2;
  }

  .menu-category__items {
    grid-template-columns: 1fr;
  }

  .menu-inline-cta {
    display: grid;
    padding: 1.5rem;
  }

  .menu-inline-cta .button {
    width: 100%;
  }

  .menu-contact-row {
    display: grid;
    justify-items: start;
    gap: .35rem;
  }

  .image-duo,
  .season-grid {
    grid-template-columns: 1fr;
  }

  .image-duo figure:first-child {
    max-width: none;
  }

  .image-duo figure:last-child {
    margin-top: 0;
  }

  .image-duo figure:last-child img {
    aspect-ratio: 4 / 5;
  }

  .craft-notes__intro {
    display: block;
  }

  .season-grid figcaption {
    display: grid;
  }

  .season-grid figcaption span {
    text-align: left;
  }

  .editorial-intro__text {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .rice-chapter__grid {
    grid-template-columns: 1fr;
  }

  .rice-chapter__index {
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }

  .rice-chapter__index strong {
    font-size: 4rem;
  }

  .rice-chapter figure {
    grid-column: auto;
  }

  .reservation-band__actions,
  .reservation-band__actions .button {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__legal {
    min-height: 9rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .65rem;
  }

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

  .contact-panel article > :not(.contact-panel__label) {
    grid-column: 1;
  }

  .contact-panel__label {
    grid-row: auto;
  }

  .room-feature,
  .room-feature__card {
    min-height: 38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
