@font-face {
  font-family: "TH Kodchasal";
  src: url("../fonts/TH-Kodchasal.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "TH Kodchasal";
  src: url("../fonts/TH-Kodchasal-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #154a38;
  --gold: #b49869;
  --cream: #f2e9d8;
  --cream-2: #ece8de;
  --sand: #d9d3be;
  --tan: #b1987c;
  --spice: #6c4026;
  --brown-dark: #38261c;
  --sage: #aaaa8f;
  --gray-warm: #635a53;
  --white: #ffffff;
  --header-height: 4.75rem;
  --bottom-bar-height: 4rem;
  --container: 75rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 1rem 2.5rem rgba(56, 38, 28, 0.1);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  padding-bottom: var(--bottom-bar-height);
  overflow-x: hidden;
  background: var(--cream);
  color: var(--brown-dark);
  font-family: "Sarabun", "Cordia New", sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--green);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--spice);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--green);
}

::selection {
  background: var(--gold);
  color: var(--brown-dark);
}

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

h1,
h2,
h3 {
  color: var(--green);
  font-family: "TH Kodchasal", "Sarabun", sans-serif;
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3 {
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--green);
  font-weight: 700;
}

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

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

.section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  isolation: isolate;
}

.section--alt {
  background: var(--cream-2);
}

.section--green {
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
}

.section--green h2,
.section--green h3 {
  color: var(--cream);
}

.section__heading {
  max-width: 47rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section__heading--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 2rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  align-items: center;
  border-radius: 999px;
  background: var(--brown-dark);
  color: var(--gold);
  font-family: "Marcellus", Georgia, serif;
  font-size: 0.83rem;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section--green .eyebrow,
.hero .eyebrow {
  border: 1px solid rgba(180, 152, 105, 0.75);
}

.lead {
  max-width: 44rem;
  color: var(--gray-warm);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
}

.section--green .lead {
  color: var(--cream-2);
}

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

.button {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.7rem 1.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.35;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--green);
  color: var(--cream);
}

.button--primary:hover {
  background: var(--spice);
  color: var(--cream);
}

.button--gold {
  background: var(--gold);
  color: var(--brown-dark);
}

.button--gold:hover {
  background: var(--cream);
  color: var(--green);
}

.button--outline {
  border-color: var(--cream);
  color: var(--cream);
}

.button--outline:hover {
  border-color: var(--gold);
  background: var(--cream);
  color: var(--green);
}

.button--cream {
  background: var(--cream);
  color: var(--green);
}

.button--cream:hover {
  background: var(--gold);
  color: var(--green);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(217, 211, 190, 0.75);
  background: rgba(242, 233, 216, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-link {
  display: block;
  width: 10.5rem;
  height: 3.25rem;
  flex: 0 0 auto;
}

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

.desktop-nav,
.header-actions {
  display: none;
}

.menu-toggle {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__icon::before {
  top: -0.45rem;
}

.menu-toggle__icon::after {
  top: 0.45rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 990;
  inset: var(--header-height) 0 var(--bottom-bar-height);
  overflow-y: auto;
  background: var(--green);
  color: var(--cream);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__inner {
  display: flex;
  min-height: 100%;
  padding-block: 2rem 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.mobile-nav__links {
  display: grid;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.mobile-nav__links a {
  display: flex;
  min-height: 3.5rem;
  padding-block: 0.55rem;
  align-items: center;
  border-bottom: 1px solid rgba(242, 233, 216, 0.22);
  color: var(--cream);
  font-family: "TH Kodchasal", "Sarabun", sans-serif;
  font-size: clamp(1.65rem, 8vw, 2.25rem);
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav__links a:hover {
  color: var(--gold);
}

.language-switch {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-warm);
  font-family: "Marcellus", Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  min-width: 2.2rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
}

.language-switch [aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}

.mobile-nav .language-switch {
  color: var(--sand);
}

.mobile-nav .language-switch a,
.mobile-nav .language-switch [aria-current="page"] {
  color: var(--cream);
}

.language-picker {
  position: relative;
}

.language-picker summary {
  display: inline-flex;
  min-height: 3rem;
  padding-inline: 0.7rem;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--sand);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}

.language-picker summary::-webkit-details-marker {
  display: none;
}

.language-picker summary span {
  min-width: 0;
  min-height: 0;
}

.language-picker__globe {
  color: var(--gold);
  font-size: 1.2rem;
}

.language-picker ul {
  position: absolute;
  z-index: 1100;
  top: calc(100% + 0.55rem);
  right: 0;
  display: grid;
  min-width: 10.5rem;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--cream);
  box-shadow: var(--shadow);
  list-style: none;
}

.language-picker li a,
.language-picker li span {
  display: flex;
  min-width: 0;
  min-height: 2.65rem;
  padding-inline: 0.8rem;
  justify-content: flex-start;
  border-radius: 0.35rem;
  color: var(--brown-dark);
  letter-spacing: 0;
  text-decoration: none;
}

.language-picker li a:hover,
.language-picker li span[aria-current="page"] {
  background: var(--cream-2);
  color: var(--green);
}

.language-list {
  flex: 1 0 100%;
  width: 100%;
}

.language-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(242, 233, 216, 0.22);
  list-style: none;
}

.language-list a,
.language-list span {
  display: flex;
  min-height: 3rem;
  padding: 0.65rem 0.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 233, 216, 0.3);
  border-radius: 999px;
  color: var(--cream);
  text-align: center;
  text-decoration: none;
}

.language-list a:hover,
.language-list span[aria-current="page"] {
  border-color: var(--gold);
  background: rgba(180, 152, 105, 0.18);
  color: var(--cream);
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  place-items: end start;
  background: var(--green);
  color: var(--cream);
  isolation: isolate;
}

.hero__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 74, 56, 0.45) 0%, rgba(21, 74, 56, 0.76) 52%, rgba(21, 74, 56, 0.98) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -5rem;
  width: min(52rem, 90vw);
  aspect-ratio: 1;
  background: url("../img/elements/KHOEI Chiang Mai - GRAPHIC ELEMENT-29.png") center / contain no-repeat;
  content: "";
  opacity: 0.08;
}

