:root {
  --ink: #061d1b;
  --deep: #031916;
  --gold: #d7bc7a;
  --muted-gold: #c9ad6d;
  --paper: #edf0ef;
  --body: #f8f7f2;
  --serif: "Times New Roman", Times, "Noto Serif TC", "Songti TC", "PMingLiU", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gold);
  background: var(--deep);
  font-family: var(--serif);
  letter-spacing: 0;
}

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

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .08) 45%, rgba(0, 0, 0, .12)),
    url("assets/amber-hero.jpg");
  background-position: center center;
  background-size: cover;
}

.menu-hero {
  position: relative;
  min-height: clamp(560px, 70vw, 900px);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, .05)),
    url("assets/menu-hero.jpg");
  background-position: center top;
  background-size: cover;
}

.contact-hero {
  position: relative;
  min-height: clamp(520px, 69.7vw, 980px);
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, .02)),
    url("assets/contact-hero.jpg");
  background-position: center top;
  background-size: cover;
}

.hero-nav {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(760px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  color: #f2d99c;
  font-size: 15px;
  font-weight: 700;
  transform: translateX(-50%);
}

.hero-nav a {
  padding: 8px 10px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .72);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero-nav .language-switch {
  padding: 8px 10px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .72);
}

.hero-nav .language-switch a,
.sticky-menu-links .language-switch a,
.mobile-menu .language-switch a {
  padding: 0;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, .7);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
  opacity: 0;
  padding: 0 clamp(26px, 4vw, 58px);
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity .32s ease, transform .32s ease;
}

.sticky-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-menu-image {
  display: block;
  width: clamp(106px, 12vw, 152px);
  height: auto;
}

.sticky-menu-links {
  display: flex;
  width: min(760px, calc(100% - 190px));
  align-items: center;
  justify-content: space-between;
  color: #f2d99c;
  font-size: clamp(14px, 1.45vw, 21px);
  font-weight: 700;
}

.sticky-menu-links a {
  padding: 12px 10px;
  white-space: nowrap;
}

.sticky-menu-links .language-switch {
  padding: 12px 10px;
}

.sticky-menu-links a:nth-child(2) {
  border-bottom: 1px solid currentColor;
}

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

.hero-logo {
  position: absolute;
  left: clamp(30px, 8vw, 150px);
  bottom: 33%;
  width: clamp(210px, 30vw, 390px);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .72));
}

.hero-title {
  position: absolute;
  left: clamp(36px, 8vw, 170px);
  bottom: 88px;
  color: #fff;
}

.hero-title h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: .08em;
}

html[lang="en"] .hero-logo {
  bottom: 36%;
}

html[lang="en"] .hero-title h1 {
  letter-spacing: .045em;
}

.hero-title p {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 24px);
  letter-spacing: .45em;
}

html[lang="en"] .hero-title p {
  max-width: 1180px;
  letter-spacing: .24em;
  line-height: 1.7;
}

.section-dark {
  background: var(--deep);
}

.section-inner {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
  text-align: center;
}

.about-title-image {
  display: block;
  width: min(292px, 72vw);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .25));
}

.gold-copy {
  width: min(760px, 100%);
  margin: 0 auto 60px;
  color: var(--muted-gold);
  font-size: 15px;
  line-height: 2.3;
  white-space: pre-line;
}

.about-copy {
  margin-bottom: 42px;
  line-height: 2;
}

