:root {
  --ink: #252323;
  --muted: #6c645d;
  --paper: #f8f4ee;
  --cream: #eee4d8;
  --line: #ded2c4;
  --coffee: #b6793d;
  --olive: #696d3d;
  --white: #fffdf9;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --font-display: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #ebe7df;
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

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

.page-shell {
  width: min(1200px, calc(100% - 28px));
  margin: 0 auto 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(49, 36, 24, .14);
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 34px;
  padding: 0 70px;
  color: #f5eee5;
  background: #2b2520;
  font-size: 11px;
  font-weight: 700;
}

.top-strip-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
}

.top-strip-info span,
.top-strip-info a {
  position: relative;
  white-space: nowrap;
}

.top-strip-info a + a::before,
.top-strip-info span + a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(214, 177, 133, .55);
  transform: translateY(-50%);
}

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #d6b185;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 126px;
  min-height: 24px;
  padding: 0 28px 0 10px;
  border: 1px solid rgba(214, 177, 133, .48);
  border-radius: 999px;
  color: #f8efe5;
  background: #3a3029;
  font: inherit;
  outline: 0;
  cursor: pointer;
}

.language-button::after {
  content: "";
  position: absolute;
  right: 11px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-button:focus-visible {
  border-color: #d6b185;
  box-shadow: 0 0 0 2px rgba(214, 177, 133, .18);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: none;
  min-width: 170px;
  padding: 7px;
  background: #332820;
  border: 1px solid rgba(214, 177, 133, .38);
  box-shadow: 0 18px 40px rgba(20, 13, 8, .28);
}

.language-picker.is-open .language-menu {
  display: grid;
  gap: 2px;
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  color: #f8efe5;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  background: rgba(214, 177, 133, .16);
}

.flag {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .24);
}

.site-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 190px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 108px;
  padding: 18px 70px;
  background:
    linear-gradient(180deg, #fffdf9 0%, #fbf7f1 100%);
  border-bottom: 1px solid rgba(222, 210, 196, .78);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 70px;
  right: 70px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(182, 121, 61, .45), transparent);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img,
.footer-brand img {
  display: block;
  width: 126px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 54px);
  color: #49443f;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--coffee);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-current::after {
  transform: scaleX(1);
}

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

.main-nav .nav-mobile-cta {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  z-index: 31;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(182, 121, 61, .24);
  border-radius: 50%;
  background: #fffaf4;
  box-shadow: 0 12px 28px rgba(64, 45, 28, .08);
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2f2a25;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-primary {
  background: var(--coffee);
  color: white;
  box-shadow: 0 10px 24px rgba(182, 121, 61, .18);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a96e35;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(182, 121, 61, .24);
}

.button-dark {
  background: var(--olive);
  color: white;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #f8f4ee;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-primary {
  background-image:
    linear-gradient(90deg, rgba(255, 253, 249, .95) 0 35%, rgba(255, 253, 249, .58) 49%, rgba(255, 253, 249, 0) 70%),
    url("assets/hero-banner-1.jpg");
  background-position: center right;
}

.hero-slide-menu {
  background-image:
    linear-gradient(90deg, rgba(255, 253, 249, .96) 0 31%, rgba(255, 253, 249, .64) 47%, rgba(255, 253, 249, .04) 67%),
    url("assets/hero-banner-2.png");
  background-position: center right;
  cursor: pointer;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 54px 0 58px 70px;
}

.hero h1,
.hero h2 {
  margin: 0 0 24px;
  max-width: 410px;
  color: #171717;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.6vw, 82px);
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 span,
.hero h2 span {
  color: var(--coffee);
}

.hero p {
  margin: 0 0 28px;
  color: #3c3732;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.hero-copy-menu h2 {
  max-width: 360px;
  font-size: clamp(48px, 5.3vw, 66px);
  line-height: .92;
  margin-bottom: 22px;
}

.hero-copy-menu p {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.22;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255, 253, 249, .68);
  border: 1px solid rgba(255, 253, 249, .82);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(39, 28, 18, .12);
  backdrop-filter: blur(8px);
}

.hero-dots button {
  border: 0;
  cursor: pointer;
}

.hero-dots button {
  width: 9px;
  aspect-ratio: 1;
  padding: 0;
  background: rgba(61, 56, 52, .28);
  border-radius: 50%;
  transition: width 220ms ease, background 220ms ease, opacity 220ms ease;
}

.hero-dots button.is-active {
  background: var(--coffee);
  width: 24px;
  border-radius: 999px;
}

.hero-dots button:focus-visible {
  outline: 2px solid var(--coffee);
  outline-offset: 3px;
}

.live-status {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  background: #fffaf4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.live-status > div {
  display: grid;
  align-content: center;
  min-height: 84px;
  padding: 18px 28px;
}

.live-status > div + div {
  border-left: 1px solid var(--line);
}

.live-status span {
  color: #857568;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-status strong {
  margin-top: 6px;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 13px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #9a8c7b;
  box-shadow: 0 0 0 6px rgba(154, 140, 123, .14);
}

.status-pill.is-open .status-dot {
  background: #3d8b55;
  box-shadow: 0 0 0 6px rgba(61, 139, 85, .16);
}

.status-pill.is-open strong {
  color: #27643a;
}

.status-pill.is-closed .status-dot {
  background: var(--coffee);
  box-shadow: 0 0 0 6px rgba(182, 121, 61, .16);
}

.status-pill.is-closed strong {
  color: #8f5729;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-strip article {
  min-height: 164px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
}

.promise-strip article + article {
  border-left: 1px solid var(--line);
}

.promise-strip h2 {
  margin: 0;
  color: #4e4741;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promise-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.line-icon {
  position: relative;
  width: 38px;
  height: 38px;
  color: var(--coffee);
}

.bean::before {
  content: "";
  position: absolute;
  inset: 6px 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: rotate(22deg);
}

.bean::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 6px;
  width: 2px;
  height: 27px;
  background: currentColor;
  transform: rotate(22deg);
}

