:root {
  --red: #e11d2e;
  --red-deep: #b51220;
  --blue: #0070b8;
  --blue-deep: #0a4f86;
  --navy: #102a43;
  --ink: #1b2b3a;
  --muted: #4a6274;
  --sky: #dff0fb;
  --foam: #f4fafd;
  --paper: #ffffff;
  --line: rgba(0, 112, 184, 0.22);
  --shadow: 0 18px 50px rgba(16, 42, 67, 0.14);
  --font-display: "Anton", Impact, sans-serif;
  --font-script: "Caveat", cursive;
  --font-body: "Manrope", sans-serif;
  --radius: 1.25rem;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(0, 112, 184, 0.12), transparent 60%),
    radial-gradient(900px 400px at 90% 0%, rgba(225, 29, 46, 0.08), transparent 55%),
    linear-gradient(180deg, var(--foam), var(--paper) 18%, var(--sky) 100%);
  line-height: 1.55;
  min-height: 100vh;
}

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

a {
  color: var(--blue-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: white;
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0.4rem;
}

.skip-link:focus {
  top: 1rem;
}

.script {
  font-family: var(--font-script);
  color: var(--blue);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand-title {
  font-family: var(--font-display);
  color: var(--red);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 0.92;
  text-shadow: 0 2px 0 rgba(181, 18, 32, 0.12);
}

.lede {
  color: var(--muted);
  max-width: 38rem;
  margin: 0.6rem 0 0;
  font-size: 1.05rem;
}

.section-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28);
}

.btn-primary:hover {
  background: var(--red-deep);
  color: white;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 42, 67, 0.16);
  color: var(--navy);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 112, 184, 0.12);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  color: white;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.logo-text {
  font-family: var(--font-display);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-phone {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-deep) !important;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  padding: 0.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.28) 0%, rgba(10, 31, 51, 0.18) 35%, rgba(10, 31, 51, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 31, 51, 0.55), transparent 55%);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 72px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.55) 0 8px, transparent 9px),
    radial-gradient(circle at 28% 55%, rgba(255, 255, 255, 0.4) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.45) 0 7px, transparent 8px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f4fafd' d='M0,64 C240,120 480,0 720,40 C960,80 1200,120 1440,48 L1440,120 L0,120 Z'/%3E%3C/svg%3E")
      center bottom / 100% 100% no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 7rem) 0 5.5rem;
  animation: rise-in 0.9s ease both;
}

.hero-script {
  color: #9fd4f7;
  margin-bottom: 0.55rem;
  animation: rise-in 0.9s ease 0.08s both;
}

.hero .brand-title {
  font-size: clamp(3.4rem, 11vw, 7.2rem);
  max-width: 11ch;
  color: #fff;
  text-shadow:
    0 2px 0 rgba(225, 29, 46, 0.55),
    0 18px 40px rgba(0, 0, 0, 0.35);
  animation: rise-in 0.9s ease 0.14s both;
}

.hero-tag {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  animation: rise-in 0.9s ease 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
  animation: rise-in 0.9s ease 0.3s both;
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Specials */
.specials {
  padding: 4.5rem 0 2rem;
}

.specials-head,
.menu-head,
.find-copy > .script {
  margin-bottom: 0.25rem;
}

.specials-head h2,
.menu-head h2,
.find-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0.2rem 0 0;
}

.specials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.special-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.special-card:hover {
  transform: translateY(-4px);
}