.triptych {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.triptych img {
  display: block;
  width: 100%;
  aspect-ratio: 317 / 515;
  object-fit: cover;
}

.triptych img:nth-child(2) {
  object-fit: contain;
  background: var(--deep);
}

.reveal-item {
  opacity: 0;
  transform: translateY(54px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-item:nth-child(2) {
  transition-delay: .14s;
}

.reveal-item:nth-child(3) {
  transition-delay: .28s;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.crop {
  background-image: url("assets/amber-full.jpg");
  background-repeat: no-repeat;
  background-size: 1000px auto;
}

.crop {
  min-height: 340px;
}

.crop-corridor {
  background-position: 8% 29%;
}

.crop-plating {
  background-position: 82% 31%;
}

.concept-section {
  display: grid;
  grid-template-columns: minmax(250px, 44%) minmax(70px, 12%) minmax(220px, 44%);
  gap: clamp(22px, 3.6vw, 58px);
  align-items: center;
  min-height: 0;
  aspect-ratio: 2656 / 1226;
  padding: 0 clamp(28px, 6.2vw, 100px);
  color: #27302f;
  background-image:
    linear-gradient(90deg, rgba(238, 242, 242, .84), rgba(238, 242, 242, .7) 38%, rgba(238, 242, 242, .06) 63%, rgba(238, 242, 242, 0)),
    url("assets/concept-bg.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #eef2f2;
}

.concept-copy {
  color: #5b5b5b;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 2.35;
  text-align: left;
  text-shadow: 0 1px 16px rgba(255, 255, 255, .42);
}

.vertical-title {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: #15211f;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.18;
}

.concept-photo-space {
  min-height: 320px;
}

.environment h2 {
  margin: 0 0 44px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .25em;
}

.slider-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 34px;
  align-items: center;
}

.arrow {
  width: 52px;
  height: 76px;
  border: 0;
  color: #00a487;
  background: transparent;
  font-size: 78px;
  line-height: 1;
  cursor: pointer;
}

.environment-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1373 / 936;
  background: #000;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .42s ease, transform .42s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--gold);
}

.wide {
  width: min(930px, 100%);
  margin-top: 42px;
  margin-bottom: 0;
}

.reservation {
  display: grid;
  place-items: center;
  min-height: 330px;
  color: #fff;
  text-align: center;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .6)),
    url("assets/reservation-bg.jpg");
  background-size: cover;
  background-position: center;
}

.reservation p {
  margin: 0 0 12px;
  color: #d8d1c0;
  font-size: 22px;
  letter-spacing: .4em;
}

.reservation h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  letter-spacing: .18em;
}

.reservation a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .8);
  padding: 0 28px;
  font-size: 20px;
  letter-spacing: .28em;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(210px, 320px) 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: stretch;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 88px;
}

.contact-info {
  color: var(--muted-gold);
  font-size: 15px;
  line-height: 1.9;
}

.contact-info h3 {
  position: relative;
  margin: 0 0 18px;
  padding-top: 26px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
}

.contact-info h3::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 42px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.contact-info a {
  color: inherit;
}

.map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  background: #dfe7e5;
}

footer {
  min-height: 300px;
  padding-top: 70px;
  padding-bottom: 72px;
  color: rgba(255, 255, 255, .78);
  text-align: center;
  background-image:
    linear-gradient(rgba(0, 82, 68, .34), rgba(0, 59, 50, .58)),
    url("assets/footer-bg.png");
  background-size: cover;
  background-position: center;
}

.footer-logo-image {
  display: block;
  width: min(220px, 55vw);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .34));
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, .32);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .04em;
}

.menu-options {
  background: #000;
}

.section-black,
.contact-form-section {
  background: #000;
}

.menu-options-inner {
  width: min(1210px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(32px, 4vw, 58px) 0 clamp(64px, 7vw, 110px);
}

.menu-dot {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.menu-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(215, 188, 122, .82);
  background: #000;
}

.menu-card-feature {
  grid-column: 1 / -1;
}

.menu-card picture,
.menu-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu-card-content {
  position: relative;
  inset: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex: 1;
  min-height: clamp(210px, 20vw, 260px);
  padding: clamp(26px, 3vw, 40px);
  color: #fff;
  background: #000;
  text-align: left;
}

.menu-card-feature .menu-card-content {
  justify-content: center;
  width: auto;
  min-height: clamp(190px, 17vw, 240px);
  padding-left: clamp(32px, 6vw, 72px);
}

.menu-card-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .28em;
}

html[lang="en"] .menu-card-content h2 {
  font-size: clamp(26px, 2.6vw, 39px);
  letter-spacing: .08em;
}

.menu-card-content p {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(13px, 1.35vw, 18px);
  letter-spacing: .38em;
  line-height: 1.4;
  text-transform: uppercase;
}

html[lang="en"] .menu-card-content p {
  letter-spacing: .2em;
}

