@import url('https://fonts.googleapis.com/css2?family=News+Cycle:wght@400;700&display=swap');

@font-face {
  font-family: 'News Cycle';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.jimstatic.com/s/newscycle/v26/CSR54z1Qlv-GDxkbKVQ_dFsvWNleuc4nG2qQKg.woff2') format('woff2');
}

:root {
  --bg: #fbf6f2;
  --bg-alt: #fffaf7;
  --brand-bg: #fefefe;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --text: #2a1b1b;
  --muted: #765858;
  --line: rgba(166, 76, 58, 0.2);
  --accent: #901818;
  --accent-strong: #c6523f;
  --shadow: 0 14px 30px rgba(70, 34, 28, 0.1);
  --radius: 2px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'News Cycle', 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(198, 82, 63, 0.11), transparent 36%),
    radial-gradient(circle at 90% 18%, rgba(214, 141, 90, 0.1), transparent 34%),
    var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
}

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

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

.section {
  padding: clamp(3.2rem, 7vw, 6rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 246, 0.65));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(254, 254, 254, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(89, 39, 30, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: clamp(150px, 22vw, 210px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.primary-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

.primary-nav a {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: color 200ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  min-height: clamp(360px, 68vh, 680px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(34, 20, 17, 0.36), rgba(34, 20, 17, 0.66)),
    url("822bd2ce-08c2-413d-8600-01e9ad77a79b.webp") center / cover no-repeat;
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

.hero-content,
.hero-card,
.info-card,
.card,
.menu-card,
.contact-card,
.map-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  position: relative;
  overflow: hidden;
}

.hero-content::before,
.hero-card::before,
.info-card::before,
.card::before,
.menu-card::before,
.contact-card::before,
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  pointer-events: none;
}

.hero-content {
  backdrop-filter: blur(4px);
}

.hero-content {
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  max-width: 680px;
  margin-inline: auto;
}

.hero-card {
  padding: 1.4rem;
  align-self: end;
}

.hero-card h2 {
  margin-top: 0;
}

.hero-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.eyebrow {
  color: var(--accent-strong);
  margin: 0 0 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: 'News Cycle', 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

p,
li,
small,
address,
.btn,
.primary-nav a {
  font-family: 'News Cycle', 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}

p,
li,
address {
  line-height: 1.72;
}

h1 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  max-width: 17ch;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
}

.section-title {
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.55rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  margin-top: 0.4rem;
}

.hero-subline {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions,
.stack-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.62rem 1rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 650;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #a32822, var(--accent-strong));
  color: #fff8f3;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.btn-secondary {
  border-color: rgba(198, 82, 63, 0.56);
  color: var(--accent-strong);
  background: rgba(198, 82, 63, 0.1);
}

.about-grid,
.info-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.info-grid {
  grid-auto-rows: 1fr;
}

.about-grid > *,
.info-grid > *,
.location-grid > * {
  height: 100%;
}

.info-grid .info-card {
  display: flex;
  flex-direction: column;
}

.info-grid .stack-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.about-image img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

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

.card,
.menu-card,
.info-card,
.contact-card,
.map-placeholder {
  padding: 1.35rem;
}

.card {
  transition: transform 200ms ease, background-color 200ms ease;
}

.card:hover {
  transform: translateY(-3px);
  background: var(--surface-strong);
  box-shadow: 0 16px 34px rgba(86, 44, 35, 0.14);
}

.menu-card ul,
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-card li,
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 0.6rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: transform 200ms ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

address {
  font-style: normal;
  margin-bottom: 1rem;
}

.map-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--bg-alt);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: inherit;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--brand-bg);
  padding: 2.6rem 0 1.1rem;
}

.site-footer .brand-logo {
  width: clamp(160px, 20vw, 220px);
  opacity: 0.95;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid h3 {
  font-size: 1rem;
}

.footer-grid p {
  color: var(--muted);
  margin: 0.35rem 0;
}

.footer-bottom {
  margin-top: 1.3rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.menu-card,
.info-card,
.contact-card,
.hero-card,
.hero-content {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(180, 58, 52, 0.9);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero-grid,
  .cards-grid,
  .menu-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section {
    padding: 2.6rem 0;
  }

  .hero {
    min-height: clamp(320px, 60vh, 520px);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(254, 254, 254, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 180ms ease;
    padding: 0.7rem;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .primary-nav a {
    display: block;
    width: 100%;
    padding: 0.55rem 0.4rem;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.96rem;
  }

  .site-header.menu-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .about-grid,
  .info-grid,
  .location-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-card,
  .card,
  .menu-card,
  .info-card,
  .contact-card,
  .map-placeholder {
    padding: 1.1rem;
  }

  .map-placeholder iframe {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .cards-grid,
  .menu-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.2rem 0;
  }

  .brand-logo {
    width: clamp(130px, 42vw, 180px);
  }

  .hero {
    min-height: 300px;
  }

  .btn,
  .contact-actions .btn,
  .hero-actions .btn,
  .stack-actions .btn {
    width: 100%;
  }

  .menu-card li,
  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .footer-bottom {
    text-align: center;
  }
}

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