:root {
  --ink: #1c1b19;
  --muted: #6e6962;
  --paper: #f7f2e9;
  --paper-deep: #eee5d8;
  --white: #fffdf9;
  --orange: #f4512a;
  --orange-dark: #c8391b;
  --red: #bd2e1d;
  --yellow: #f6bd42;
  --green: #3c684b;
  --line: rgba(28, 27, 25, 0.15);
  --shadow: 0 24px 70px rgba(67, 43, 24, 0.13);
  --shadow-soft: 0 12px 30px rgba(67, 43, 24, 0.09);
  --radius: 22px;
  --container: 1180px;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--display);
}

h1 em,
h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
}

address {
  font-style: normal;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 233, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50% 50% 50% 8px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-10deg);
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.brand-location {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.main-nav a:hover,
.main-nav a.is-current {
  color: var(--ink);
}

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

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 13px;
}

.language-switch {
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-button,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-button {
  min-width: 31px;
  min-height: 27px;
  padding: 4px 6px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-button:hover,
.language-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: clamp(72px, 10vw, 130px) 0 clamp(82px, 10vw, 140px);
  overflow: hidden;
}

.hero-section::before {
  position: absolute;
  top: 14%;
  left: -12%;
  width: 38vw;
  height: 38vw;
  min-width: 320px;
  min-height: 320px;
  border: 1px solid rgba(244, 81, 42, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-section::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(246, 189, 66, 0.19);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.eyebrow-line {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-copy h1 {
  max-width: 590px;
  margin-top: 25px;
  font-size: clamp(3.55rem, 7vw, 7.1rem);
  line-height: 0.93;
}

.hero-text {
  max-width: 450px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 51px;
  padding: 12px 18px 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border 180ms ease, transform 180ms ease;
}

.button-arrow {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 400;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(244, 81, 42, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-primary .button-arrow {
  background: rgba(255, 255, 255, 0.2);
}

.button-quiet {
  color: var(--ink);
  border-color: var(--line);
}

.button-quiet:hover {
  border-color: var(--ink);
}

.button-quiet .button-arrow {
  color: var(--orange);
  background: var(--paper-deep);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 50px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
}

.hero-meta > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.meta-mark {
  color: var(--orange);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border-radius: 48% 48% 11px 48%;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(22, 13, 7, 0.13), transparent 48%);
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -23px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 138px;
  height: 138px;
  padding: 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.badge-number {
  align-self: flex-start;
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
}

.badge-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-caption {
  display: flex;
  justify-content: space-between;
  min-height: 22px;
  padding-left: 132px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-strip {
  color: var(--white);
  background: var(--ink);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 105px;
  padding: 18px clamp(12px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-item:first-child {
  padding-left: 0;
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-icon {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.benefit-item strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.benefit-item p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.section-space {
  padding: clamp(80px, 11vw, 150px) 0;
}

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(50px, 10vw, 150px);
}

.story-image-wrap {
  position: relative;
  max-width: 510px;
}

.story-image-wrap::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  left: -28px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(244, 81, 42, 0.4);
  border-radius: 50%;
  content: "";
}

.story-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px 44% 18px 18px;
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  z-index: 2;
  right: -36px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 230px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.3;
  transform: rotate(3deg);
}

.note-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
}

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

.story-copy h2,
.menu-heading h2,
.steps-section h2,
.gallery-heading h2,
.visit-copy h2,
.legal-heading h2 {
  margin-top: 23px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.story-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 27px;
  color: var(--muted);
}

.story-copy > p + p {
  margin-top: 16px;
}

.story-signature {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
}

.local-seo-section {
  background: var(--white);
}

.local-seo-copy {
  max-width: 980px;
}

.local-seo-copy h2 {
  max-width: 780px;
  margin-top: 23px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 52px);
  margin-top: 32px;
}

.local-seo-grid p {
  color: var(--muted);
}

.local-seo-highlight {
  margin-top: 34px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
}

.signature-stroke {
  color: var(--orange);
  font-size: 2.4rem;
  line-height: 1;
  transform: rotate(-10deg);
}

.menu-section {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-intro {
  max-width: 310px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-toolbar {
  display: flex;
  gap: 8px;
  margin-top: 52px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.filter-button {
  min-height: 39px;
  padding: 8px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.menu-layout {
  display: block;
  align-items: start;
  gap: 24px;
  margin-top: 28px;
}

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

.menu-card,
.menu-list-card {
  background: var(--white);
  border: 1px solid rgba(28, 27, 25, 0.06);
  border-radius: 16px;
  box-shadow: 0 7px 22px rgba(67, 43, 24, 0.05);
}

.menu-card {
  position: relative;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  min-height: 210px;
  overflow: hidden;
}

.menu-card-image {
  min-height: 100%;
  overflow: hidden;
  background: var(--paper-deep);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.menu-card-code,
.menu-card-type,
.aside-kicker,
.detail-label {
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-card-code {
  color: var(--orange-dark);
}

.menu-card h3 {
  margin-top: 9px;
  font-family: var(--display);
  font-size: 1.37rem;
  letter-spacing: -0.03em;
}

.menu-card-description {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  padding-top: 15px;
}

.menu-card-tag {
  padding: 3px 7px;
  color: var(--green);
  background: rgba(60, 104, 75, 0.1);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
}

.menu-list-wrap {
  grid-column: 1 / -1;
}

.menu-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0 12px;
  border-bottom: 1px solid var(--line);
}

.menu-list-heading h3 {
  font-family: var(--display);
  font-size: 1.55rem;
}

.menu-list-heading span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.menu-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 67px;
  padding: 13px 15px;
}

.menu-list-card p {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.35;
}

.menu-list-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.63rem;
}

.menu-list-price {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-aside {
  position: sticky;
  top: 110px;
  overflow: hidden;
  background: var(--yellow);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.aside-image-wrap {
  overflow: hidden;
  aspect-ratio: 1.5;
}

.aside-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aside-content {
  position: relative;
  padding: 22px 22px 28px;
}

.aside-kicker {
  color: var(--ink);
  font-size: 0.58rem;
}

.aside-content h3 {
  margin-top: 9px;
  font-family: var(--display);
  font-size: 1.8rem;
}

.aside-content p:not(.aside-kicker) {
  margin-top: 10px;
  color: rgba(28, 27, 25, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.aside-mark {
  position: absolute;
  right: 20px;
  bottom: 13px;
  color: rgba(28, 27, 25, 0.35);
  font-size: 2.5rem;
}

.menu-footnote {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
}

.footnote-mark {
  display: inline-grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.72rem;
  font-style: italic;
}

.steps-section {
  background: var(--white);
}

.centered-heading {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 57px;
}

.step-card {
  position: relative;
  min-height: 220px;
  padding: 27px 28px;
  border-top: 1px solid var(--ink);
}

.step-card::after {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.step-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
}

.step-card h3 {
  margin-top: 27px;
  font-family: var(--display);
  font-size: 2rem;
}

.step-card p {
  max-width: 260px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 250px);
  gap: 12px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  cursor: pointer;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 13px;
  color: var(--white);
  background: rgba(28, 27, 25, 0.68);
  border-radius: 999px;
  backdrop-filter: blur(5px);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: none;
}

.visit-section {
  padding-top: 0;
  background: var(--paper-deep);
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 9vw, 125px);
  padding: clamp(37px, 6vw, 75px);
  color: var(--white);
  background: var(--orange);
  border-radius: 24px;
  overflow: hidden;
}

.visit-card::before {
  position: absolute;
  content: "";
}

.eyebrow-light {
  color: var(--yellow);
}

.visit-copy h2 {
  color: var(--white);
}

.visit-copy h2 em {
  color: var(--yellow);
}

.visit-copy > p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: var(--yellow);
}

.button-light .button-arrow {
  color: var(--white);
  background: var(--orange);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-outline-light .button-arrow {
  color: var(--orange);
  background: var(--yellow);
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
  gap: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: clamp(22px, 5vw, 65px);
}

.detail-block {
  min-height: 128px;
  padding: 12px 0 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-label {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
}

.detail-block address,
.detail-block p,
.detail-block a {
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.78rem;
  line-height: 1.65;
}

.detail-block a {
  display: block;
  width: fit-content;
}

.detail-block a:hover,
.social-links a:hover {
  color: var(--yellow);
}

.social-block {
  border-bottom: 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.social-links a {
  font-weight: 700;
}

.legal-section {
  padding-top: clamp(80px, 10vw, 130px);
  background: var(--paper);
}

.legal-heading {
  max-width: 480px;
}

.legal-grid {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.legal-grid details {
  border-bottom: 1px solid var(--line);
}

.legal-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.48rem;
  list-style: none;
}

.legal-grid summary::-webkit-details-marker {
  display: none;
}

.summary-mark {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.legal-grid details[open] .summary-mark {
  transform: rotate(45deg);
}

.legal-content {
  max-width: 680px;
  padding: 0 42px 28px 0;
  color: var(--muted);
  font-size: 0.81rem;
}

.legal-content p + p,
.legal-content address + p {
  margin-top: 13px;
}

.legal-content a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 0 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-footer .brand-location,
.footer-top p {
  color: rgba(255, 255, 255, 0.55);
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--yellow);
}

.footer-top p {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.footer-back-top {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0 27px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-share-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.lightbox {
  width: min(92vw, 920px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(28, 27, 25, 0.88);
  backdrop-filter: blur(5px);
}

.lightbox-inner {
  position: relative;
}

.lightbox img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(28, 27, 25, 0.62);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal-delay-one {
  transition-delay: 100ms;
}

.reveal-delay-two {
  transition-delay: 200ms;
}

@media (max-width: 960px) {
  .hero-grid {
    gap: 55px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 7vw, 5.5rem);
  }

  .menu-layout {
    grid-template-columns: minmax(0, 1fr) 225px;
  }

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

  .visit-card {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 17px;
    background: rgba(247, 242, 233, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

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

  .main-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero-section {
    padding-top: 65px;
  }

  .section-space {
    padding-block: 72px;
  }

  .hero-grid,
  .story-grid,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 69px;
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero-text {
    font-size: 0.97rem;
  }

  .hero-meta {
    margin-top: 33px;
  }

  .hero-image-frame {
    aspect-ratio: 1.02 / 1;
    border-radius: 42% 42% 11px 42%;
  }

  .hero-badge {
    bottom: -29px;
    left: -4px;
    width: 119px;
    height: 119px;
    padding: 15px;
  }

  .hero-caption {
    padding-left: 125px;
    font-size: 0.63rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item,
  .benefit-item:first-child {
    min-height: 75px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .story-grid {
    gap: 62px;
  }

  .local-seo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .image-note {
    right: 10px;
    bottom: 23px;
  }

  .section-heading {
    display: block;
  }

  .section-intro {
    margin-top: 25px;
  }

  .menu-toolbar {
    margin-top: 34px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .menu-toolbar::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .menu-layout {
    display: block;
  }

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

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

  .menu-card-image {
    min-height: 184px;
  }

  .menu-card-image {
    min-height: 190px;
  }

  .menu-card-body {
    min-width: 0;
  }

  .menu-card-description {
    overflow-wrap: anywhere;
  }

  .menu-aside {
    position: static;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    margin-top: 20px;
  }

  .aside-image-wrap {
    aspect-ratio: auto;
  }

  .aside-content {
    padding: 17px;
  }

  .aside-content h3 {
    font-size: 1.45rem;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .step-card {
    min-height: 0;
    padding: 22px 0 25px;
  }

  .step-card h3 {
    margin-top: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 190px);
    gap: 8px;
    margin-top: 40px;
  }

  .gallery-item-large {
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .visit-card {
    gap: 43px;
    padding: 36px 25px;
    border-radius: 18px;
  }

  .visit-details {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .detail-block {
    min-height: auto;
    padding-block: 17px;
  }

  .detail-block a {
    overflow-wrap: anywhere;
  }

  .legal-grid {
    margin-top: 38px;
  }

  .legal-content {
    padding-right: 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .footer-top {
    padding-top: 34px;
  }

  .footer-links {
    gap: 12px 17px;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 0.81rem;
  }

  .brand-location {
    font-size: 0.5rem;
  }

  .header-actions {
    gap: 7px;
  }

  .language-button {
    min-width: 27px;
    padding-inline: 4px;
  }

  .hero-copy h1 {
    font-size: 3.3rem;
  }

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

  .button {
    justify-content: space-between;
  }

  .menu-card {
    grid-template-columns: 105px minmax(0, 1fr);
    min-height: 190px;
  }

  .menu-card-body {
    padding: 14px;
  }

  .menu-card h3 {
    font-size: 1.15rem;
  }

  .menu-card-description {
    font-size: 0.7rem;
  }

  .menu-aside {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .gallery-grid {
    grid-template-rows: repeat(3, 155px);
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .social-block {
    border-bottom: 0;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-name {
    font-size: 0.72rem;
  }

  .brand-location {
    font-size: 0.45rem;
  }

  .header-actions {
    gap: 4px;
  }

  .language-switch {
    padding: 2px;
  }

  .language-button {
    min-width: 25px;
    min-height: 29px;
    padding-inline: 3px;
    font-size: 0.56rem;
  }

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-caption {
    padding-left: 106px;
    font-size: 0.57rem;
  }

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

  .menu-card-image {
    min-height: 180px;
  }

  .menu-card-body {
    padding: 12px;
  }

  .menu-card h3 {
    font-size: 1.08rem;
  }

  .gallery-label {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 7px 9px;
    font-size: 0.57rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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