:root {
  color-scheme: dark;
  --black: #060606;
  --ink: #f3eadc;
  --muted: #b9aa97;
  --panel: #12100f;
  --panel-2: #1b1716;
  --line: rgba(243, 234, 220, 0.16);
  --yellow: #f2c400;
  --purple: #9a49bd;
  --red: #e0004d;
  --blue: #145cff;
  --green: #68b937;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(154, 73, 189, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 5%, rgba(242, 196, 0, 0.14), transparent 22rem),
    var(--black);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.45;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 6, 0.76);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand,
.site-nav,
.hero-actions {
  align-items: center;
  display: flex;
  gap: 16px;
}

.brand {
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  border-radius: 50%;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 82px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(100svh - 71px);
  padding: clamp(32px, 6vw, 72px) clamp(18px, 5vw, 64px);
}

.hero-art {
  background:
    linear-gradient(145deg, rgba(154, 73, 189, 0.18), rgba(242, 196, 0, 0.08)),
    #030303;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: min(540px, 100%);
  overflow: hidden;
}

.hero-art img {
  aspect-ratio: 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  letter-spacing: 0;
  line-height: 0.86;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow),
.location-copy p,
.brand-section p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  max-width: 680px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button.primary {
background: #ffd400;
color: #050505;
border-color: #ffd400;
}

.button.primary:hover {
.button.primary:hover {
  background: #e8bf00;
  border-color: #e8bf00;
  color: #050505;
}
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.button.ghost:hover {
  border-color: var(--purple);
  color: var(--yellow);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.section-heading {
  margin-bottom: 30px;
  max-width: 820px;
}

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

.menu-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 240px;
  padding: 24px;
}

.menu-card span {
  color: var(--purple);
  display: block;
  font-weight: 950;
  margin-bottom: 52px;
}

.menu-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.concept-strip {
  align-items: center;
  background: #f7f6f2;
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 22px;
  padding: clamp(18px, 4vw, 42px);
}

.concept-strip img {
  max-height: 260px;
  object-fit: contain;
}

.concept-strip .button {
  background: var(--black);
}

.location-section {
  align-items: center;
  background: #ece7dd;
  color: #111;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.location-section .eyebrow {
  color: #006b5f;
}

.location-copy p {
  color: #4f4a43;
}

.location-image {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.22);
  margin: 0;
  overflow: hidden;
}

.location-image img {
  display: block;
  height: auto;
  width: 100%;
}

figcaption {
  color: #615a52;
  font-size: 0.88rem;
  margin-top: 10px;
}

.brand-section {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
}

.brand-section > img {
  background: #fff;
  border-radius: 8px;
  max-height: 560px;
  object-fit: contain;
  padding: 16px;
  width: 100%;
}

.studio-section > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  max-width: 980px;
}

.contact-section {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
}

form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 30px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

input,
textarea {
  background: #080808;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--yellow);
  outline: 3px solid rgba(242, 196, 0, 0.18);
}

.form-status {
  color: var(--yellow);
  font-weight: 850;
  min-height: 24px;
}

[data-edit] {
  border-radius: 6px;
  outline: 0 solid transparent;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    outline-color 160ms ease;
}

body.is-editing [data-edit] {
  background: rgba(242, 196, 0, 0.09);
  box-shadow: 0 0 0 1px rgba(242, 196, 0, 0.4);
  cursor: text;
}

body.is-editing [data-edit]:focus {
  background: rgba(242, 196, 0, 0.16);
  box-shadow:
    0 0 0 2px rgba(242, 196, 0, 0.88),
    0 0 0 7px rgba(242, 196, 0, 0.16);
}

.editor-bar {
  align-items: center;
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  left: 50%;
  max-width: calc(100vw - 32px);
  padding: 10px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 30;
}

.editor-button {
  background: var(--yellow);
  border: 0;
  border-radius: 8px;
  color: #080705;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 38px;
  padding: 0 12px;
  text-transform: uppercase;
}

.editor-button:hover {
  background: var(--green);
}

.editor-button.danger {
  background: transparent;
  border: 1px solid rgba(224, 0, 77, 0.7);
  color: #ff6f99;
}

.editor-button.danger:hover {
  background: rgba(224, 0, 77, 0.18);
}

.editor-status {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  min-width: 90px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 64px);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hero,
  .location-section,
  .brand-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    margin-inline: auto;
    max-width: 560px;
  }

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

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    position: static;
  }

  .site-nav {
    justify-content: space-between;
    width: 100%;
  }

  .hero-actions,
  .concept-strip,
  .site-footer {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .editor-bar {
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100vw - 32px);
  }

  .editor-status {
    text-align: center;
    width: 100%;
  }
}