.menu-card-content span {
  width: min(360px, 100%);
  height: 1px;
  margin: 18px 0 20px;
  background: rgba(215, 188, 122, .92);
}

.menu-card-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(215, 188, 122, .92);
  padding: 0 2px 8px 0;
  color: #fff;
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: .2em;
}

.menu-card-content a::after {
  margin-left: 10px;
  content: "↗";
}

.contact-form-inner {
  width: min(1060px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(96px, 11vw, 170px) 0 clamp(110px, 12vw, 180px);
}

.contact-form-inner h1 {
  margin: 0 0 clamp(56px, 6vw, 86px);
  color: var(--gold);
  font-size: clamp(30px, 3.3vw, 52px);
  font-weight: 600;
  letter-spacing: .36em;
  text-align: center;
}

.contact-page-info {
  width: min(360px, 100%);
  margin: 0 auto clamp(44px, 5vw, 72px);
  text-align: left;
}

.contact-form {
  display: grid;
  gap: 26px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--serif);
  font-size: 16px;
}

.form-status {
  min-height: 30px;
  margin: -26px 0 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: #f2b1a7;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin: 0;
}

.form-row span,
.form-row legend {
  padding-top: 12px;
  color: rgba(255, 255, 255, .68);
  font-weight: 600;
}

.form-row-radio {
  border: 0;
  padding: 0;
}

.form-row-radio,
.radio-group {
  min-width: 0;
}

.radio-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 34px;
}

.radio-group label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  white-space: nowrap;
}

.radio-group input {
  width: 16px;
  height: 16px;
  accent-color: #008f78;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 0;
  color: #fff;
  background: #000;
  font: inherit;
  outline: 0;
}

.contact-form input {
  height: 46px;
  padding: 0 14px;
}

.contact-form .radio-group input[type="radio"] {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
}

.contact-form textarea {
  min-height: 220px;
  padding: 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .56);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 42px;
}

.form-actions button {
  display: inline-flex;
  min-width: 174px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: #008f78;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .24em;
  cursor: pointer;
}

.form-actions button:hover {
  background: #0aa58c;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(215, 188, 122, .75);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(0, 0, 0, .78);
  font-size: 26px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #061d1b;
}

