@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Manrope", "Segoe UI", sans-serif;
  --paper: #f4efe3;
  --paper-soft: #f8f4eb;
  --paper-deep: #ece4d4;
  --ink: #1f211c;
  --ink-soft: #5f6058;
  --green: #315f39;
  --green-deep: #21472b;
  --green-wash: #dfe7d7;
  --brass: #a87d34;
  --line: rgba(73, 66, 49, 0.18);
  --line-strong: rgba(73, 66, 49, 0.32);
  --shadow: 0 18px 44px rgba(83, 62, 31, 0.1);
  --shadow-hover: 0 22px 50px rgba(73, 53, 25, 0.16);
  --shell: 1320px;
  --header-h: 82px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 220ms;
  --duration: 560ms;
  --z-header: 40;
  --z-menu: 60;
  --z-dialog: 90;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: url("assets/textures/warm-paper-grain.webp") center / 520px repeat;
  opacity: 0.16;
  mix-blend-mode: multiply;
}

body.menu-open {
  overflow: hidden;
}

body.full-menu-open {
  overflow: hidden;
  padding-right: var(--scrollbar-compensation, 0px);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 2.5vw, 2.45rem);
  line-height: 0.98;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid rgba(49, 95, 57, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--green-deep);
  color: #fff;
  transform: translateY(-150%);
  transition: transform var(--duration-fast) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(100% - 64px, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: #f4e8d7;
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  position: relative;
  display: block;
  width: 50px;
  height: 55px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand__mark img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 70px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  transition: transform var(--duration-fast) var(--ease);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.78rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(3px);
}

.brand:hover .brand__mark img {
  transform: translateX(-50%);
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
  transform: translateX(-50%);
}

.desktop-nav a,
.desktop-nav__menu-button,
.site-footer nav a {
  position: relative;
  font-size: 0.79rem;
  font-weight: 500;
}

.desktop-nav a::after,
.desktop-nav__menu-button::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-fast) var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="location"]::after,
.desktop-nav__menu-button:hover::after,
.desktop-nav__menu-button.is-active::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav__menu-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.full-menu-open .desktop-nav a[aria-current="location"]::after {
  transform: scaleX(0);
}

.header-actions,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
}

.social-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  transition: color var(--duration-fast) ease, background-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.social-icon:hover {
  color: var(--green);
  background: rgba(49, 95, 57, 0.08);
  transform: translateY(-2px);
}

.social-icon svg,
.button svg,
.contact-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .brand-icon,
.button .brand-icon,
.contact-button .brand-icon {
  fill: currentColor;
  stroke: none;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  overflow: hidden;
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transform: translate(var(--magnetic-x, 0), var(--magnetic-y, 0));
  transition: background-color var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.24), transparent 38%);
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.button:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  box-shadow: 0 12px 28px rgba(33, 71, 43, 0.18);
  transform: translateY(-2px);
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
}

.button--outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.2);
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--green);
  background: var(--green-wash);
  color: var(--green-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto auto;
  z-index: var(--z-menu);
  width: min(430px, 100%);
  height: calc(100dvh - var(--header-h));
  margin: 0;
  padding: 26px;
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: -24px 28px 60px rgba(60, 48, 30, 0.2);
  transform: translateX(104%);
  transition: transform 420ms var(--ease), display 420ms allow-discrete, overlay 420ms allow-discrete;
}

.mobile-menu:popover-open {
  transform: translateX(0);
}

@starting-style {
  .mobile-menu:popover-open {
    transform: translateX(104%);
  }
}

.mobile-menu::backdrop {
  background: rgba(31, 33, 28, 0.28);
  opacity: 1;
  transition: opacity 420ms ease, display 420ms allow-discrete, overlay 420ms allow-discrete;
}

