:root {
  --ink: #132033;
  --muted: #637083;
  --navy: #102f4d;
  --blue: #1a5a7a;
  --teal: #0f766e;
  --red: #a7353d;
  --gold: #c99645;
  --cream: #fbf6ec;
  --paper: #ffffff;
  --line: #e4ded2;
  --soft: #f3f7f7;
  --shadow: 0 18px 48px rgba(19, 32, 51, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", "Segoe UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(19, 32, 51, .1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(19, 32, 51, .08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active {
  color: var(--navy);
  background: rgba(16, 47, 77, .08);
}

.nav a.lang-link {
  color: var(--red);
  border: 1px solid rgba(167, 53, 61, .24);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 78px - 52px);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.hero-image,
.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 42, .88), rgba(10, 24, 42, .46) 46%, rgba(10, 24, 42, .12)),
    linear-gradient(0deg, rgba(10, 24, 42, .72), rgba(10, 24, 42, .05) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 44px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(48px, 8vw, 94px);
  line-height: .96;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 span + span {
  margin-top: 6px;
  font-size: .82em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-language {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.hero-language span {
  padding: 0 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
}

.hero-language a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.hero-language a.is-active {
  color: var(--navy);
  background: #fff;
}

.en-copy {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .92em;
  line-height: 1.65;
}

.hero-lead .en-copy {
  color: rgba(255, 255, 255, .78);
  font-size: .88em;
}

h2 .en-copy,
h3 .en-copy {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: .38em;
  font-weight: 700;
  line-height: 1.45;
}

.story-intro .en-copy {
  margin-top: 18px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.5;
}

.hero-actions,
.cta-actions,
.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  background: var(--red);
}

.btn.secondary {
  color: var(--navy);
  border-color: rgba(16, 47, 77, .25);
  background: #fff;
}

.btn.secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .1);
}

.btn.full {
  width: 100%;
}

.btn:disabled {
  cursor: wait;
  opacity: .68;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 6px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.intro-band article {
  min-height: 210px;
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
}

.intro-band span,
.category-heading span {
  color: var(--gold);
  font-weight: 900;
}

.intro-band h2 {
  margin: 14px 0 10px;
  font-size: 28px;
}

.story-section {
  scroll-margin-top: 92px;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.story-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.story-intro {
  position: sticky;
  top: 110px;
}

.story-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
}

.story-copy {
  max-width: 720px;
}

.story-copy > p {
  margin: 0 0 22px;
  color: #2e3b4d;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.88;
}

.owner-profile {
  margin: 30px 0 34px;
  padding: 28px 30px;
  border-left: 5px solid var(--red);
  background: #f7f4ed;
}

.owner-profile h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
}

.owner-profile p {
  margin: 0 0 16px;
  color: #2e3b4d;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.82;
}

.owner-profile .en-copy {
  color: #536174;
}

.photo-card .en-copy {
  margin-top: 5px;
  color: rgba(255, 255, 255, .76);
  font-size: .82em;
  line-height: 1.4;
}

.cta-band .en-copy {
  color: rgba(255, 255, 255, .78);
}

.owner-profile p:last-child {
  margin-bottom: 0;
}

.story-reservations {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 2px solid var(--line);
}

.story-reservations h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.story-reservations p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.story-reservations a,
.story-reservations span {
  display: block;
  margin-top: 9px;
  color: var(--navy);
  font-weight: 900;
}

.story-reservations a {
  width: fit-content;
  color: var(--red);
  text-decoration: none;
}

.intro-band p,
.section-heading p,
.page-hero p,
.menu-row small,
.photo-card span,
.contact-card p,
.map-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.flush-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.cta-band h2,
.page-hero h1 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.feature-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-tile,
.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.feature-tile img,
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.feature-tile::after,
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 24, 42, .84), rgba(10, 24, 42, .08) 58%);
}

.feature-tile {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  text-decoration: none;
}

.feature-tile span,
.feature-tile strong,
.photo-card figcaption {
  position: relative;
  z-index: 1;
}

.feature-tile span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-tile strong {
  margin-top: 8px;
  font-size: 24px;
}

.feature-tile:hover img {
  transform: scale(1.04);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 47, 77, .95), rgba(15, 118, 110, .9)),
    var(--navy);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.page-hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  align-items: stretch;
  gap: 0;
  background: #fff;
}

.page-hero > div {
  align-self: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 6vw, 78px);
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.compact-hero {
  min-height: 360px;
}

.menu-page {
  background: var(--soft);
}

.menu-actions {
  width: min(1120px, 100%);
  margin: 0 auto 24px;
}

.menu-intro {
  width: min(1120px, 100%);
  margin: 0 auto 22px;
}