.croissant::before {
  content: "";
  position: absolute;
  inset: 10px 5px 7px;
  border: 3px solid currentColor;
  border-top-width: 5px;
  border-radius: 26px 26px 10px 10px;
}

.croissant::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 8px;
  height: 20px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.leaf::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 4px;
  width: 16px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 0 22px 22px 22px;
  transform: rotate(38deg);
}

.leaf::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 3px;
  height: 19px;
  background: currentColor;
  transform: rotate(-34deg);
}

.story-band {
  display: grid;
  grid-template-columns: 2.15fr 1fr;
  min-height: 300px;
  background: var(--paper);
}

.cafe-photo {
  position: relative;
  overflow: hidden;
  background-image: url("assets/story-gallery-1.jpg");
  background-size: cover;
  background-position: center center;
  transition: background-image 320ms ease;
}

.cafe-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 37, 32, .08), rgba(43, 37, 32, 0) 44%, rgba(43, 37, 32, .12));
  pointer-events: none;
}

.story-photo-dots {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  display: none;
  gap: 8px;
}

.story-photo-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 253, 249, .86);
  border-radius: 50%;
  background: rgba(255, 253, 249, .46);
  box-shadow: 0 4px 12px rgba(43, 37, 32, .18);
  cursor: pointer;
}

.story-photo-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: #fffdf9;
}

.story-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 20px;
  padding: 42px 58px;
  background: rgba(255, 253, 249, .92);
}

.story-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.promo-section {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 70px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promo-heading {
  text-align: left;
}

.promo-kicker {
  margin: 0 0 8px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-heading h2 {
  margin: 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, .72);
}

.offer-item {
  position: relative;
  min-height: 128px;
  padding: 22px 28px;
}

.offer-item + .offer-item {
  border-left: 1px solid var(--line);
}

.offer-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: var(--coffee);
}

.offer-item-accent::before {
  background: var(--olive);
}