.hero__content {
  width: min(100%, 47rem);
  padding-block: clamp(4rem, 12vh, 8rem);
}

.hero__logo {
  width: auto;
  height: min(13.75rem, 35vh);
  max-width: min(13.75rem, 50vw);
  margin-bottom: 1rem;
  object-fit: contain;
}

.hero h1 {
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(21, 74, 56, 0.5);
}

.hero__subline {
  max-width: 38rem;
  margin-bottom: 1.75rem;
  color: var(--cream-2);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}

.highlights {
  border-bottom: 1px solid var(--sand);
  background: var(--cream);
}

.highlights__grid {
  display: grid;
  gap: 0;
}

.highlight {
  display: grid;
  min-height: 8rem;
  padding: 1.3rem 0;
  grid-template-columns: 3.25rem 1fr;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--sand);
}

.highlight:last-child {
  border-bottom: 0;
}

.highlight__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.highlight__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.highlight h2 {
  margin-bottom: 0.15rem;
  font-size: 1.35rem;
}

.highlight p {
  margin-bottom: 0;
  color: var(--gray-warm);
  font-size: 1rem;
  line-height: 1.55;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.dish-card,
.review-card,
.info-card {
  overflow: hidden;
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  background: var(--cream-2);
  box-shadow: 0 0.35rem 1.25rem rgba(56, 38, 28, 0.05);
}

.dish-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.dish-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--sand);
}

.dish-card__content {
  display: flex;
  padding: 1.25rem;
  flex: 1;
  flex-direction: column;
}

.dish-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dish-card__heading h3 {
  margin-bottom: 0;
}

.dish-card__price {
  flex: 0 0 auto;
  color: var(--spice);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.dish-card__english {
  margin-bottom: 0.65rem;
  color: var(--green);
  font-family: "Marcellus", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.dish-card__content > p:not(.dish-card__english) {
  margin-bottom: 1rem;
  color: var(--gray-warm);
  font-size: 1rem;
  line-height: 1.65;
}

.tag-list {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-flex;
  min-height: 1.85rem;
  padding: 0.2rem 0.65rem;
  align-items: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.tag--recommended {
  background: var(--green);
  color: var(--cream);
}

.tag--spicy {
  background: var(--spice);
  color: var(--cream);
}

.tag--veg {
  background: var(--sage);
  color: var(--brown-dark);
}

.section__footer-action {
  display: flex;
  margin-top: 2.25rem;
  justify-content: center;
}

.story {
  overflow: hidden;
}

.story::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -10rem;
  width: min(46rem, 100vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("../img/elements/KHOEI Chiang Mai - GRAPHIC ELEMENT-30.png") center / contain no-repeat;
  content: "";
  opacity: 0.06;
}

.story__grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.story__visual {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green);
}

.story__visual img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  opacity: 0.94;
}

.story__visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 233, 216, 0.5);
  border-radius: inherit;
  box-shadow: inset 0 0 0 0.7rem rgba(21, 74, 56, 0.17);
  content: "";
  pointer-events: none;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.gallery-strip__item {
  position: relative;
  min-height: 10rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream-2);
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-strip__item:hover img {
  transform: scale(1.035);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  position: relative;
  padding: 1.5rem;
  background: var(--cream);
}