.menu-intro h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.menu-intro p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.menu-nav {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.menu-nav a:hover {
  border-color: rgba(178, 51, 62, .35);
  color: var(--red);
}

.menu-board {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.menu-board-long {
  align-items: start;
}

.menu-footnote {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .72);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.menu-category {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  scroll-margin-top: 92px;
}

.category-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.category-heading h2 {
  margin: 0;
  font-size: 22px;
}

.category-heading small {
  color: var(--red);
  font-weight: 900;
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px dotted rgba(19, 32, 51, .24);
}

.menu-row:last-child {
  border-bottom: 0;
}

.menu-row span {
  min-width: 0;
  font-weight: 900;
}

.menu-row small {
  display: block;
  margin-top: 3px;
  font-weight: 700;
}

.menu-row strong {
  color: var(--red);
  text-align: right;
  white-space: nowrap;
}

.current-menu {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.current-menu-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(19, 32, 51, .08);
}

.current-menu-note h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.current-menu-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.menu-page-preview {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(19, 32, 51, .08);
}

.menu-page-preview img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(19, 32, 51, .12);
  border-radius: 4px;
  background: #fff;
}

.menu-page-preview span {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.menu-page-preview:hover {
  transform: translateY(-2px);
  transition: transform .2s ease;
}

.gallery-page {
  background: var(--soft);
}

.gallery-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  min-height: 420px;
  margin: 0;
}

.photo-card.wide {
  grid-column: span 2;
  min-height: 480px;
}

.photo-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.photo-card strong,
.photo-card span {
  display: block;
}

.photo-card strong {
  margin-bottom: 6px;
  font-size: 26px;
}

.photo-card span {
  color: rgba(255, 255, 255, .82);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
  background: var(--soft);
}

.order-menu {
  display: grid;
  gap: 18px;
}

.order-category {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.order-category h3 {
  margin: 0;
  padding: 18px 20px;
  color: #fff;
  background: var(--navy);
}

.order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.order-item:last-child {
  border-bottom: 0;
}

.order-item strong,
.order-item span {
  display: block;
}

.order-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.order-item-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.order-item-action em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.order-item-action button,
.qty-controls button {
  min-width: 40px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  cursor: pointer;
}

.cart-panel,
.contact-card,
.contact-form,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(19, 32, 51, .08);
}

.cart-panel {
  position: sticky;
  top: 98px;
  padding: 22px;
}

.service-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.service-choice label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.cart-items {
  min-height: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.empty-cart {
  margin: 0;
  padding: 22px 0;
  color: var(--muted);
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row:last-child {
  border-bottom: 0;
}

.cart-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.qty-controls {
  display: inline-grid;
  grid-template-columns: 34px 32px 34px;
  align-items: center;
  text-align: center;
}

.qty-controls button {
  min-width: 34px;
  height: 34px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 900;
}

.order-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.form-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.honeypot {
  display: none;
}

.order-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  background: var(--soft);
}

.contact-card,
.contact-form,
.map-panel {
  padding: 28px;
}

.contact-card img {
  width: 98px;
  height: 98px;
  margin-bottom: 18px;
}

.contact-card a {
  display: block;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
}

.map-panel {
  grid-column: 1 / -1;
  min-height: 260px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 47, 77, .94), rgba(16, 47, 77, .58)),
    url("assets/dock3366-dining-room-wide.jpg") center / cover;
}

.map-panel p {
  color: rgba(255, 255, 255, .82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, .82);
  background: #0d2338;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 10px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    justify-content: flex-start;
  }

  .header-call {
    display: none;
  }

  .intro-band,
  .story-wrap,
  .feature-grid,
  .menu-board,
  .menu-page-grid,
  .gallery-grid,
  .order-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-large {
    position: static;
  }

  .map-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-intro {
    position: static;
  }

  .photo-card.wide {
    grid-column: auto;
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero img {
    min-height: 260px;
    order: -1;
  }

  .cart-panel {
    position: static;
  }

  .map-panel {
    grid-column: auto;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 12px;
  }

  .home-hero {
    min-height: 620px;
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-band article {
    min-height: auto;
  }

  .feature-tile,
  .photo-card {
    min-height: 310px;
  }

  .photo-card.wide {
    min-height: 340px;
  }

  .menu-category,
  .cart-panel,
  .contact-card,
  .contact-form,
  .map-panel {
    padding: 20px;
  }

  .order-item,
  .cart-row,
  .menu-row {
    grid-template-columns: 1fr;
  }

  .order-item-action {
    justify-content: space-between;
  }

  .service-choice {
    grid-template-columns: 1fr;
  }
}

.home-redesign {
  background: #fffaf1;
}

.home-redesign .site-header {
  background: rgba(255, 250, 241, .94);
}

.home-redesign .home-hero {
  min-height: clamp(540px, calc(100svh - 138px), 720px);
  align-items: center;
}

.home-redesign .hero-image {
  object-position: center 42%;
}

.home-redesign .hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 24, 38, .92), rgba(8, 24, 38, .58) 48%, rgba(8, 24, 38, .18)),
    linear-gradient(0deg, rgba(8, 24, 38, .62), rgba(8, 24, 38, .1) 58%);
}

