:root {
  --ocean-950: #042d2d;
  --ocean-900: #063c3b;
  --ocean-800: #075352;
  --ocean-100: #dcece7;
  --mist: #edf5f1;
  --ink: #092f2f;
  --muted: #526b68;
  --chile: #c83c31;
  --chile-dark: #9f2d25;
  --gold: #efad32;
  --gold-light: #ffd97c;
  --white: #fffdf8;
  --line: rgba(4, 45, 45, 0.17);
  --display: "Fraunces", Georgia, serif;
  --body: "Archivo", "Trebuchet MS", sans-serif;
  --max: 74rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--body);
  line-height: 1.55;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: -999px;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  color: var(--ocean-950);
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding: 1rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 253, 248, 0.24);
}

.wordmark {
  display: grid;
  gap: 0.05rem;
  text-decoration: none;
}

.wordmark-main {
  font-family: var(--display);
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 900;
  line-height: 1;
}

.wordmark-sub {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-light);
}

.header-call {
  padding: 0.5rem 0.75rem;
  color: var(--ocean-950);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(239, 173, 50, 0.17), transparent 18rem),
    linear-gradient(135deg, var(--ocean-950), var(--ocean-800));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: -11rem;
  height: 19rem;
  border-radius: 48% 55% 0 0;
  background: var(--chile);
  transform: rotate(-2deg);
  animation: tideShift 8s ease-in-out infinite alternate;
}

.fish-mark {
  position: absolute;
  width: clamp(20rem, 60vw, 51rem);
  right: -10rem;
  top: 17%;
  fill: none;
  stroke: rgba(255, 253, 248, 0.11);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: rotate(-6deg);
  animation: fishFloat 7s ease-in-out infinite;
}

.bubble {
  position: absolute;
  z-index: 1;
  display: block;
  border: 2px solid rgba(255, 253, 248, 0.17);
  border-radius: 50%;
  animation: bubbleDrift 8s ease-in-out infinite;
}

.bubble-one {
  width: 4rem;
  height: 4rem;
  top: 25%;
  left: 8%;
}

.bubble-two {
  width: 1.5rem;
  height: 1.5rem;
  top: 19%;
  right: 17%;
  animation-delay: -2s;
}

.bubble-three {
  width: 7rem;
  height: 7rem;
  right: 4%;
  bottom: 22%;
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding: 8.5rem 0 9rem;
  animation: heroReveal 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-red {
  color: var(--chile);
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 12vw, 7.7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.hero h1 span {
  display: block;
}

.hero-restaurant {
  margin-top: 0.3em;
  color: var(--gold);
  font-size: 0.58em;
  font-style: italic;
  letter-spacing: -0.02em;
}

.tagline {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--display);
  font-size: clamp(1.05rem, 4vw, 1.45rem);
  font-style: italic;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-gold {
  color: var(--ocean-950);
  background: var(--gold);
  border-color: var(--gold);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.55);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ocean-950);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ocean-950);
  border-color: var(--ocean-950);
}

.button-outline-dark {
  color: var(--ocean-950);
  border-color: var(--ocean-950);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  color: var(--white);
  background: var(--ocean-950);
}

.hero-meta {
  margin: 1.15rem 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.83rem;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1.8rem;
  display: none;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  color: var(--gold);
  font-size: 1.35rem;
  animation: cueBounce 1.6s ease-in-out infinite;
}

.marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--chile);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.3rem;
  padding: 0.72rem 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  animation: marqueeMove 24s linear infinite;
}

.marquee-track span[aria-hidden="true"] {
  color: var(--gold-light);
}

.section {
  padding: 4.5rem max(1rem, calc((100% - var(--max)) / 2));
}

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

.section h2,
.visit h2,
.service-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 8vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p:last-child,
.menu-intro > p {
  max-width: 38rem;
  color: var(--muted);
}

.special-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.special-card {
  position: relative;
  min-height: 10rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 1.2rem;
  padding: 1.25rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.special-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 1rem 2.5rem rgba(4, 45, 45, 0.12);
}

.special-card.featured {
  color: var(--white);
  background: var(--chile);
  border-color: var(--chile);
}

.special-card::after {
  content: "";
  position: absolute;
  width: 7rem;
  height: 7rem;
  right: -2.5rem;
  bottom: -3.5rem;
  border: 1.5rem solid var(--gold);
  border-radius: 50%;
  opacity: 0.22;
}

.day {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ocean-800);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.featured .day {
  color: var(--ocean-950);
  background: var(--gold);
}

.special-card h3 {
  align-self: center;
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.1;
}

.special-card strong {
  grid-column: 2;
  align-self: end;
  color: var(--chile);
  font-family: var(--display);
  font-size: 2rem;
}

.featured strong {
  color: var(--gold-light);
}

.everyday-special {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-top: 0.75rem;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--ocean-800);
  border-radius: 0.75rem;
}

.everyday-special span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.everyday-special strong {
  color: var(--gold-light);
  font-family: var(--display);
}

.menu-section {
  display: grid;
  gap: 2.5rem;
  color: var(--white);
  background: var(--ocean-950);
}

