:root {
  --cream: #fff7e8;
  --warm-white: #fffdf6;
  --ink: #14110f;
  --muted: #5e564f;
  --line: #201a16;
  --daisy: #f2b51f;
  --daisy-soft: #ffe7a3;
  --basil: #1f6f45;
  --basil-deep: #154b33;
  --mint: #a7c7a0;
  --tomato: #c94026;
  --shadow: 7px 7px 0 rgba(20, 17, 15, 0.18);
  --radius: 6px;
  --max: 1180px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14px 14px, rgba(31, 111, 69, 0.08) 1.5px, transparent 2px) 0 0 / 42px 42px,
    var(--cream);
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
object {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button:focus-visible,
a:focus-visible,
object:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 3.2rem;
  font-weight: 800;
}

h2 {
  font-size: 2.45rem;
  font-weight: 800;
}

h3 {
  font-size: 1.55rem;
  font-weight: 800;
}

h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--daisy);
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 2px solid rgba(20, 17, 15, 0.12);
  background: rgba(255, 247, 232, 0.9);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(20, 17, 15, 0.08);
}

.nav-shell {
  width: min(100%, var(--max));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--warm-white);
  object-fit: cover;
}

.brand-mark span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.nav-call)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 2px;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-call {
  min-height: 42px;
  padding: 10px 16px;
  background: var(--daisy);
  box-shadow: 4px 4px 0 rgba(20, 17, 15, 0.2);
}

.button-primary {
  background: var(--daisy);
  box-shadow: var(--shadow);
}

.button-secondary {
  background: var(--warm-white);
  box-shadow: 4px 4px 0 rgba(20, 17, 15, 0.14);
}

.button:hover,
.nav-call:hover {
  transform: translate(-2px, -2px);
}

.button-primary:hover,
.nav-call:hover {
  box-shadow: 9px 9px 0 rgba(20, 17, 15, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--warm-white);
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  width: min(100%, calc(var(--max) + 48px));
  min-height: calc(100svh - 120px);
  margin: 0 auto;
  padding: 44px var(--gutter) 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 46px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--daisy);
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-art {
  position: relative;
  margin: 0;
  justify-self: end;
}

.hero-art img {
  width: min(100%, 440px);
  max-height: 660px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center bottom;
  box-shadow: 16px 16px 0 var(--basil);
  transform: translateY(var(--hero-shift, 0));
}

.hero-art figcaption {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(260px, 78%);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--warm-white);
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 5px 5px 0 rgba(20, 17, 15, 0.16);
}

.section-pad {
  padding: 82px var(--gutter);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
  display: grid;
  gap: 15px;
}

.section-heading h2 {
  max-width: 790px;
}

.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.menu-section {
  background: linear-gradient(180deg, rgba(255, 253, 246, 0.76), rgba(255, 247, 232, 0.94));
}

.menu-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.menu-sheet,
.pdf-panel,
.visit-panel {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-sheet {
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(20, 17, 15, 0.06) 32px 34px);
  padding: 24px;
}

.menu-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
}

.menu-sheet-head span {
  color: var(--tomato);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-sheet-head strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
}

.menu-group + .menu-group {
  margin-top: 24px;
}

.menu-group h3 {
  margin-bottom: 8px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  border-top: 1px solid rgba(20, 17, 15, 0.18);
  padding: 12px 0;
}

.menu-item p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.96rem;
}

.menu-item span {
  min-width: 54px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--daisy);
  font-weight: 900;
}

.pdf-panel {
  position: sticky;
  top: 96px;
  overflow: hidden;
  background: var(--basil);
  color: var(--warm-white);
  padding: 24px;
}

.pdf-panel .eyebrow {
  color: var(--daisy-soft);
}

.pdf-panel .eyebrow::before {
  background: var(--tomato);
}

.pdf-panel h3 {
  margin: 10px 0;
  color: var(--warm-white);
}

.pdf-panel p {
  max-width: 480px;
  color: rgba(255, 253, 246, 0.84);
}

.text-link {
  display: inline-flex;
  margin: 14px 0 18px;
  color: var(--daisy-soft);
  font-weight: 900;
}