.home-redesign-hero {
  padding: clamp(58px, 8vw, 88px) 0;
}

.hero-topline {
  max-width: 980px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.home-redesign .hero-language {
  margin: 0;
}

.home-redesign .hero-content h1 {
  max-width: 980px;
  margin-bottom: 12px;
  font-size: clamp(62px, 11vw, 138px);
  line-height: .86;
}

.hero-statement {
  max-width: 760px;
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.02;
}

.home-redesign .hero-lead {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(17px, 1.65vw, 21px);
}

.home-redesign .hero-actions .btn {
  min-height: 48px;
}

.home-redesign .hero-facts {
  margin-top: 26px;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: #fffaf1;
}

.home-intro-copy,
.home-intro-list,
.specialty-grid,
.owner-section,
.visit-heading,
.visit-content {
  width: min(1120px, 100%);
}

.home-intro-copy {
  justify-self: end;
  max-width: 640px;
}

.home-intro-copy h2,
.owner-copy h2,
.visit-heading h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
}

.home-intro-copy p,
.owner-copy p,
.visit-heading p {
  color: #334257;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.82;
}

.home-intro-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-self: center;
}

.home-intro-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.home-intro-list article:last-child {
  border-bottom: 0;
}

.home-intro-list span {
  grid-row: 1 / span 2;
  color: var(--red);
  font-weight: 900;
}

.home-intro-list h3 {
  grid-column: 2;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 20px;
}

.home-intro-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.specialties-section {
  background: #f2f7f6;
}

.specialty-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: minmax(255px, auto);
  gap: 18px;
}

.specialty-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.specialty-card.large {
  grid-row: span 2;
}

.specialty-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.specialty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 24, 38, .86), rgba(7, 24, 38, .12) 64%),
    linear-gradient(90deg, rgba(7, 24, 38, .26), rgba(7, 24, 38, 0));
}

.specialty-card span,
.specialty-card strong {
  position: relative;
  z-index: 1;
}

.specialty-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.specialty-card strong {
  max-width: 560px;
  margin-top: 9px;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.12;
}

.specialty-card:not(.large) strong {
  font-size: clamp(21px, 2.2vw, 28px);
}

.specialty-card:nth-child(2) img {
  object-position: center 58%;
}

.specialty-card:hover img {
  transform: scale(1.04);
}

.owner-section {
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  background: #fff;
}

.owner-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.owner-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.owner-copy {
  max-width: 680px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.visit-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 29, 46, .96), rgba(16, 47, 77, .86)),
    url("assets/dock3366-bar-interior.jpg") center / cover;
}

.visit-heading {
  margin: 0 auto 32px;
}

.visit-heading h2,
.visit-heading p {
  color: #fff;
}

.visit-heading p {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
}

.visit-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.visit-photo {
  min-height: 268px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 268px;
  object-fit: cover;
  object-position: center 44%;
}

.visit-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .18);
}

.visit-grid article {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 250, 241, .95);
}

.visit-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
}

.visit-grid p,
.visit-grid a {
  color: #314055;
  line-height: 1.65;
}

.visit-grid a {
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 960px) {
  .home-redesign .home-hero {
    min-height: clamp(560px, calc(100svh - 118px), 700px);
  }

  .hero-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-intro,
  .specialty-grid,
  .owner-section,
  .visit-content,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .home-intro-copy {
    justify-self: start;
    max-width: 760px;
  }

  .specialty-card.large {
    grid-row: auto;
    min-height: 360px;
  }

  .owner-section {
    width: 100%;
  }

  .owner-media,
  .owner-media img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .home-redesign .home-hero {
    min-height: auto;
  }

  .home-redesign-hero {
    padding: 54px 0 30px;
  }

  .home-redesign .hero-content h1 {
    font-size: clamp(56px, 18vw, 82px);
  }

  .hero-statement {
    font-size: clamp(29px, 10vw, 42px);
  }

  .home-redesign .hero-lead {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.62;
  }

  .home-redesign .hero-language {
    width: 100%;
    justify-content: space-between;
  }

  .home-redesign .hero-facts {
    display: none;
  }

  .home-intro-list article {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .home-intro-list span,
  .home-intro-list h3,
  .home-intro-list p {
    grid-column: auto;
    grid-row: auto;
  }

  .specialty-card {
    min-height: 330px;
  }

  .visit-grid article {
    min-height: auto;
    padding: 24px;
  }
}

/* Brand guideline v1.0 refresh */
:root {
  --ink: #132033;
  --muted: #617083;
  --navy: #102f4d;
  --red: #a7353d;
  --gold: #c99645;
  --cream: #fbf6ec;
  --sea: #cfe6f3;
  --paper: #ffffff;
  --line: #ded6c8;
  --soft: #f4f6f5;
  --shadow: 0 16px 36px rgba(19, 32, 51, .10);
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 246, 236, .82), rgba(255, 255, 255, 0) 360px),
    var(--cream);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