.offer-item p {
  margin: 0;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-item h3 {
  margin: 8px 0 8px;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-item span {
  display: block;
  max-width: 470px;
  color: #5d554d;
  font-size: 14px;
  line-height: 1.36;
}

.offer-item small {
  display: block;
  margin-top: 10px;
  color: #7c6a57;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-section {
  padding: 28px 60px 34px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.reviews-carousel {
  margin-top: 18px;
  overflow: hidden;
}

.reviews-grid {
  display: flex;
  gap: 14px;
  transition: transform 360ms ease;
}

.review-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-height: 230px;
  padding: 18px;
  background: #fffaf4;
  border: 1px solid var(--line);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.review-avatar {
  display: block;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(182, 121, 61, .22);
}

.review-card h3 {
  margin: 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-head p {
  margin: 4px 0 0;
  color: #857568;
  font-size: 12px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: #8f5729;
  background: rgba(182, 121, 61, .1);
  border: 1px solid rgba(182, 121, 61, .18);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
}

.review-rating::before {
  content: "★★★★★";
  color: var(--coffee);
  font-size: 12px;
  letter-spacing: .8px;
}

.review-card > p {
  margin: 0;
  color: #5d554d;
  font-size: 13.5px;
  line-height: 1.52;
}

.review-card > p[dir="rtl"] {
  text-align: right;
}

.review-card > p[lang="zh"],
.review-card > p[lang="mn"],
.review-card > p[lang="ru"],
.review-card > p[lang="ar"] {
  line-height: 1.72;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.review-controls > button {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #5d554d;
  background: #fffaf4;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.review-dots {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.review-dots button {
  width: 9px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(61, 56, 52, .28);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.review-dots button.is-active {
  width: 24px;
  background: var(--coffee);
}

.review-controls > button:focus-visible,
.review-dots button:focus-visible {
  outline: 2px solid var(--coffee);
  outline-offset: 3px;
}

.selection {
  padding: 34px 60px 38px;
  background:
    linear-gradient(135deg, rgba(43, 37, 32, .98), rgba(23, 20, 17, .98));
  color: #fffaf4;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.section-title span {
  height: 1px;
  background: var(--line);
}

.section-title h2 {
  margin: 0;
  color: #47413b;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.selection .section-title span {
  background: rgba(214, 177, 133, .36);
}

.selection .section-title h2 {
  color: #fffaf4;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 22px 0 24px;
}

.menu-tabs button {
  min-height: 28px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #cdbba8;
  background: transparent;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-tabs button.is-active {
  color: #d6a875;
  border-color: #d6a875;
}

.menu-tabs button:disabled {
  opacity: .52;
}

.menu-board {
  display: grid;
  grid-template-columns: minmax(230px, .56fr) minmax(430px, 1.44fr);
  gap: 42px;
  align-items: start;
  padding: 22px 0 0;
  background: transparent;
}

.menu-upgrades {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 0 0 0 18px;
  border-left: 3px solid rgba(182, 121, 61, .72);
  color: #f8efe5;
}

.menu-upgrades p,
.menu-list-head span {
  margin: 0;
  color: #d6a875;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-upgrades ul {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.menu-upgrades li {
  display: grid;
  gap: 4px;
}

.menu-upgrades span {
  color: #fffaf4;
  font-size: 13px;
  font-weight: 800;
}

.menu-upgrades strong {
  color: #cdbba8;
  font-size: 13px;
  line-height: 1.35;
}

.menu-list {
  color: #fffaf4;
}

.menu-list-head {
  display: grid;
  grid-template-columns: 1fr 138px;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.menu-list-head h3 {
  margin: 6px 0 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-list-head small {
  display: block;
  margin-top: 8px;
  color: #cdbba8;
  font-size: 12px;
  font-weight: 800;
}

.menu-size-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.menu-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 64px;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  border-bottom: 2px solid rgba(182, 121, 61, .72);
}

.menu-row span,
.menu-row strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-row strong {
  text-align: center;
}

.menu-row.is-signature span,
.menu-row.is-signature strong {
  color: #d6a875;
}

.menu-row.is-signature {
  overflow: hidden;
}

.menu-row.is-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 117, .18), transparent);
  transform: translateX(-120%);
  animation: signature-shimmer 3.8s ease-in-out infinite;
}

.menu-row.is-signature span,
.menu-row.is-signature strong {
  position: relative;
  animation: signature-glow 3.8s ease-in-out infinite;
}

@keyframes signature-shimmer {
  0%, 42% {
    transform: translateX(-120%);
  }
  70%, 100% {
    transform: translateX(120%);
  }
}

@keyframes signature-glow {
  0%, 100% {
    text-shadow: none;
  }
  52% {
    text-shadow: 0 0 18px rgba(214, 168, 117, .38);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-row.is-signature::before,
  .menu-row.is-signature span,
  .menu-row.is-signature strong {
    animation: none;
  }
}

.menu-note {
  margin: 16px 0 0;
  color: #cdbba8;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.poster-section {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px 60px 38px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.poster-heading p {
  margin: 0 0 8px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-heading h2 {
  margin: 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: .96;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-heading span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.poster-carousel {
  min-width: 0;
  overflow: hidden;
}

.poster-track {
  display: flex;
  gap: 14px;
  transition: transform 360ms ease;
}

.poster-card {
  flex: 0 0 calc((100% - 42px) / 4);
  padding: 0;
  background: #fffaf4;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(64, 43, 25, .08);
  cursor: zoom-in;
  font: inherit;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.poster-card:hover,
.poster-card:focus-visible {
  border-color: rgba(182, 121, 61, .56);
  box-shadow: 0 18px 38px rgba(64, 43, 25, .14);
  transform: translateY(-3px);
}

.poster-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.poster-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.poster-controls > button {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #5d554d;
  background: #fffaf4;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}

.poster-controls > button::before {
  font-size: 24px;
  line-height: 1;
}

.poster-controls > button[data-poster-prev]::before {
  content: "\2039";
}

.poster-controls > button[data-poster-next]::before {
  content: "\203A";
}

.poster-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.poster-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7b8a7;
  cursor: pointer;
}

.poster-dots button.is-active {
  width: 20px;
  border-radius: 999px;
  background: var(--coffee);
}

.poster-controls > button:focus-visible,
.poster-dots button:focus-visible {
  outline: 2px solid var(--coffee);
  outline-offset: 3px;
}

.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 34px;
  background: rgba(28, 23, 19, .88);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.poster-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.poster-lightbox figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  min-width: 0;
}

.poster-lightbox img {
  display: block;
  max-width: min(100%, 920px);
  max-height: 82vh;
  border: 1px solid rgba(214, 168, 117, .42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
  object-fit: contain;
}

.poster-lightbox figcaption {
  color: #fffaf4;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-lightbox-close,
.poster-lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 168, 117, .36);
  border-radius: 50%;
  color: #fffaf4;
  background: rgba(255, 250, 244, .08);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.poster-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  aspect-ratio: 1;
  font-size: 28px;
  line-height: 1;
}

.poster-lightbox-nav {
  width: 48px;
  aspect-ratio: 1;
  justify-self: center;
  font-size: 34px;
  line-height: 1;
}

.poster-lightbox-close:hover,
.poster-lightbox-close:focus-visible,
.poster-lightbox-nav:hover,
.poster-lightbox-nav:focus-visible {
  background: var(--coffee);
  border-color: var(--coffee);
  transform: translateY(-2px);
}

.locations-section {
  padding: 48px 70px 56px;
  background:
    radial-gradient(circle at 78% 30%, rgba(214, 168, 117, .18), transparent 28%),
    linear-gradient(135deg, #2b2520, #191513);
  color: #fffaf4;
  border-top: 1px solid rgba(214, 177, 133, .28);
}

.locations-section-compact {
  border-top: 0;
}

.locations-copy {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin-bottom: 26px;
}

.locations-copy p {
  margin: 0;
  color: #d6a875;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.locations-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: .96;
  font-weight: 900;
  text-transform: uppercase;
}

.locations-copy span {
  color: #d9cfc5;
  font-size: 16px;
  line-height: 1.55;
}

.world-location-panel {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: stretch;
}

.world-map {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 133, .22);
  background: #211c18;
}

.world-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(214, 177, 133, .26);
  background: rgba(255, 253, 249, .07);
}

.branch-card p {
  margin: 0;
  color: #d6a875;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.branch-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: .96;
  font-weight: 900;
  text-transform: uppercase;
}

.branch-card span,
.branch-card small {
  color: #d9cfc5;
  font-size: 15px;
  line-height: 1.5;
}

.branch-card span {
  color: #fffaf4;
  font-weight: 800;
}

.branch-card .button {
  justify-self: start;
  margin-top: 6px;
  border: 0;
}

.contact-section {
  padding: 54px 70px 62px;
  background:
    linear-gradient(135deg, rgba(248, 244, 238, .96), rgba(255, 253, 249, .98)),
    url("https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--line);
}

.contact-intro {
  max-width: 620px;
  margin-bottom: 30px;
}

.contact-intro p {
  margin: 0 0 10px;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-intro h2 {
  margin: 0 0 12px;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-intro span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(310px, .82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 253, 249, .94);
  border: 1px solid var(--line);
}

.contact-form label {
  color: #443e38;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbbbab;
  border-radius: 2px;
  background: #fffaf4;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: 0;
}

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

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coffee);
  box-shadow: 0 0 0 3px rgba(182, 121, 61, .16);
}

.contact-form button {
  width: max-content;
  border: 0;
  cursor: pointer;
}

.map-panel {
  min-height: 480px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(64, 43, 25, .12);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 456px;
  border: 0;
}

.site-footer {
  border-top: 1px solid rgba(148, 118, 82, .22);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .72), rgba(248, 241, 232, .96)),
    var(--paper);
  color: #3f342b;
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.28fr)
    minmax(92px, .54fr)
    minmax(116px, .62fr)
    minmax(150px, .74fr)
    minmax(220px, 1.16fr);
  gap: clamp(26px, 3vw, 38px);
  padding: 50px 70px 42px;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand img {
  width: 118px;
  margin-bottom: 10px;
}

.footer-brand p,
.footer-visit p {
  margin: 0;
  color: #75685d;
  font-size: 13px;
  line-height: 1.65;
}

.footer-brand p {
  max-width: 280px;
}

.site-footer h2 {
  margin: 0 0 6px;
  color: #3d3128;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-visit a {
  width: fit-content;
  max-width: 100%;
  color: #5b4d42;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-visit a:hover,
.footer-visit a:focus-visible {
  color: var(--coffee);
  transform: translateX(3px);
}

.footer-visit p {
  max-width: 260px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.socials a {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(182, 121, 61, .28);
  border-radius: 50%;
  color: #6a5646;
  background: rgba(255, 250, 244, .66);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 249, .75);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: #fffaf4;
  background: var(--coffee);
  border-color: var(--coffee);
  transform: translateY(-2px);
}

.socials svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.socials a[aria-label="Facebook"] svg,
.socials a[aria-label="TikTok"] svg {
  fill: currentColor;
  stroke: none;
}

.delivery-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: min(100%, 258px);
  margin-top: 12px;
}

.delivery-links::before {
  content: "Delivery Partners";
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #8a7868;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.delivery-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  transition: filter 180ms ease, transform 180ms ease;
}

.delivery-links img {
  display: block;
  width: 100%;
  height: auto;
  opacity: .92;
}

.delivery-links a:hover,
.delivery-links a:focus-visible {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 70px;
  border-top: 1px solid rgba(148, 118, 82, .18);
  color: #7a6d62;
  background: rgba(255, 253, 249, .42);
  font-size: 11px;
  line-height: 1.45;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(420px, 1.14fr);
  min-height: 430px;
  background: #2b2520;
  color: #fffaf4;
}

.about-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 64px 70px;
}

.about-hero-copy p,
.about-kicker {
  margin: 0;
  color: #d6a875;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 70px);
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero-copy span {
  max-width: 410px;
  color: #d9cfc5;
  font-size: 17px;
  line-height: 1.55;
}

.about-hero-photo,
.about-story-photo {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.about-hero-photo {
  background-image:
    linear-gradient(90deg, rgba(43, 37, 32, .35), rgba(43, 37, 32, 0) 34%),
    url("assets/about-hero-updated.jpg");
  background-position: center;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(420px, 1.2fr);
  gap: 44px;
  padding: 58px 70px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-intro h2,
.about-story-text h2,
.about-needed h2 {
  margin: 8px 0 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.about-intro > p,
.about-story-text > p,
.about-needed p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-values article {
  min-height: 290px;
  padding: 32px 28px;
}

.about-values article + article {
  border-left: 1px solid var(--line);
}

.about-values span {
  color: #d6a875;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.about-values h2 {
  margin: 18px 0 12px;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #fffaf4;
}

.about-story-photo {
  background-image: url("assets/about-team.jpg");
  background-position: center;
}

.about-story-text {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 54px 60px;
}

.about-detail-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.about-detail-list span {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #3d3630;
  font-size: 14px;
  font-weight: 800;
}

.about-audience {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(420px, 1.15fr);
  gap: 44px;
  padding: 52px 70px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-audience h2 {
  margin: 8px 0 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.about-audience-list {
  display: grid;
  gap: 0;
  align-content: center;
}

.about-audience-list span {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: #3d3630;
  font-size: 16px;
  font-weight: 800;
}

.about-audience-list span:last-child {
  border-bottom: 1px solid var(--line);
}

.about-needed {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: 42px 70px;
  background: #2b2520;
}

.about-needed h2 {
  margin: 0;
  color: #fffaf4;
}

.about-needed p {
  color: #d9cfc5;
}

.legal-hero {
  display: grid;
  gap: 14px;
  padding: 62px 70px 54px;
  border-top: 1px solid rgba(148, 118, 82, .12);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 253, 249, .94), rgba(248, 241, 232, .86)),
    var(--paper);
}

.legal-hero p {
  margin: 0;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-hero span {
  max-width: 720px;
  color: #75685d;
  font-size: 17px;
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding: 48px 70px 58px;
  background: #fffaf4;
}

.legal-nav {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(148, 118, 82, .18);
  border-bottom: 1px solid rgba(148, 118, 82, .18);
}

.legal-nav a {
  color: #5b4d42;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--coffee);
  transform: translateX(4px);
}

.legal-content {
  display: grid;
  gap: 22px;
}

.legal-card {
  display: grid;
  gap: 14px;
  padding: 30px 34px;
  border: 1px solid rgba(148, 118, 82, .18);
  background: rgba(255, 253, 249, .78);
  box-shadow: 0 16px 38px rgba(64, 43, 25, .06);
  scroll-margin-top: 120px;
}

.legal-card span {
  color: #d6a875;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.legal-card h2 {
  margin: 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card p,
.legal-card li {
  color: #6b5f55;
  font-size: 15px;
  line-height: 1.7;
}

.legal-card p,
.legal-card ul {
  margin: 0;
}

.legal-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
}

.careers-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(260px, 340px);
  gap: 42px;
  align-items: end;
  padding: 62px 70px 54px;
  border-top: 1px solid rgba(148, 118, 82, .12);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 253, 249, .95), rgba(248, 241, 232, .84)),
    var(--paper);
}

.careers-hero p,
.careers-notice p {
  margin: 0;
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.careers-hero h1 {
  max-width: 760px;
  margin: 14px 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
}

.careers-hero span,
.careers-intro p,
.career-card p,
.career-card li,
.careers-notice li {
  color: #6b5f55;
  font-size: 15px;
  line-height: 1.7;
}

.careers-hero > div > span {
  display: block;
  max-width: 720px;
  font-size: 17px;
}

.careers-hero aside {
  display: grid;
  gap: 9px;
  padding: 24px;
  border: 1px solid rgba(148, 118, 82, .18);
  background: rgba(255, 253, 249, .72);
  box-shadow: 0 16px 38px rgba(64, 43, 25, .06);
}

.careers-hero aside strong {
  color: #2b2927;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.careers-hero aside span {
  padding-top: 9px;
  border-top: 1px solid rgba(148, 118, 82, .16);
  color: #5b4d42;
  font-weight: 800;
}

.careers-intro {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  padding: 34px 70px;
  background: #fffaf4;
  border-bottom: 1px solid var(--line);
}

.careers-intro p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 46px 70px;
  background: var(--paper);
}

.career-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(148, 118, 82, .18);
  background: rgba(255, 253, 249, .78);
  box-shadow: 0 16px 38px rgba(64, 43, 25, .05);
}

.career-card-accent {
  background: #2b2520;
  border-color: #2b2520;
}

.career-card span {
  color: #d6a875;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.career-card h2 {
  margin: 0;
  color: #2b2927;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.career-card-accent h2,
.career-card-accent strong {
  color: #fffaf4;
}

.career-card p,
.career-card ul {
  margin: 0;
}

.career-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.career-card a {
  color: var(--coffee);
  font-weight: 900;
}

.position-list {
  display: grid;
  gap: 10px;
}

.position-list strong {
  padding: 12px 0;
  border-top: 1px solid rgba(214, 168, 117, .28);
  font-size: 15px;
}

.careers-notice {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 70px 48px;
  background: #fffaf4;
  border-top: 1px solid var(--line);
}

.careers-notice ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.copyright {
  margin: 0;
  padding: 11px;
  border-top: 1px solid var(--line);
  color: #7a7168;
  background: var(--paper);
  font-size: 11px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  color: #fff;
  background: #1fae58;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(31, 174, 88, .28);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #168c47;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(31, 174, 88, .36);
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 92px;
  z-index: 49;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(214, 177, 133, .48);
  border-radius: 50%;
  color: #fffaf4;
  background: rgba(43, 37, 32, .9);
  box-shadow: 0 16px 34px rgba(49, 36, 24, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  cursor: pointer;
}

.back-to-top svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.6;
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--coffee);
}

body.is-arabic .main-nav,
body.is-arabic .hero-copy,
body.is-arabic .promise-strip,
body.is-arabic .story-copy,
body.is-arabic .promo-section,
body.is-arabic .section-title,
body.is-arabic .poster-heading,
body.is-arabic .locations-copy,
body.is-arabic .branch-card,
body.is-arabic .contact-intro,
body.is-arabic .contact-form,
body.is-arabic .about-hero-copy,
body.is-arabic .about-intro,
body.is-arabic .about-values,
body.is-arabic .about-story-text,
body.is-arabic .about-audience,
body.is-arabic .about-needed,
body.is-arabic .legal-hero,
body.is-arabic .legal-layout,
body.is-arabic .legal-card,
body.is-arabic .careers-hero,
body.is-arabic .careers-intro,
body.is-arabic .careers-grid,
body.is-arabic .careers-notice,
body.is-arabic .site-footer {
  direction: rtl;
}

body.is-arabic .main-nav {
  font-family: var(--font-body);
  font-weight: 800;
}

body.is-arabic .hero h1,
body.is-arabic .hero h2,
body.is-arabic .story-copy h2,
body.is-arabic .section-title h2,
body.is-arabic .promo-heading h2,
body.is-arabic .locations-copy h2,
body.is-arabic .contact-intro h2,
body.is-arabic .about-hero-copy h1,
body.is-arabic .about-intro h2,
body.is-arabic .about-story-text h2,
body.is-arabic .about-audience h2,
body.is-arabic .about-needed h2,
body.is-arabic .legal-hero h1,
body.is-arabic .legal-card h2,
body.is-arabic .careers-hero h1,
body.is-arabic .career-card h2 {
  line-height: 1.05;
}

.menu-pdf-tools {
  display: grid;
  gap: 10px;
  align-self: end;
  margin-top: 28px;
  padding-top: 18px;
  color: #fffaf4;
  border-top: 1px solid rgba(214, 177, 133, .34);
}

.menu-pdf-tools strong {
  color: #d6a875;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-pdf-tools div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.menu-pdf-tools a,
.menu-pdf-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(214, 177, 133, .32);
  color: #fffaf4;
  background: rgba(255, 253, 249, .08);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-pdf-tools a:hover,
.menu-pdf-tools button:hover,
.menu-pdf-tools a:focus-visible,
.menu-pdf-tools button:focus-visible {
  background: var(--coffee);
  border-color: var(--coffee);
}

@media (max-width: 900px) {
  .top-strip {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 0 24px;
  }

  .top-strip-info {
    justify-content: flex-start;
    gap: 18px;
  }

  .top-strip-info a + a::before,
  .top-strip-info span + a::before {
    left: -10px;
  }

  .site-header {
    grid-template-columns: minmax(120px, 180px) 1fr auto;
    padding: 18px 24px;
  }

  .site-header::after {
    left: 24px;
    right: 24px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-slide-primary {
    background-image:
      linear-gradient(90deg, rgba(255, 253, 249, .95) 0 42%, rgba(255, 253, 249, .55) 68%, rgba(255, 253, 249, .08) 100%),
      url("assets/hero-banner-1.jpg");
    background-position: 66% center;
  }

  .hero-slide-menu {
    background-image:
      linear-gradient(90deg, rgba(255, 253, 249, .96) 0 40%, rgba(255, 253, 249, .68) 64%, rgba(255, 253, 249, .12) 100%),
      url("assets/hero-banner-2.png");
    background-position: 68% center;
  }

  .hero-copy {
    padding: 50px 28px;
  }

  .hero-copy-menu h2 {
    font-size: clamp(42px, 8vw, 58px);
  }

  .story-band,
  .live-status,
  .menu-board,
  .world-location-panel,
  .about-hero,
  .about-intro,
  .about-values,
  .about-story-grid,
  .about-audience,
  .about-needed,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.05fr 1fr;
    gap: 32px 38px;
    padding: 42px 34px 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .delivery-links {
    width: min(100%, 320px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding: 16px 34px;
  }

  .live-status {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-status > div + div {
    border-left: 0;
  }

  .live-status > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .live-status > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .cafe-photo {
    min-height: 260px;
  }

  .about-hero-copy,
  .about-intro,
  .about-story-text,
  .about-audience,
  .about-needed,
  .legal-hero,
  .legal-layout,
  .careers-hero,
  .careers-intro,
  .careers-grid,
  .careers-notice {
    padding-left: 34px;
    padding-right: 34px;
  }

  .legal-layout,
  .careers-hero,
  .careers-notice {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .careers-intro {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-values article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-hero-photo,
  .about-story-photo {
    min-height: 300px;
  }

  .contact-section {
    padding: 42px 24px 48px;
  }

  .locations-section {
    padding: 42px 24px 48px;
  }

  .world-map {
    min-height: 280px;
  }

  .promo-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 44px 24px;
  }

  .poster-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 24px 38px;
  }

  .poster-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .poster-lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 26px 16px;
  }

  .poster-lightbox img {
    max-height: 78vh;
  }

  .reviews-section {
    padding: 30px 24px 34px;
  }

  .review-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .menu-board {
    gap: 28px;
    padding: 22px 0 0;
  }

  .menu-list {
    order: 1;
  }

  .menu-upgrades {
    order: 2;
  }

  .menu-list-head {
    grid-template-columns: 1fr 120px;
  }

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

  .offer-item + .offer-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .map-panel {
    min-height: 360px;
  }

  .map-panel iframe {
    min-height: 336px;
  }

  .footer-visit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-shell {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 98px;
  }

  .top-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 34px;
    padding: 5px 14px;
    overflow: visible;
    box-shadow: 0 8px 20px rgba(20, 13, 8, .14);
  }

  .top-strip-info {
    display: none;
  }

  .top-strip-info a + a::before,
  .top-strip-info span + a::before {
    display: none;
  }

  .language-picker > span {
    display: inline;
  }

  .language-picker {
    font-size: 9px;
  }

  .language-button {
    min-width: 108px;
    min-height: 24px;
  }

  .language-menu {
    right: 0;
    min-width: 154px;
  }

  .site-header {
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    z-index: 60;
    grid-template-columns: 1fr auto;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    min-height: 64px;
    padding: 10px 16px;
    overflow: visible;
    box-shadow: 0 12px 30px rgba(49, 36, 24, .08);
  }

  .brand {
    width: 116px;
    max-width: 42vw;
    overflow: hidden;
  }

  .brand img {
    width: 104px;
    max-width: 100%;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 106px;
    z-index: 61;
    display: none;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    color: #2f2a25;
    background: rgba(255, 253, 249, .98);
    border: 1px solid rgba(182, 121, 61, .18);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(43, 37, 32, .18);
    overflow: hidden;
  }

  .site-header.is-menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-current {
    background: rgba(182, 121, 61, .1);
  }

  .main-nav .nav-mobile-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
    min-height: 48px;
    color: white;
    background: var(--coffee);
    border-radius: 12px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    min-height: min(590px, calc(100svh - 70px));
    overflow: hidden;
  }

  .hero-slide {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-slide-primary {
    background-image:
      linear-gradient(180deg, rgba(255, 253, 249, .97) 0 35%, rgba(255, 253, 249, .6) 56%, rgba(255, 253, 249, .08) 100%),
      url("assets/hero-banner-1-optimized.jpg");
    background-position: center bottom;
  }

  .hero-slide-menu {
    background-image:
      linear-gradient(180deg, rgba(255, 253, 249, .96) 0 32%, rgba(255, 253, 249, .58) 48%, rgba(255, 253, 249, 0) 72%),
      url("assets/hero-banner-2-mobile.png");
    background-position: center bottom;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 34px 22px 82px;
    overflow: hidden;
  }

  .hero h1,
  .hero h2 {
    max-width: min(292px, 76vw);
    font-size: clamp(38px, 11vw, 46px);
    line-height: .92;
    margin-bottom: 16px;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero p {
    max-width: min(250px, 72vw);
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.24;
  }

  .hero-copy-menu h2 {
    max-width: min(286px, 74vw);
    font-size: clamp(38px, 11vw, 46px);
  }

  .hero-copy-menu p {
    max-width: min(240px, 70vw);
    font-size: 13px;
  }

  .hero-copy-menu {
    align-self: start;
    padding-top: 34px;
  }

  .hero-dots {
    bottom: 16px;
  }

  .promise-strip,
  .live-status,
  .menu-tabs {
    grid-template-columns: 1fr;
  }

  .live-status > div {
    min-height: 74px;
    padding: 16px 24px;
  }

  .live-status > div:nth-child(even) {
    border-left: 0;
  }

  .live-status > div + div {
    border-top: 1px solid var(--line);
  }

  .promise-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .story-copy,
  .promo-section,
  .reviews-section,
  .selection,
  .locations-section,
  .about-hero-copy,
  .about-intro,
  .about-story-text,
  .about-audience,
  .about-needed,
  .contact-section,
  .footer-main,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .footer-brand,
  .footer-visit {
    grid-column: auto;
  }

  .footer-brand img {
    width: 116px;
  }

  .delivery-links {
    grid-template-columns: repeat(2, minmax(0, 122px));
    width: 100%;
    max-width: 258px;
  }

  .footer-column {
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 118, 82, .16);
  }

  .footer-bottom {
    text-align: left;
  }

  .about-hero {
    min-height: 0;
  }

  .about-hero-copy {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .about-hero-copy h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .about-intro,
  .about-audience,
  .about-needed {
    gap: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .legal-hero {
    padding-top: 42px;
    padding-bottom: 38px;
  }

  .legal-layout {
    gap: 22px;
    padding: 32px 24px 42px;
  }

  .careers-hero {
    gap: 24px;
    padding: 42px 24px 36px;
  }

  .careers-intro,
  .careers-grid,
  .careers-notice {
    padding-left: 24px;
    padding-right: 24px;
  }

  .careers-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .career-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .careers-notice {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 24px 22px;
  }

  .about-values article {
    min-height: 0;
    padding: 28px 24px;
  }

  .about-story-photo {
    min-height: 270px;
  }

  .world-map {
    min-height: 230px;
  }

  .branch-card {
    padding: 24px;
  }

  .section-title {
    grid-template-columns: 1fr;
  }

  .section-title span {
    display: none;
  }

  .menu-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .menu-tabs button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(214, 177, 133, .28);
    border-radius: 999px;
    background: rgba(255, 253, 249, .05);
  }

  .menu-tabs button.is-active {
    background: #d6a875;
    border-color: #d6a875;
    color: #211c18;
  }

  .menu-board {
    gap: 24px;
    padding: 20px 0 0;
  }

  .menu-upgrades {
    padding: 0 0 0 16px;
  }

  .menu-list-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .menu-list-head h3 {
    max-width: 8ch;
    font-size: clamp(31px, 11vw, 42px);
  }

  .menu-size-head {
    display: none;
  }

  .menu-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    min-height: 58px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(214, 177, 133, .28);
  }

  .menu-row span {
    padding-right: 4px;
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.05;
  }

  .menu-row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 34px;
    padding: 0 9px;
    border: 1px solid rgba(214, 177, 133, .42);
    border-radius: 999px;
    background: rgba(255, 253, 249, .08);
    font-size: 18px;
  }

  .menu-row strong::before {
    content: attr(data-size);
    margin-right: 5px;
    color: #d6a875;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 900;
  }

  .menu-row strong.is-empty {
    display: none;
  }

  .menu-row.is-signature {
    margin: 4px -10px;
    padding: 13px 10px;
    border: 1px solid rgba(214, 168, 117, .34);
    border-radius: 14px;
    background: rgba(214, 168, 117, .08);
  }

  .menu-row.is-signature strong {
    background: rgba(214, 168, 117, .18);
  }

  .promo-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .poster-section {
    padding-top: 30px;
    padding-bottom: 32px;
  }

  .poster-card {
    flex-basis: 100%;
  }

  .poster-lightbox {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 58px 16px 22px;
  }

  .poster-lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .poster-lightbox-prev,
  .poster-lightbox-next {
    grid-row: 2;
    width: 44px;
  }

  .poster-lightbox-prev {
    justify-self: end;
  }

  .poster-lightbox-next {
    justify-self: start;
  }

  .offer-item {
    min-height: 0;
    padding: 20px 22px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 54px;
    width: 54px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .back-to-top {
    right: 18px;
    bottom: 84px;
    width: 46px;
    height: 46px;
  }

  .menu-pdf-tools {
    margin-top: 22px;
    padding-top: 16px;
  }

  .menu-pdf-tools strong {
    font-size: 10px;
  }

  .menu-pdf-tools a,
  .menu-pdf-tools button {
    min-height: 30px;
    padding: 0 7px;
    font-size: 9px;
  }
}

@media (max-width: 390px) {
  .page-shell {
    padding-top: 92px;
  }

  .top-strip {
    min-height: 34px;
    padding: 7px 12px;
  }

  .language-picker {
    font-size: 8.5px;
  }

  .language-button {
    min-width: 100px;
  }

  .site-header {
    top: 34px;
    min-height: 58px;
    padding: 9px 14px;
  }

  .brand {
    width: 108px;
  }

  .brand img {
    width: 96px;
  }

  .main-nav {
    top: 100px;
  }

  .hero h1,
  .hero h2,
  .hero-copy-menu h2 {
    max-width: 260px;
    font-size: clamp(36px, 10.5vw, 42px);
  }
}
