:root {
  --ink: #16140f;
  --muted: #70695d;
  --cream: #f8f1e7;
  --paper: #fffdf9;
  --gold: #a66a15;
  --gold-soft: #d8b06b;
  --line: rgba(22, 20, 15, 0.14);
  --shadow: 0 24px 70px rgba(45, 31, 10, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(216, 176, 107, 0.16), transparent 23rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 12px;
  z-index: 20;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(30, 22, 8, .08);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; }
nav { margin-left: auto; display: flex; gap: 26px; }
nav a { text-decoration: none; font-size: .95rem; font-weight: 650; }
nav a:hover, .text-link:hover, footer a:hover { color: var(--gold); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: var(--ink);
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 24px rgba(22, 20, 15, .18);
}
.button:hover { transform: translateY(-2px); background: #2d271e; box-shadow: 0 15px 30px rgba(22,20,15,.22); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .9rem; }

main { overflow: hidden; }
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  margin: 0 auto;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 70px;
  align-items: center;
}
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: .78rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(4rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
.hero-text { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.text-link { font-weight: 800; text-decoration: none; }
.order-note { max-width: 630px; margin-top: 28px; padding: 17px 19px; display: flex; gap: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.43); border-radius: 18px; color: var(--muted); }
.order-note p { margin: 0; }
.order-note a { color: var(--gold); font-weight: 800; }
.hero-art { position: relative; }
.logo-card { padding: 20px; border-radius: 50%; background: rgba(255,255,255,.56); box-shadow: var(--shadow); }
.logo-card img { border-radius: 50%; }
.sparkle { position: absolute; color: var(--gold); font-size: 3rem; }
.sparkle-one { top: 4%; right: 1%; }
.sparkle-two { left: -5%; bottom: 10%; font-size: 4rem; }

.highlights {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.highlights article { padding: 34px 32px; }
.highlights article + article { border-left: 1px solid var(--line); }
.highlights span { color: var(--gold); font-size: .8rem; font-weight: 900; }
.highlights h2 { margin-top: 16px; font-family: inherit; font-size: 1.22rem; font-weight: 850; letter-spacing: -.02em; }
.highlights p { margin: 7px 0 0; color: var(--muted); }

.menu-section { width: min(1100px, calc(100% - 40px)); margin: 0 auto; padding-bottom: 120px; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.1rem; }
.menu-frame { max-width: 780px; margin: 0 auto; padding: 16px; border: 1px solid rgba(166,106,21,.25); border-radius: 36px; background: rgba(255,255,255,.55); box-shadow: var(--shadow); }
.menu-frame img { width: 100%; border-radius: 24px; }


.info-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 110px;
  display: grid;
  gap: 70px;
}
.info-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(35px, 6vw, 80px);
  align-items: center;
}
.info-card.reverse { grid-template-columns: 1.18fr .82fr; }
.info-card.reverse .info-copy { order: 2; }
.info-card.reverse .poster-frame { order: 1; }
.info-copy h2 { margin-bottom: 22px; }
.info-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin: 0 0 28px; }
.poster-frame {
  max-width: 680px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(166,106,21,.24);
  border-radius: 32px;
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow);
}
.poster-frame img { width: 100%; border-radius: 22px; }
.poster-frame-hours { max-width: 580px; }

.order-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 110px;
  padding: clamp(38px, 7vw, 78px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-radius: 38px;
  background: var(--ink);
  color: white;
}
.order-section > div { max-width: 760px; }
.order-section h2 { font-size: clamp(2.6rem, 5vw, 4.9rem); }
.order-section p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.button-light { flex: 0 0 auto; background: var(--cream); color: var(--ink); }
.button-light:hover { background: white; }

.about-section {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 52px;
  align-items: center;
}
.about-mark { width: 170px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--gold-soft); border-radius: 50%; font-family: Georgia, serif; font-size: 4rem; }
.about-section h2 { margin-bottom: 22px; }
.about-section p:last-child { max-width: 710px; color: var(--muted); font-size: 1.12rem; }

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer strong { color: var(--ink); font-size: 1.15rem; }
footer p { margin: 4px 0 0; }
.footer-links { display: flex; gap: 22px; align-items: center; }
.footer-links a { font-weight: 800; text-decoration: none; color: var(--ink); }
.copyright { grid-column: 1 / -1; font-size: .86rem; }