.special-card.is-today {
  border-color: rgba(225, 29, 46, 0.45);
  background: linear-gradient(180deg, #fff7f7, white 50%);
}

.special-card.is-today::before {
  content: "Today";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.special-day {
  font-family: var(--font-display);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.special-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.special-price {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.15rem;
}

/* Menu */
.menu {
  padding: 2.5rem 0 4rem;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 0.5rem);
  z-index: 40;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
}

.menu-filters button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.05rem;
  min-height: 2.75rem;
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-filters button[aria-selected="true"] {
  background: var(--blue);
  color: white;
}

.menu-filters button:hover:not([aria-selected="true"]) {
  background: var(--sky);
}

.menu-panel {
  display: none;
  animation: rise-in 0.45s ease both;
}

.menu-panel.is-active {
  display: block;
}

.category-block + .category-block {
  margin-top: 1.75rem;
}

.category-block h3 {
  font-family: var(--font-display);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin: 0 0 0.35rem;
}

.category-note {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0 0 0.85rem;
}

.menu-table {
  list-style: none;
  margin: 0;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: baseline;
  padding: 0.85rem 1.05rem;
  border-top: 1px dotted rgba(16, 42, 67, 0.14);
}

.menu-row:first-child {
  border-top: 0;
}

.menu-row:nth-child(even) {
  background: rgba(223, 240, 251, 0.35);
}

.item-name {
  font-weight: 700;
  color: var(--navy);
}

.item-desc {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.item-prices {
  display: flex;
  gap: 0.85rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.price-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.menu-boards {
  margin-top: 3rem;
}

.menu-boards h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--navy);
  font-size: 1.6rem;
  margin: 0;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.board-grid figure {
  margin: 0;
}

.board-grid a {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.board-grid a:hover {
  transform: translateY(-4px);
}

.board-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.board-grid figcaption {
  margin-top: 0.55rem;
  font-weight: 700;
  color: var(--navy);
}

/* Flavour strip */
.flavour {
  padding: 0 0 1rem;
}

.flavour-grid {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.flavour-item {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  min-height: 220px;
  isolation: isolate;
}

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

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

.flavour-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 31, 51, 0.72));
}

.flavour-item .script {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 1;
  color: #bfe4fb;
  font-size: 1.45rem;
}

/* Find us */
.find-us {
  padding: 4rem 0 5rem;
}

.find-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.find-copy h2 {
  margin-bottom: 0.25rem;
}

.contact-block {
  font-style: normal;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-block strong {
  color: var(--navy);
}

.contact-block a {
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--red);
}

.hours {
  margin-top: 1.5rem;
}

.hours h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue-deep);
  font-size: 1.25rem;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-top: 1px dotted rgba(16, 42, 67, 0.14);
  font-weight: 600;
}

.hours-list li:first-child {
  border-top: 0;
}

.hours-list li.is-today {
  background: rgba(225, 29, 46, 0.08);
  color: var(--red-deep);
}

.hours-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.7rem 0 0;
}

.find-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.find-map {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
  background: var(--sky);
}

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

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0b6aa8, #084f7f 55%, #063a5d);
  color: rgba(255, 255, 255, 0.9);
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 56px;
  background:
    radial-gradient(circle at 18% 40%, rgba(255, 255, 255, 0.35) 0 7px, transparent 8px),
    radial-gradient(circle at 62% 20%, rgba(255, 255, 255, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 55%, rgba(255, 255, 255, 0.3) 0 6px, transparent 7px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%230b6aa8' d='M0,32 C180,80 360,0 540,28 C720,56 900,80 1080,36 C1260,-8 1380,40 1440,24 L1440,0 L0,0 Z'/%3E%3C/svg%3E")
      center top / 100% 100% no-repeat;
  transform: translateY(-55%);
}

.footer-inner {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.footer-brand {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.site-footer .script {
  color: #9fd4f7;
}

.footer-meta,
.footer-fine {
  margin: 0;
}

.footer-meta a {
  color: white;
  font-weight: 700;
}

.footer-fine {
  opacity: 0.75;
  font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 960px) {
  .specials-track,
  .board-grid,
  .flavour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
  }

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

  .site-nav a {
    padding: 0.85rem 0.4rem;
    border-top: 1px solid rgba(16, 42, 67, 0.08);
  }

  .nav-phone {
    margin-top: 0.4rem;
    text-align: center;
  }

  .specials-track,
  .board-grid,
  .flavour-grid {
    grid-template-columns: 1fr;
  }

  .menu-filters {
    border-radius: 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .menu-filters button {
    flex: 0 0 auto;
  }

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

  .item-prices {
    justify-content: flex-start;
  }

  .hero {
    min-height: calc(92svh - var(--header-h));
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