@media (max-width: 760px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 100svh;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .16) 48%, rgba(0, 0, 0, .74)),
      url("assets/amber-hero.jpg");
    background-position: 58% center;
  }

  .menu-hero {
    min-height: 72svh;
    padding-top: 66px;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .02) 46%, rgba(0, 0, 0, .48)),
      url("assets/mobile-hero-menu.jpg");
    background-position: 54% top;
    background-size: cover;
  }

  .contact-hero {
    min-height: 72svh;
    padding-top: 66px;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .02) 48%, rgba(0, 0, 0, .3)),
      url("assets/mobile-hero-contact.jpg");
    background-position: 38% top;
    background-size: cover;
  }

  .hero-nav {
    display: none;
  }

  .sticky-nav {
    height: 66px;
    padding: 0 18px;
    background: rgba(0, 0, 0, .7);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    backdrop-filter: blur(8px);
  }

  .sticky-nav.is-visible {
    backdrop-filter: blur(8px);
  }

  .sticky-menu-image {
    width: 78px;
  }

  .sticky-menu-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(215, 188, 122, .42);
    border-radius: 50%;
    padding: 9px;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--gold);
    transition: transform .25s ease, opacity .25s ease;
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 18;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    background: rgba(0, 0, 0, .9);
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .18em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .28s ease, transform .28s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-logo {
    left: 50%;
    top: auto;
    bottom: clamp(250px, 34svh, 310px);
    width: min(230px, 62vw);
    transform: translateX(-50%);
  }

  html[lang="en"] .hero-logo {
    bottom: clamp(280px, 38svh, 350px);
  }

  .hero-title {
    left: 22px;
    right: 22px;
    bottom: 76px;
    text-align: center;
  }

  .hero-title h1 {
    margin-bottom: 18px;
  }

  .hero-title p {
    letter-spacing: .18em;
    line-height: 1.9;
  }

  html[lang="en"] .hero-title p {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    letter-spacing: .08em;
  }

  .section-inner {
    width: calc(100% - 32px);
    padding: 58px 0;
  }

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

  .about-title-image {
    width: min(190px, 54vw);
    margin-bottom: 18px;
  }

  .gold-copy,
  .about-copy {
    width: min(100%, 430px);
    font-size: 14px;
    line-height: 1.9;
  }

  .about-copy {
    margin-bottom: 34px;
    text-align: left;
  }

  .triptych {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
  }

  .triptych img {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .triptych img:nth-child(2) {
    height: 214px;
    object-fit: cover;
    object-position: center;
  }

  .crop {
    min-height: 280px;
  }

  .concept-section {
    position: relative;
    display: block;
    min-height: 760px;
    aspect-ratio: auto;
    padding: 78px 24px 64px;
    background-image:
      linear-gradient(180deg, rgba(238, 242, 242, .9), rgba(238, 242, 242, .72) 46%, rgba(238, 242, 242, 0) 62%),
      url("assets/concept-mobile-bg.png");
    background-position: center top, center bottom;
    background-size: cover, 100% auto;
    background-repeat: no-repeat;
    background-color: #e8edf0;
  }

  .vertical-title {
    position: absolute;
    top: 100px;
    right: 28px;
    gap: 5px;
    font-size: 32px;
  }

  .concept-copy {
    width: min(68%, 290px);
    padding-top: 22px;
    font-size: 14px;
    line-height: 2;
    text-shadow: 0 1px 18px rgba(255, 255, 255, .76);
  }

  .concept-photo-space {
    display: none;
  }

  .slider-row {
    display: block;
    margin: 0 -16px;
  }

  .arrow {
    display: none;
  }

  .environment h2 {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .environment-carousel {
    width: 100%;
    aspect-ratio: 1373 / 936;
  }

  .wide {
    margin-top: 30px;
    text-align: left;
  }

  .reservation {
    min-height: 390px;
    background-position: 32% center;
  }

  .reservation a {
    width: min(280px, 82vw);
    min-height: 54px;
  }

  .contact-inner {
    width: calc(100% - 36px);
    gap: 28px;
    padding: 52px 0 68px;
  }

  .contact-info {
    font-size: 16px;
  }

  .map-frame {
    height: auto;
    min-height: 320px;
  }

  .map-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 188, 122, .62);
    padding: 0 20px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: .12em;
  }

  footer {
    min-height: 360px;
    padding-top: 74px;
    padding-bottom: 92px;
  }

  .footer-logo-image {
    width: min(210px, 58vw);
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 23px;
  }

  .menu-options-inner {
    width: calc(100% - 34px);
    padding: 34px 0 72px;
  }

  .menu-dot {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .menu-card-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .menu-card,
  .menu-card-feature {
    grid-column: auto;
  }

  .menu-card-feature .menu-card-content,
  .menu-card-content {
    width: auto;
    min-height: 0;
    padding: 28px 32px 26px;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
  }

  .menu-card-content h2 {
    margin-bottom: 0;
    font-size: 26px;
    letter-spacing: .2em;
  }

  html[lang="en"] .menu-card-content h2 {
    font-size: 25px;
  }

  .menu-card-content span {
    width: min(300px, 100%);
    margin: 14px 0 16px;
  }

  .menu-card-content a {
    font-size: 15px;
  }

  .contact-form-inner {
    width: calc(100% - 34px);
    padding: 70px 0 92px;
  }

  .contact-form-inner h1 {
    margin-bottom: 42px;
    font-size: 28px;
    letter-spacing: .26em;
  }

  .contact-form {
    gap: 20px;
    font-size: 15px;
  }

  .form-status {
    margin: -18px 0 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-row span,
  .form-row legend {
    padding-top: 0;
  }

  .radio-group {
    gap: 6px 22px;
    align-items: center;
  }

  .radio-group label {
    gap: 9px;
  }

  .contact-form input {
    height: 44px;
  }

  .contact-form textarea {
    min-height: 190px;
  }

  .form-actions {
    padding-top: 28px;
  }

  .form-actions button {
    min-width: 154px;
    min-height: 54px;
    font-size: 23px;
  }
}