@starting-style {
  .mobile-menu:popover-open::backdrop {
    opacity: 0;
  }
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.mobile-menu__close {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mobile-menu__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.mobile-menu nav {
  display: grid;
  margin-top: 18px;
}

.mobile-menu nav a,
.mobile-menu__menu-button {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.mobile-menu__menu-button {
  width: 100%;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.mobile-menu__menu-button.is-active {
  color: var(--green);
}

.mobile-menu__footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.mobile-menu__footer svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
}

.hero {
  --hero-copy-left: clamp(104px, 9vw, 168px);
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  grid-template-rows: auto 1fr;
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-soft) 76%, transparent);
}

.hero__intro,
.hero__proof {
  padding-left: var(--hero-copy-left);
  padding-right: clamp(24px, 3vw, 52px);
}

.hero__intro {
  position: relative;
  align-self: end;
  padding-top: 56px;
  padding-bottom: 22px;
}

.hero__brand-mark {
  position: absolute;
  top: 49px;
  left: calc(var(--hero-copy-left) - 60px);
  display: block;
  width: 52px;
  height: 63px;
  overflow: hidden;
}

.hero__brand-mark img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 76px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 4.7vw, 4.9rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero__line {
  display: block;
}

.hero__line--brand {
  color: var(--ink);
}

.hero__line--accent {
  color: var(--green);
}

.hero__line--long {
  font-size: 0.86em;
  line-height: 1.03;
}

.hero__lead {
  max-width: 560px;
  margin-top: 24px;
  color: #44483f;
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero__proof {
  align-self: start;
  padding-top: 10px;
  padding-bottom: 34px;
}

.hero__media {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 620px;
  margin-left: -64px;
  overflow: hidden;
  border-bottom-left-radius: 58px;
  background: transparent;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.22) 3.5%, #000 12%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.22) 3.5%, #000 12%, #000 100%);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-block: 18px 16px;
  border-top: 1px solid var(--line);
}

.metric {
  display: grid;
  grid-template-rows: 23px minmax(0, 1fr);
  min-width: 0;
  align-content: start;
  justify-items: center;
  row-gap: 6px;
  padding: 0 10px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: color var(--duration-fast) ease;
}

.metric:last-child {
  border-right: 0;
}

a.metric:hover {
  color: var(--green);
}

.metric svg {
  width: 23px;
  height: 23px;
  margin-bottom: 0;
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric__copy {
  display: grid;
  min-width: 0;
  align-self: end;
  justify-items: center;
  gap: 2px;
}

.metric .metric__copy > span {
  display: block;
  min-height: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.25;
}

.metric--award strong {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.15;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1.05fr 1.18fr 0.95fr;
  gap: 10px;
  margin-top: 2px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.hero__note svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
}

.menu-section,
.reviews,
.contacts {
  padding: 28px 0 32px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--duration-fast) ease, gap var(--duration-fast) var(--ease);
}

button.section-link {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.section-link:hover {
  gap: 12px;
  color: var(--green);
}

.product-grid {
  display: grid;
  gap: 14px;
}

.product-grid--popular {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.22);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color var(--duration-fast) ease;
}

.product-card::after,
.review-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(280px circle at var(--mouse-x, -100px) var(--mouse-y, -100px), rgba(168, 125, 52, 0.12), transparent 62%);
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.product-card:hover,
.review-card:hover {
  z-index: 2;
  border-color: rgba(73, 66, 49, 0.28);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.product-card:hover::after,
.review-card:hover::after {
  opacity: 1;
}

.media-slot {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.media-slot--product {
  aspect-ratio: 1.48 / 1;
}

.media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 420ms ease;
}

.product-card:hover .media-slot img,
.media-slot--gallery:hover img {
  transform: scale(1.035);
}

.product-grid--popular .product-card:nth-child(1) img {
  object-position: 50% 68%;
}

.product-grid--popular .product-card:nth-child(2) img {
  object-position: 50% 75%;
}

.product-grid--popular .product-card:nth-child(3) img {
  object-position: 50% 42%;
}

.product-card__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: minmax(2.64em, auto) minmax(2.7em, auto);
  min-height: 108px;
  align-content: stretch;
  gap: 6px 12px;
  padding: 12px 13px 13px;
}

.product-card h3 {
  grid-column: 1 / -1;
  grid-row: 1;
  min-width: 0;
  min-height: 2.64em;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.32;
  text-wrap: pretty;
}

.product-card p {
  grid-column: 1;
  grid-row: 2;
  min-height: 2.7em;
  align-self: start;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.35;
}

.price {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-source {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.duo-menu {
  overflow: clip;
  padding: 22px 0 24px;
  border-block: 1px solid var(--line);
  background: rgba(229, 220, 200, 0.34);
}

.duo-menu__grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
}

.menu-group {
  position: relative;
  min-width: 0;
  padding-right: 30px;
  isolation: isolate;
}

.menu-group > :not(.menu-group__branch) {
  position: relative;
  z-index: 1;
}

.menu-group__branch {
  position: absolute;
  top: -12px;
  right: -16px;
  z-index: 0;
  width: 122px;
  height: 122px;
  color: var(--green);
  fill: none;
  opacity: 0.095;
  pointer-events: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.62;
  transform: rotate(22deg) scaleX(0.96);
  transform-origin: center;
}

.menu-group--desserts {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.section-heading--compact {
  margin-bottom: 13px;
}

.tag {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--green-wash);
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 600;
}

.product-grid--seasonal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid--desserts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.duo-menu .media-slot--product {
  height: 118px;
  aspect-ratio: auto;
}

.product-card--mini .product-card__copy {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(2.64em, auto) auto;
  min-height: 76px;
  align-content: start;
  gap: 4px;
  padding: 10px 11px 11px;
}

.product-card--mini h3 {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.72rem;
}

.product-card--mini .price {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
}

.full-menu-dialog {
  z-index: var(--z-dialog);
  width: min(1500px, calc(100% - 48px));
  height: min(90dvh, 920px);
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 36px 90px rgba(31, 33, 28, 0.28);
  opacity: 0;
  scrollbar-gutter: stable;
  transform: translateY(22px) scale(0.985);
  transition: opacity 260ms ease, transform 380ms var(--ease), display 380ms allow-discrete, overlay 380ms allow-discrete;
}

.full-menu-dialog[open] {
  opacity: 1;
  transform: none;
}

@starting-style {
  .full-menu-dialog[open] {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
}

.full-menu-dialog::backdrop {
  background: rgba(31, 33, 28, 0.52);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: opacity 300ms ease, display 380ms allow-discrete, overlay 380ms allow-discrete;
}

.full-menu-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .full-menu-dialog[open]::backdrop {
    opacity: 0;
  }
}

.full-menu-dialog__surface {
  min-height: 100%;
  background: var(--paper-soft);
}

.full-menu-dialog__header {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-soft) 94%, transparent);
  backdrop-filter: blur(18px);
}