.review-card::before {
  position: absolute;
  top: 0.3rem;
  right: 1rem;
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  content: "“";
}

.review-card__stars {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--spice);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  font-family: "TH Kodchasal", "Sarabun", sans-serif;
  font-size: 1.22rem;
  line-height: 1.6;
}

.review-card cite {
  color: var(--gray-warm);
  font-size: 0.95rem;
  font-style: normal;
}

.visit {
  overflow: hidden;
}

.visit::after,
.site-footer::after {
  position: absolute;
  z-index: -1;
  right: -7rem;
  bottom: -8rem;
  width: min(35rem, 80vw);
  aspect-ratio: 1;
  background: url("../img/elements/KHOEI Chiang Mai - GRAPHIC ELEMENT-31.png") center / contain no-repeat;
  content: "";
  opacity: 0.07;
}

.visit__grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.35rem;
  background: rgba(242, 233, 216, 0.08);
  border-color: rgba(242, 233, 216, 0.24);
  box-shadow: none;
}

.info-card__icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.9rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.info-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.info-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.35rem;
}

.info-card p {
  color: var(--cream-2);
}

.visit__actions {
  margin-top: 1.5rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: 3.5rem calc(2rem + var(--bottom-bar-height));
  border-top: 1px solid rgba(180, 152, 105, 0.5);
  background: var(--green);
  color: var(--cream-2);
  isolation: isolate;
}

.site-footer__grid {
  display: grid;
  gap: 2.25rem;
}

