:root {
  --color-bg: #fff8f2;
  --color-surface: #ffffff;
  --color-text: #2b2b2b;
  --color-text-muted: #5e5e5e;
  --color-accent: #c4572a;
  --color-accent-dark: #9f3f1e;
  --color-accent-2: #dfa15a;
  --color-sage: #677b55;
  --color-ink: #1f3030;
  --color-line: #e8e1db;
  --shadow-soft: 0 8px 24px rgb(52 39 31 / 0.08);
  --font-heading: Georgia, Cambria, "Times New Roman", Times, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1100px;
  --radius: 12px;
  --speed: 180ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-surface);
  padding: 10px 14px;
  transition: transform var(--speed);
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(255 248 242 / 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgb(232 225 219 / 0.7);
  transition: box-shadow var(--speed), background var(--speed);
}

.site-header.is-scrolled {
  background: rgb(255 248 242 / 0.96);
  box-shadow: 0 8px 18px rgb(50 35 26 / 0.08);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-accent);
  box-shadow: 0 4px 12px rgb(52 39 31 / 0.07);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 8px 12px;
  text-decoration: none;
  transition: background var(--speed), color var(--speed);
}

.site-nav a:hover {
  background: rgb(196 87 42 / 0.1);
  color: var(--color-accent-dark);
}

.hero {
  position: relative;
  min-height: min(640px, calc(100svh - 118px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-ink);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: 68% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(31 48 48 / 0.82) 0%, rgb(31 48 48 / 0.56) 36%, rgb(31 48 48 / 0.16) 74%),
    linear-gradient(0deg, rgb(31 48 48 / 0.28), rgb(31 48 48 / 0.04));
}

.hero-content {
  padding-block: 78px;
  color: var(--color-surface);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 3px 24px rgb(0 0 0 / 0.22);
}

.hero-copy {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 0.92);
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  padding: 12px 18px;
  text-decoration: none;
  transition: background var(--speed), color var(--speed), transform var(--speed), border-color var(--speed);
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--color-accent);
  color: var(--color-surface);
}

.button-primary:hover {
  background: var(--color-accent-dark);
}

.button-secondary {
  border: 1px solid rgb(255 255 255 / 0.58);
  background: rgb(255 255 255 / 0.08);
  color: var(--color-surface);
}

.button-secondary:hover {
  background: rgb(255 255 255 / 0.16);
  border-color: rgb(255 255 255 / 0.86);
}

.section {
  padding-block: 72px;
}

.intro-section {
  padding-block: 28px;
  background: var(--color-ink);
  color: var(--color-surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
}

.intro-kicker {
  margin: 0;
  color: var(--color-accent-2);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.12;
}

.intro-copy {
  margin: 0;
  color: rgb(255 255 255 / 0.82);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 28px;
}

.section-heading h2,
.hours-layout h2,
.contact-layout h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.section-copy {
  max-width: 610px;
  margin: 14px 0 0;
  color: var(--color-text-muted);
}

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

.menu-item {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.menu-item h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.12;
}

.menu-item p {
  margin: 10px 0 0;
  color: var(--color-text-muted);
}

.menu-item span {
  align-self: flex-start;
  border-radius: 999px;
  background: rgb(103 123 85 / 0.14);
  color: var(--color-sage);
  font-weight: 850;
  line-height: 1;
  padding: 8px 10px;
}

.hours-section {
  background: #f4eee7;
}

.hours-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.hours-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  padding: 10px;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border-radius: 10px;
  padding: 12px 14px;
}

.hours-row + .hours-row {
  border-top: 1px solid var(--color-line);
}

.hours-row span {
  color: var(--color-text-muted);
}

.hours-row strong {
  color: var(--color-text);
  font-size: 0.95rem;
  text-align: right;
}

.hours-row.is-open {
  background: rgb(196 87 42 / 0.06);
}

.hours-row.is-open span,
.hours-row.is-open strong {
  color: var(--color-ink);
}

.contact-section {
  background: var(--color-bg);
}

.contact-list {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-list a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  font-weight: 750;
  padding: 14px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgb(52 39 31 / 0.05);
  transition: border-color var(--speed), transform var(--speed), color var(--speed);
}

.contact-list a:hover {
  border-color: rgb(196 87 42 / 0.45);
  color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.contact-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(223 161 90 / 0.2);
  color: var(--color-accent-dark);
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
  color: var(--color-text-muted);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: 64px;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-block: 10px;
  }

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

  .site-nav a {
    padding: 7px 9px;
  }

  .hero {
    min-height: min(560px, calc(100svh - 132px));
  }

  .hero-media img {
    object-position: 74% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(31 48 48 / 0.86), rgb(31 48 48 / 0.48) 68%, rgb(31 48 48 / 0.22)),
      linear-gradient(0deg, rgb(31 48 48 / 0.4), transparent 50%);
  }

  .hero-content {
    padding-block: 48px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  .button {
    width: 100%;
  }

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

  .section {
    padding-block: 54px;
  }

  .hours-row {
    grid-template-columns: 0.86fr 1.14fr;
    padding-inline: 12px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
