:root {
      --navy: #071528;
      --navy-2: #0c1a2e;
      --blue: #10253f;
      --cream: #faf7f2;
      --cream-2: #f4eadb;
      --paper: #fffdf7;
      --parchment: #f8f5ef;
      --sky-section: #dcecf5;
      --stone: #6b6560;
      --stone-light: #6b6560;
      --muted: #65717f;
      --line: rgba(12, 26, 46, .11);
      --white-line: rgba(255, 255, 255, .18);
      --coral: #ef6b48;
      --coral-2: #e8543a;
      --coral-accessible: #b63f2b;
      --gold: #d9b66f;
      --green: #7ccca4;
      --shadow: 0 28px 70px rgba(7, 21, 40, .16);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color-scheme: light;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      max-width: 100%;
    }

    body {
      margin: 0;
      background: var(--cream);
      color: var(--navy-2);
      font-family: var(--sans);
      overflow-x: hidden;
      max-width: 100%;
    }

    .skip-link {
      position: absolute;
      left: 12px;
      top: -48px;
      z-index: 1000;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--navy);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
    }

    .skip-link:focus,
    .skip-link:focus-visible {
      top: 12px;
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

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

    a:focus-visible,
    button:focus-visible,
    .btn:focus-visible,
    .menu-toggle:focus-visible,
    .fan-blade:focus-visible,
    .gallery-item:focus-visible,
    .lightbox-close:focus-visible,
    .lightbox-nav:focus-visible,
    .back-to-top:focus-visible,
    .menu-category__title:focus-visible,
    main:focus-visible {
      outline: 2px solid var(--coral);
      outline-offset: 3px;
    }

    body.menu-open {
      overflow: hidden;
    }

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

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

    button,
    select,
    input {
      font: inherit;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      max-width: 100%;
      z-index: 50;
      color: #fff;
      background: rgba(7, 21, 40, .94);
      box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
      backdrop-filter: blur(16px);
      transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
    }

    .site-header.scrolled {
      background: rgba(7, 21, 40, .96);
      box-shadow: 0 16px 50px rgba(0, 0, 0, .28);
    }

    .header-inner {
      width: min(1320px, calc(100% - 56px));
      min-height: 74px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      min-width: 245px;
      font-weight: 800;
      letter-spacing: .02em;
      line-height: 1;
    }

    .brand-mark {
      width: 48px;
      height: 34px;
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      border: 8px solid transparent;
      transform: rotate(-16deg);
    }

    .brand-mark::before {
      inset: 2px 7px 7px 0;
      border-left-color: #1db1d7;
      border-bottom-color: #1db1d7;
    }

    .brand-mark::after {
      inset: 10px 1px 3px 15px;
      border-top-color: var(--coral);
      border-right-color: var(--coral);
    }

    .brand-text {
      display: grid;
      gap: 3px;
    }

    .brand-title {
      font-size: 16px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-subtitle {
      font-size: 9px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .68);
    }

    .main-nav {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: clamp(8px, 1.4vw, 18px);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .main-nav a {
      color: #f5f7fa;
      padding: 9px 16px;
      border-radius: 12px;
      transition: background .2s ease, color .2s ease;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible {
      color: #ffffff;
      background: rgba(255, 255, 255, .2);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-left: 8px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 22px;
      border-radius: 10px;
      border: 1px solid transparent;
      background: var(--coral-accessible);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .01em;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(232, 84, 58, .26);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      background: #a73828;
      box-shadow: 0 18px 40px rgba(232, 84, 58, .34);
    }

    .btn.ghost {
      background: rgba(255, 255, 255, .06);
      border-color: rgba(255, 255, 255, .25);
      box-shadow: none;
    }

    .btn.ghost:hover {
      background: rgba(255, 255, 255, .14);
    }

    .menu-toggle {
      display: none;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      width: 46px;
      height: 46px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, .4);
      border-radius: 999px;
      background: rgba(7, 21, 40, .72);
      color: #fff;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .28);
      -webkit-appearance: none;
      appearance: none;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 0;
      flex-shrink: 0;
      background: #fff;
      transition: transform .25s ease, opacity .25s ease;
    }

    .menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

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

    .menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-drawer {
      position: fixed;
      inset: 0;
      z-index: 45;
      display: flex;
      flex-direction: column;
      padding: 108px 28px 36px;
      background:
        radial-gradient(ellipse at 80% 0%, rgba(239, 107, 72, .14), transparent 42%),
        linear-gradient(180deg, rgba(7, 21, 40, .98), rgba(10, 24, 42, .99));
      color: #fff;
      transform: translateY(-100%);
      transition: transform .38s cubic-bezier(.22, 1, .36, 1);
    }

    .menu-open .mobile-drawer {
      transform: translateY(0);
    }

    .mobile-drawer__nav {
      display: grid;
      gap: 0;
      margin: 8px 0 0;
    }

    .mobile-drawer__nav a {
      display: flex;
      align-items: baseline;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .92);
      transition: color .2s ease, padding-left .25s ease, border-color .2s ease;
    }

    .mobile-drawer__nav a:first-child {
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .mobile-drawer__index {
      flex: 0 0 auto;
      min-width: 1.6em;
      color: var(--coral);
      font-family: var(--serif);
      font-size: 13px;
      font-style: italic;
      font-weight: 500;
      letter-spacing: .04em;
      opacity: .85;
    }

    .mobile-drawer__label {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .mobile-drawer__nav a:hover,
    .mobile-drawer__nav a:focus-visible {
      color: #fff;
      padding-left: 6px;
      border-bottom-color: rgba(239, 107, 72, .45);
    }

    .mobile-drawer__nav a:focus-visible {
      outline: 2px solid var(--coral);
      outline-offset: 4px;
    }

    .mobile-drawer__nav a:hover .mobile-drawer__index,
    .mobile-drawer__nav a:focus-visible .mobile-drawer__index {
      opacity: 1;
    }

    .mobile-drawer .drawer-actions {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

    .mobile-drawer .drawer-actions .btn {
      min-height: 48px;
      border-radius: 12px;
      letter-spacing: .04em;
    }

    .mobile-drawer__tagline {
      margin: auto 0 0;
      padding-top: 28px;
      color: rgba(255, 255, 255, .42);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      text-align: center;
    }

    .back-to-top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 55;
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(12, 26, 46, .12);
      border-radius: 50%;
      background: #fff;
      color: var(--navy);
      box-shadow: 0 12px 32px rgba(7, 21, 40, .14);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease, border-color .2s ease;
    }

    .back-to-top svg {
      width: 20px;
      height: 20px;
    }

    .back-to-top:hover {
      background: var(--coral);
      border-color: var(--coral);
      color: #fff;
    }

    .back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: none;
    }

    .hero {
      min-height: 100vh;
      width: 100%;
      max-width: 100%;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 170px 0 96px;
      color: #fff;
      background-color: var(--navy);
      overflow: hidden;
      isolation: isolate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(
          to bottom,
          rgba(7, 21, 40, .78) 0%,
          rgba(7, 21, 40, .55) 10%,
          rgba(7, 21, 40, .22) 22%,
          transparent 38%,
          rgba(7, 21, 40, .28) 68%,
          rgba(7, 21, 40, .82) 100%
        );
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -4%;
      z-index: -3;
      background-image: url("../images/hero-home-2026.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transform: scale(1.04);
      animation: slowZoom 18s ease-in-out infinite alternate;
      will-change: transform;
    }

    @keyframes slowZoom {
      from {
        transform: scale(1.04) translate3d(0, 0, 0);
      }
      to {
        transform: scale(1.1) translate3d(-1.4%, -1%, 0);
      }
    }

    .hero-content {
      width: min(1160px, calc(100% - 64px));
      margin: 0 auto;
      position: relative;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, .72);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .23em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 36px;
      height: 1px;
      background: currentColor;
    }

    .hero h1 {
      max-width: 740px;
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(62px, 8vw, 112px);
      line-height: .9;
      font-weight: 700;
      letter-spacing: -.045em;
      text-wrap: balance;
    }

    .hero h1 em,
    .section-title em {
      color: var(--coral);
      font-style: italic;
      font-weight: 500;
    }

    .hero-quote-panel {
      width: min(700px, 62vw);
      margin-top: 48px;
      margin-left: auto;
      margin-right: auto;
      padding: 20px 36px;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 26px;
      background: rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .82);
      box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
      backdrop-filter: blur(18px);
    }

    .hero-quote-panel p {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(21px, 1.9vw, 27px);
      font-weight: 500;
      font-style: italic;
      line-height: 1.15;
      white-space: nowrap;
    }

    .stats-ribbon {
      position: relative;
      z-index: 2;
      margin-top: -56px;
    }

    .stats-grid {
      width: min(980px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border-radius: 24px;
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .stat {
      padding: 30px;
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      font-family: var(--serif);
      font-size: clamp(36px, 4.2vw, 52px);
      line-height: 1;
      letter-spacing: -.02em;
      color: var(--navy);
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    section {
      position: relative;
      padding: 110px 0;
      scroll-margin-top: 88px;
    }

    .section-kicker {
      margin: 0 0 14px;
      color: var(--coral);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(46px, 6vw, 84px);
      line-height: .92;
      font-weight: 700;
      letter-spacing: -.04em;
      color: var(--navy);
      text-wrap: balance;
    }

    .lead {
      margin: 24px 0 0;
      color: #586272;
      font-size: 17px;
      line-height: 1.85;
    }

    /* Keep the brand accent while providing WCAG AA contrast on light surfaces. */
    .about .section-kicker,
    .full-menu-section .section-kicker,
    .menu-section .section-kicker,
    .locations .section-kicker,
    .cta .section-kicker,
    .about .section-title em,
    .full-menu-section .section-title em,
    .menu-section .section-title em,
    .locations .section-title em,
    .cta .section-title em,
    .cta-banner__phone a {
      color: var(--coral-accessible);
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
      gap: 64px;
      align-items: center;
    }

    .image-stack {
      position: relative;
      min-height: 420px;
    }

    .about-photo {
      position: absolute;
      inset: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(7, 21, 40, .12);
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      transition: transform .8s ease;
    }

    .image-stack:hover img {
      transform: scale(1.1);
    }

    .crafted-badge {
      position: absolute;
      left: 24px;
      bottom: 22px;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 8px;
      background: rgba(7, 21, 40, .88);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
    }

    .crafted-badge span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--coral);
    }

    .about-copy {
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .about-copy::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -20px;
      z-index: -1;
      width: min(340px, 72%);
      height: 340px;
      background: url("../images/deco-2.png") center / contain no-repeat;
      opacity: .22;
      transform: rotate(-10deg);
      pointer-events: none;
    }

    .about-copy .section-kicker {
      margin-bottom: 18px;
      font-size: 10px;
      letter-spacing: .22em;
    }

    .about-copy .section-title {
      max-width: 560px;
      font-size: clamp(42px, 4.5vw, 60px);
      line-height: .96;
      letter-spacing: -.035em;
    }

    .about-copy .section-title::after {
      content: "";
      display: block;
      width: 56px;
      height: 2px;
      margin-top: 22px;
      background: var(--coral);
    }

    .about-copy .lead {
      max-width: 620px;
      margin-top: 38px;
      font-size: 14px;
      line-height: 1.9;
    }

    .about-copy .lead + .lead {
      margin-top: 28px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 34px;
      color: var(--navy);
      font-weight: 900;
    }

    .text-link::after {
      content: "";
      width: 46px;
      height: 1px;
      background: var(--coral);
      transition: width .2s ease;
    }

    .text-link:hover::after {
      width: 70px;
    }

    .ocean {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      color: #fff;
    }

    .ocean::before,
    .ocean::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      opacity: .16;
      background-image: url("../images/deco-1.png");
      background-size: contain;
      animation: float 9s ease-in-out infinite;
      pointer-events: none;
    }

    .ocean::before {
      top: -150px;
      left: -120px;
    }

    .ocean::after {
      right: -150px;
      bottom: -180px;
      animation-delay: -3s;
    }

    @keyframes float {
      50% {
        transform: translateY(24px) rotate(8deg);
      }
    }

    .ocean-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(220px, .42fr) minmax(0, 1.58fr);
      gap: 42px;
      align-items: center;
    }

    .ocean-copy {
      max-width: 360px;
    }

    .ocean .section-title {
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.02;
    }

    .ocean .section-title,
    .ocean .lead {
      color: #fff;
    }

    .ocean .lead {
      margin-top: 18px;
      color: rgba(255, 255, 255, .72);
      font-size: 15px;
      line-height: 1.75;
    }

    .ocean-menu-link {
      display: inline-flex;
      margin-top: 28px;
      color: #fff;
    }

    .menu-fan {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
      height: min(560px, 72vh);
      min-height: 420px;
    }

    .fan-blade {
      position: relative;
      flex: 1 1 0;
      min-height: 0;
      width: 100%;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 16px;
      padding: 0;
      background: #0a1628;
      color: #fff;
      cursor: pointer;
      text-align: left;
      transition: flex .45s cubic-bezier(.22, 1, .36, 1), border-color .25s ease;
    }

    .menu-fan:not(:hover) .fan-blade.is-active,
    .fan-blade:hover {
      flex: 5.4 1 0;
      border-color: rgba(255, 255, 255, .4);
    }

    .fan-blade img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .28;
      transform: scale(1.06);
      transition: opacity .35s ease, transform .7s ease;
    }

    .menu-fan:not(:hover) .fan-blade.is-active img,
    .fan-blade:hover img {
      opacity: 1;
      transform: scale(1);
    }

    .fan-blade::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(7, 21, 40, .72) 0%, rgba(7, 21, 40, .32) 45%, rgba(7, 21, 40, .5) 100%);
      pointer-events: none;
      transition: background .35s ease;
    }

    .menu-fan:not(:hover) .fan-blade.is-active::after,
    .fan-blade:hover::after {
      background: linear-gradient(180deg, rgba(7, 21, 40, .08) 18%, rgba(7, 21, 40, .78) 100%);
    }

    .fan-blade span {
      position: absolute;
      left: 18px;
      top: 50%;
      z-index: 2;
      max-width: calc(100% - 36px);
      font-family: var(--serif);
      font-size: clamp(13px, 1.2vw, 17px);
      line-height: 1.15;
      letter-spacing: .03em;
      white-space: normal;
      writing-mode: horizontal-tb;
      transform: translateY(-50%);
      opacity: .92;
      transition: opacity .3s ease, transform .3s ease, left .3s ease, top .3s ease, bottom .3s ease, font-size .3s ease;
      text-shadow: 0 8px 24px rgba(0, 0, 0, .45);
      pointer-events: none;
    }

    .menu-fan:not(:hover) .fan-blade.is-active span,
    .fan-blade:hover span {
      left: 22px;
      top: auto;
      bottom: 20px;
      font-size: clamp(22px, 2.2vw, 34px);
      opacity: 1;
      transform: none;
    }

    .menu-section {
      background: linear-gradient(180deg, var(--cream), #fffdf8);
      overflow: hidden;
    }

    .resy-book {
      padding: 28px 0 0;
      background: linear-gradient(180deg, #f3ebe0 0%, #f3ebe0 100%);
      text-align: center;
      border-top: 1px solid rgba(12, 26, 46, .06);
    }

    .resy-book__inner {
      display: flex;
      justify-content: center;
    }

    .resy-book .btn {
      min-width: 168px;
    }

    .order-online {
      padding: 28px 0 60px;
      background:
        linear-gradient(180deg, #f3ebe0 0%, var(--cream) 100%);
      color: var(--navy);
      border-bottom: 1px solid rgba(12, 26, 46, .06);
    }

    .order-online__inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .order-online .section-kicker {
      color: var(--coral-accessible);
    }

    .order-online .section-title {
      font-size: clamp(36px, 4.5vw, 56px);
    }

    .order-online .section-title em {
      color: var(--coral-accessible);
    }

    .order-online__lead {
      margin: 14px auto 0;
      max-width: none;
      color: #586272;
      font-size: 16px;
      line-height: 1.65;
      white-space: nowrap;
    }

    .order-online__links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .order-online__btn {
      min-width: 148px;
    }

    .order-online__reserve {
      margin: 22px 0 0;
      color: var(--stone);
      font-size: 14px;
      line-height: 1.55;
    }

    .order-online__reserve a {
      color: var(--navy);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .order-online__reserve a:hover {
      color: var(--coral-accessible);
    }

    .full-menu-section {
      padding: 88px 0 84px;
      background: linear-gradient(180deg, var(--cream) 0%, #fffdf8 55%, var(--parchment) 100%);
      color: var(--navy);
    }

    .full-menu-intro {
      max-width: 760px;
      margin: 0 auto 48px;
      text-align: center;
    }

    .full-menu-intro .section-title {
      font-size: clamp(42px, 5vw, 68px);
    }

    .full-menu-intro .lead {
      margin-top: 18px;
      color: #586272;
      font-size: 16px;
      line-height: 1.7;
    }

    .full-menu-note {
      margin: 14px 0 0;
      color: var(--stone);
      font-size: 13px;
      line-height: 1.55;
    }

    .full-menu-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 26px;
    }

    .full-menu-actions__ghost {
      background: transparent;
      border-color: rgba(12, 26, 46, .18);
      color: var(--navy);
      box-shadow: none;
    }

    .full-menu-actions__ghost:hover {
      background: rgba(12, 26, 46, .06);
      color: var(--navy);
    }

    .menu-dagger {
      color: var(--coral-accessible);
      font-weight: 700;
    }

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

    .menu-category {
      padding: 26px 24px 24px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255, 253, 247, .92);
      scroll-margin-top: 96px;
    }

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

    .menu-category.is-target {
      border-color: rgba(239, 107, 72, .45);
      box-shadow: 0 16px 40px rgba(239, 107, 72, .12);
    }

    .menu-category__title {
      margin: 0 0 14px;
      font-family: var(--serif);
      font-size: clamp(24px, 2.2vw, 30px);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: var(--navy);
    }

    .menu-category__title::after {
      content: "";
      display: block;
      width: 36px;
      height: 2px;
      margin-top: 10px;
      background: var(--coral);
    }

    .menu-category__subtitle {
      margin: 16px 0 8px;
      color: var(--coral-accessible);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .menu-category__note {
      margin: 0 0 10px;
      color: var(--stone);
      font-size: 13px;
      line-height: 1.5;
    }

    .menu-category__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .menu-category__list li {
      color: var(--navy-2);
      font-size: 14px;
      font-weight: 500;
      line-height: 1.45;
    }

    .menu-category__list--columns {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px 18px;
    }

    .pricing-section {
      padding: 88px 0 80px;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(239, 107, 72, .1), transparent 48%),
        linear-gradient(180deg, #0a1830 0%, var(--navy) 55%, #091526 100%);
      color: #fff;
    }

    .pricing-intro {
      max-width: 720px;
      margin: 0 auto 44px;
      text-align: center;
    }

    .pricing-intro .section-kicker {
      color: var(--coral);
    }

    .pricing-intro .section-title {
      color: #fff;
      font-size: clamp(42px, 5vw, 68px);
    }

    .pricing-intro .section-title em {
      color: var(--coral);
    }

    .pricing-menu {
      width: min(780px, 100%);
      margin: 0 auto;
      padding: 28px 28px 32px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .03);
    }

    .pricing-block--dinein {
      padding: 26px 28px 28px;
      border: 1px solid rgba(239, 107, 72, .35);
      background:
        linear-gradient(180deg, rgba(239, 107, 72, .14), rgba(255, 255, 255, .04));
      box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    }

    .pricing-block__eyebrow {
      margin: 0 0 10px;
      color: var(--coral);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .pricing-block__title {
      margin: 0 0 20px;
      font-family: var(--serif);
      font-size: clamp(30px, 3vw, 40px);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: #fff;
    }

    .pricing-block--dinein .pricing-block__title {
      font-size: clamp(34px, 3.4vw, 46px);
    }

    .pricing-block__title::after {
      content: "";
      display: block;
      width: 42px;
      height: 2px;
      margin-top: 12px;
      background: var(--coral);
    }

    .pricing-block--dinein .pricing-block__title::after {
      width: 56px;
      height: 3px;
    }

    .menu-line {
      margin: 0 0 18px;
    }

    .menu-line:last-of-type {
      margin-bottom: 0;
    }

    .menu-line__row {
      display: flex;
      align-items: baseline;
      gap: 10px;
      width: 100%;
    }

    .menu-line__name {
      flex: 0 1 auto;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: .02em;
      color: rgba(255, 255, 255, .94);
      white-space: nowrap;
    }

    .pricing-block--dinein .menu-line__name {
      font-size: 22px;
    }

    .menu-line__dots {
      flex: 1 1 auto;
      min-width: 24px;
      height: 1px;
      margin-bottom: 5px;
      background-image: radial-gradient(circle, rgba(255, 255, 255, .38) 1px, transparent 1.2px);
      background-position: left center;
      background-size: 7px 1px;
      background-repeat: repeat-x;
    }

    .menu-line__price {
      flex: 0 0 auto;
      font-family: var(--serif);
      font-size: clamp(28px, 2.8vw, 36px);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -.02em;
      color: var(--coral);
      white-space: nowrap;
    }

    .pricing-block--dinein .menu-line__price {
      font-size: clamp(32px, 3.2vw, 42px);
    }

    .menu-line__unit {
      margin-left: 4px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .04em;
      color: rgba(255, 255, 255, .55);
    }

    .menu-line__meta {
      margin: 7px 0 0;
      max-width: 92%;
      color: rgba(255, 255, 255, .58);
      font-size: 13px;
      font-weight: 400;
      line-height: 1.55;
    }

    .pricing-highlight {
      margin: 22px 0 0;
      padding: 12px 14px;
      border-left: 3px solid var(--coral);
      background: rgba(239, 107, 72, .12);
      color: rgba(255, 255, 255, .95);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.55;
    }

    .pricing-fineprint {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, .48);
      font-size: 13px;
      font-weight: 400;
      line-height: 1.55;
    }

    .pricing-divider {
      height: 1px;
      margin: 26px 8px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    }

    .pricing-block--takeout {
      padding: 4px 8px 0;
      opacity: .78;
    }

    .pricing-block--takeout .pricing-block__title {
      font-size: clamp(22px, 2.2vw, 28px);
      color: rgba(255, 255, 255, .82);
    }

    .pricing-block--takeout .pricing-block__title::after {
      width: 34px;
      height: 2px;
      background: rgba(255, 255, 255, .35);
    }

    .pricing-block--takeout .menu-line {
      margin: 0 0 12px;
    }

    .pricing-block--takeout .menu-line__name {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255, 255, 255, .72);
    }

    .pricing-block--takeout .menu-line__dots {
      background-image: radial-gradient(circle, rgba(255, 255, 255, .22) 1px, transparent 1.2px);
    }

    .pricing-block--takeout .menu-line__price {
      font-size: clamp(18px, 1.8vw, 22px);
      color: rgba(255, 255, 255, .78);
    }

    .pricing-block--takeout .menu-line__unit {
      color: rgba(255, 255, 255, .4);
    }

    .pricing-block--takeout .pricing-fineprint {
      color: rgba(255, 255, 255, .38);
      font-size: 12px;
    }

    .center {
      max-width: none;
      margin: 0 auto 58px;
      text-align: center;
    }

    .center .lead {
      margin-left: auto;
      margin-right: auto;
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.6;
      white-space: nowrap;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .gallery-item {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      padding: 0;
      overflow: hidden;
      border: 0;
      border-radius: 18px;
      background: var(--navy);
      cursor: pointer;
      box-shadow: 0 12px 32px rgba(7, 21, 40, .08);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.06);
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 72px 72px 48px;
      background: rgba(4, 10, 18, .94);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .lightbox[hidden] {
      display: none;
    }

    body.lightbox-open {
      overflow: hidden;
    }

    body.lightbox-open .site-header,
    body.lightbox-open .back-to-top {
      visibility: hidden;
      pointer-events: none;
    }

    .lightbox-stage {
      position: relative;
      z-index: 1;
      width: min(100%, 980px);
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 0;
    }

    .lightbox-stage img {
      display: block;
      width: 100%;
      max-height: calc(100vh - 160px);
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
      background: #0a1420;
    }

    .lightbox-count {
      position: static;
      margin-top: 14px;
      transform: none;
      color: rgba(255, 255, 255, .88);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .08em;
      text-align: center;
    }

    .lightbox-close,
    .lightbox-nav {
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 50%;
      background: rgba(0, 0, 0, .45);
      color: #fff;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }

    .lightbox-close:hover,
    .lightbox-nav:hover {
      background: rgba(255, 255, 255, .18);
      border-color: rgba(255, 255, 255, .55);
    }

    .lightbox-close {
      position: absolute;
      top: max(16px, env(safe-area-inset-top));
      right: max(16px, env(safe-area-inset-right));
      z-index: 3;
      width: 48px;
      height: 48px;
      font-size: 30px;
      line-height: 1;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 48px;
      height: 48px;
      font-size: 24px;
      font-weight: 700;
      transform: translateY(-50%);
    }

    .lightbox-prev {
      left: max(12px, env(safe-area-inset-left));
    }

    .lightbox-next {
      right: max(12px, env(safe-area-inset-right));
    }

    .experience {
      color: #fff;
      min-height: 780px;
      display: grid;
      align-items: end;
      overflow: hidden;
    }

    .experience::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: url("../images/experience-env9.jpg");
      background-size: cover;
      background-position: center;
    }

    .experience::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(
        180deg,
        rgba(7, 21, 40, .08) 0%,
        rgba(7, 21, 40, .18) 28%,
        rgba(7, 21, 40, .55) 58%,
        rgba(7, 21, 40, .88) 78%,
        rgba(7, 21, 40, .95) 100%
      );
    }

    .experience .section-title {
      display: inline-block;
      margin: 0;
      padding: 8px 16px;
      border-radius: 12px;
      color: #fff;
      background: rgba(7, 21, 40, .82);
      box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
      text-shadow: none;
    }

    .experience .section-title em {
      color: var(--coral-accessible);
      text-shadow: none;
    }

    .experience .lead {
      display: inline-block;
      max-width: none;
      margin-top: 18px;
      padding: 6px 12px;
      border-radius: 10px;
      color: #fff;
      background: rgba(7, 21, 40, .82);
      box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
      text-shadow: none;
      white-space: nowrap;
      font-size: 15px;
      line-height: 1.45;
    }

    .experience .section-kicker {
      display: inline-block;
      margin: 0 0 14px;
      padding: 8px 14px;
      border-radius: 8px;
      color: var(--coral-accessible);
      background: #fff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
    }

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

    .feature-card {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      min-height: 0;
      padding: 24px;
      border: 1px solid var(--white-line);
      border-radius: 26px;
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(14px);
      transition: transform .22s ease, background .22s ease;
    }

    .feature-card:hover {
      transform: translateY(-7px);
      background: rgba(255, 255, 255, .14);
    }

    .feature-card .feature-icon {
      flex: 0 0 52px;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .14);
      color: var(--coral);
    }

    .feature-card .feature-icon svg {
      width: 24px;
      height: 24px;
    }

    .feature-card .feature-body {
      flex: 1;
      min-width: 0;
    }

    .feature-card h3,
    .feature-card h4 {
      margin: 0 0 8px;
      font-size: 18px;
    }

    .feature-card p {
      margin: 0;
      color: rgba(255, 255, 255, .7);
      line-height: 1.55;
      font-size: 14px;
    }

    .locations {
      overflow: visible;
      background: var(--parchment);
      padding-bottom: 0;
    }

    .section-wave {
      position: relative;
      z-index: 3;
      display: block;
      width: 100%;
      line-height: 0;
      margin-top: 48px;
      font-size: 0;
    }

    .section-wave svg {
      display: block;
      width: 100%;
      height: clamp(44px, 5vw, 64px);
    }

    .section-wave .shape-fill {
      fill: var(--sky-section);
    }

    .premium-watermark {
      position: relative;
    }

    .premium-watermark::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      pointer-events: none;
    }

    .premium-watermark--locations::before {
      inset: 0;
      left: 0;
      width: 100%;
      transform: none;
      background-image: url("../images/premium_locations_bg.png");
      background-position: center top;
      background-size: 800px auto;
      background-repeat: repeat;
      opacity: .27;
    }

    .premium-watermark > .container {
      position: relative;
      z-index: 2;
    }

    .section-head-row {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 46px;
    }

    .location-intro {
      max-width: none;
      margin-bottom: 46px;
    }

    .location-intro .lead {
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.6;
      white-space: nowrap;
    }

    .our-location-grid {
      display: grid;
      grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .location-panel {
      display: flex;
      flex-direction: column;
      padding: 34px 32px 30px;
      border-radius: 28px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 16px 45px rgba(7, 21, 40, .07);
    }

    .location-panel h3 {
      margin: 0 0 20px;
      font-family: var(--serif);
      font-size: clamp(28px, 3vw, 34px);
      line-height: 1.08;
      color: var(--navy);
    }

    .location-details {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .location-details li,
    .location-hours-title {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 12px;
      align-items: start;
      margin: 0;
      color: #5b6778;
      font-size: 14px;
      line-height: 1.5;
    }

    .location-detail-icon {
      display: inline-flex;
      width: 20px;
      height: 20px;
      margin-top: 1px;
      color: var(--coral);
    }

    .location-detail-icon svg {
      width: 100%;
      height: 100%;
    }

    .location-details a {
      color: var(--navy);
      font-weight: 600;
      transition: color .2s ease;
    }

    .location-details a:hover {
      color: var(--coral);
    }

    .location-hours {
      margin-top: 22px;
      margin-bottom: 8px;
    }

    .location-hours-title {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      align-items: center;
    }

    .location-hours-title .location-detail-icon {
      margin-top: 0;
    }

    .location-hours ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .location-hours li {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(12, 26, 46, .08);
      color: #5b6778;
      font-size: 14px;
      line-height: 1.4;
    }

    .location-hours li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .location-hours li span:first-child {
      color: var(--navy);
      font-weight: 700;
      min-width: 72px;
    }

    .location-hours time {
      color: inherit;
      font: inherit;
    }

    .location-directions {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: auto;
      width: 100%;
      min-height: 52px;
      padding: 0 22px;
      line-height: 1;
      color: #fff !important;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: .02em;
    }

    .location-directions:hover {
      color: #fff !important;
    }

    .location-map {
      min-height: 420px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #e8edf2;
      box-shadow: 0 16px 45px rgba(7, 21, 40, .07);
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      min-height: 420px;
      border: 0;
    }

    .cta {
      position: relative;
      margin-top: -1px;
      padding: 36px 0 28px;
      background: var(--sky-section);
      color: var(--navy);
      text-align: center;
      overflow: visible;
    }

    .cta-banner__inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
      overflow: visible;
    }

    .cta-deco {
      position: absolute;
      top: 50%;
      right: 0;
      left: auto;
      z-index: 0;
      width: min(280px, 42vw);
      max-width: none;
      height: auto;
      pointer-events: none;
      opacity: .22;
      mix-blend-mode: multiply;
      filter: grayscale(100%);
      transform: translateY(-50%) rotate(-5deg);
    }

    .cta .section-title,
    .cta-banner__title {
      position: relative;
      z-index: 1;
      color: var(--navy);
      font-size: clamp(34px, 3.3vw, 46px);
      line-height: 1.12;
    }

    .cta .section-title em,
    .cta-banner__title em {
      color: var(--coral-accessible);
    }

    .cta .lead,
    .cta-banner__desc {
      position: relative;
      z-index: 1;
      max-width: 620px;
      margin: 0 auto 18px;
      color: #2f3a48;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
    }

    .cta-banner__phone {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--navy);
      font-size: clamp(18px, 2.2vw, 22px);
      font-weight: 600;
      line-height: 1.5;
    }

    .cta-banner__phone a {
      color: var(--coral-accessible);
      transition: color .2s ease;
    }

    .cta-banner__phone a:hover {
      color: #a73828;
    }

    .cta-actions,
    .cta-banner__actions {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-top: 0;
      flex-wrap: wrap;
    }

    .cta-banner__btn {
      min-height: 48px;
      padding: 16px 34px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      gap: 10px;
    }

    .cta-banner__btn svg {
      width: 18px;
      height: 18px;
    }

    .cta-banner__btn--primary {
      box-shadow: none;
    }

    .cta-banner__btn--ghost {
      background: transparent;
      color: var(--navy);
      border-color: rgba(12, 26, 46, .16);
      box-shadow: none;
    }

    .cta-banner__btn--ghost:hover {
      background: rgba(12, 26, 46, .05);
      border-color: rgba(12, 26, 46, .35);
      color: var(--navy);
    }

    .site-footer {
      padding: 0 0 28px;
      background: var(--sky-section);
      color: var(--navy);
      border-top: 0;
    }

    .site-footer__inner {
      padding-top: 28px;
    }

    .footer-grid,
    .site-footer__top {
      display: grid;
      grid-template-columns: 1.7fr 1fr 1.3fr;
      gap: 44px;
    }

    .site-footer__brand-desc {
      max-width: 280px;
      margin: 18px 0 0;
      color: var(--stone);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.7;
    }

    .site-footer .brand-title {
      color: var(--navy);
    }

    .site-footer .brand-subtitle {
      color: var(--stone-light);
    }

    .footer-grid h2,
    .footer-grid h4,
    .site-footer__col-title {
      margin: 0 0 16px;
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--stone-light);
      font-weight: 600;
    }

    .footer-grid p,
    .footer-grid a,
    .footer-links a {
      color: var(--stone);
      line-height: 1.8;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      font-size: 13px;
      font-weight: 300;
      transition: color .2s ease;
    }

    .footer-links a:hover,
    .site-footer__legal a:hover,
    .footer-contact a:hover {
      color: var(--coral);
    }

    .footer-contact {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .footer-contact li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--stone);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.5;
    }

    .footer-contact a {
      color: var(--stone);
      font-weight: 300;
      transition: color .2s ease;
    }

    .footer-contact-icon {
      display: inline-flex;
      width: 18px;
      height: 18px;
      margin-top: 1px;
      color: var(--coral);
    }

    .footer-contact-icon svg {
      width: 100%;
      height: 100%;
    }

    .footer-social {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

    .footer-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(12, 26, 46, .12);
      border-radius: 50%;
      background: rgba(255, 255, 255, .55);
      color: var(--navy);
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

    .footer-social-link svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .footer-social-link:hover {
      color: var(--coral);
      border-color: rgba(232, 84, 58, .35);
      background: #fff;
      transform: translateY(-1px);
    }

    .footer-bottom,
    .site-footer__bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 56px;
      padding-top: 24px;
      border-top: 1px solid rgba(12, 26, 46, .07);
      color: var(--stone-light);
      font-size: 12px;
      font-weight: 300;
    }

    .site-footer__legal a {
      color: var(--stone-light);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color .2s ease;
    }

    .menu-category__title:focus {
      outline: none;
    }

    .menu-category__title:focus:not(:focus-visible) {
      outline: none;
    }

    main:focus {
      outline: none;
    }

    main:focus:not(:focus-visible) {
      outline: none;
    }

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

    @media (max-width: 1120px) {
      .main-nav,
      .header-actions {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

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

      .brand {
        min-width: 0;
        flex: 1 1 auto;
      }

      .brand-title {
        white-space: normal;
        max-width: min(220px, 52vw);
        line-height: 1.15;
      }

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

      .ocean-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

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

      .menu-fan {
        flex-direction: column;
        height: 480px;
        min-height: 420px;
        gap: 7px;
      }

      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }

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

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

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

    @media (max-width: 760px) {
      .container,
      .hero-content,
      .header-inner {
        width: min(100% - 28px, 1180px);
      }

      .brand {
        min-width: 0;
      }

      .brand-title {
        font-size: 12px;
        max-width: 190px;
        white-space: normal;
        line-height: 1.1;
      }

      .brand-subtitle {
        display: none;
      }

      .hero {
        min-height: 930px;
        padding: 120px 0 68px;
      }

      .hero::before {
        background-position: 56% center;
      }

      .hero h1 {
        font-size: clamp(54px, 16vw, 82px);
      }

      .hero-quote-panel {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 20px;
      }

      .hero-quote-panel p {
        white-space: normal;
      }

      .eyebrow {
        font-size: 10px;
        letter-spacing: .16em;
      }

      .stats-grid,
      .about-grid,
      .features,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .stats-ribbon {
        margin-top: -34px;
      }

      .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .stat:last-child {
        border-bottom: 0;
      }

      section {
        padding: 76px 0;
      }

      .section-title {
        font-size: clamp(42px, 13vw, 62px);
      }

      .pricing-section {
        padding: 64px 0 56px;
      }

      .resy-book {
        padding: 24px 0 0;
      }

      .order-online {
        padding: 24px 0 44px;
      }

      .order-online__lead {
        white-space: normal;
        max-width: 28em;
        padding: 0 8px;
        font-size: 15px;
      }

      .order-online__links {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .order-online__btn {
        width: 100%;
        min-width: 0;
      }

      .full-menu-section {
        padding: 64px 0 60px;
      }

      .full-menu-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .menu-category {
        padding: 22px 18px 20px;
      }

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

      .pricing-intro {
        margin-bottom: 32px;
      }

      .pricing-menu {
        padding: 18px 14px 22px;
      }

      .pricing-block--dinein {
        padding: 20px 16px 22px;
      }

      .menu-line__name {
        font-size: 18px;
        white-space: normal;
      }

      .pricing-block--dinein .menu-line__name {
        font-size: 19px;
      }

      .menu-line__price {
        font-size: 26px;
      }

      .pricing-block--dinein .menu-line__price {
        font-size: 30px;
      }

      .pricing-block--takeout .menu-line__name {
        font-size: 14px;
      }

      .menu-line__meta {
        max-width: 100%;
      }

      .image-stack {
        min-height: 360px;
      }

      .about-photo {
        inset: 0;
      }

      .menu-fan {
        flex-direction: column;
        height: 460px;
        min-height: 400px;
        gap: 6px;
      }

      .fan-blade {
        border-radius: 12px;
      }

      .fan-blade span {
        left: 14px;
        font-size: 13px;
      }

      .menu-fan:not(:hover) .fan-blade.is-active,
      .fan-blade:hover {
        flex: 4.6 1 0;
      }

      .menu-fan:not(:hover) .fan-blade.is-active span,
      .fan-blade:hover span {
        left: 16px;
        bottom: 14px;
        font-size: 20px;
      }

      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
      }

      .gallery-item {
        border-radius: 12px;
      }

      .lightbox {
        padding: 64px 16px 28px;
      }

      .lightbox-stage {
        width: 100%;
      }

      .lightbox-stage img {
        max-height: calc(100vh - 140px);
        border-radius: 10px;
      }

      .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 22px;
      }

      .lightbox-prev {
        left: 8px;
      }

      .lightbox-next {
        right: 8px;
      }

      .lightbox-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
      }

      .section-head-row {
        display: block;
      }

      .our-location-grid {
        grid-template-columns: 1fr;
      }

      .location-intro .lead,
      .center .lead {
        white-space: normal;
        font-size: 15px;
      }

      .experience .lead {
        display: block;
        width: 100%;
        max-width: 100%;
        white-space: normal;
        font-size: 14px;
        padding: 8px 12px;
        box-sizing: border-box;
      }

      .location-map,
      .location-map iframe {
        min-height: 320px;
      }

      .locations {
        padding-bottom: 0;
      }

      .section-wave {
        margin-top: 36px;
      }

      .section-wave svg {
        height: clamp(36px, 8vw, 52px);
      }

      .cta {
        padding: 28px 0 22px;
      }

      .cta-deco {
        top: 50%;
        right: -8px;
        width: min(220px, 58vw);
        opacity: .16;
        transform: translateY(-50%) rotate(-5deg);
      }

      .cta-banner__actions {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-banner__btn {
        width: 100%;
      }

      .site-footer__inner {
        padding-top: 20px;
        width: min(100% - 48px, 1180px);
      }

      .back-to-top {
        right: 18px;
        bottom: 24px;
      }

      .footer-bottom {
        display: block;
        text-align: center;
      }

      .site-footer__legal {
        display: block;
        margin-top: 10px;
        text-align: center;
      }
    }

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

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