.footer-brand {
  width: 11.5rem;
  height: 4.25rem;
  margin-bottom: 1.25rem;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer h2 {
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-size: 1.25rem;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: var(--cream-2);
  font-size: 1rem;
  font-style: normal;
}

.site-footer address a {
  color: var(--cream);
}

.site-footer address a:hover {
  color: var(--gold);
}

.footer-links,
.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.social-links a {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  color: var(--cream);
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-footer__bottom {
  display: flex;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  border-top: 1px solid rgba(242, 233, 216, 0.2);
  color: var(--sand);
  font-size: 0.88rem;
}

.bottom-actions {
  position: fixed;
  z-index: 1100;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: var(--bottom-bar-height);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(242, 233, 216, 0.35);
  background: var(--green);
  box-shadow: 0 -0.5rem 1.5rem rgba(21, 74, 56, 0.2);
}

.bottom-actions a {
  display: flex;
  min-width: 0;
  min-height: 3.5rem;
  padding: 0.35rem 0.2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  border-right: 1px solid rgba(242, 233, 216, 0.16);
  color: var(--cream);
  font-size: 0.78rem;
  line-height: 1.2;
  text-decoration: none;
}

.bottom-actions a:last-child {
  border-right: 0;
}

.bottom-actions a:hover {
  background: rgba(180, 152, 105, 0.2);
  color: var(--cream);
}

.bottom-actions svg {
  width: 1.35rem;
  height: 1.35rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.simple-page {
  display: grid;
  min-height: 100svh;
  padding: 2rem 1rem;
  place-items: center;
  background: var(--green);
}

.simple-card {
  position: relative;
  width: min(100%, 42rem);
  overflow: hidden;
  padding: clamp(2rem, 7vw, 4rem);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  background: var(--cream);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.simple-card::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  aspect-ratio: 1;
  background: url("../img/elements/KHOEI Chiang Mai - GRAPHIC ELEMENT-29.png") center / contain no-repeat;
  content: "";
  opacity: 0.055;
  pointer-events: none;
}

.simple-card__mark {
  width: 5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--green);
  object-fit: contain;
}

.simple-card .button-row {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  justify-content: center;
}

/* Phase 2: interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--green);
  color: var(--cream);
  isolation: isolate;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -10rem;
  width: min(34rem, 85vw);
  aspect-ratio: 1;
  background: url("../img/elements/KHOEI Chiang Mai - GRAPHIC ELEMENT-29.png") center / contain no-repeat;
  content: "";
  opacity: 0.08;
}

.page-hero h1 {
  max-width: 52rem;
  color: var(--cream);
}

.page-hero .lead {
  margin-bottom: 0;
  color: var(--cream-2);
}

.breadcrumbs {
  margin-bottom: 1.1rem;
  color: var(--sand);
  font-size: 0.95rem;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.4rem;
  content: "/";
  color: var(--gold);
}

.breadcrumbs a {
  color: var(--cream);
}

.menu-filter {
  display: flex;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.menu-filter button {
  min-height: 3rem;
  padding: 0.65rem 1.1rem;
  flex: 0 0 auto;
  border: 1px solid var(--tan);
  border-radius: 999px;
  background: transparent;
  color: var(--brown-dark);
  font-weight: 700;
  cursor: pointer;
}

.menu-filter button:hover {
  border-color: var(--green);
  color: var(--green);
}

.menu-filter button[aria-pressed="true"] {
  border-color: var(--green);
  background: var(--green);
  color: var(--cream);
}

.menu-grid {
  display: grid;
  gap: 1.25rem;
}

.menu-grid .dish-card[hidden] {
  display: none;
}

.menu-note {
  margin-top: 1.5rem;
  color: var(--gray-warm);
  text-align: center;
}

.cta-band {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--cream-2);
  text-align: center;
}

.cta-band h2,
.cta-band p {
  max-width: 45rem;
  margin-inline: auto;
}

.cta-band .button-row {
  margin-top: 1.25rem;
  justify-content: center;
}

.story-page {
  overflow: hidden;
}

.story-chapter {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.story-chapter + .story-chapter {
  margin-top: clamp(4rem, 9vw, 7rem);
}

.story-chapter__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green);
  box-shadow: var(--shadow-soft);
}

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

.story-quote {
  position: relative;
  margin: clamp(4rem, 9vw, 7rem) auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  border-block: 1px solid var(--gold);
  color: var(--green);
  font-family: "TH Kodchasal", "Sarabun", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.story-quote::after {
  position: absolute;
  z-index: -1;
  inset: 50% auto auto 50%;
  width: min(28rem, 85vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: url("../img/elements/KHOEI Chiang Mai - GRAPHIC ELEMENT-30.png") center / contain no-repeat;
  content: "";
  opacity: 0.07;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-card {
  position: relative;
  min-width: 0;
  min-height: 12rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--green);
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  transition: transform 450ms ease, opacity var(--transition);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.035);
  opacity: 0.88;
}

.gallery-card__label {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(21, 74, 56, 0.9);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: grid;
  padding: 1rem;
  place-items: center;
  background: rgba(21, 74, 56, 0.96);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  width: min(68rem, calc(100vw - 2rem));
  margin: 0;
  text-align: center;
}

.lightbox__figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.lightbox__caption {
  margin-top: 0.75rem;
  color: var(--cream);
}

.lightbox__button {
  position: absolute;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(242, 233, 216, 0.7);
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__previous,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__previous {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

.faq-list {
  display: grid;
  max-width: 55rem;
  margin-inline: auto;
  gap: 0.85rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  background: var(--cream-2);
}

.faq-list summary {
  position: relative;
  min-height: 4rem;
  padding: 1rem 3.75rem 1rem 1.25rem;
  color: var(--green);
  font-family: "TH Kodchasal", "Sarabun", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  transform: translateY(-50%);
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--spice);
  content: "+";
  font-family: "Sarabun", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--sand);
}

.faq-list details p {
  margin: 0;
  padding: 1.2rem 1.25rem 1.5rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  background: var(--cream-2);
}

.contact-card address {
  font-style: normal;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  background: var(--cream-2);
}

.map-placeholder {
  display: grid;
  min-height: 24rem;
  padding: 2rem;
  place-items: center;
  align-content: center;
  gap: 1rem;
  background: var(--cream-2);
  color: var(--gray-warm);
  text-align: center;
}

.map-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--gold);
}

.map-placeholder strong {
  color: var(--green);
  font-family: "TH Kodchasal", "Sarabun", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 24rem;
  border: 0;
}

.map-frame__action {
  padding: 1rem;
  text-align: center;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--sand);
  text-align: left;
}

.hours-table th {
  color: var(--green);
}

.hours-table td {
  text-align: right;
}

.button--line {
  background: #06C755;
  color: var(--green);
}

.button--line:hover {
  background: #06C755;
  color: var(--green);
  filter: brightness(0.92);
}

.social-button-list {
  display: flex;
  margin: 1rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}

@media (min-width: 22.5rem) {
  .container {
    width: min(calc(100% - 2.5rem), var(--container));
  }
}

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .card-grid,
  .reviews-grid,
  .visit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlight {
    padding: 1.5rem;
    border-right: 1px solid var(--sand);
    border-bottom: 0;
  }

  .highlight:first-child {
    padding-left: 0;
  }

  .highlight:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .story__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-strip__item {
    min-height: 18rem;
  }

  .gallery-strip__item:nth-child(2),
  .gallery-strip__item:nth-child(4) {
    margin-top: 2rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1.45fr repeat(2, minmax(0, 1fr));
  }

  .bottom-actions {
    display: none;
  }

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

  .story-chapter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-chapter--reverse .story-chapter__visual {
    order: 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card {
    min-height: 18rem;
  }

  .gallery-card img {
    min-height: 18rem;
  }

  .gallery-card:nth-child(4n + 1) {
    grid-row: span 2;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid--map {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  }

  .mobile-nav {
    bottom: 0;
  }
}

@media (min-width: 64rem) {
  :root {
    --header-height: 5.25rem;
  }

  .desktop-nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .desktop-nav {
    margin-left: auto;
  }

  .desktop-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
  }

  .desktop-nav a {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.55rem 0.65rem;
    align-items: center;
    color: var(--brown-dark);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: var(--green);
  }

  .desktop-nav a[aria-current="page"] {
    box-shadow: inset 0 -2px var(--gold);
  }

  .header-actions {
    gap: 0.65rem;
  }

  .header-actions .button {
    min-height: 3rem;
    padding-inline: 1rem;
  }

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

  .card-grid,
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-link {
    width: 10.75rem;
  }
}

@media (min-width: 90rem) {
  .section {
    padding-block: 7.5rem;
  }

  .gallery-strip {
    gap: 1rem;
  }
}

/* Modern editorial refresh — customer-first, CI-led */
:root {
  --green: #124f3b;
  --green-deep: #0b3b2d;
  --gold: #b49869;
  --cream: #f5efe3;
  --cream-2: #ece8de;
  --surface: #fbf9f4;
  --sand: #d9d3be;
  --brown-dark: #38261c;
  --container: 78rem;
  --radius-sm: 0.6rem;
  --radius-md: 1.15rem;
  --radius-lg: 2rem;
  --shadow-soft: 0 1.25rem 3.5rem rgba(56, 38, 28, 0.09);
}

body {
  background: var(--surface);
  font-size: 1.05rem;
  line-height: 1.68;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.2rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.65rem);
  letter-spacing: -0.025em;
}

.container {
  width: min(calc(100% - 2.25rem), var(--container));
}

.section {
  padding-block: clamp(4.75rem, 9vw, 8rem);
}

.section--alt {
  background: var(--cream);
}

.section__heading {
  max-width: 42rem;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section__heading--center {
  max-width: 48rem;
}

.eyebrow {
  min-height: auto;
  margin-bottom: 1.15rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--spice);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section--green .eyebrow,
.hero .eyebrow {
  border: 0;
  color: var(--gold);
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  line-height: 1.7;
}

.button {
  min-height: 3.35rem;
  padding: 0.78rem 1.35rem;
  border-radius: 0.65rem;
  font-size: 0.98rem;
}

.button:hover {
  transform: translateY(-1px);
}

.button--line {
  background: #06c755;
  color: #063f21;
}

.site-header {
  border-bottom-color: rgba(21, 74, 56, 0.1);
  background: rgba(251, 249, 244, 0.92);
  box-shadow: 0 0.4rem 1.75rem rgba(56, 38, 28, 0.04);
  backdrop-filter: blur(20px);
}

.brand-link {
  width: 9.75rem;
}

.desktop-nav li:nth-child(3),
.desktop-nav li:nth-child(5),
.mobile-nav__links li:nth-child(3),
.mobile-nav__links li:nth-child(5) {
  display: none;
}

.desktop-nav a {
  position: relative;
}

.language-picker summary {
  border-color: rgba(21, 74, 56, 0.18);
  background: var(--surface);
}

.language-picker__globe {
  display: inline-grid;
  min-width: 1.3rem;
  place-items: center;
  font-family: "Segoe UI Emoji", sans-serif;
  font-size: 0;
}

.language-picker__globe::before,
.language-picker li [lang]::before,
.language-list [lang]::before {
  margin-right: 0.45rem;
  font-family: "Segoe UI Emoji", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

html[lang="th"] .language-picker__globe::before,
.language-picker li [lang="th"]::before,
.language-list [lang="th"]::before { content: "🇹🇭"; }
html[lang="en"] .language-picker__globe::before,
.language-picker li [lang="en"]::before,
.language-list [lang="en"]::before { content: "🇬🇧"; }
html[lang="zh-Hans"] .language-picker__globe::before,
.language-picker li [lang="zh-Hans"]::before,
.language-list [lang="zh-Hans"]::before { content: "🇨🇳"; }
html[lang="ja"] .language-picker__globe::before,
.language-picker li [lang="ja"]::before,
.language-list [lang="ja"]::before { content: "🇯🇵"; }
html[lang="ko"] .language-picker__globe::before,
.language-picker li [lang="ko"]::before,
.language-list [lang="ko"]::before { content: "🇰🇷"; }

.language-picker ul {
  min-width: 11.5rem;
  padding: 0.55rem;
  border-color: rgba(21, 74, 56, 0.12);
  border-radius: 0.8rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero {
  min-height: min(48rem, calc(100svh - var(--header-height)));
  place-items: end start;
  background: var(--green-deep);
}

.hero::before {
  background: linear-gradient(180deg, rgba(11, 59, 45, 0.42) 0%, rgba(11, 59, 45, 0.75) 55%, rgba(11, 59, 45, 0.98) 100%);
}

.hero::after {
  right: auto;
  bottom: -18rem;
  left: -15rem;
  opacity: 0.055;
}

.hero__content {
  width: min(100%, 43rem);
  padding-block: clamp(4.5rem, 11vh, 7rem) clamp(6.5rem, 15vh, 9rem);
}

.hero__logo {
  height: min(9rem, 25vh);
  max-width: min(9rem, 38vw);
  margin-bottom: 1.5rem;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  text-shadow: none;
}

.hero__subline {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: rgba(245, 239, 227, 0.88);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
}

.highlights {
  position: relative;
  z-index: 5;
  margin-top: -2.25rem;
  border: 0;
  background: transparent;
}

.highlights__grid {
  overflow: hidden;
  border: 1px solid rgba(21, 74, 56, 0.1);
  border-radius: 1.15rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.highlight {
  min-height: 7.6rem;
  padding: 1.3rem 1.2rem;
  border-color: rgba(21, 74, 56, 0.1);
  color: var(--brown-dark);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.highlight:hover {
  background: var(--cream);
  color: var(--green);
}

.highlight__icon {
  border-color: rgba(180, 152, 105, 0.75);
  background: rgba(180, 152, 105, 0.09);
  color: var(--green);
}

.highlight h2 {
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.highlight p {
  font-size: 0.93rem;
}

main > .story {
  display: none;
}

.card-grid,
.menu-grid {
  gap: 1rem;
}

.dish-card,
.review-card,
.info-card {
  border-color: rgba(21, 74, 56, 0.1);
  border-radius: 0.9rem;
  background: var(--surface);
  box-shadow: none;
}

.dish-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.5rem rgba(56, 38, 28, 0.08);
}

.dish-card__image {
  aspect-ratio: 16 / 11;
  border: 0;
}

.dish-card__content {
  padding: 1.25rem 1.25rem 1.35rem;
}

.dish-card__price {
  display: none;
}

.dish-card__content > p:not(.dish-card__english) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--gray-warm);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-strip {
  gap: 0.65rem;
}

.gallery-strip__item {
  min-height: 13rem;
  border-radius: 0.75rem;
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-auto-columns: minmax(17rem, 82vw);
  grid-auto-flow: column;
  gap: 0.8rem;
  padding-bottom: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.review-card {
  min-height: 100%;
  padding: 1.5rem;
  scroll-snap-align: start;
}

.review-card::before {
  display: none;
}

.review-card__stars {
  margin-bottom: 1rem;
  color: #d79b2b;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin-bottom: 1.2rem;
  font-size: 1.12rem;
  line-height: 1.65;
}

.review-card cite {
  display: block;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 74, 56, 0.1);
  font-size: 0.88rem;
}

.visit {
  background: var(--green-deep);
}

.visit::after {
  opacity: 0.04;
}

.visit__grid {
  gap: 0.65rem;
}

.info-card {
  padding: 1.2rem;
  border-color: rgba(245, 239, 227, 0.13);
  background: rgba(245, 239, 227, 0.07);
}

.info-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.75rem;
}

.info-card h3 {
  font-size: 1.12rem;
}

.info-card p {
  color: rgba(245, 239, 227, 0.78);
  font-size: 0.94rem;
}

.visit__map {
  min-height: 26rem;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 227, 0.16);
  border-radius: 1rem;
  background: var(--cream);
}

.visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 26rem;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.site-footer {
  padding-block: 4.5rem calc(2rem + var(--bottom-bar-height));
  border-top: 0;
  background: #082f24;
}

.site-footer__grid {
  gap: 3rem;
}

.footer-links a,
.social-links a {
  min-height: 2.6rem;
  color: rgba(245, 239, 227, 0.82);
}

.bottom-actions {
  height: 4.25rem;
  border-top-color: rgba(245, 239, 227, 0.12);
  background: rgba(8, 47, 36, 0.97);
  backdrop-filter: blur(18px);
}

.bottom-actions a:nth-child(2) {
  background: #06c755;
  color: #063f21;
}

.page-hero {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: var(--green-deep);
}

.page-hero::after {
  opacity: 0.045;
}

.breadcrumbs {
  color: rgba(245, 239, 227, 0.65);
}

.menu-filter button,
.faq-list details,
.contact-card,
.map-frame {
  border-color: rgba(21, 74, 56, 0.12);
  background: var(--surface);
}

@media (min-width: 48rem) {
  .highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlight {
    padding: 1.45rem;
  }

  .gallery-strip {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    grid-template-rows: repeat(2, 12rem);
  }

  .gallery-strip__item {
    min-height: 0;
  }

  .gallery-strip__item:first-child {
    grid-row: 1 / 3;
  }

  .gallery-strip__item:nth-child(4) {
    grid-column: 2 / 4;
  }

  .gallery-strip__item:nth-child(2),
  .gallery-strip__item:nth-child(4) {
    margin-top: 0;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow: visible;
  }

  .site-footer {
    padding-bottom: 2.25rem;
  }
}

@media (min-width: 64rem) {
  :root {
    --header-height: 5.5rem;
  }

  .brand-link {
    width: 11.25rem;
  }

  .desktop-nav a {
    padding-inline: 0.85rem;
  }

  .hero {
    min-height: 46rem;
    place-items: center start;
  }

  .hero__image {
    z-index: -1;
    inset: 2.5rem max(1.5rem, calc((100vw - var(--container)) / 2)) 2.5rem auto;
    width: min(45vw, 37rem);
    height: calc(100% - 5rem);
    border: 1px solid rgba(245, 239, 227, 0.16);
    border-radius: 1.5rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
    object-fit: cover;
  }

  .hero::before {
    background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-deep) 54%, rgba(11, 59, 45, 0.2) 76%, transparent 100%);
  }

  .hero__content {
    width: min(49%, 39rem);
    padding-block: 6rem 7.5rem;
  }

  .hero__logo {
    height: 8.5rem;
    max-width: 8.5rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 5.1vw, 5.6rem);
  }

  .card-grid,
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit .container {
    display: grid;
    grid-template-areas:
      "heading map"
      "info map"
      "actions map";
    grid-template-columns: minmax(0, 0.86fr) minmax(30rem, 1.14fr);
    align-items: start;
    column-gap: clamp(3rem, 6vw, 6rem);
  }

  .visit .section__heading {
    grid-area: heading;
    margin-bottom: 1.5rem;
  }

  .visit__grid {
    grid-area: info;
    grid-template-columns: 1fr;
  }

  .visit__actions {
    grid-area: actions;
  }

  .visit__map {
    grid-area: map;
    min-height: 38rem;
  }

  .visit__map iframe {
    min-height: 38rem;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-nav,
  .bottom-actions,
  .button-row {
    display: none !important;
  }

  body {
    padding: 0;
    background: var(--white);
    color: #000000;
  }

  .section,
  .site-footer {
    padding-block: 2rem;
    background: var(--white);
    color: #000000;
  }
}
