:root {
  --espresso: #2f1b12;
  --espresso-soft: #4a2c20;
  --cream: #f6ebdd;
  --paper: #fff9f1;
  --orange: #aa3f20;
  --green: #637134;
  --gold: #d8a43b;
  --ink: #24170f;
  --line: rgba(47, 27, 18, 0.22);
  --max: 1240px;
  --display: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--paper);
  background: var(--espresso);
  border: 2px solid var(--gold);
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.concept-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  color: var(--paper);
  background: var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.concept-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.concept-note {
  padding-left: 0.7rem;
  border-left: 1px solid rgba(255, 249, 241, 0.4);
  color: rgba(255, 249, 241, 0.7);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
}

.site-header {
  position: relative;
  z-index: 20;
  max-width: var(--max);
  min-height: 92px;
  margin: 0 auto;
  padding: 1rem 3.5vw;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 2rem;
  background: var(--paper);
}

.brand {
  max-width: 270px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.2rem);
}

.site-nav a {
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-call:hover {
  color: var(--paper);
  background: var(--espresso);
  transform: translateY(-2px);
}

.header-call svg {
  width: 18px;
  fill: currentColor;
}

.hero {
  width: min(calc(100% - 4vw), var(--max));
  min-height: 690px;
  margin: 0 auto 2vw;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  background: var(--cream);
  border-radius: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(3.4rem, 8vw, 7.2rem) clamp(2rem, 5vw, 5.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 0.45rem;
  color: var(--green);
  font-size: 0.62rem;
}

.hero h1,
.section h2,
.story-copy h2,
.visit h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.15rem, 6.6vw, 6.5rem);
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-weight: 400;
}

.hero-lead {
  max-width: 570px;
  margin: 1.8rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--orange);
  box-shadow: 0 8px 0 var(--espresso);
}

.button-primary:hover {
  box-shadow: 0 5px 0 var(--espresso);
}