body.home-redesign {
  background: var(--cream);
}

::selection {
  color: #fff;
  background: var(--red);
}

.site-header {
  min-height: 76px;
  padding: 9px clamp(18px, 4vw, 56px);
  background: rgba(251, 246, 236, .96);
  border-bottom: 1px solid rgba(16, 47, 77, .14);
  box-shadow: 0 8px 24px rgba(19, 32, 51, .06);
}

.home-redesign .site-header {
  background: rgba(251, 246, 236, .96);
}

.brand {
  gap: 13px;
}

.brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(16, 47, 77, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.brand strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 24px;
  letter-spacing: 0;
}

.brand small {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.nav {
  gap: 6px;
}

.nav a {
  min-height: 44px;
  padding: 0 15px;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
}

.nav a:hover,
.nav a.is-active {
  color: var(--navy);
  background: rgba(207, 230, 243, .68);
}

.nav a.lang-link {
  color: var(--red);
  border: 1px solid rgba(167, 53, 61, .28);
  background: rgba(255, 255, 255, .46);
}

.header-call,
.btn.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 22px rgba(167, 53, 61, .18);
}

.header-call:hover,
.btn.primary:hover {
  background: #8f2c33;
  border-color: #8f2c33;
}

.btn {
  min-height: 46px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0;
}

.btn.secondary {
  color: var(--navy);
  border-color: rgba(16, 47, 77, .24);
  background: #fff;
}

.btn.secondary:hover {
  border-color: rgba(16, 47, 77, .48);
  background: var(--sea);
}

.btn.secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .10);
}

.btn.secondary.light:hover {
  color: var(--navy);
  background: #fff;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-redesign .home-hero {
  min-height: clamp(570px, calc(100svh - 118px), 720px);
  border-bottom: 8px solid var(--cream);
}

.home-redesign .hero-content h1 {
  max-width: 920px;
  font-size: clamp(64px, 8vw, 94px);
  line-height: .96;
}

.home-redesign .hero-shade,
.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 47, 77, .94), rgba(16, 47, 77, .66) 48%, rgba(16, 47, 77, .16)),
    linear-gradient(0deg, rgba(16, 47, 77, .68), rgba(16, 47, 77, .06) 62%);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
}

.hero-statement {
  max-width: 760px;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.04;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, .90);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.hero-language {
  border-color: rgba(251, 246, 236, .38);
  border-radius: 6px;
  background: rgba(251, 246, 236, .10);
}

.hero-language a {
  border-radius: 5px;
}

.hero-language a.is-active {
  color: var(--navy);
  background: var(--cream);
}

.hero-facts span {
  min-height: 36px;
  border-color: rgba(251, 246, 236, .34);
  border-radius: 6px;
  background: rgba(16, 47, 77, .18);
  font-size: 12px;
}

.section {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.page-hero {
  height: clamp(390px, 36vw, 500px);
  min-height: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero > div {
  position: relative;
  padding: clamp(58px, 7vw, 92px) clamp(22px, 6vw, 82px);
}

.page-hero > div::before {
  content: "33 / 66";
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.page-hero h1 {
  color: var(--navy);
  font-size: clamp(42px, 5.2vw, 64px);
}

.page-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
}

.page-hero img {
  min-height: 390px;
  border-left: 1px solid var(--line);
}

.page-hero.text-only-hero {
  height: auto;
  min-height: 0;
  display: block;
  background: var(--cream);
}

.page-hero.text-only-hero > div {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 68px) clamp(18px, 4vw, 56px);
}

.page-hero.text-only-hero h1 {
  max-width: 860px;
}

.page-hero.text-only-hero p:last-child {
  max-width: 760px;
}

.menu-page-hero > div {
  width: min(1280px, 100%);
  padding-inline: clamp(18px, 3vw, 48px);
}

.menu-page-hero .menu-hero-lead {
  max-width: none;
}

@media (min-width: 760px) {
  .menu-page-hero .menu-hero-lead {
    white-space: nowrap;
    font-size: clamp(16px, 1.2vw, 18px);
  }
}

.home-intro {
  background: var(--cream);
}

.home-intro-copy h2,
.owner-copy h2,
.visit-heading h2,
.section-heading h2,
.story-intro h2,
.menu-intro h2,
.current-menu-note h2,
.map-panel h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  letter-spacing: 0;
}

.home-intro-list {
  border-color: var(--line);
}

.home-intro-list article {
  border-color: var(--line);
}

.home-intro-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.home-intro-list h3 {
  color: var(--ink);
}

.specialties-section {
  background: #fff;
}

