:root {
  --color-ink: #2e231a;
  --color-muted: #746454;
  --color-paper: #f7efe3;
  --color-panel: #fffaf1;
  --color-panel-deep: #efe0cd;
  --color-line: #dcc8af;
  --color-coffee: #6d452c;
  --color-coffee-dark: #3d2619;
  --color-copper: #a86f3f;
  --color-cream: #fff6e8;
  --shadow-soft: 0 20px 60px rgba(61, 38, 25, 0.14);
  --shadow-card: 0 18px 40px rgba(61, 38, 25, 0.12);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(168, 111, 63, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbf5ea 0%, var(--color-paper) 42%, #f1e2cf 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--color-coffee-dark);
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 200, 175, 0.84);
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(109, 69, 44, 0.18);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(61, 38, 25, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--color-muted);
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #ead8c2;
  color: var(--color-coffee-dark);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-ink);
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #c4a17c, #7c5940);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: #8b745c;
  background-image:
    radial-gradient(circle at 74% 42%, rgba(255, 246, 232, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(33, 24, 18, 0.8), rgba(46, 35, 26, 0.34) 54%, rgba(46, 35, 26, 0.14)),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(33, 24, 18, 0.52));
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 136px 0 94px;
  color: #fffaf1;
}

.hero-content::before {
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 28px;
  background: rgba(246, 197, 141, 0.72);
  content: "";
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-copper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid rgba(246, 197, 141, 0.46);
  border-radius: 999px;
  background: rgba(33, 24, 18, 0.22);
  color: #f6c58d;
  font-size: 0.78rem;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 span {
  display: block;
}

h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.35;
}

.hero-copy,
.intro-copy p,
.two-column p,
.contact-layout p {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero-copy {
  position: relative;
  max-width: 720px;
  margin-top: 24px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 250, 241, 0.38);
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.85;
  text-wrap: balance;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
}

.button.primary,
.map-button {
  background: linear-gradient(135deg, var(--color-coffee), var(--color-coffee-dark));
  color: #fffaf1;
}

.button.secondary,
.instagram-button {
  border: 1px solid rgba(255, 250, 241, 0.5);
  color: #fffaf1;
}

.instagram-button {
  border-color: var(--color-line);
  background: #f4e5d2;
  color: var(--color-coffee-dark);
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 56px;
  align-items: center;
}

.about-section {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.7), rgba(241, 226, 207, 0.72));
}

.intro-copy {
  margin-top: 22px;
}

.intro-copy p {
  margin: 0 0 14px;
}

.image-card {
  overflow: hidden;
  border: 1px solid rgba(220, 200, 175, 0.8);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(168, 111, 63, 0.26), rgba(109, 69, 44, 0.16)),
    #e8d5bd;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

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

.image-card img.is-missing {
  opacity: 0;
}

.about-detail {
  margin-top: 54px;
}

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

.feature-card,
.info-card {
  border: 1px solid rgba(220, 200, 175, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 12px 30px rgba(61, 38, 25, 0.07);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #efe0cd;
  color: var(--color-coffee);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-copper);
  font-weight: 900;
}

.feature-card p,
.info-card li {
  color: var(--color-muted);
  font-size: 0.96rem;
}

.info-grid {
  margin-top: 16px;
}

.info-card {
  padding: 22px;
  background: rgba(239, 224, 205, 0.72);
}

.info-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.about-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.about-notes figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(81, 112, 63, 0.22);
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: var(--shadow-card);
}

.about-notes img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  background: #fff;
}

.menu-section {
  background:
    linear-gradient(180deg, #efe0cd 0%, #f8efe1 100%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  gap: 46px;
}

.menu-group {
  display: grid;
  gap: 20px;
}

.menu-group > h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-coffee-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 900;
  letter-spacing: 0;
}

.menu-group > h3::before {
  width: 8px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-copper), var(--color-coffee));
  content: "";
}

.menu-group > h3::after {
  flex: 1;
  height: 1px;
  background: rgba(109, 69, 44, 0.24);
  content: "";
}

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

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(158, 116, 82, 0.28);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
}

.menu-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 2px;
  background: var(--color-copper);
  content: "";
}

.menu-image {
  min-height: 220px;
  background-color: #d7bea0;
  background-image:
    var(--menu-image, none),
    linear-gradient(135deg, #ead5b8, #b89068);
  background-position: center;
  background-size: cover;
}

.menu-card:nth-child(2) .menu-image {
  background-position: center 62%;
}

.menu-card:nth-child(3) .menu-image {
  background-position: center 46%;
}

.menu-body {
  padding: 24px 24px 30px;
}

.menu-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.menu-labels span,
.menu-labels strong {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.menu-labels span {
  background: #efe0cd;
  color: var(--color-coffee-dark);
}

.menu-labels .region {
  background: #dfead5;
  color: #315d39;
}

.menu-labels strong {
  background: var(--color-coffee);
  color: #fffaf1;
}

.menu-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.price {
  color: var(--color-coffee-dark);
  font-weight: 900;
  white-space: nowrap;
}

.menu-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.full-menu {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(158, 116, 82, 0.3);
  border-radius: var(--radius);
  background: #f4ebdd;
  box-shadow: var(--shadow-card);
}

.full-menu figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(158, 116, 82, 0.22);
  background: rgba(255, 250, 241, 0.72);
}

.full-menu span {
  color: var(--color-copper);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.full-menu strong {
  color: var(--color-coffee-dark);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.full-menu img {
  width: 100%;
  height: auto;
  background: #f1efe2;
}

.gallery-section {
  background: #f8efe1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(158, 116, 82, 0.25);
  border-radius: var(--radius);
  background: var(--color-panel-deep);
  box-shadow: var(--shadow-card);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.contact-section {
  background: #fbf4e8;
}

.contact-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-line);
  font-style: normal;
  box-shadow: var(--shadow-soft);
}

.contact-card a,
.contact-card p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 20px;
  background: var(--color-panel);
}

.contact-card span {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-card strong {
  color: var(--color-ink);
  font-size: 1.05rem;
}

.contact-card strong .text-line {
  display: block;
}

.contact-card strong .note-line {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.site-footer {
  padding: 30px 16px;
  border-top: 1px solid var(--color-line);
  background: var(--color-coffee-dark);
  color: rgba(255, 250, 241, 0.8);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .feature-grid,
  .info-grid,
  .about-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-panel);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 700px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(46, 35, 26, 0.22), rgba(46, 35, 26, 0.84)),
      var(--hero-image, none);
  }

  .hero-content {
    padding: 120px 0 72px;
  }

  .two-column,
  .contact-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .nav,
  .section-inner,
  .hero-content {
    width: min(100% - 24px, var(--max-width));
  }

  .hero {
    min-height: 640px;
  }

  .hero-content::before {
    width: 64px;
    margin-bottom: 22px;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6.2rem);
  }

  .hero-copy {
    padding-left: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding: 0 16px;
  }

  .feature-grid,
  .info-grid,
  .about-notes,
  .menu-group-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .info-card {
    padding: 20px;
  }

  .menu-image {
    min-height: 190px;
  }

  .menu-body {
    padding: 20px 20px 28px;
  }

  .full-menu figcaption {
    display: grid;
    padding: 18px;
  }
}
