:root {
  --ink: #111111;
  --coal: #1f211b;
  --cream: #f3efe4;
  --paper: #f8f3ea;
  --white: #ffffff;
  --sage: #596329;
  --olive: #707a34;
  --orange: #e56c43;
  --muted: #69665d;
  --line: rgba(17, 17, 17, 0.16);
  --shadow: 0 28px 80px rgba(17, 17, 17, 0.26);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

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

a {
  color: inherit;
}

.site-header {
  min-height: 100svh;
  padding: 18px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 7, 6, 0.92) 0%, rgba(6, 7, 6, 0.68) 43%, rgba(6, 7, 6, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 7, 6, 0.44), rgba(6, 7, 6, 0.16)),
    url("assets/brand/sues-kitchen-cover.jpg") center / cover;
  filter: blur(10px);
  transform: scale(1.04);
}

.site-header::after {
  z-index: -1;
  background: url("assets/brand/sues-kitchen-cover-full-hq-preview.jpg") right center / contain no-repeat;
  opacity: 1;
}

.topbar,
.hero,
.quick-info,
.intro-band,
.menu-section,
.feature-panel,
.visit,
footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  object-fit: cover;
}

.nav-links {
  display: none;
}

.nav-links a,
.nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(17, 17, 17, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-action {
  justify-self: end;
}

.hero {
  display: grid;
  gap: 36px;
  align-items: end;
  min-height: calc(100svh - 96px);
  padding: 70px 0 46px;
  position: relative;
  z-index: 1;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1ead8;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(5rem, 18vw, 11.4rem);
  line-height: 0.74;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.feature-copy .button-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-card {
  max-width: 300px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 24px 20px;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  color: var(--white);
  text-align: center;
}

.hero-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-card span {
  display: block;
  margin-top: 18px;
  color: #f1ead8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.quick-info {
  display: grid;
  gap: 10px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.quick-info article {
  min-height: 162px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
}

.quick-info span,
.feature-note span {
  display: block;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-info strong,
.feature-note strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.quick-info p,
.intro-band > p,
.feature-copy p,
.feature-note p,
.visit-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.intro-band,
.menu-section,
.feature-panel,
.visit {
  padding-block: 74px;
}

.intro-band {
  display: grid;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.intro-band h2,
.section-heading h2,
.feature-panel h2,
.visit h2 {
  font-size: clamp(3.25rem, 11vw, 6.8rem);
  line-height: 0.82;
}

.menu-section {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.photo-menu {
  display: grid;
  gap: 12px;
}

.photo-menu figure {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--ink);
  isolation: isolate;
}

.photo-menu figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.74));
}

.photo-menu img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-menu figure:hover img {
  transform: scale(1.035);
}

.photo-menu figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
}

.photo-menu figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #f1ead8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-menu figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.feature-panel {
  display: grid;
  gap: 18px;
  align-items: center;
}

.feature-copy {
  padding: 42px 24px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.74)),
    url("assets/brand/sues-kitchen-cover.jpg") center / cover;
  color: var(--white);
}

.feature-copy .section-kicker {
  color: #dfe7a6;
}

.feature-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.feature-note {
  padding: 32px 24px;
  background: #20231d;
  color: var(--white);
}

.feature-note span {
  color: #f5eecf;
}

.feature-note strong {
  font-size: 3.4rem;
}

.feature-note p {
  color: rgba(255, 255, 255, 0.78);
}

.catering-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.catering-gallery figure {
  min-height: 172px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.catering-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.catering-gallery figure:hover img {
  transform: scale(1.04);
}

.visit {
  display: grid;
  gap: 24px;
}

.visit-copy {
  max-width: 680px;
}

.hours {
  margin: 0;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hours div:last-child {
  border-bottom: 0;
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
}

footer {
  display: grid;
  gap: 10px;
  padding: 36px 0 46px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

@media (min-width: 760px) {
  .site-header {
    padding: 26px;
  }

  .topbar {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: flex;
    gap: 8px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 300px;
    min-height: calc(100svh - 108px);
    padding: 64px 0 88px;
  }

  .quick-info {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-band {
    grid-template-columns: 1fr 0.92fr;
    align-items: end;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .photo-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 330px;
  }

  .photo-menu figure {
    min-height: 0;
  }

  .photo-menu-feature {
    grid-row: span 2;
  }

  .feature-panel {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .feature-copy,
  .feature-note {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
  }

  .catering-gallery {
    grid-column: 1 / -1;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .catering-gallery figure:nth-child(1),
  .catering-gallery figure:nth-child(3),
  .catering-gallery figure:nth-child(5) {
    grid-column: span 2;
  }

  .visit {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
  }

  footer {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

@media (min-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .photo-menu {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-menu-feature {
    grid-column: span 2;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.2rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-action {
    padding-inline: 11px;
  }

  h1 {
    font-size: 4rem;
  }
}

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