.pdf-object {
  width: 100%;
  height: 520px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.pdf-corner {
  position: absolute;
  top: -42px;
  right: -36px;
  width: 132px;
  height: 132px;
  opacity: 0.18;
  border-radius: 50%;
}

.takeaway-section {
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(310px, 0.92fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.takeaway-image img {
  width: 100%;
  max-height: 760px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: -14px 14px 0 var(--mint);
}

.takeaway-copy {
  display: grid;
  gap: 20px;
}

.takeaway-copy p {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.08rem;
}

.takeaway-copy .button {
  width: fit-content;
}

.creative-section {
  background: var(--basil-deep);
  color: var(--warm-white);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.creative-section > * {
  width: min(100%, 560px);
}

.creative-copy {
  justify-self: end;
  padding-left: var(--gutter);
}

.creative-copy .eyebrow {
  color: var(--daisy-soft);
}

.creative-copy h2 {
  margin: 18px 0;
}

.creative-copy p {
  color: rgba(255, 253, 246, 0.82);
  font-size: 1.08rem;
}

.drawing-stack {
  position: relative;
  min-height: 640px;
  justify-self: start;
  margin-right: var(--gutter);
}

.drawing-card {
  position: absolute;
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: 12px 12px 0 rgba(242, 181, 31, 0.72);
}

.drawing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawing-card-primary {
  left: 0;
  top: 0;
  width: 58%;
  height: 560px;
}

.drawing-card-secondary {
  right: 0;
  bottom: 0;
  width: 64%;
  height: 360px;
}

.visit-section {
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: -10px 10px 0 var(--daisy);
}

.visit-panel {
  background: var(--warm-white);
  padding: 28px;
  display: grid;
  gap: 22px;
}

.visit-panel h2 {
  max-width: 590px;
}

.status-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.open-status {
  width: fit-content;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--daisy-soft);
  padding: 10px 12px;
  font-weight: 900;
}

.open-status.is-open {
  background: #d9f4d8;
}

.open-status.is-closed {
  background: #ffe1d9;
}

.maps-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--daisy);
  padding: 10px 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(20, 17, 15, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.maps-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(20, 17, 15, 0.18);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(20, 17, 15, 0.16);
  padding-top: 12px;
}

.detail-list dt {
  color: var(--tomato);
  font-weight: 900;
}

.detail-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.hours-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hours-block div {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 14px;
}

.hours-block span,
.hours-block strong {
  display: block;
}

.hours-block span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.hours-block strong {
  font-size: 1.12rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--daisy);
  padding: 9px 12px;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 38px var(--gutter) 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 26px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--warm-white);
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
}

.footer-brand p,
.footer-legal p {
  margin: 3px 0;
}

.footer-legal {
  font-size: 0.92rem;
}

.not-found {
  width: min(100%, 760px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 72px var(--gutter);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 20px;
}

.not-found img {
  width: 96px;
  height: 96px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--warm-white);
}

.not-found p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.1rem;
}

.js-enabled .motion-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 980px) {
  h1 {
    font-size: 5.45rem;
  }

  h2 {
    font-size: 3.35rem;
  }
}

@media (max-width: 900px) {
  .hero,
  .menu-layout,
  .takeaway-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-art {
    justify-self: start;
    width: min(100%, 460px);
  }

  .hero-art img {
    max-height: 430px;
  }

  .pdf-panel {
    position: relative;
    top: auto;
  }

  .takeaway-section {
    gap: 32px;
  }

  .creative-section {
    grid-template-columns: 1fr;
  }

  .creative-copy {
    justify-self: start;
    padding-right: var(--gutter);
  }

  .drawing-stack {
    width: min(100%, 680px);
    justify-self: center;
    margin: 0 var(--gutter);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand-mark span {
    font-size: 0.98rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 66px 12px auto 12px;
    display: grid;
    gap: 8px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--warm-white);
    padding: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 10px 4px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero {
    padding-bottom: 38px;
    gap: 28px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-art figcaption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .section-pad {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .menu-sheet,
  .pdf-panel,
  .visit-panel {
    padding: 18px;
  }

  .menu-sheet-head,
  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-sheet-head {
    display: grid;
  }

  .pdf-object {
    height: 420px;
  }

  .drawing-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .drawing-card {
    position: relative;
    width: 100%;
    height: auto;
  }

  .drawing-card-primary,
  .drawing-card-secondary {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
  }

  .drawing-card img {
    height: auto;
  }

  .visit-photo img {
    min-height: 320px;
  }

  .detail-list div,
  .hours-block,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: flex-start;
  }
}

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

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

  .js-enabled .motion-reveal,
  .js-enabled .motion-reveal.is-visible,
  .hero-art img {
    opacity: 1;
    transform: none;
  }
}