.specialty-card,
.feature-tile,
.photo-card {
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(19, 32, 51, .12);
}

.specialty-card::after,
.feature-tile::after,
.photo-card::after {
  background:
    linear-gradient(0deg, rgba(16, 47, 77, .90), rgba(16, 47, 77, .08) 64%),
    linear-gradient(90deg, rgba(16, 47, 77, .24), rgba(16, 47, 77, 0));
}

.specialty-card span,
.feature-tile span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0;
}

.story-section {
  background: #fff;
  border-top: 1px solid rgba(16, 47, 77, .08);
}

.story-copy > p,
.owner-profile p,
.home-intro-copy p,
.owner-copy p,
.section-heading p,
.menu-intro p:last-child,
.contact-card p,
.map-panel p {
  color: #34445a;
}

.owner-profile {
  border-left: 5px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: var(--cream);
}

.owner-section {
  background:
    linear-gradient(90deg, rgba(251, 246, 236, 1) 0, rgba(251, 246, 236, 1) 6%, #fff 6%, #fff 94%, rgba(251, 246, 236, 1) 94%);
}

.owner-media,
.visit-photo {
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(19, 32, 51, .14);
}

.text-link {
  color: var(--red);
  border-bottom-color: currentColor;
}

.visit-section {
  background:
    linear-gradient(90deg, rgba(16, 47, 77, .96), rgba(16, 47, 77, .84)),
    url("assets/dock3366-bar-interior.jpg") center / cover;
}

.visit-heading .eyebrow,
.map-panel .eyebrow {
  color: var(--gold);
}

.visit-grid {
  border: 1px solid rgba(251, 246, 236, .20);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(251, 246, 236, .22);
}

.visit-grid article {
  background: rgba(251, 246, 236, .96);
}

.visit-grid h3,
.contact-card h2 {
  color: var(--navy);
}

.menu-page,
.gallery-page,
.order-layout,
.contact-layout {
  background: var(--cream);
}

.menu-actions {
  justify-content: center;
}

.menu-nav {
  justify-content: center;
}

.menu-nav a {
  min-height: 40px;
  border-color: rgba(16, 47, 77, .18);
  border-radius: 6px;
  color: var(--navy);
  background: #fff;
}

.menu-nav a:hover {
  border-color: rgba(167, 53, 61, .36);
  color: var(--red);
  background: rgba(251, 246, 236, .72);
}

.menu-category,
.order-category,
.cart-panel,
.contact-card,
.contact-form,
.map-panel,
.current-menu-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 32, 51, .08);
}

.menu-category {
  padding: 0;
  overflow: hidden;
}

.category-heading {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 18px 22px;
  color: #fff;
  background: var(--navy);
}

.category-heading::before {
  content: "";
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--gold);
}

.category-heading h2 {
  flex: 1;
  color: #fff;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 24px;
}

.category-heading small {
  color: var(--sea);
}

.menu-row {
  margin: 0 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(19, 32, 51, .12);
}

.menu-row span {
  color: var(--ink);
}

.menu-row small {
  color: var(--muted);
  font-weight: 700;
}

.menu-row strong,
.order-item-action em {
  color: var(--red);
}

.menu-downloads {
  width: min(1120px, 100%);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.44fr);
  gap: 18px;
  align-items: stretch;
}

.menu-downloads-copy {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(19, 32, 51, .12);
}

.menu-downloads-copy .eyebrow {
  color: var(--gold);
}

.menu-downloads-copy h2 {
  margin-bottom: 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.05;
}

.menu-downloads-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.65;
}

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

.download-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(19, 32, 51, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.download-card span {
  width: 42px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.download-card strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.08;
}

.download-card small {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.download-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 53, 61, .34);
  box-shadow: 0 18px 36px rgba(19, 32, 51, .12);
}

.menu-set-heading {
  grid-column: 1 / -1;
  scroll-margin-top: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin: 24px 0 0;
  padding: 26px 0 8px;
  border-top: 1px solid rgba(19, 32, 51, .14);
}

.menu-set-heading:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.menu-set-heading .eyebrow {
  margin-bottom: 8px;
}

.menu-set-heading h2 {
  max-width: 800px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.download-text-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(16, 47, 77, .18);
  border-radius: 6px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.download-text-link:hover {
  border-color: rgba(167, 53, 61, .36);
  color: var(--red);
}

.contact-page-hero .contact-hero-actions {
  margin-top: 24px;
}

.contact-redesign-layout {
  grid-template-columns: minmax(0, .94fr) minmax(320px, 1.06fr);
  gap: 24px;
  align-items: start;
}

.contact-overview {
  display: grid;
  gap: 18px;
}

.contact-intro-card,
.contact-info-card,
.review-card,
.contact-form-large {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 32, 51, .08);
}

.contact-intro-card,
.review-card,
.contact-form-large {
  padding: clamp(24px, 3vw, 34px);
}