.full-menu-dialog__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.full-menu-dialog__eyebrow {
  margin-bottom: 2px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.full-menu-dialog h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.full-menu-dialog__count {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.full-menu-dialog__close {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color var(--duration-fast) ease, background-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.full-menu-dialog__close:hover {
  background: var(--green);
  color: #fff;
  transform: rotate(5deg);
}

.full-menu-dialog__close svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.full-menu-search {
  position: relative;
  display: block;
  margin-top: 16px;
}

.full-menu-search > svg {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 1;
  width: 19px;
  height: 19px;
  fill: none;
  pointer-events: none;
  stroke: var(--ink-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transform: translateY(-50%);
}

.full-menu-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.full-menu-search input {
  width: 100%;
  height: 46px;
  padding: 10px 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font: 500 0.82rem/1 var(--font-ui);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background-color var(--duration-fast) ease;
}

.full-menu-search input::placeholder {
  color: color-mix(in srgb, var(--ink-soft) 78%, transparent);
}

.full-menu-search input:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 0 0 3px rgba(49, 95, 57, 0.12);
}

.full-menu-filters {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.full-menu-filters::-webkit-scrollbar {
  display: none;
}

.full-menu-filter {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 7px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--duration-fast) ease, background-color var(--duration-fast) ease, border-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.full-menu-filter:hover {
  border-color: var(--green);
  color: var(--green-deep);
  transform: translateY(-1px);
}

.full-menu-filter[aria-pressed="true"] {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.full-menu-dialog__body {
  min-height: 360px;
  padding: 24px 26px calc(34px + env(safe-area-inset-bottom));
}

.full-menu-category + .full-menu-category {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.full-menu-category__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.full-menu-category__heading h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.7vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.full-menu-category__heading span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  white-space: nowrap;
}

.full-menu-grid,
.full-menu-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.full-menu-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.28);
  transition: border-color var(--duration-fast) ease, box-shadow 420ms var(--ease), transform 420ms var(--ease);
}

.full-menu-card:not(.full-menu-card--compact) {
  height: 362px;
}

.full-menu-card:hover {
  border-color: rgba(73, 66, 49, 0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.full-menu-results.is-rendering .full-menu-card {
  animation: full-menu-card-in 420ms var(--ease) both;
  animation-delay: calc(var(--menu-card-index, 0) * 28ms);
}

@keyframes full-menu-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.full-menu-card__media {
  display: grid;
  grid-template-columns: 1fr;
  height: 224px;
  flex: 0 0 224px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f6e2ca;
}

.full-menu-card__media--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-menu-card__media--split img + img {
  border-left: 2px solid var(--paper-soft);
}

.full-menu-card__media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: contain;
  object-position: center;
  transform: translateY(-3px) scale(1.06);
  transition: transform 700ms var(--ease), filter 420ms ease;
}

.full-menu-card:hover .full-menu-card__media img {
  filter: saturate(1.035) contrast(1.01);
}

.full-menu-card__body {
  display: flex;
  min-height: 136px;
  flex: 1;
  flex-direction: column;
  padding: 12px 14px 10px;
}

.full-menu-card--compact .full-menu-card__body {
  min-height: 142px;
  padding-top: 16px;
}

.full-menu-card__body h4 {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: pretty;
}

.full-menu-card__description {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.45;
}

.full-menu-card__variants {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 8px 0 0;
  list-style: none;
}

.full-menu-card__variants li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px;
  padding: 5px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.full-menu-card__variants strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.full-menu-loading__text {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.full-menu-skeleton-card {
  min-height: 362px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(100deg, var(--paper-deep) 20%, rgba(255, 255, 255, 0.56) 40%, var(--paper-deep) 60%) 0 0 / 240% 100%;
  animation: full-menu-skeleton 1.35s ease-in-out infinite;
}

@keyframes full-menu-skeleton {
  to {
    background-position: -240% 0;
  }
}

.full-menu-state {
  display: grid;
  min-height: 330px;
  place-content: center;
  justify-items: center;
  padding: 38px 20px;
  text-align: center;
}

.full-menu-state[hidden],
.full-menu-results[hidden],
.full-menu-loading[hidden] {
  display: none;
}

.full-menu-state h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.full-menu-state p {
  max-width: 390px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.full-menu-state .button {
  margin-top: 18px;
  cursor: pointer;
}

.why-strip {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.why-strip__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.why-strip h2 {
  align-self: center;
  padding-right: 24px;
  font-size: clamp(1.9rem, 2.25vw, 2.35rem);
}

.benefit {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-content: start;
  gap: 10px;
  padding: 2px 14px;
  border-left: 1px solid var(--line);
}

.benefit svg {
  width: 27px;
  height: 27px;
  align-self: start;
  margin-top: 3px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h3 {
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
}

.benefit p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  line-height: 1.45;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 20fr 30fr 30fr 20fr;
  height: 230px;
  background: var(--paper-deep);
}

.media-slot--gallery {
  border-right: 2px solid var(--paper);
}

.media-slot--gallery:last-child {
  border-right: 0;
}

.media-slot--gallery:nth-child(1) img {
  object-position: 43% 72%;
}

.media-slot--gallery:nth-child(2) img {
  object-position: 50% 42%;
}

.media-slot--gallery:nth-child(3) img {
  object-position: 50% 62%;
}

.media-slot--gallery:nth-child(4) img {
  object-position: 54% 46%;
}

.team-section-slot {
  display: contents;
}

.team-section {
  padding: clamp(48px, 5.2vw, 74px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.team-section__grid {
  display: block;
}

.team-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  column-gap: clamp(36px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(28px, 3.2vw, 44px);
}

.team-section .eyebrow {
  grid-column: 1;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.team-section h2 {
  grid-column: 1;
  max-width: 700px;
  font-size: clamp(2.8rem, 4vw, 4.7rem);
  line-height: 0.92;
}

.team-section__aside {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 470px;
}

.team-section__lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  line-height: 1.7;
}

.team-carousel__controls {
  display: flex;
  min-height: 42px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.team-carousel__controls[hidden] {
  display: none !important;
}

.team-carousel__status {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.team-carousel__buttons {
  display: flex;
  gap: 8px;
}

.team-carousel__button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  place-items: center;
  transition: color var(--duration-fast) ease, background-color var(--duration-fast) ease, border-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.team-carousel__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-carousel__button:hover:not(:disabled) {
  border-color: var(--green);
  color: var(--paper);
  background: var(--green);
  transform: translateY(-2px);
}

.team-carousel__button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.team-carousel__button:disabled {
  border-color: var(--line);
  color: color-mix(in srgb, var(--ink-soft) 38%, transparent);
  background: transparent;
  cursor: default;
}

.team-profiles {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(20% - 14.4px);
  grid-template-rows: minmax(0, 1fr);
  min-width: 0;
  margin: -7px -2px -16px;
  padding: 7px 2px 16px;
  gap: 18px;
  overflow-x: auto;
  overflow-y: clip;
  align-items: stretch;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.team-profiles::-webkit-scrollbar {
  display: none;
}

.team-profile {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.3);
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(83, 62, 31, 0.055);
  scroll-snap-align: start;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.team-profile:hover,
.team-profile:focus-within {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.js .team-profile[data-reveal]:nth-child(2) {
  --reveal-delay: 90ms;
}

.js .team-profile[data-reveal]:nth-child(3) {
  --reveal-delay: 180ms;
}

.js .team-profile[data-reveal]:nth-child(4) {
  --reveal-delay: 270ms;
}

.js .team-profile[data-reveal]:nth-child(5) {
  --reveal-delay: 360ms;
}

.team-profile__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--green-wash);
}

.team-profile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--team-object-position, 50% 38%);
  transition: transform 500ms var(--ease);
}

.team-profile:hover .team-profile__media img {
  transform: scale(1.015);
}

.team-profile__copy {
  display: flex;
  min-height: clamp(300px, 22vw, 340px);
  min-width: 0;
  padding: clamp(18px, 1.55vw, 24px);
  border-top: 1px solid var(--line);
  flex-direction: column;
}

.team-profile__role {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-profile h3 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.35vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-wrap: balance;
}

.team-profile__bio {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.7;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  position: relative;
  min-height: 156px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.22);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color var(--duration-fast) ease;
}

.review-card__head,
.review-person {
  display: flex;
  align-items: center;
}

.review-card__head {
  justify-content: space-between;
  gap: 10px;
}

.review-person {
  min-width: 0;
  gap: 9px;
}

.review-avatar {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-wash);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
}

.review-person h3 {
  overflow: hidden;
  font-size: 0.73rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-person small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.review-rating {
  color: var(--brass);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-card > p {
  margin-top: 15px;
  color: #44463e;
  font-size: 0.71rem;
  line-height: 1.55;
}

.contacts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(229, 220, 200, 0.2);
}

.contacts__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(420px, 1.5fr) minmax(240px, 0.72fr);
  align-items: stretch;
  gap: 28px;
}

.contacts__copy {
  align-self: center;
}

.eyebrow {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts__copy h2 {
  margin-bottom: 20px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 13px;
}

.contact-line svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
}

.contact-line strong,
.contact-line small {
  display: block;
}

.contact-line strong {
  font-size: 0.73rem;
  font-weight: 600;
}

.contact-line small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.open-status {
  width: fit-content;
  margin-top: 16px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 600;
}

.open-status.is-open {
  border-color: rgba(49, 95, 57, 0.3);
  background: rgba(49, 95, 57, 0.08);
  color: var(--green-deep);
}

.route-map {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(190px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #e7e2d3;
  box-shadow: 0 10px 30px rgba(52, 45, 33, 0.08);
  isolation: isolate;
}

.route-map__viewport {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}

.route-map__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) sepia(0.06);
}

.route-map__footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.route-map__button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: none;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  transition: background-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.route-map__button:hover {
  background: #fffaf0;
  box-shadow: 0 10px 28px rgba(52, 45, 33, 0.2);
  transform: translateY(-2px);
}

.contacts__actions {
  display: grid;
  align-content: center;
  gap: 9px;
}

.contact-button {
  display: grid;
  grid-template-columns: 24px minmax(0, 140px);
  min-height: 44px;
  align-items: center;
  justify-content: center;
  column-gap: 34px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: left;
  transition: color var(--duration-fast) ease, background-color var(--duration-fast) ease, border-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.contact-button svg {
  justify-self: center;
}

.contact-button span {
  justify-self: start;
}

.contact-button:hover {
  border-color: var(--green);
  background: var(--green-wash);
  color: var(--green-deep);
  transform: translateX(-3px);
}

.site-footer {
  padding: 22px 0;
  background: #f4e8d7;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.6fr auto;
  align-items: center;
  gap: 28px;
}

.brand--footer .brand__name {
  font-size: 1.58rem;
}

.footer-copy {
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.45;
}

.footer-inner nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-y, 30px));
  transition: opacity 520ms ease, transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal][data-reveal-image] {
  transform: translateY(18px) scale(0.98);
}

.js [data-reveal].is-visible,
.js body.cms-editing [data-reveal] {
  opacity: 1;
  transform: none;
}

.js .team-profile[data-reveal] {
  transition-property: opacity, transform, border-color, box-shadow;
  transition-duration: 520ms, 700ms, var(--duration-fast), var(--duration-fast);
  transition-timing-function: ease, var(--ease), ease, ease;
}

.js .team-profile[data-reveal].is-visible:hover,
.js .team-profile[data-reveal].is-visible:focus-within {
  transform: translateY(-4px);
}

[data-cms-card-key][hidden] {
  display: none !important;
}

body.cms-editing [data-cms-card-key][hidden] {
  display: grid !important;
  opacity: 0.45 !important;
}

@media (min-width: 1600px) {
  :root {
    --shell: 1880px;
  }

  .hero {
    --hero-copy-left: clamp(88px, 4.8vw, 104px);
    grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
    grid-template-rows: minmax(0, 58fr) minmax(0, 42fr);
    height: clamp(760px, 39vw, 800px);
    min-height: clamp(760px, 39vw, 800px);
  }

  .hero__intro {
    align-self: stretch;
    padding-top: clamp(38px, 2.7vw, 54px);
    padding-right: 40px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(5.15rem, 4.15vw, 5.45rem);
    line-height: 0.92;
  }

  .hero__line--long {
    font-size: 0.84em;
  }

  .hero__brand-mark {
    top: clamp(31px, 2.35vw, 47px);
    left: calc(var(--hero-copy-left) - 60px);
  }

  .hero__lead {
    max-width: 450px;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero__proof {
    display: grid;
    grid-template-rows: auto auto auto;
    align-self: stretch;
    align-content: space-between;
    padding: 0 32px 22px;
  }

  .hero-metrics {
    padding-block: 14px 12px;
    border-top-color: rgba(73, 66, 49, 0.11);
  }

  .hero__actions,
  .hero__note {
    margin-top: 0;
  }

  .hero__media {
    height: 100%;
    min-height: 0;
    border-bottom-left-radius: 28px;
  }
}

@media (max-width: 1180px) {
  .site-shell {
    width: min(100% - 40px, var(--shell));
  }

  .header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 18px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero {
    --hero-copy-left: clamp(62px, 7vw, 82px);
  }

  .hero__intro,
  .hero__proof {
    padding-left: var(--hero-copy-left);
    padding-right: 32px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 4.7vw, 4.2rem);
  }

  .hero__actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions .button:last-child {
    grid-column: 1 / -1;
  }

  .why-strip__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 22px;
  }

  .why-strip h2 {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .benefit:first-of-type {
    border-left: 0;
  }

  .contacts__grid {
    grid-template-columns: minmax(230px, 0.8fr) minmax(380px, 1.35fr);
  }

  .contacts__actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .full-menu-grid,
  .full-menu-skeleton-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 1279px) {
  .team-profiles {
    grid-auto-columns: calc(33.333333% - 12px);
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 70px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .desktop-nav,
  .header-actions > .button,
  .header-actions > .social-icon {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero__intro {
    order: 1;
    padding: 40px 28px 24px;
  }

  .hero__brand-mark {
    top: 34px;
    left: 24px;
    width: 46px;
    height: 55px;
  }

  .hero__brand-mark img {
    width: 67px;
  }

  .hero__line--brand {
    padding-left: 54px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 8vw, 4.35rem);
  }

  .hero__lead {
    max-width: 650px;
  }

  .hero__media {
    order: 2;
    min-height: 310px;
    margin-left: 0;
    aspect-ratio: 16 / 8;
    border-bottom-left-radius: 0;
  }

  .hero__media img {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__proof {
    order: 3;
    padding: 0 28px 30px;
  }

  .hero__actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__actions .button:last-child {
    grid-column: auto;
  }

  .product-grid--popular {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .product-grid--popular .product-card {
    scroll-snap-align: start;
  }

  .duo-menu__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-group,
  .menu-group--desserts {
    padding: 0;
    border-left: 0;
  }

  .menu-group--desserts {
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }

  .photo-mosaic {
    height: 260px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .team-section__grid {
    display: block;
  }

  .team-section__intro {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 18px 30px;
    align-items: end;
  }

  .team-section .eyebrow,
  .team-section h2 {
    grid-column: 1;
  }

  .team-section__aside {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }

  .team-profiles {
    grid-auto-columns: calc(50% - 8px);
    gap: 16px;
  }

  .media-slot--gallery {
    border-bottom: 2px solid var(--paper);
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full-menu-grid,
  .full-menu-skeleton-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 701px) and (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .footer-copy {
    text-align: right;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .footer-socials {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 62px;
  }

  .site-shell {
    width: min(100% - 32px, var(--shell));
  }

  .menu-group__branch {
    top: -8px;
    right: 0;
    width: 96px;
    height: 96px;
    opacity: 0.08;
  }

  .site-header,
  .header-inner {
    min-height: var(--header-h);
  }

  .brand {
    gap: 7px;
  }

  .brand__mark {
    width: 38px;
    height: 43px;
  }

  .brand__mark img {
    width: 56px;
  }

  .brand__name {
    font-size: 1.48rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    padding: 22px;
  }

  .full-menu-dialog {
    width: calc(100% - 16px);
    height: calc(100dvh - 16px);
    border-radius: 16px;
  }

  .full-menu-dialog__header {
    padding: 18px 16px 13px;
  }

  .full-menu-dialog__heading {
    align-items: center;
  }

  .full-menu-dialog h2 {
    font-size: 2.45rem;
  }

  .full-menu-dialog__close {
    width: 44px;
    height: 44px;
  }

  .full-menu-dialog__body {
    padding: 19px 16px calc(26px + env(safe-area-inset-bottom));
  }

  .full-menu-filters {
    margin-right: -16px;
    padding-right: 16px;
    scrollbar-width: none;
  }

  .full-menu-filters::-webkit-scrollbar {
    display: none;
  }

  .full-menu-grid,
  .full-menu-skeleton-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .full-menu-card {
    display: grid;
    grid-template-columns: minmax(116px, 0.42fr) minmax(0, 0.58fr);
  }

  .full-menu-card:not(.full-menu-card--compact) {
    height: 206px;
  }

  .full-menu-card--compact {
    display: flex;
  }

  .full-menu-card__media {
    width: 100%;
    height: 100%;
    min-height: 204px;
    flex-basis: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .full-menu-card__media img {
    object-position: center top;
    transform: none;
  }

  .full-menu-card__body {
    min-height: 204px;
    padding: 12px 13px 10px;
  }

  .full-menu-card--compact .full-menu-card__body {
    min-height: 136px;
  }

  .full-menu-skeleton-card {
    min-height: 206px;
  }

  .full-menu-category + .full-menu-category {
    margin-top: 26px;
    padding-top: 22px;
  }

  .full-menu-category__heading {
    align-items: flex-start;
  }

  .hero__intro {
    padding: 27px 18px 20px;
  }

  .hero__brand-mark {
    top: 21px;
    left: 14px;
    width: 42px;
    height: 51px;
  }

  .hero__brand-mark img {
    width: 62px;
  }

  .hero__line--brand {
    padding-left: 49px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.48rem, 11.2vw, 3rem);
    line-height: 0.88;
  }

  .hero__line--long {
    margin-top: 2px;
    font-size: 0.77em;
    white-space: nowrap;
  }

  .hero__lead {
    margin-top: 17px;
    font-size: 0.81rem;
    line-height: 1.55;
  }

  .hero__media {
    min-height: 0;
    height: 246px;
    aspect-ratio: auto;
  }

  .hero__media img {
    object-position: 48% 50%;
  }

  .hero__proof {
    padding: 0 18px 24px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-block: 14px 13px;
    row-gap: 14px;
  }

  .metric {
    padding-inline: 7px;
  }

  .metric:nth-child(3) {
    border-right: 0;
  }

  .metric:nth-child(4),
  .metric:nth-child(5) {
    grid-column: span 1;
  }

  .metric svg {
    width: 20px;
    height: 20px;
  }

  .metric strong {
    font-size: 1.15rem;
  }

  .metric span {
    font-size: 0.6rem;
  }

  .hero__actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__actions .button:last-child {
    grid-column: auto;
  }

  .button {
    min-height: 45px;
  }

  .hero__note {
    justify-content: center;
  }

  .menu-section,
  .reviews,
  .contacts {
    padding: 24px 0 27px;
  }

  h2 {
    font-size: 2rem;
  }

  .section-heading {
    align-items: center;
    margin-bottom: 13px;
  }

  .section-link {
    max-width: 42%;
    justify-content: flex-end;
    text-align: right;
    white-space: normal;
  }

  .product-grid--popular,
  .product-grid--seasonal,
  .product-grid--desserts {
    display: grid;
    grid-template-columns: repeat(var(--card-count, 5), minmax(198px, 66vw));
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid--seasonal {
    --card-count: 3;
  }

  .product-grid--desserts {
    --card-count: 4;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    scroll-snap-align: start;
  }

  .product-card--mini .product-card__copy {
    min-height: 78px;
  }

  .duo-menu .media-slot--product {
    height: 134px;
  }

  .duo-menu {
    padding-block: 22px 26px;
  }

  .why-strip__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-strip h2 {
    margin-bottom: 14px;
  }

  .benefit,
  .benefit:first-of-type {
    grid-template-columns: 34px 1fr;
    padding: 13px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .benefit h3 {
    font-size: 0.82rem;
  }

  .benefit p {
    font-size: 0.7rem;
  }

  .photo-mosaic {
    height: 420px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.85fr 1.15fr;
  }

  .team-section {
    padding: 38px 0 42px;
  }

  .team-section__grid {
    display: block;
  }

  .team-section__intro {
    display: block;
    margin-bottom: 24px;
  }

  .team-section h2 {
    max-width: 320px;
    font-size: 2.8rem;
  }

  .team-section__aside {
    max-width: 520px;
    margin-top: 16px;
  }

  .team-profiles {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .team-profile {
    height: auto;
  }

  .team-profile__media {
    aspect-ratio: 4 / 5;
  }

  .team-profile__copy {
    min-height: 0;
    padding: 20px;
  }

  .team-profile__bio {
    margin-top: 14px;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .review-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(270px, 82vw));
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-card {
    min-height: 174px;
    scroll-snap-align: start;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .route-map {
    grid-template-rows: 220px auto;
  }

  .route-map__viewport {
    min-height: 220px;
  }

  .contacts__actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .contact-button:hover {
    transform: translateY(-2px);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .footer-copy {
    text-align: right;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
  }

  .footer-socials {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.43rem;
  }

  .hero__line--long {
    font-size: 0.75em;
  }

  .hero__media {
    height: 232px;
  }

  .metric--award strong {
    font-size: 0.66rem;
  }

  .footer-inner nav {
    gap: 12px;
  }
}

@media (hover: none), (pointer: coarse) {
  .product-card:hover,
  .full-menu-card:hover,
  .review-card:hover,
  .route-map__button:hover,
  .button:hover,
  .contact-button:hover {
    box-shadow: none;
    transform: none;
  }
}

@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 [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.legal-header {
  grid-template-columns: 1fr auto;
}

.legal-main {
  max-width: 900px;
  padding-top: clamp(52px, 8vw, 104px);
  padding-bottom: 100px;
}

.legal-main > h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.9;
}

.legal-lead {
  max-width: 720px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.legal-main section {
  max-width: 720px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-main section h2 {
  font-size: 2rem;
}

.legal-main section p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.legal-main section a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  margin-top: 54px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

/* Indexable full-menu page */
.menu-page {
  background: var(--paper-soft);
}

.menu-page__header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, #f4e8d7 92%, transparent);
  backdrop-filter: blur(18px);
}

.menu-page__header-inner {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-page__header .button {
  width: auto;
  min-width: 170px;
}

.menu-page__hero {
  padding: clamp(62px, 8vw, 118px) 0 clamp(50px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 20%, rgba(168, 125, 52, 0.12), transparent 26%),
    linear-gradient(135deg, var(--paper-soft), var(--paper));
}

.menu-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(44px, 8vw, 130px);
}

.menu-page .eyebrow {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-page__hero h1 {
  margin-top: 12px;
  font-size: clamp(4.4rem, 9vw, 8.6rem);
  line-height: 0.78;
}

.menu-page__lead {
  max-width: 730px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.4vw, 1.14rem);
}

.menu-page__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  margin: 0;
  border-block: 1px solid var(--line-strong);
}

.menu-page__summary div {
  min-width: 0;
  padding: 20px 22px 18px;
}

.menu-page__summary div + div {
  border-left: 1px solid var(--line);
}

.menu-page__summary dt {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 0.9;
}

.menu-page__summary dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.35;
}

.menu-page__categories {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.menu-page__categories-inner {
  display: flex;
  gap: 9px;
  padding-block: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.menu-page__categories-inner::-webkit-scrollbar {
  display: none;
}

.menu-page__categories a {
  min-height: 36px;
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--duration-fast) ease, border-color var(--duration-fast) ease, background-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease);
}

.menu-page__categories a:hover {
  border-color: var(--green);
  background: var(--green-wash);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.menu-page__catalog {
  padding-block: clamp(50px, 7vw, 100px);
}

.menu-page__category {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.menu-page .full-menu-category + .full-menu-category {
  margin-top: clamp(56px, 8vw, 100px);
  padding-top: clamp(42px, 6vw, 72px);
}

.menu-page .full-menu-category__heading {
  margin-bottom: 22px;
}

.menu-page .full-menu-category__heading h2 {
  max-width: 820px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.9;
}

.menu-page .full-menu-card__body h3 {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: pretty;
}

.menu-page .full-menu-card {
  animation: full-menu-card-in 540ms var(--ease) both;
  animation-delay: calc(var(--menu-card-index, 0) * 35ms);
}

.menu-page__visit {
  padding: clamp(48px, 6vw, 78px) 0;
  border-top: 1px solid var(--line);
  background: var(--green-deep);
  color: #fff;
}

.menu-page__visit-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.menu-page__visit .eyebrow,
.menu-page__visit p {
  color: rgba(255, 255, 255, 0.72);
}

.menu-page__visit h2 {
  margin-top: 8px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.85;
}

.menu-page__visit h2 + p {
  margin-top: 18px;
}

.menu-page__visit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 10px;
}

.menu-page__visit .button--primary {
  background: #fff;
  color: var(--green-deep);
}

.menu-page__visit .button--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.menu-page .site-footer .footer-inner > p {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

@media (max-width: 960px) {
  .menu-page__hero-grid,
  .menu-page__visit-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-page__summary {
    width: min(100%, 600px);
  }

  .menu-page__visit-actions {
    width: min(100%, 440px);
  }
}

@media (max-width: 700px) {
  .menu-page__header .brand__name {
    font-size: 1.45rem;
  }

  .menu-page__header .brand__mark {
    width: 42px;
    height: 48px;
  }

  .menu-page__back {
    min-width: 0 !important;
    padding-inline: 14px;
    font-size: 0.68rem;
  }

  .menu-page__hero {
    padding-top: 50px;
  }

  .menu-page__hero h1 {
    font-size: clamp(4rem, 21vw, 6rem);
  }

  .menu-page__lead {
    margin-top: 25px;
  }

  .menu-page__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-page__summary div {
    padding: 14px 8px;
    text-align: center;
  }

  .menu-page__summary dt {
    font-size: 2.15rem;
  }

  .menu-page__categories-inner {
    padding-right: 16px;
  }

  .menu-page .full-menu-category__heading h2 {
    font-size: 2.35rem;
  }

  .menu-page__visit-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-page .footer-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-page .full-menu-card {
    animation: none;
  }
}