@media (max-width: 860px) {
  .site-header nav { display: none; }
  .site-header .button-small { margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; gap: 45px; }
  .hero-art { max-width: 620px; margin: 0 auto; }
  .highlights { grid-template-columns: 1fr; }
  .highlights article + article { border-left: 0; border-top: 1px solid var(--line); }
  .info-card, .info-card.reverse { grid-template-columns: 1fr; }
  .info-card.reverse .info-copy, .info-card.reverse .poster-frame { order: initial; }
  .order-section { align-items: flex-start; flex-direction: column; }
  .about-section { grid-template-columns: 1fr; gap: 26px; }
  .about-mark { width: 125px; }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 20px); }
  .brand span { display: inline; }
  .hero, .highlights, .menu-section, .info-grid, .order-section, .about-section, footer { width: calc(100% - 28px); }
  .hero { min-height: auto; padding-top: 56px; }
  h1 { font-size: clamp(3.3rem, 18vw, 5.5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .order-note { font-size: .92rem; }
  .highlights { margin-bottom: 80px; }
  .menu-section, .about-section { padding-bottom: 0; margin-bottom: 85px; }
  .info-grid { margin-bottom: 85px; gap: 60px; }
  .poster-frame { padding: 7px; border-radius: 23px; }
  .poster-frame img { border-radius: 16px; }
  .menu-frame { padding: 8px; border-radius: 24px; }
  .menu-frame img { border-radius: 17px; }
  .order-section { margin-bottom: 85px; border-radius: 28px; }
  .button-light { width: 100%; }
  footer { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 5px; }
}

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

/* Mobile-first refinements */
html { -webkit-text-size-adjust: 100%; }
body { min-width: 0; overflow-x: clip; }
section, article, div { min-width: 0; }
.button, .text-link, nav a { -webkit-tap-highlight-color: transparent; }
.button:focus-visible, .text-link:focus-visible, nav a:focus-visible, .brand:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    margin-top: 8px;
    min-height: 58px;
    padding: 8px 9px 8px 12px;
    gap: 10px;
  }
  .brand img { width: 38px; height: 38px; }
  .site-header .button-small {
    min-height: 42px;
    padding-inline: 15px;
    white-space: nowrap;
  }
  .hero {
    padding: 48px 0 58px;
    gap: 34px;
  }
  h1 { line-height: .94; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.7rem); line-height: 1; }
  .hero-text { margin-top: 20px; }
  .hero-actions { margin-top: 26px; gap: 15px; }
  .hero-actions .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .order-note { margin-top: 22px; padding: 14px 15px; border-radius: 15px; }
  .logo-card { padding: 10px; }
  .sparkle { display: none; }
  .highlights article { padding: 25px 20px; }
  .menu-section { padding-bottom: 84px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading > p:last-child, .info-copy > p:not(.eyebrow), .about-section p:last-child, .order-section p:not(.eyebrow) {
    font-size: 1rem;
  }
  .info-card { gap: 26px; }
  .info-copy h2 { margin-bottom: 16px; }
  .info-copy > p:not(.eyebrow) { margin-bottom: 22px; }
  .info-copy .button { width: 100%; }
  .poster-frame, .poster-frame-hours { width: 100%; max-width: 540px; }
  .order-section { padding: 34px 24px; gap: 26px; }
  .about-section { grid-template-columns: 92px 1fr; gap: 20px; align-items: start; }
  .about-mark { width: 92px; font-size: 2.5rem; }
  footer { padding-bottom: calc(34px + env(safe-area-inset-bottom)); }
}

@media (max-width: 430px) {
  .site-header { width: calc(100% - 16px); }
  .site-header .button-small { font-size: .82rem; padding-inline: 13px; }
  .hero, .highlights, .menu-section, .info-grid, .order-section, .about-section, footer {
    width: calc(100% - 22px);
  }
  .hero { padding-top: 40px; }
  h1 { font-size: clamp(3rem, 17vw, 4.5rem); }
  h2 { font-size: clamp(2.2rem, 11.5vw, 3.2rem); }
  .eyebrow { font-size: .72rem; letter-spacing: .12em; }
  .button { min-height: 50px; padding-inline: 17px; font-size: .94rem; text-align: center; }
  .order-note { align-items: flex-start; }
  .menu-frame, .poster-frame { box-shadow: 0 14px 38px rgba(45, 31, 10, 0.12); }
  .order-section { padding: 30px 20px; border-radius: 24px; }
  .about-section { grid-template-columns: 1fr; }
  .about-mark { width: 82px; }
}

/* Mobile header brand visibility fix */
@media (max-width: 560px) {
  .site-header {
    justify-content: space-between;
  }
  .brand {
    min-width: 0;
    gap: 8px;
    white-space: nowrap;
  }
  .brand span {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .92rem;
    line-height: 1.1;
  }
  .site-header .button-small {
    flex: 0 0 auto;
    margin-left: 8px;
  }
}

@media (max-width: 360px) {
  .brand img { width: 34px; height: 34px; }
  .brand span { font-size: .8rem; }
  .site-header .button-small {
    min-height: 38px;
    padding-inline: 11px;
    font-size: .76rem;
  }
}

.hours-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin:30px 0;
}

.hour-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 20px;
    background:#fff;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.hour-row span{
    font-size:1rem;
    font-weight:600;
    color:#6d4c2e;
}

.hour-row strong{
    font-size:1rem;
    color:#111;
}

.hours-note{
    margin-top:20px;
    color:#666;
    line-height:1.7;
}

@media (max-width:768px){

    .hour-row{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }

    .hour-row strong{
        font-size:1.05rem;
    }

}