.text-link {
  padding: 0.4rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  padding-left: 0.35rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-stamp {
  width: max-content;
  margin-top: 3rem;
  padding: 0.7rem 1.15rem;
  transform: rotate(-2deg);
  color: var(--espresso);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stamp span,
.hero-stamp strong {
  display: block;
}

.hero-stamp strong {
  margin-top: 0.18rem;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--green);
  border-radius: 50% 0 0 50% / 8% 0 0 8%;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(255, 249, 241, 0.35);
  border-radius: 50%;
}

.hero-visual::before {
  top: 6%;
  right: -54px;
}

.hero-visual::after {
  bottom: 8%;
  left: -50px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-kicker {
  position: absolute;
  z-index: 3;
  top: 2rem;
  left: 50%;
  width: max-content;
  max-width: 80%;
  padding: 0.65rem 1rem;
  transform: translateX(-50%) rotate(1deg);
  color: var(--espresso);
  background: var(--gold);
  border: 1px solid var(--espresso);
  box-shadow: 4px 4px 0 var(--espresso);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

.visual-label {
  position: absolute;
  z-index: 3;
  padding: 0.55rem 0.8rem;
  color: var(--paper);
  background: var(--orange);
  border: 1px solid var(--paper);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-label-top {
  top: 27%;
  right: 1.5rem;
  transform: rotate(5deg);
}

.visual-label-bottom {
  bottom: 7%;
  left: 2rem;
  transform: rotate(-4deg);
  background: var(--espresso);
}

.word-band {
  overflow: hidden;
  color: var(--paper);
  background: var(--orange);
  border-block: 1px solid var(--espresso);
}

.word-band-track {
  width: max-content;
  min-width: 100%;
  min-height: 72px;
  padding: 1rem 3vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(1.4rem, 3vw, 3rem);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-style: italic;
}

.word-band b {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-style: normal;
}

.section {
  width: min(calc(100% - 8vw), 1160px);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading h2,
.questions h2 {
  max-width: 800px;
  font-size: clamp(2.65rem, 5vw, 5.1rem);
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 1.3rem 0 0;
  font-size: 1.05rem;
}

.ways-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  column-gap: 4rem;
  align-items: end;
}

.ways-heading .eyebrow {
  grid-column: 1 / -1;
}

.service-grid {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--espresso);
}

.service-card {
  min-height: 420px;
  padding: clamp(1.7rem, 3.2vw, 2.8rem);
  display: flex;
  flex-direction: column;
  color: var(--espresso);
  border-right: 1px solid var(--espresso);
}

.service-card:last-child {
  border-right: 0;
}

.card-dine {
  background: var(--gold);
}

.card-take {
  background: var(--cream);
}

.card-delivery {
  color: var(--paper);
  background: var(--green);
}

.service-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-number {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card svg {
  width: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  margin: auto 0 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.8vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.service-card p {
  min-height: 74px;
  margin: 1rem 0 1.8rem;
  font-size: 0.96rem;
}

.service-card a {
  width: max-content;
  max-width: 100%;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card a span {
  padding-left: 0.25rem;
}

.cover-story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 720px;
  color: var(--paper);
  background: var(--espresso);
}

.cover-art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--cream);
}

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

.cover-caption {
  position: absolute;
  right: 1.8rem;
  bottom: 1.8rem;
  margin: 0;
  padding: 0.65rem 1rem;
  transform: rotate(-2deg);
  color: var(--espresso);
  background: var(--paper);
  border: 1px solid var(--espresso);
  box-shadow: 5px 5px 0 var(--orange);
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.story-copy {
  padding: clamp(4rem, 8vw, 8.5rem) clamp(2.5rem, 7vw, 7.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy .eyebrow {
  color: var(--gold);
}

.story-copy h2 {
  max-width: 670px;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.story-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 1.8rem 0 0;
  color: rgba(255, 249, 241, 0.78);
  font-size: 1.05rem;
}

.meal-list {
  margin: 2.2rem 0 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.meal-list span {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 249, 241, 0.45);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-light {
  width: max-content;
  color: var(--espresso);
  background: var(--paper);
}

.button-light:hover {
  background: var(--gold);
}

.questions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.questions-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 1.5rem 0;
}

.dark-link:hover span {
  transform: translate(2px, -2px);
}

.question-list {
  border-top: 1px solid var(--espresso);
}

.question-list details {
  border-bottom: 1px solid var(--espresso);
}

.question-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
}

.question-list summary::-webkit-details-marker {
  display: none;
}

.question-list summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.question-list details[open] summary span {
  transform: rotate(45deg);
}

.question-list details p {
  max-width: 590px;
  margin: -0.3rem 3rem 1.8rem 0;
  color: var(--espresso-soft);
}

.visit {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) max(4vw, calc((100% - 1160px) / 2));
  overflow: hidden;
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(47, 27, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 27, 18, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.visit::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 470px;
  height: 300px;
  border: 18px solid var(--gold);
  border-radius: 50% 50% 0 0;
  opacity: 0.32;
}

.visit-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 2rem;
  align-items: start;
}

.visit h2 {
  max-width: 860px;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
}

.visit-grid {
  position: relative;
  z-index: 1;
  margin-top: clamp(3rem, 7vw, 5.8rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--espresso);
  box-shadow: 12px 12px 0 var(--orange);
}

.address-panel,
.contact-panel {
  min-width: 0;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.address-panel {
  background: var(--paper);
  border-right: 1px solid var(--espresso);
}

.contact-panel {
  color: var(--paper);
  background: var(--green);
}

.pin-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 2.2rem;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--cream);
  border: 1px solid var(--espresso);
  border-radius: 50%;
}

.pin-mark svg {
  width: 30px;
  fill: currentColor;
}

.contact-label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.address-panel address {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.address-note {
  margin: 1.2rem 0 0;
  color: var(--espresso-soft);
}

.contact-row {
  padding: 0 0 1.6rem;
  border-bottom: 1px solid rgba(255, 249, 241, 0.45);
}

.contact-row + .contact-row {
  padding-top: 1.6rem;
}

.contact-row a {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.contact-copy {
  max-width: 500px;
  margin: 1.8rem 0 0;
  color: rgba(255, 249, 241, 0.75);
}

.site-footer {
  padding: 4.5rem max(4vw, calc((100% - 1160px) / 2)) 2rem;
  color: var(--paper);
  background: var(--espresso);
}

.footer-name {
  max-width: 680px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-footer > p {
  margin: 1rem 0 4rem;
  color: rgba(255, 249, 241, 0.7);
}

.footer-end {
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 249, 241, 0.25);
  color: rgba(255, 249, 241, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-end a {
  color: var(--paper);
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .hero-copy {
    padding-bottom: 4rem;
  }

  .hero-visual {
    min-height: 600px;
    border-radius: 10% 10% 0 0 / 6% 6% 0 0;
  }

  .ways-heading {
    grid-template-columns: 1fr;
  }

  .ways-heading .eyebrow {
    grid-column: auto;
  }

  .ways-heading > p:last-child {
    margin-top: 1.3rem;
  }

  .service-card {
    min-height: 380px;
  }

  .cover-story {
    grid-template-columns: 1fr;
  }

  .cover-art {
    min-height: 680px;
  }

  .story-copy {
    padding-block: 5.5rem;
  }

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

  .visit-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .concept-note {
    display: none;
  }

  .site-header {
    min-height: 76px;
    padding-inline: 1.1rem;
  }

  .brand {
    max-width: 195px;
    font-size: 1rem;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
  }

  .hero {
    width: calc(100% - 1.1rem);
    border-radius: 16px;
  }

  .hero-copy {
    padding: 3.6rem 1.45rem 3.2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-stamp {
    margin-top: 2.5rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-kicker {
    top: 1.2rem;
    font-size: 0.85rem;
  }

  .visual-label-top {
    right: 0.7rem;
  }

  .visual-label-bottom {
    left: 0.8rem;
  }

  .word-band-track {
    justify-content: flex-start;
    min-width: max-content;
  }

  .section {
    width: calc(100% - 2.2rem);
    padding-block: 5.2rem;
  }

  .section-heading h2,
  .questions h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

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

  .service-card {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--espresso);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .cover-art {
    min-height: 500px;
  }

  .cover-caption {
    right: 1rem;
    bottom: 1rem;
  }

  .story-copy {
    padding: 5rem 1.3rem;
  }

  .story-copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .question-list summary {
    min-height: 88px;
    font-size: 1.2rem;
  }

  .visit {
    padding: 5rem 1.1rem;
  }

  .visit h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .visit-grid {
    grid-template-columns: 1fr;
    box-shadow: 7px 7px 0 var(--orange);
  }

  .address-panel {
    border-right: 0;
    border-bottom: 1px solid var(--espresso);
  }

  .address-panel,
  .contact-panel {
    padding: 2rem 1.4rem;
  }

  .contact-row a {
    font-size: clamp(1.2rem, 5.5vw, 1.7rem);
  }

  .site-footer {
    padding: 4rem 1.1rem 1.8rem;
  }

  .footer-end {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-stamp {
    max-width: 100%;
  }
}

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

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