    @font-face {
      font-family: 'bauhouse_akutangulo';
      src: url("../../../../assets/fonts/bauhouse_akutangulo.woff2") format("woff2");
      font-display: swap;
    }

    :root {
      --ink: #241a1d;
      --ink-soft: #5f5357;
      --paper: #f3ecdf;
      --paper-light: #fbf7ef;
      --wine: #5b1737;
      --violet: #744276;
      --gold: #c89a48;
      --line: rgba(36, 26, 29, .17);
      --serif: 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: 5rem;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--sans);
      line-height: 1.6;
      overflow-x: clip;
      -webkit-font-smoothing: antialiased;
    }

    body.nav-open {
      overflow: hidden;
    }

    a {
      color: inherit;
    }

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

    button {
      font: inherit;
    }

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

    .sr-only {
      position: absolute !important;
      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: .75rem;
      left: .75rem;
      z-index: 1000;
      padding: .7rem 1rem;
      color: white;
      background: var(--wine);
      transform: translateY(-150%);
    }

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

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      min-height: 5rem;
      padding: .7rem clamp(1rem, 4vw, 4.5rem);
      color: white;
      border-bottom: 1px solid rgba(255, 255, 255, .15);
      transition: background .25s ease, min-height .25s ease, box-shadow .25s ease;
    }

    .site-header.is-scrolled {
      min-height: 4.2rem;
      color: var(--ink);
      background: rgba(243, 236, 223, .94);
      border-color: var(--line);
      box-shadow: 0 10px 35px rgba(36, 26, 29, .09);
      backdrop-filter: blur(14px);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: .7rem;
      color: inherit;
      text-decoration: none;
    }

    .brand img {
      width: 2.8rem;
      height: 3.25rem;
      object-fit: contain;
    }

    .brand span {
      font-family: var(--serif);
      font-size: 1.15rem;
      letter-spacing: .03em;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: clamp(1rem, 2.6vw, 2.5rem);
    }

    .main-nav a {
      position: relative;
      font-size: .77rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-decoration: none;
      text-transform: uppercase;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -.4rem;
      left: 0;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transition: transform .2s ease;
    }

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

    .nav-toggle {
      display: none;
      width: 2.8rem;
      height: 2.8rem;
      padding: .65rem;
      color: inherit;
      background: transparent;
      border: 0;
    }

    .nav-toggle>span:not(.sr-only) {
      display: block;
      width: 100%;
      height: 1px;
      margin: .35rem 0;
      background: currentColor;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      display: grid;
      align-items: center;
      color: white;
      background: #1d1215;
    }

    .pano-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      cursor: grab;
      touch-action: none;
      background: #1d1215 url("../../images/panoramas/DSC_0061%20Panorama.jpg") center / cover no-repeat;
    }

    .pano-canvas:active {
      cursor: grabbing;
    }

    .pano-canvas:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: -5px;
    }

    .hero-shade {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(20, 10, 14, .84) 0%, rgba(20, 10, 14, .54) 40%, rgba(20, 10, 14, .08) 72%), linear-gradient(0deg, rgba(20, 10, 14, .75) 0%, transparent 43%, rgba(20, 10, 14, .25) 100%);
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      width: min(49rem, 82vw);
      min-width: 0;
      padding: 8.5rem 0 10rem clamp(1.25rem, 8vw, 9rem);
      pointer-events: none;
    }

    .hero-copy>* {
      pointer-events: auto;
    }

    .eyebrow {
      margin: 0 0 1rem;
      color: var(--gold);
      font-size: .73rem;
      font-weight: 800;
      letter-spacing: .19em;
      text-transform: uppercase;
    }

    .hero h1,
    .section h2 {
      margin: 0;
      font-family: var(--serif);
      font-weight: 400;
      line-height: .94;
      letter-spacing: -.045em;
    }

    .hero h1 {
      max-width: 12ch;
      font-size: clamp(3.2rem, 7.2vw, 7.4rem);
      text-wrap: balance;
    }

    .hero h1 em {
      color: #d5a7d3;
      font-weight: 400;
    }

    .hero-lead {
      max-width: 34rem;
      margin: 1.75rem 0 0;
      color: rgba(255, 255, 255, .82);
      font-family: var(--serif);
      font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      margin-top: 2.2rem;
    }

    .button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 3.2rem;
      padding: .8rem 1.35rem;
      border: 1px solid rgba(255, 255, 255, .4);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .09em;
      text-decoration: none;
      text-transform: uppercase;
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      color: var(--ink);
      background: var(--paper-light);
      border-color: var(--paper-light);
    }

    .button-ghost {
      color: white;
      background: rgba(255, 255, 255, .04);
      backdrop-filter: blur(8px);
    }

    .pano-controls {
      position: absolute;
      right: clamp(1rem, 4vw, 4.5rem);
      bottom: 2.5rem;
      left: clamp(1rem, 4vw, 4.5rem);
      z-index: 3;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: end;
      gap: 1rem;
      pointer-events: none;
    }

    .pano-caption {
      display: flex;
      flex-direction: column;
      line-height: 1.35;
    }

    .pano-caption strong {
      font-family: var(--serif);
      font-size: 1.25rem;
      font-weight: 400;
    }

    .pano-caption>span:last-child {
      color: rgba(255, 255, 255, .58);
      font-size: .72rem;
      letter-spacing: .12em;
    }

    .pano-kicker {
      color: var(--gold);
      font-size: .66rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .pano-actions {
      display: flex;
      align-items: center;
      gap: .85rem;
      pointer-events: auto;
    }

    .pano-actions>button {
      width: 2.65rem;
      height: 2.65rem;
      padding: 0;
      color: white;
      background: rgba(25, 14, 18, .54);
      border: 1px solid rgba(255, 255, 255, .36);
      border-radius: 50%;
      cursor: pointer;
      backdrop-filter: blur(8px);
    }

    .pano-actions>button:hover {
      color: var(--ink);
      background: white;
    }

    .pano-dots {
      display: flex;
      gap: .42rem;
    }

    .pano-dots button {
      width: .45rem;
      height: .45rem;
      padding: 0;
      background: rgba(255, 255, 255, .43);
      border: 0;
      border-radius: 50%;
      cursor: pointer;
    }

    .pano-dots button.is-active {
      background: var(--gold);
      transform: scale(1.55);
    }

    .pano-hint {
      justify-self: end;
      margin: 0 0 .5rem;
      color: rgba(255, 255, 255, .67);
      font-size: .75rem;
    }

    .archive-notice {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.5rem;
      align-items: center;
      padding: 1.35rem clamp(1.25rem, 8vw, 9rem);
      color: #f8eadc;
      background: var(--wine);
    }

    .archive-notice__date {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 1;
      opacity: .38;
    }

    .archive-notice p {
      max-width: 65rem;
      margin: 0;
      font-size: .9rem;
    }

    .section {
      padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 8vw, 9rem);
    }

    .section h2 {
      font-size: clamp(3rem, 6vw, 6.6rem);
    }

    .section-heading {
      max-width: 46rem;
    }

    .section-heading--wide {
      max-width: 58rem;
      margin-bottom: 3.5rem;
    }

    .section-heading--wide>p:last-child {
      max-width: 43rem;
      margin-top: 1.5rem;
      color: var(--ink-soft);
    }

    .story {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
      gap: clamp(3rem, 10vw, 10rem);
      background: var(--paper-light);
    }

    .story-copy {
      align-self: end;
      max-width: 42rem;
    }

    .story-copy>p {
      color: var(--ink-soft);
    }

    .story-copy .story-intro {
      color: var(--violet);
      font-family: var(--serif);
      font-size: clamp(1.6rem, 2.6vw, 2.5rem);
      line-height: 1.2;
    }

    .memory-numbers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin: 3rem 0 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--line);
    }

    .memory-numbers div {
      min-width: 0;
    }

    .memory-numbers dt {
      color: var(--wine);
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 1;
    }

    .memory-numbers dd {
      margin: .45rem 0 0;
      color: var(--ink-soft);
      font-size: .72rem;
      line-height: 1.3;
    }

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

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

    .menu-card {
      padding: clamp(1.5rem, 3vw, 3rem);
      background: rgba(255, 255, 255, .45);
      border: 1px solid var(--line);
    }

    .menu-card--accent {
      color: white;
      background: var(--wine);
      border-color: var(--wine);
    }

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

    .menu-card--dark {
      color: var(--paper-light);
      background: var(--ink);
    }

    .menu-card header {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1rem;
      align-items: baseline;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid currentColor;
    }

    .menu-card header>span,
    .menu-card header small {
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .11em;
      opacity: .55;
      text-transform: uppercase;
    }

    .menu-card h3 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(1.65rem, 3vw, 2.7rem);
      font-weight: 400;
      line-height: 1;
    }

    .price-list {
      display: grid;
      gap: .72rem;
      margin: 1.4rem 0 0;
      padding: 0;
      list-style: none;
    }

    .price-list li {
      display: flex;
      gap: 1rem;
      justify-content: space-between;
      align-items: baseline;
    }

    .price-list li::after {
      content: "";
      order: 2;
      flex: 1;
      min-width: 1rem;
      border-bottom: 1px dotted currentColor;
      opacity: .25;
    }

    .price-list span {
      order: 1;
    }

    .price-list strong {
      order: 3;
      flex: none;
      color: var(--violet);
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 700;
    }

    .menu-card--accent .price-list strong {
      color: #e3bade;
    }

    .menu-card--dark .price-list strong {
      color: var(--gold);
    }

    .price-list--columns {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 3rem;
    }

    .menu-note {
      margin: 1.5rem 0 0;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, .24);
      color: rgba(255, 255, 255, .7);
      font-size: .8rem;
    }

    .offers {
      display: grid;
      grid-template-columns: minmax(18rem, .88fr) minmax(20rem, 1.12fr);
      gap: clamp(3rem, 8vw, 8rem);
      color: var(--paper-light);
      background: #1c1517;
    }

    .offer-poster {
      align-self: center;
      transform: rotate(-1.5deg);
    }

    .offer-poster img {
      width: 100%;
      box-shadow: 0 2rem 5rem rgba(0, 0, 0, .38);
    }

    .offer-poster span {
      display: block;
      margin-top: .8rem;
      color: rgba(255, 255, 255, .46);
      font-size: .68rem;
      letter-spacing: .12em;
      text-align: center;
      text-transform: uppercase;
    }

    .offer-copy h2 {
      max-width: 9ch;
    }

    .offer-block {
      position: relative;
      margin-top: 2.5rem;
      padding: 0 7rem 1.5rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .offer-block span {
      color: var(--gold);
      font-size: .67rem;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .offer-block h3 {
      margin: .35rem 0 0;
      font-family: var(--serif);
      font-size: clamp(1.05rem, 1.8vw, 1.45rem);
      font-weight: 400;
      line-height: 1.35;
    }

    .offer-block strong {
      position: absolute;
      right: 0;
      bottom: 1.1rem;
      color: #ddb1d8;
      font-family: var(--serif);
      font-size: 2.25rem;
    }

    .farewell {
      display: grid;
      grid-template-columns: minmax(12rem, .55fr) minmax(20rem, 1.45fr);
      gap: clamp(3rem, 10vw, 10rem);
      align-items: center;
      background: var(--paper-light);
    }

    .farewell-logo {
      width: min(100%, 27rem);
      margin: auto;
      filter: drop-shadow(0 2rem 2rem rgba(36, 26, 29, .13));
    }

    .farewell-copy {
      max-width: 50rem;
    }

    .farewell-copy p:not(.eyebrow) {
      max-width: 42rem;
      color: var(--ink-soft);
    }

    .archive-contact {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      max-width: 48rem;
      margin: 2rem 0 0;
      padding: 1.5rem 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .archive-contact dt {
      color: var(--ink-soft);
      font-size: .64rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .archive-contact dd {
      margin: .35rem 0 0;
      font-family: var(--serif);
      font-size: .96rem;
      line-height: 1.3;
      overflow-wrap: anywhere;
    }

    .text-link {
      display: inline-flex;
      gap: .6rem;
      margin-top: 1.5rem;
      padding-bottom: .2rem;
      color: var(--wine);
      border-bottom: 1px solid;
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .11em;
      text-decoration: none;
    }

    .text-link span {
      transition: transform .2s ease;
    }

    .text-link:hover span {
      transform: translateY(-3px);
    }

    .portfolio-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 2rem;
      align-items: center;
    }

    .site-footer {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 2rem clamp(1.25rem, 8vw, 9rem);
      color: rgba(255, 255, 255, .55);
      background: #130d0f;
      font-size: .72rem;
    }

    .site-footer p {
      margin: 0;
    }

    .site-footer a {
      color: white;
    }

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

    @media (max-width: 860px) {
      .nav-toggle {
        display: block;
        flex: 0 0 2.8rem;
        z-index: 2;
      }

      .main-nav {
        position: fixed;
        inset: 0;
        display: grid;
        place-content: center;
        gap: 1.5rem;
        color: var(--paper-light);
        background: rgba(28, 21, 23, .98);
        visibility: hidden;
        opacity: 0;
        transition: opacity .2s ease, visibility .2s ease;
      }

      .main-nav.is-open {
        visibility: visible;
        opacity: 1;
      }

      .main-nav a {
        font-family: var(--serif);
        font-size: clamp(2rem, 8vw, 4rem);
        font-weight: 400;
        letter-spacing: -.03em;
        text-align: center;
        text-transform: none;
      }

      .site-header:has(.main-nav.is-open) {
        color: white;
      }

      .story,
      .offers,
      .farewell {
        grid-template-columns: 1fr;
      }

      .story-copy {
        max-width: none;
      }

      .offer-poster {
        max-width: 37rem;
        margin: auto;
      }

      .farewell-logo {
        max-height: 27rem;
      }
    }

    @media (max-width: 640px) {
      .hero-copy {
        width: 100%;
        padding: 7.5rem 1.25rem 11.5rem;
      }

      .hero h1 {
        max-width: 100%;
        font-size: clamp(2.9rem, 12.5vw, 4rem);
      }

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

      .hero-actions .button {
        width: min(100%, 18rem);
      }

      .hero-lead {
        max-width: 26rem;
      }

      .pano-controls {
        grid-template-columns: 1fr auto;
        align-items: center;
        bottom: 1.2rem;
      }

      .pano-actions {
        grid-column: 2;
        grid-row: 1;
      }

      .pano-dots {
        display: none;
      }

      .pano-hint {
        grid-column: 1 / -1;
        justify-self: start;
      }

      .archive-notice {
        grid-template-columns: 1fr;
        gap: .5rem;
      }

      .archive-notice__date {
        font-size: 2rem;
      }

      .section {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
      }

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

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

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

      .menu-card header small {
        grid-column: 2;
      }

      .price-list li {
        align-items: flex-end;
      }

      .price-list span {
        max-width: 64%;
      }

      .memory-numbers {
        gap: .55rem;
      }

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

      .offer-block {
        padding-right: 5rem;
      }

      .offer-block strong {
        font-size: 1.8rem;
      }

      .site-footer {
        flex-direction: column;
      }

      .portfolio-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
      }

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

    .akutangulo {
      font-family: bauhouse_akutangulo;
      text-decoration: none;
      color: #9300d3;
      font-size: 1.5rem;
    }