@charset "UTF-8";

:root {
  --black: #080808;
  --black-soft: #111111;
  --white: #f3f3ed;
  --white-pure: #ffffff;
  --gray: #a7a7a1;
  --line-dark: rgb(8 8 8 / 0.24);
  --line-light: rgb(255 255 255 / 0.28);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", sans-serif;
  --sans: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--black);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line-light);
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.74), transparent);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  color: var(--white-pure);
  text-decoration: none;
}

.brand-stamp {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: 50%;
  background: #171717;
  box-shadow: 0 0 0 5px rgb(255 255 255 / 0.08);
  transition: transform 180ms ease;
}

.brand:hover .brand-stamp {
  transform: rotate(6deg) scale(1.04);
}

.brand-stamp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--display);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 0.9;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.header-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--white-pure);
  font-size: clamp(0.63rem, 1vw, 0.75rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 auto;
  border: 1px solid var(--white-pure);
  border-radius: 50%;
  background: var(--white-pure);
  box-shadow: 0 0 0 5px rgb(255 255 255 / 0.12);
  animation: statusPulse 2.2s ease-out infinite;
}

.logo-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background: var(--black);
}

.logo-hero::before,
.logo-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.logo-hero::before {
  background:
    radial-gradient(circle at 50% 45%, transparent 25%, rgb(0 0 0 / 0.18) 64%, rgb(0 0 0 / 0.82) 100%),
    linear-gradient(to bottom, rgb(0 0 0 / 0.35), transparent 30%, transparent 70%, rgb(0 0 0 / 0.72));
}

.logo-hero::after {
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-backdrop {
  position: absolute;
  inset: -2%;
  z-index: -2;
  display: block;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.22) brightness(0.46);
  transform: scale(1.025);
  animation: backdropReveal 1.4s both cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-feature {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(76vw, 44rem, calc(84svh * 0.76));
  height: min(84svh, 58rem);
  margin: 0;
  place-items: center;
  background: #bfc0bd;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.42),
    0 2rem 6rem rgb(0 0 0 / 0.72),
    0 0 8rem rgb(255 255 255 / 0.08);
  animation: logoReveal 900ms 120ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-feature::before {
  position: absolute;
  inset: -1px;
  z-index: 1;
  border: 1px solid rgb(255 255 255 / 0.34);
  content: "";
  pointer-events: none;
}

.logo-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-footer {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 4vw, 4.5rem);
  bottom: clamp(1rem, 3vw, 2.2rem);
  left: clamp(1rem, 4vw, 4.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.hero-footer p {
  margin: 0;
  color: var(--white-pure);
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.8);
}

.hero-footer span {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--sans);
  font-size: 0.55em;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-footer .hero-index {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: 50%;
  bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white-pure);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(50%);
}

.scroll-cue svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6;
  animation: arrowBounce 1.6s ease-in-out infinite;
}