.contact-intro-card h2,
.review-card h2,
.contact-form-large h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.contact-intro-card p:last-child,
.review-card p:last-of-type,
.contact-form-large > div p:last-child {
  margin-bottom: 0;
  color: #34445a;
  line-height: 1.68;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-info-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 22px;
}

.contact-info-card.is-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.contact-info-card span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--navy);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.contact-info-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.16;
}

.contact-info-card p {
  margin: 0;
  color: #34445a;
  line-height: 1.62;
}

.contact-info-card a,
.review-card a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-info-card a:hover,
.review-card a:hover {
  color: var(--red);
}

.review-card {
  border-left: 5px solid var(--red);
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.review-actions .btn {
  min-height: 42px;
}

.contact-form-large {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

input,
textarea,
select {
  border-color: rgba(16, 47, 77, .22);
  border-radius: 6px;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(207, 230, 243, .85);
  border-color: var(--navy);
}

.map-panel {
  grid-column: 1 / -1;
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 47, 77, 1), rgba(16, 47, 77, .92));
}

.map-panel h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
}

.map-panel p {
  color: rgba(255, 255, 255, .92);
}

.map-panel .btn.secondary {
  min-width: 140px;
  background: #fff;
}

.site-footer {
  color: rgba(251, 246, 236, .78);
  background: var(--ink);
  border-top: 4px solid var(--gold);
}

.site-footer a {
  color: #fff;
}

@media (max-width: 960px) {
  .site-header {
    min-height: 72px;
  }

  .nav {
    background: var(--cream);
  }

  .page-hero {
    height: auto;
    min-height: auto;
  }

  .page-hero img {
    min-height: 280px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .contact-form-large {
    position: static;
  }

  .map-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .menu-set-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .download-text-link {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .brand strong {
    font-size: 19px;
  }

  .home-redesign .hero-content h1 {
    font-size: clamp(52px, 16vw, 70px);
    line-height: .98;
  }

  .hero-statement {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .hero-actions,
  .menu-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .menu-actions .btn {
    width: 100%;
  }

  .download-card-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: 118px;
  }

  .download-text-link {
    width: 100%;
  }

  .contact-redesign-layout {
    gap: 18px;
  }

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

  .form-two-column {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    min-height: 0;
    padding: 20px;
  }

  .map-panel h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .review-actions .btn,
  .contact-hero-actions .btn,
  .map-panel .btn {
    width: 100%;
  }

  .home-redesign .hero-language {
    gap: 6px;
    padding: 6px;
  }

  .hero-language span {
    padding-inline: 4px;
  }

  .page-hero > div {
    padding: 42px 18px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .page-hero.text-only-hero > div {
    padding: 36px 18px;
  }

  .home-intro,
  .section,
  .story-section,
  .owner-section,
  .visit-section {
    padding-inline: 18px;
  }

  .home-intro-copy h2,
  .owner-copy h2,
  .visit-heading h2,
  .section-heading h2,
  .story-intro h2,
  .menu-intro h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.1;
  }

  .specialty-card strong {
    font-size: clamp(22px, 7vw, 28px);
  }

  .category-heading {
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .category-heading h2 {
    flex-basis: 100%;
    order: 3;
    font-size: 22px;
  }

  .menu-row {
    margin-inline: 18px;
  }

  .owner-section {
    background: #fff;
  }
}

/* Home page direction from Ping's simple image-led layout */
.home-redesign .home-hero {
  min-height: clamp(560px, calc(100svh - 76px), 760px);
  align-items: center;
  border-bottom: 0;
}

.home-redesign .hero-image {
  object-position: center center;
}

.home-redesign .hero-shade {
  background:
    linear-gradient(0deg, rgba(16, 47, 77, .50), rgba(16, 47, 77, .50)),
    radial-gradient(circle at 50% 46%, rgba(16, 47, 77, .12), rgba(16, 47, 77, .54) 72%);
}

.home-redesign .home-redesign-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 8vw, 110px) 0;
  text-align: center;
}

.home-redesign .home-redesign-hero .eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .34);
}

.home-redesign .hero-content h1 {
  max-width: 100%;
  margin: 0 auto 18px;
  color: #fff;
  font-size: clamp(64px, 7.2vw, 94px);
  line-height: .96;
  text-shadow: 0 5px 28px rgba(0, 0, 0, .36);
}

.home-redesign .hero-content h1 span + span {
  margin-top: 8px;
  font-size: .62em;
}

.home-redesign .hero-statement {
  max-width: 920px;
  margin: 0 auto 28px;
  color: #fff;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .34);
}

.home-redesign .hero-actions {
  justify-content: center;
}

.home-redesign .hero-actions .btn {
  min-width: 144px;
  min-height: 52px;
}