.menu-intro {
  align-self: start;
}

.menu-intro > p {
  color: rgba(255, 253, 248, 0.68);
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--gold-light);
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.menu-list {
  border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.menu-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 5vw, 1.75rem);
}

.menu-item p {
  margin: 0.25rem 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.82rem;
}

.menu-item strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.35rem;
}

.menu-item-feature {
  margin-top: -1px;
  padding-inline: 1rem;
  color: var(--ocean-950);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-item-feature strong,
.menu-item-feature .menu-kicker {
  color: var(--chile-dark);
}

.menu-kicker {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-band {
  display: grid;
}

.service-panel {
  position: relative;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 3.5rem 1rem;
  overflow: hidden;
}

.service-panel::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  top: -9rem;
  right: -7rem;
  border: 4rem solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
}

.service-fry {
  color: var(--ocean-950);
  background: var(--gold);
}

.service-catering {
  color: var(--ocean-950);
  background: var(--ocean-100);
}

.service-fry .eyebrow,
.service-catering .eyebrow {
  color: var(--chile-dark);
}

.service-panel > * {
  position: relative;
}

.service-panel p:not(.eyebrow) {
  max-width: 30rem;
}

.service-panel .number {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
}

.visit {
  display: grid;
  color: var(--white);
  background: var(--chile-dark);
}

.visit-copy {
  padding: 4.5rem 1rem;
}

.visit-address {
  margin: 0.35rem 0 2rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.1rem;
}

.visit-details {
  margin: 0;
}

.visit-details > div {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 253, 248, 0.24);
}

.visit-details dt {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-details dd {
  margin: 0.15rem 0 0;
  font-family: var(--display);
  font-size: 1.2rem;
}

.visit-art {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 42%, rgba(255, 253, 248, 0.2) 42% 45%, transparent 45%),
    linear-gradient(-50deg, transparent 48%, rgba(255, 253, 248, 0.14) 48% 51%, transparent 51%),
    var(--ocean-900);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  color: var(--ocean-950);
  background: var(--gold);
  border: 0.65rem solid var(--white);
  border-radius: 50% 50% 50% 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  transform: translate(-50%, -65%) rotate(-45deg);
  box-shadow: 0 1.2rem 3rem rgba(4, 45, 45, 0.35);
  animation: pinPulse 2.5s ease-in-out infinite;
}

.map-pin::first-line {
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.5rem;
  color: var(--ocean-950);
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-call {
  position: fixed;
  z-index: 50;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  color: var(--ocean-950);
  background: var(--gold);
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 0.8rem 2.4rem rgba(4, 45, 45, 0.32);
  font-weight: 700;
  text-decoration: none;
  animation: stickyReveal 0.7s ease-out 0.8s both;
}

.footer {
  padding: 2rem 1rem 6rem;
  color: rgba(255, 253, 248, 0.66);
  background: #021f1f;
  font-size: 0.78rem;
  text-align: center;
}

.footer p {
  margin: 0.35rem 0;
}

.footer strong,
.footer a {
  color: var(--white);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fishFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(-6deg);
  }
  50% {
    transform: translate(-1rem, -0.7rem) rotate(-4deg);
  }
}

@keyframes bubbleDrift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2.5rem) scale(1.08);
  }
}

@keyframes tideShift {
  from {
    transform: translateX(-1%) rotate(-2deg);
  }
  to {
    transform: translateX(2%) rotate(1deg);
  }
}

@keyframes cueBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.35rem);
  }
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pinPulse {
  0%,
  100% {
    box-shadow: 0 1.2rem 3rem rgba(4, 45, 45, 0.35);
  }
  50% {
    box-shadow:
      0 1.2rem 3rem rgba(4, 45, 45, 0.35),
      0 0 0 0.8rem rgba(239, 173, 50, 0.18);
  }
}

@keyframes stickyReveal {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 700px) {
  .site-header {
    padding: 1.3rem 0;
  }

  .nav-links {
    display: flex;
  }

  .header-call {
    padding-inline: 1rem;
  }

  .hero-content {
    padding-block: 10rem 11rem;
  }

  .scroll-cue {
    display: flex;
  }

  .special-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .special-card {
    grid-column: span 2;
  }

  .special-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .menu-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 5rem;
  }

  .menu-intro {
    position: sticky;
    top: 2rem;
  }

  .service-band,
  .visit {
    grid-template-columns: 1fr 1fr;
  }

  .service-panel {
    min-height: 36rem;
    padding: 4.5rem max(2rem, calc((100vw - var(--max)) / 2));
  }

  .service-panel .number {
    top: 2rem;
    left: max(2rem, calc((100vw - var(--max)) / 2));
  }

  .visit-copy {
    padding: 5.5rem max(2rem, calc((100vw - var(--max)) / 2));
  }

  .visit-art {
    min-height: 34rem;
  }

  .sticky-call {
    display: none;
  }

  .footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 1050px) {
  .special-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .special-card,
  .special-card:nth-child(4) {
    grid-column: auto;
  }
}

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

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