.details {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(32rem, 1.12fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 6vw, 6.5rem);
  color: var(--black);
  background-color: var(--white);
  background-image:
    linear-gradient(rgb(8 8 8 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(8 8 8 / 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.details::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--black) 0 45px, var(--white) 45px 90px);
}

.details-heading {
  align-self: start;
}

.section-kicker {
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker span {
  display: inline-block;
  margin: 0 0.55rem;
  color: var(--gray);
}

.details h2 {
  width: min-content;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 11.5vw, 10rem);
  font-weight: 900;
  line-height: 0.73;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.details h2 span {
  color: transparent;
  -webkit-text-stroke: 3px var(--black);
}

.intro {
  max-width: 30rem;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding-left: 1.2rem;
  border-left: 6px solid var(--black);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.details-content {
  display: grid;
  align-content: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.menu-card,
.contact-card {
  position: relative;
  padding: clamp(1.2rem, 3vw, 2.25rem);
  border: 3px solid var(--black);
  box-shadow: 10px 10px 0 var(--black);
}

.menu-card {
  color: var(--white);
  background: var(--black);
}

.contact-card {
  color: var(--black);
  background: var(--white-pure);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.card-heading-dark {
  border-bottom-color: var(--line-dark);
}

.card-heading p {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  margin: 0;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
}

.card-heading h3 {
  margin: 0;
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  padding: 0.9rem 0.75rem 0.76rem;
  border: 1px solid rgb(255 255 255 / 0.7);
  background: rgb(255 255 255 / 0.04);
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.menu-note {
  margin: 1.1rem 0 0;
  color: #c8c8c4;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
}

.contact-label {
  margin: 0 0 0.55rem;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-link {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--black);
  color: var(--white-pure);
  background: var(--black);
  font-size: clamp(0.76rem, 1.4vw, 0.93rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.contact-link svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.contact-link:hover {
  color: var(--black);
  background: var(--white-pure);
  transform: translateY(-2px);
}

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

.social-link {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.7rem 0.45rem;
  border: 2px solid var(--black);
  color: var(--black);
  background: var(--white-pure);
  font-size: clamp(0.55rem, 0.9vw, 0.68rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.social-link:hover {
  color: var(--white-pure);
  background: var(--black);
  transform: translateY(-2px);
}

.social-link svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.social-link rect,
.social-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-link .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.brand:focus-visible,
.scroll-cue:focus-visible,
.contact-link:focus-visible,
.social-link:focus-visible {
  outline: 3px solid var(--white-pure);
  outline-offset: 4px;
}

.contact-link:focus-visible,
.social-link:focus-visible {
  outline-color: var(--black);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1rem, 6vw, 6.5rem);
  border-top: 1px solid var(--line-light);
  color: var(--white);
  background: var(--black);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  color: var(--gray);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

@keyframes logoReveal {
  from { opacity: 0; transform: translateY(2rem) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes backdropReveal {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes statusPulse {
  0%, 35% { box-shadow: 0 0 0 0 rgb(255 255 255 / 0.48); }
  70%, 100% { box-shadow: 0 0 0 9px rgb(255 255 255 / 0); }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

@media (max-width: 960px) {
  .details {
    grid-template-columns: 1fr;
  }

  .details-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.75fr);
    column-gap: 2.5rem;
  }

  .section-kicker {
    grid-column: 1 / -1;
  }

  .intro {
    align-self: end;
    margin-bottom: 0.35rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding-inline: 0.9rem;
  }

  .brand-stamp {
    width: 40px;
    height: 40px;
  }

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

  .header-note {
    max-width: 7.8rem;
    justify-content: flex-end;
    line-height: 1.25;
    text-align: right;
  }

  .logo-feature {
    width: min(91vw, 31rem, calc(76svh * 0.76));
    height: min(76svh, 41rem);
    background: transparent;
    box-shadow: none;
  }

  .logo-feature::before {
    display: none;
  }

  .logo-art {
    filter: drop-shadow(0 1.25rem 2rem rgb(0 0 0 / 0.65));
  }

  .hero-backdrop {
    object-position: 58% center;
  }

  .hero-footer {
    right: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
  }

  .hero-footer p {
    font-size: 1rem;
  }

  .scroll-cue {
    display: none;
  }

  .details {
    gap: 3.5rem;
    padding: 5.25rem 1rem 4.5rem;
  }

  .details-heading {
    display: block;
  }

  .details h2 {
    font-size: clamp(4.8rem, 24vw, 7rem);
  }

  .details h2 span {
    -webkit-text-stroke-width: 2px;
  }

  .intro {
    margin-top: 2.75rem;
  }

  .menu-card,
  .contact-card {
    padding: 1.1rem;
    box-shadow: 6px 6px 0 var(--black);
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-link {
    justify-content: flex-start;
    padding-inline: 1rem;
    font-size: 0.66rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p:nth-child(2) {
    order: 3;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 0.5rem;
  }

  .brand-name {
    max-width: 5.5rem;
  }

  .header-note {
    max-width: 6.8rem;
    font-size: 0.57rem;
    letter-spacing: 0.1em;
  }

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

@media (max-height: 620px) and (min-width: 641px) {
  .logo-feature {
    width: min(64vw, calc(78svh * 0.76));
    height: 78svh;
  }
}

@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;
  }
}

@media (forced-colors: active) {
  .logo-feature,
  .menu-card,
  .contact-card,
  .contact-link,
  .social-link {
    forced-color-adjust: none;
  }
}