.home-info-section {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 4vw, 56px);
  background: var(--soft);
  border-top: 1px solid rgba(16, 47, 77, .10);
}

.home-info-heading {
  width: min(1120px, 100%);
  margin: 0 auto 30px;
  text-align: left;
}

.home-info-heading h2 {
  max-width: none;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.06;
}

.home-info-heading p {
  max-width: none;
  color: #34445a;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}

.home-info-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 48px);
}

.home-info-card {
  min-width: 0;
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(16, 47, 77, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 32, 51, .08);
}

.home-info-card h3 {
  margin-bottom: 22px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(25px, 2.5vw, 32px);
  line-height: 1.12;
}

.info-block + .info-block {
  margin-top: 20px;
}

.info-block h4 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.info-block p {
  margin: 0;
  color: #34445a;
  line-height: 1.58;
}

.info-block a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.info-card-action {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  background: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.info-card-action:hover {
  color: #fff;
  background: var(--red);
}

.home-review-cta {
  width: min(1120px, 100%);
  margin: clamp(20px, 3vw, 30px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(16, 47, 77, .14);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 32, 51, .07);
}

.home-review-cta h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.home-review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.home-review-actions .btn {
  min-height: 42px;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .home-info-grid {
    grid-template-columns: 1fr;
  }

  .home-review-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-review-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .home-redesign .home-hero {
    min-height: calc(100svh - 68px);
  }

  .home-redesign .home-redesign-hero {
    width: min(100% - 28px, 1180px);
    padding: 54px 0 42px;
  }

  .home-redesign .hero-content h1 {
    font-size: clamp(52px, 16vw, 70px);
  }

  .home-redesign .hero-content h1 span + span {
    font-size: .66em;
  }

  .home-redesign .hero-statement {
    max-width: 340px;
    font-size: 20px;
  }

  .home-redesign .hero-actions {
    width: 100%;
  }

  .home-info-section {
    padding: 46px 18px 54px;
  }

  .home-info-card {
    min-height: 0;
  }

  .home-review-actions .btn {
    width: 100%;
  }
}

/* About page refreshed layout */
.about-redesign .about-page-hero {
  background: var(--cream);
}

.about-redesign .about-page-hero h1 {
  max-width: 980px;
}

.about-redesign .about-page-hero p:last-child {
  max-width: 820px;
}

.about-spotlight {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 3vw, 48px) clamp(64px, 8vw, 112px) clamp(52px, 6vw, 110px);
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(16, 47, 77, .08);
}

.about-spotlight-media {
  width: min(720px, 100%);
  justify-self: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 16px;
}

.about-photo-tile {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(19, 32, 51, .14);
}

.about-photo-large {
  grid-row: 1 / span 2;
  aspect-ratio: 1 / 1;
}

.about-photo-tile:not(.about-photo-large) {
  aspect-ratio: 4 / 3;
}

.about-photo-tile img,
.about-aaron-side img,
.about-ingredient-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-photo-large img {
  object-position: center center;
}

.about-photo-tile:nth-child(2) img {
  object-position: center 50%;
}

.about-photo-tile:nth-child(3) img {
  object-position: center center;
}

.about-spotlight-copy {
  max-width: 620px;
  order: -1;
}

.about-spotlight-copy h2,
.about-aaron-copy h2,
.about-ingredient-copy h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(38px, 4.9vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-spotlight-copy p,
.about-aaron-copy p,
.about-aaron-note p,
.about-ingredient-copy p {
  color: #34445a;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.82;
}

.about-spotlight-copy p {
  margin: 0 0 16px;
}

.about-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-meta-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(16, 47, 77, .16);
  border-radius: 6px;
  color: var(--navy);
  background: #f2f7f6;
  font-size: 13px;
  font-weight: 900;
}

.about-principles {
  background: var(--cream);
  border-bottom: 1px solid rgba(16, 47, 77, .08);
}

.about-principles .section-heading {
  width: min(1180px, 100%);
  max-width: 1180px;
  margin: 0 auto 34px;
  text-align: left;
}

.about-principles .section-heading h2 {
  max-width: 980px;
}

.about-principles .section-heading h2.two-line-heading {
  max-width: none;
  font-size: clamp(38px, 4.2vw, 52px);
}

.about-principles .section-heading h2.two-line-heading span {
  display: block;
  white-space: nowrap;
}

.about-principles .section-heading p:last-child {
  max-width: 620px;
}

.about-principle-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-principle-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  overflow: hidden;
  border: 1px solid rgba(16, 47, 77, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 32, 51, .07);
}

.about-principle-card:nth-child(even) {
  grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
}

.about-principle-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  background: var(--cream);
}

.about-principle-card:nth-child(even) img {
  grid-column: 2;
  grid-row: 1;
}

.about-principle-card:nth-child(even) .about-principle-body {
  grid-column: 1;
  grid-row: 1;
}

.about-principle-card:nth-child(1) img {
  object-position: center center;
}

.about-principle-card:nth-child(2) img {
  object-position: center center;
}

.about-principle-card:nth-child(3) img {
  object-position: center center;
}

.about-principle-body {
  align-self: center;
  padding: clamp(32px, 5vw, 58px);
}

.about-principle-card span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.about-principle-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}

.about-principle-card p {
  max-width: 450px;
  margin: 0;
  color: #34445a;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.76;
}

.about-aaron-section {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.about-aaron-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .82fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.about-aaron-copy {
  max-width: 700px;
}

.about-aaron-copy h2 {
  font-size: clamp(36px, 4.6vw, 58px);
}

.about-aaron-copy p {
  margin: 0 0 18px;
}

.about-aaron-copy blockquote {
  margin: 34px 0 0;
  padding: 24px 28px;
  border-left: 5px solid var(--red);
  border-radius: 0 8px 8px 0;
  color: var(--navy);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 800;
  line-height: 1.28;
}

.about-aaron-side {
  position: sticky;
  top: 108px;
}

.about-story-gallery {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.about-story-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-story-photo {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 16px 36px rgba(19, 32, 51, .14);
}

.about-story-photo.story-photo-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.about-story-photo:not(.story-photo-wide) {
  aspect-ratio: 1 / 1;
}

.about-story-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-story-photo:nth-child(1) img {
  object-position: center center;
}

.about-story-photo:nth-child(2) img {
  object-position: center center;
}

.about-story-photo:nth-child(3) img,
.about-story-photo:nth-child(4) img {
  object-position: center center;
}

.about-aaron-side img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(19, 32, 51, .14);
}

.about-aaron-note {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(16, 47, 77, .12);
  border-radius: 8px;
  background: #f2f7f6;
}

.about-aaron-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-aaron-note p {
  margin: 0;
}

.about-ingredient-panel {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 0;
  justify-content: stretch;
  align-items: stretch;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 47, 77, 1), rgba(12, 38, 62, .96));
}

.about-ingredient-copy {
  align-self: center;
  justify-self: start;
  width: min(720px, 100%);
  padding: clamp(60px, 8vw, 108px) clamp(24px, 4vw, 56px) clamp(60px, 8vw, 108px) clamp(28px, 7vw, 110px);
}

.about-ingredient-copy .eyebrow {
  color: var(--gold);
}

.about-ingredient-copy h2,
.about-ingredient-copy p {
  color: #fff;
}

.about-ingredient-copy p {
  max-width: 640px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .82);
}

.about-ingredient-copy .text-link {
  color: #fff;
}

.about-ingredient-media {
  width: 100%;
  min-height: clamp(430px, 45vw, 640px);
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-ingredient-media img {
  object-position: center center;
}

@media (max-width: 980px) {
  .about-redesign .about-page-hero {
    background: var(--cream);
  }

  .about-spotlight,
  .about-aaron-wrap,
  .about-ingredient-panel {
    grid-template-columns: 1fr;
  }

  .about-spotlight-copy {
    order: -1;
    max-width: 760px;
  }

  .about-spotlight-media {
    justify-self: center;
    width: min(720px, 100%);
  }

  .about-principle-grid {
    grid-template-columns: 1fr;
  }

  .about-principle-card,
  .about-principle-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-principle-card:nth-child(even) img,
  .about-principle-card:nth-child(even) .about-principle-body {
    grid-column: auto;
    grid-row: auto;
  }

  .about-principle-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .about-principle-body {
    padding: clamp(26px, 5vw, 44px);
  }

  .about-aaron-side,
  .about-story-gallery {
    position: static;
  }

  .about-ingredient-panel {
    justify-content: stretch;
  }

  .about-ingredient-copy {
    justify-self: start;
    width: 100%;
  }

  .about-ingredient-media {
    width: min(620px, 100%);
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .about-spotlight,
  .about-aaron-section,
  .about-ingredient-panel {
    padding-inline: 18px;
  }

  .about-spotlight {
    padding-top: 46px;
  }

  .about-spotlight-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .about-photo-large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 1.15 / 1;
  }

  .about-spotlight-copy h2,
  .about-aaron-copy h2,
  .about-ingredient-copy h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.1;
  }

  .about-principles .section-heading h2.two-line-heading span {
    white-space: normal;
  }

  .about-meta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-meta-row span {
    width: 100%;
  }

  .about-principle-card {
    padding: 0;
  }

  .about-principle-card img {
    aspect-ratio: 4 / 3;
  }

  .about-aaron-copy blockquote {
    padding: 22px 20px;
  }

  .about-aaron-side img {
    aspect-ratio: 1.1 / 1;
  }

  .about-story-photo-grid {
    gap: 10px;
  }

  .about-story-photo.story-photo-wide {
    aspect-ratio: 1.32 / 1;
  }

  .about-ingredient-media {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
