:root {
  --ink: #151412;
  --coal: #0f1210;
  --coal-soft: #171a17;
  --gold: #c9a463;
  --gold-bright: #e2c47f;
  --cream: #f8f1e4;
  --paper: #f3eadb;
  --muted: #8f8374;
  --wine: #6f1f2e;
  --green: #26372e;
  --line: rgba(201, 164, 99, 0.28);
  --shadow: 0 28px 70px rgba(7, 8, 7, 0.28);
  --hero-image-position: center 42%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--coal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(15, 18, 16, 0.62), rgba(15, 18, 16, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(15, 18, 16, 0.84);
  box-shadow: 0 1px 0 rgba(201, 164, 99, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.nav-action {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(15, 18, 16, 0.7);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.brand img {
  width: clamp(195px, 23vw, 300px);
  height: auto;
  max-height: 158px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
}

.site-nav {
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(201, 164, 99, 0.34);
  border-radius: 999px;
  background: rgba(15, 18, 16, 0.56);
}

.site-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--coal);
  background: var(--gold);
}

.site-nav a.active {
  color: var(--coal);
  background: var(--gold);
}

.nav-action {
  justify-self: end;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-bright);
  font-weight: 900;
}

.hero {
  position: relative;
  height: 64vh;
  min-height: 520px;
  display: grid;
  align-items: start;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(150px, 18vw, 210px) clamp(20px, 5vw, 64px) 64px;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: var(--hero-image-position);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 7, 6, 0.92) 0%, rgba(9, 10, 9, 0.7) 42%, rgba(9, 10, 9, 0.08) 78%),
    linear-gradient(0deg, rgba(15, 18, 16, 0.88), rgba(15, 18, 16, 0.12) 50%);
}

.hero-content {
  width: min(700px, calc(100% - 40px));
  margin-left: 0;
  padding-top: 0;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Cinzel, Georgia, serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.home-title {
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.3vw, 3.35rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(248, 241, 228, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.visit-band,
.site-footer {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--coal);
  background: var(--gold);
}

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

.button.secondary {
  color: var(--cream);
  border-color: var(--line);
  background: rgba(15, 18, 16, 0.72);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 164, 99, 0.28);
  border-top: 1px solid rgba(201, 164, 99, 0.24);
  border-bottom: 1px solid rgba(201, 164, 99, 0.24);
}

.service-strip div {
  padding: 24px clamp(20px, 5vw, 64px);
  background: var(--coal-soft);
}

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip strong {
  color: var(--gold-bright);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.65rem;
}

.service-strip span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 64px);
}

.page-hero {
  min-height: 300px;
  display: grid;
  align-content: center;
  padding: clamp(96px, 11vw, 132px) clamp(20px, 5vw, 64px) clamp(34px, 5vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 7, 6, 0.92) 0%, rgba(9, 10, 9, 0.7) 42%, rgba(9, 10, 9, 0.08) 78%),
    linear-gradient(0deg, rgba(15, 18, 16, 0.88), rgba(15, 18, 16, 0.12) 50%),
    url("assets/town-hill-hero.png");
  background-position: center, center, var(--hero-image-position);
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(248, 241, 228, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.menu-section,
.reserve-section {
  color: var(--ink);
  background: var(--paper);
}

.gallery-section,
.reviews-section,
.specials-section,
.about-section,
.map-section {
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

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

.featured-menu {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  padding-top: 10px;
  border-top: 1px solid rgba(21, 20, 18, 0.14);
}

.featured-menu-main {
  max-width: 640px;
}

.featured-menu-main h3 {
  margin-bottom: 14px;
  color: var(--wine);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.featured-menu-main p:not(.eyebrow),
.featured-menu-list p {
  color: #675b4e;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--wine);
  font-weight: 900;
}

.featured-menu-list {
  display: grid;
  gap: 0;
}

.featured-menu-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(21, 20, 18, 0.14);
  font-weight: 800;
}

.featured-menu-list strong {
  color: var(--wine);
}

.welcome-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: clamp(22px, 4.5vw, 56px);
  align-items: end;
}

.welcome-section h2 {
  margin-bottom: 0;
}

.welcome-copy {
  padding-left: clamp(20px, 4vw, 44px);
  border-left: 1px solid rgba(21, 20, 18, 0.16);
}

.welcome-copy p {
  color: #675b4e;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.menu-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(21, 20, 18, 0.14);
  border-radius: 8px;
  background: #fff8ea;
  box-shadow: 0 10px 28px rgba(52, 36, 18, 0.08);
}

.menu-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.menu-topline span {
  color: var(--wine);
  font-weight: 900;
}

.menu-card p,
.reserve-copy p,
.visit-band p,
.site-footer {
  color: var(--muted);
}

.menu-page-section {
  padding-top: clamp(48px, 7vw, 86px);
}

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

.menu-category {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(21, 20, 18, 0.14);
  border-radius: 8px;
  background: #fff8ea;
  box-shadow: 0 10px 28px rgba(52, 36, 18, 0.08);
}

.menu-category h2 {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.menu-category ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-category li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(21, 20, 18, 0.1);
}

.menu-category li span {
  font-weight: 800;
}

.menu-category li p {
  margin: 4px 0 0;
  color: #675b4e;
  font-size: 0.92rem;
  line-height: 1.38;
}

.menu-category li strong {
  color: var(--wine);
}

.menu-note {
  margin: 18px 0 0;
  color: #675b4e;
  font-size: 0.92rem;
}

.menu-disclaimer {
  margin: 46px 0 0;
  color: #675b4e;
  font-size: 0.9rem;
  font-style: italic;
}

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

.online-gallery article,
.ratings-grid article {
  overflow: hidden;
  border: 1px solid rgba(21, 20, 18, 0.14);
  border-radius: 8px;
  background: #fff8ea;
  box-shadow: 0 10px 28px rgba(52, 36, 18, 0.08);
}

.online-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--coal-soft);
}

.online-gallery div,
.ratings-grid article {
  padding: 22px;
}

.online-gallery h3 {
  margin-bottom: 6px;
}

.online-gallery p,
.ratings-grid p,
.review-pull-grid p,
.source-note {
  color: #675b4e;
}

.source-note {
  max-width: 920px;
  margin: 22px 0 0;
  font-size: 0.92rem;
}

.ratings-grid,
.review-pull-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ratings-grid {
  margin-bottom: 14px;
}

.ratings-grid strong {
  display: block;
  color: var(--wine);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.ratings-grid span {
  display: block;
  margin: 8px 0 10px;
  color: var(--ink);
  font-weight: 900;
}

.reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: 28px;
}

.reviews-intro h2 {
  margin-bottom: 0;
}

.reviews-intro > p {
  margin: 0;
  color: #675b4e;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.review-pull-grid {
  margin-top: 14px;
}

.review-pull-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(21, 20, 18, 0.14);
  border-radius: 8px;
  background: var(--wine);
  box-shadow: 0 10px 28px rgba(52, 36, 18, 0.08);
}

.review-pull-grid p {
  color: var(--cream);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.12;
}

.review-pull-grid span {
  color: rgba(248, 241, 228, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-themes {
  margin-top: 14px;
}

.review-themes article {
  padding: 24px;
  border: 1px solid rgba(21, 20, 18, 0.14);
  border-radius: 8px;
  background: #fff8ea;
}

.review-themes div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.review-themes span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(111, 31, 46, 0.18);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(111, 31, 46, 0.06);
  font-weight: 900;
}

.specials-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.specials-board article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(21, 20, 18, 0.14);
  border-radius: 8px;
  background: #fff8ea;
  box-shadow: 0 10px 28px rgba(52, 36, 18, 0.08);
}

.specials-board span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(111, 31, 46, 0.24);
  border-radius: 999px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.specials-board p {
  color: #675b4e;
}

.special-edit-label {
  margin-bottom: 8px;
  color: var(--wine) !important;
  font-weight: 900;
}

.chalkboard {
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(226, 196, 127, 0.3);
  border-radius: 8px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    var(--coal-soft);
}

.chalkboard h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.7rem);
}

.chalk-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: rgba(226, 196, 127, 0.25);
}

.chalk-lines p {
  margin: 0;
  padding: 14px 16px;
  color: rgba(248, 241, 228, 0.82);
  background: rgba(15, 18, 16, 0.72);
}

.chalk-lines strong {
  color: var(--gold-bright);
}

.specials-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(32px, 5vw, 58px);
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  color: var(--cream);
  background: var(--green);
}

.specials-callout h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.7rem);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.about-story p:not(.eyebrow),
.about-highlights p {
  color: #675b4e;
}

.about-highlights {
  display: grid;
  gap: 1px;
  background: rgba(21, 20, 18, 0.12);
}

.about-highlights div {
  padding: 22px;
  background: #fff8ea;
}

.about-highlights span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(111, 31, 46, 0.24);
  border-radius: 999px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 18, 0.14);
  border-radius: 8px;
  background: rgba(21, 20, 18, 0.14);
  box-shadow: 0 10px 28px rgba(52, 36, 18, 0.08);
}

.map-panel iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  background: #fff8ea;
}

.map-panel div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
  background: #fff8ea;
}

.map-panel p {
  color: #675b4e;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 4.8vw, 58px);
  background: var(--green);
}

.story-panel p,
.split-section .feature-list p {
  color: rgba(248, 241, 228, 0.72);
}

.feature-list {
  display: grid;
  gap: 1px;
  align-self: center;
  background: rgba(201, 164, 99, 0.28);
}

.feature-list div {
  padding: 20px 22px;
  background: rgba(15, 18, 16, 0.3);
}

.feature-icon {
  display: inline-flex;
  padding: 5px 10px;
  border: 1px solid rgba(226, 196, 127, 0.5);
  border-radius: 999px;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.reserve-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(21, 20, 18, 0.14);
  border-radius: 8px;
  background: #fff8ea;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #675b4e;
  font-size: 0.9rem;
  font-weight: 900;
}

select,
input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(21, 20, 18, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form-note {
  margin: 0;
  color: #675b4e;
  font-size: 0.9rem;
}

.hours-list {
  display: grid;
  max-width: 620px;
  gap: 1px;
  margin-top: 28px;
  background: rgba(21, 20, 18, 0.12);
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 14px 16px;
  background: #fff8ea;
}

.hours-list strong {
  color: var(--ink);
}

.hours-list span {
  color: #675b4e;
  font-weight: 800;
}

.visit-band {
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 64px);
  background: var(--wine);
}

.visit-band .eyebrow,
.visit-band p {
  color: rgba(248, 241, 228, 0.78);
}

.visit-band h2 {
  margin-bottom: 6px;
  font-size: clamp(1.75rem, 3vw, 2.85rem);
}

.call-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--coal);
  background: var(--gold);
}

.call-strip span,
.call-strip a {
  font-weight: 900;
}

.call-strip a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--wine);
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 64px);
  background: var(--coal);
  font-size: 0.92rem;
}

.site-footer .c2-site-credit {
  margin: 0;
  white-space: nowrap;
}

.site-footer .c2-site-credit a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer .c2-site-credit a:hover,
.site-footer .c2-site-credit a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
}

.site-footer--credit-only {
  justify-content: center;
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% - 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(15, 18, 16, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 12px 14px;
  }

  .service-strip,
  .menu-grid,
  .featured-menu,
  .welcome-section,
  .menu-board,
  .online-gallery,
  .ratings-grid,
  .review-pull-grid,
  .reviews-intro,
  .specials-board,
  .chalk-lines,
  .about-section,
  .map-panel,
  .split-section,
  .reserve-section {
    grid-template-columns: 1fr;
  }

  .specials-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-card {
    min-height: auto;
  }

  .welcome-copy {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 164px;
    max-height: 126px;
  }

  .nav-action {
    display: none;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero {
    height: 56vh;
    min-height: 500px;
    padding: 150px 16px 48px;
  }

  .page-hero {
    height: 56vh;
    min-height: 500px;
    padding: 150px 16px 48px;
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
  }

  h1 {
    font-size: 2rem;
  }

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

  .service-strip div,
  .section,
  .visit-band,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .visit-band,
  .site-footer,
  .call-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-panel iframe {
    min-height: 320px;
  }
}


/* C2 Cybertek demo/admin additions */
.c2-demo-ribbon{position:sticky;top:0;z-index:90;background:#0f1210;color:#f8ead0;text-align:center;padding:8px 14px;font-weight:800;font-size:14px;border-bottom:1px solid rgba(201,164,99,.35)}
.c2-demo-ribbon a{color:#c9a463;text-decoration:none}.demo-admin-body{background:#f6efe2}.demo-admin-shell{max-width:1180px;margin:0 auto;padding:28px 20px 70px}.demo-admin-hero{display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:22px;align-items:center;background:linear-gradient(135deg,#171a17,#3a2415);color:#fff;border-radius:28px;padding:30px;margin-bottom:22px;box-shadow:0 20px 50px rgba(0,0,0,.14)}.demo-admin-hero h1{font-family:Cinzel,serif;font-size:clamp(34px,5vw,56px);line-height:1.05;margin:0 0 12px}.demo-admin-hero p{font-size:17px;line-height:1.55;color:#eadfcf}.demo-login-card{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:18px;padding:18px}.demo-login-card strong,.demo-login-card span{display:block;margin:6px 0}.demo-login-card strong{color:#c9a463;font-size:22px}.demo-card{background:#fffaf0;border:1px solid rgba(117,75,38,.18);border-radius:24px;padding:24px;box-shadow:0 16px 36px rgba(72,45,20,.08)}.demo-login-panel{max-width:470px;margin:0 auto}.demo-card h2{font-family:Cinzel,serif;color:#4c2e17;margin:0 0 16px}.demo-card label{display:block;font-weight:800;color:#3b2a1c;margin-bottom:13px}.demo-card input,.demo-card textarea,.demo-card select{width:100%;display:block;margin-top:7px;border:1px solid rgba(117,75,38,.25);border-radius:14px;background:#fff;padding:13px;font:inherit;color:#151412}.demo-card textarea{min-height:105px;resize:vertical}.demo-card .check{display:flex;align-items:center;gap:10px}.demo-card .check input{width:auto;margin:0}.demo-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px}.full{width:100%}.hidden{display:none!important}.demo-note{color:#675b4b;font-weight:700}.demo-actions{display:flex;gap:10px;flex-wrap:wrap}.demo-title-row{display:flex;justify-content:space-between;align-items:end;gap:16px;margin-bottom:16px}.demo-title-row h2{margin:0}.demo-title-row>div:last-child{display:flex;gap:10px;flex-wrap:wrap}.demo-menu-list{display:grid;gap:11px}.demo-menu-item{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:center;background:#fff6e8;border:1px solid rgba(117,75,38,.16);border-radius:16px;padding:15px}.demo-menu-item.off{opacity:.55}.demo-menu-item strong{display:block;color:#24170e}.demo-menu-item strong span{color:#754b26;float:right;margin-left:10px}.demo-menu-item p{margin:6px 0;color:#5c5144;line-height:1.4}.demo-menu-item small{font-weight:900;color:#9d4930}.item-actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}.item-actions button{border:0;border-radius:999px;background:#171a17;color:#c9a463;font-weight:900;padding:9px 12px;cursor:pointer}.item-actions button.danger{background:#9d4930;color:#fff}.demo-toast{position:fixed;right:18px;bottom:18px;background:#151412;color:#fff;padding:14px 17px;border-radius:15px;box-shadow:0 18px 40px rgba(0,0,0,.2);opacity:0;transform:translateY(10px);transition:.2s;z-index:1000}.demo-toast.show{opacity:1;transform:translateY(0)}@media(max-width:850px){.demo-admin-hero,.demo-grid{grid-template-columns:1fr}.demo-title-row,.demo-menu-item{display:block}.item-actions{justify-content:flex-start;margin-top:10px}}


/* v6 C2 Cybertek polish + employment application */
.site-header {
  background: linear-gradient(180deg, rgba(15, 18, 16, 0.88), rgba(15, 18, 16, 0.25));
}
.site-header.is-scrolled {
  background: rgba(15, 18, 16, 0.94);
}
.brand img {
  width: clamp(220px, 25vw, 330px);
  max-height: 170px;
}
.site-nav {
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.nav-action {
  background: rgba(201,164,99,.12);
}
.c2-demo-ribbon {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 10px 16px;
  border: 1px solid rgba(226,196,127,.42);
  border-radius: 999px;
  background: rgba(15,18,16,.86);
  color: var(--cream);
  box-shadow: 0 18px 38px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}
.c2-demo-ribbon a {
  color: var(--gold-bright);
  font-weight: 900;
}
.hero-content,
.page-hero {
  filter: drop-shadow(0 20px 45px rgba(0,0,0,.24));
}
.home-title,
.page-hero h1 {
  text-wrap: balance;
}
.button {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.employment-teaser {
  background:
    radial-gradient(circle at 20% 0%, rgba(226,196,127,.22), transparent 34%),
    linear-gradient(135deg, rgba(111,31,46,.35), rgba(15,18,16,.96));
}
.employment-teaser-card {
  max-width: 1050px;
  margin: auto;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(226,196,127,.35);
  border-radius: 32px;
  background: rgba(15,18,16,.72);
  box-shadow: var(--shadow);
}
.employment-teaser-card h2 {
  max-width: 760px;
}
.employment-teaser-card p {
  max-width: 720px;
  color: rgba(248,241,228,.82);
  font-size: 1.08rem;
}
.employment-hero {
  background:
    linear-gradient(90deg, rgba(6,7,6,.95), rgba(6,7,6,.65), rgba(6,7,6,.35)),
    radial-gradient(circle at 82% 30%, rgba(226,196,127,.24), transparent 28%),
    url("assets/town-hill-grille-logo-web.png") right 8% center / min(420px, 42vw) no-repeat,
    var(--coal);
}
.employment-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  background: var(--coal-soft);
}
.option-card {
  padding: 28px;
  border: 1px solid rgba(226,196,127,.28);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(243,234,219,.08), rgba(243,234,219,.035));
  box-shadow: 0 24px 54px rgba(0,0,0,.2);
}
.option-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--coal);
  background: var(--gold);
  font-weight: 900;
}
.option-card h2 {
  margin-top: 18px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}
.option-card p {
  color: rgba(248,241,228,.76);
}
.application-section {
  background:
    linear-gradient(180deg, rgba(15,18,16,.98), rgba(23,26,23,.98));
}
.application-intro {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}
.application-intro p {
  color: rgba(248,241,228,.78);
}
.employment-form {
  max-width: 1080px;
  margin: auto;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(226,196,127,.32);
  border-radius: 30px;
  background: rgba(248,241,228,.06);
  box-shadow: var(--shadow);
}
.employment-form fieldset {
  margin: 0 0 22px;
  padding: 22px;
  border: 1px solid rgba(226,196,127,.28);
  border-radius: 22px;
}
.employment-form legend {
  padding: 0 10px;
  color: var(--gold-bright);
  font-family: Cinzel, Georgia, serif;
  font-weight: 800;
}
.form-grid,
.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 15px;
}
.employment-form label {
  display: grid;
  gap: 7px;
  color: var(--cream);
  font-weight: 800;
}
.employment-form input,
.employment-form select,
.employment-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(226,196,127,.36);
  border-radius: 14px;
  color: var(--cream);
  background: rgba(15,18,16,.74);
  font: inherit;
}
.employment-form textarea {
  resize: vertical;
}
.check-line {
  grid-template-columns: auto 1fr !important;
  align-items: center;
  font-weight: 700 !important;
}
.check-line input {
  width: auto;
}
.application-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.application-note {
  min-height: 24px;
  color: var(--gold-bright);
  font-weight: 800;
}
.site-footer img {
  width: 150px;
  margin-bottom: 8px;
}
@media (max-width: 980px) {
  .employment-options,
  .form-grid,
  .availability-grid {
    grid-template-columns: 1fr;
  }
  .employment-hero {
    background:
      linear-gradient(90deg, rgba(6,7,6,.96), rgba(6,7,6,.76)),
      var(--coal);
  }
  .c2-demo-ribbon {
    width: calc(100% - 28px);
    text-align: center;
    bottom: 10px;
  }
}
@media print {
  .site-header,
  .c2-demo-ribbon,
  .hero-actions,
  .employment-options,
  .site-footer,
  .application-actions,
  .menu-toggle {
    display: none !important;
  }
  body {
    color: #111 !important;
    background: white !important;
  }
  .page-hero,
  .application-section,
  .employment-form,
  .employment-form fieldset {
    color: #111 !important;
    background: white !important;
    box-shadow: none !important;
  }
  .employment-form input,
  .employment-form select,
  .employment-form textarea {
    color: #111 !important;
    background: white !important;
    border-color: #777 !important;
  }
}

/* Live QR page final pass: centered and readable on the light card */
html body main.qr-page {
  width: 100vw !important;
  max-width: none !important;
  min-height: calc(100vh - 92px) !important;
  margin: 0 !important;
  padding: 32px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

html body main.qr-page .qr-print-card {
  width: min(300px, calc(100vw - 32px)) !important;
  max-width: 300px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  color: #3f2a10 !important;
}

html body main.qr-page .qr-print-card .eyebrow,
html body main.qr-page .qr-print-card h1 {
  color: #8a5a13 !important;
}

html body main.qr-page .qr-print-card p:not(.eyebrow) {
  color: #493515 !important;
}

html body main.qr-page .qr-print-card img {
  width: min(145px, 50vw) !important;
  height: auto !important;
  margin: 10px auto 12px !important;
  display: block !important;
}

html body main.qr-page .qr-print-card .button,
html body main.qr-page .qr-print-card .button.secondary {
  background: #8a5a13 !important;
  border-color: #8a5a13 !important;
  color: #fff8e8 !important;
}

.manager-legal-footer {
  max-width: 1480px;
  margin: 28px auto 0;
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  line-height: 1.65;
  text-align: center;
}

.manager-legal-footer strong {
  color: #fff;
}

.manager-legal-footer a {
  color: #d9b66f;
  text-decoration: none;
}

.module-grid strong,
.module-grid span {
  display: block;
}

.module-grid strong {
  margin-bottom: 7px;
  line-height: 1.25;
}

.module-grid span {
  color: rgba(248,241,228,.72);
  line-height: 1.5;
}

.report-summary {
  grid-template-columns: repeat(3, 1fr);
}

.report-summary article span {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.report-rank-list {
  display: grid;
  gap: 14px;
}

.report-rank-row {
  display: grid;
  gap: 8px;
}

.report-rank-row > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.report-rank-row span {
  color: rgba(248,241,228,.68);
  font-size: .84rem;
}

.report-rank-row i {
  display: block;
  width: var(--report-width);
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b88937, #f0d28d);
}

.report-status-grid div {
  text-align: center;
}

.report-status-grid strong {
  color: var(--gold-bright);
  font-size: 1.6rem;
}

@media (max-width: 850px) {
  .report-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

.inventory-list {
  display: grid;
  gap: 10px;
}

.inventory-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px auto;
  gap: 18px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(226,196,127,.18);
  border-radius: 16px;
  background: rgba(15,18,16,.42);
}

.inventory-row.is-low {
  border-color: rgba(221,109,82,.65);
  background: rgba(151,55,39,.12);
}

.inventory-row > div > strong,
.inventory-row > div > span,
.inventory-level strong,
.inventory-level span {
  display: block;
}

.inventory-row > div > span,
.inventory-level span {
  margin-top: 4px;
  color: rgba(248,241,228,.66);
  font-size: .8rem;
}

.inventory-row.is-low .inventory-level strong {
  color: #ffad94;
}

.inventory-status {
  align-self: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(226,196,127,.12);
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 850;
}

@media (max-width: 760px) {
  .inventory-row {
    grid-template-columns: 1fr;
  }

  .inventory-row .backend-menu-actions {
    justify-content: flex-start;
  }
}

.cocktail-qr-card {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
}

.cocktail-qr-card img {
  width: 150px;
  height: 150px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
}

.cocktail-guide-body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg,#0e1512,#17231d);
  color: #f8f1e4;
  font-family: Inter,Arial,sans-serif;
}

.cocktail-guide-header,
.cocktail-guide-shell {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}

.cocktail-guide-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding: 32px 0 24px;
  border-bottom: 1px solid rgba(226,196,127,.25);
}

.cocktail-guide-header h1 {
  margin: 4px 0 8px;
  font-family: Cinzel,Georgia,serif;
  font-size: clamp(2rem,7vw,3.4rem);
}

.cocktail-guide-header p {
  max-width: 720px;
}

.cocktail-guide-shell {
  padding: 24px 0 40px;
}

.cocktail-guide-tools {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.cocktail-guide-tools input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid rgba(226,196,127,.35);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
}

.cocktail-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 16px;
}

.cocktail-guide-card {
  padding: 20px;
  border: 1px solid rgba(226,196,127,.25);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.cocktail-guide-card h2 {
  margin: 14px 0 8px;
  color: #f0d28d;
}

.cocktail-guide-card-head,
.cocktail-guide-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cocktail-guide-card-head span,
.cocktail-guide-card-head strong {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(226,196,127,.12);
  font-size: .78rem;
}

.cocktail-guide-card dl {
  display: grid;
  gap: 7px;
}

.cocktail-guide-card dt,
.cocktail-guide-card dd {
  margin: 0;
}

.cocktail-guide-card dt {
  color: rgba(248,241,228,.65);
}

.cocktail-guide-card ul {
  padding-left: 20px;
  line-height: 1.7;
}

.cocktail-guide-instruction {
  display: grid;
  gap: 5px;
  padding: 13px;
  border-radius: 13px;
  background: rgba(226,196,127,.1);
}

@media (max-width: 650px) {
  .cocktail-qr-card,
  .cocktail-guide-header {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }
}

/* Town Hill final homepage ribbon spacing - keep at end */
body .snap-ribbon {
  margin-top: 18px !important;
  border-top: 0 !important;
}

body .snap-ribbon a {
  text-decoration: none !important;
  border-top: 0 !important;
}

/* Final QR page centering override */
html body main.qr-page {
  width: 100vw !important;
  max-width: none !important;
  min-height: calc(100vh - 92px) !important;
  margin: 0 !important;
  padding: 32px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

html body main.qr-page .qr-print-card {
  width: min(300px, calc(100vw - 32px)) !important;
  max-width: 300px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

html body main.qr-page .qr-print-card img {
  width: min(145px, 50vw) !important;
  height: auto !important;
  margin: 10px auto 12px !important;
  display: block !important;
}


/* v6.1 layout fix - remove large oval/logo overlay and fix admin top spacing */
.hero-copy::before,
.hero-content::before,
.home-hero::before,
.home-title::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

.hero,
.home-hero,
.page-hero {
  padding-top: 150px !important;
}

.site-header,
.admin-top,
.topbar {
  position: relative !important;
  top: auto !important;
}

.admin-body .admin-shell {
  padding-top: 28px !important;
}

.admin-top {
  min-height: 86px !important;
  z-index: 5 !important;
}

.brand img,
.logo-img {
  width: clamp(150px, 18vw, 230px) !important;
  max-height: 112px !important;
  object-fit: contain !important;
}

.page-hero.employment-hero {
  background:
    linear-gradient(90deg, rgba(6,7,6,.95), rgba(6,7,6,.68)),
    var(--coal) !important;
}

@media (max-width: 980px) {
  .hero,
  .home-hero,
  .page-hero {
    padding-top: 115px !important;
  }

  .brand img,
  .logo-img {
    width: 145px !important;
    max-height: 84px !important;
  }
}


/* v6.2 fix - remove unwanted center oval/arch overlay on home page */
.hero::before,
.hero::after,
.home-hero::before,
.home-hero::after,
.page-hero::before,
.page-hero::after,
.hero-media::before,
.hero-media::after,
.hero-visual::before,
.hero-visual::after,
.hero-image::before,
.hero-image::after,
.arch,
.hero-arch,
.oval,
.hero-oval,
.decorative-oval,
.center-oval {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hero-media,
.hero-visual,
.hero-image {
  overflow: visible !important;
}

.hero-media img,
.hero-visual img,
.hero-image img {
  border-radius: 0 !important;
  clip-path: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}


/* v6.3 definitive clean homepage hero - removes center oval by rebuilding hero */
body .hero {
  position: relative !important;
  height: auto !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  isolation: isolate !important;
  padding: 185px clamp(20px, 5vw, 64px) 80px !important;
  background:
    linear-gradient(90deg, rgba(6,7,6,.93) 0%, rgba(9,10,9,.72) 43%, rgba(9,10,9,.18) 78%),
    linear-gradient(0deg, rgba(15,18,16,.88), rgba(15,18,16,.10) 52%),
    url("assets/town-hill-hero.png") center 42% / cover no-repeat !important;
}

body .hero-image,
body .hero-shade {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

body .hero::before,
body .hero::after,
body .hero-content::before,
body .hero-content::after,
body .home-title::before,
body .home-title::after,
body .hero-copy::before,
body .hero-copy::after {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

body .hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: min(700px, 100%) !important;
  margin: 0 !important;
}

body .site-header {
  position: relative !important;
  top: auto !important;
  background: rgba(15,18,16,.96) !important;
  box-shadow: 0 1px 0 rgba(201,164,99,.28) !important;
}

body .c2-demo-ribbon {
  position: relative !important;
  top: auto !important;
}

body .brand img {
  width: clamp(150px, 18vw, 230px) !important;
  max-height: 110px !important;
  object-fit: contain !important;
}

@media (max-width: 900px) {
  body .hero {
    min-height: 560px !important;
    padding: 130px 22px 60px !important;
    background-position: center center !important;
  }
}


/* v6.4 remove C2 demo ribbon text */
.c2-demo-ribbon {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}


/* v6.5 better employment application tools and application-only print */
.application-tools {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr) !important;
  max-width: 1100px;
  margin: auto;
}
.print-download-card {
  border-color: rgba(226,196,127,.48) !important;
  background:
    radial-gradient(circle at 85% 15%, rgba(226,196,127,.18), transparent 30%),
    linear-gradient(180deg, rgba(243,234,219,.10), rgba(243,234,219,.045)) !important;
}
.application-tool-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.application-tool-buttons .button {
  min-width: 180px;
}
.printable-application {
  max-width: 1080px;
  margin: auto;
}
.application-section .employment-form {
  margin-top: 0;
}
@media (max-width: 980px) {
  .application-tools {
    grid-template-columns: 1fr !important;
  }
}


/* v6.6 logo on employment application */
.application-logo-block {
  max-width: 1080px;
  margin: 0 auto 18px;
  text-align: center;
}
.application-logo-block img {
  width: min(300px, 80vw);
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.28));
}
@media print {
  .application-logo-block {
    display: block !important;
    margin-bottom: 10px !important;
  }
  .application-logo-block img {
    max-width: 180px !important;
    filter: none !important;
  }
}


/* v7 backend + upgraded menu pages */
.menu-pro-hero{background:linear-gradient(90deg,rgba(6,7,6,.94),rgba(6,7,6,.70),rgba(6,7,6,.22)),url("assets/town-hill-hero.png") center/cover no-repeat!important}.menu-feature-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;background:var(--coal-soft)}.menu-feature-strip article,.backend-card,.backend-login-form{padding:22px;border:1px solid rgba(226,196,127,.26);border-radius:22px;background:rgba(248,241,228,.055)}.menu-feature-strip strong,.menu-feature-strip span{display:block}.menu-feature-strip strong,.backend-card h2{color:var(--gold-bright);font-family:Cinzel,Georgia,serif}.upgraded-menu-section{background:linear-gradient(180deg,rgba(15,18,16,.98),rgba(23,26,23,.98))}.menu-filter-bar{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin:0 auto 26px}.menu-filter-bar button{border:1px solid rgba(226,196,127,.42);border-radius:999px;padding:10px 16px;background:rgba(248,241,228,.05);color:var(--cream);font-weight:850}.menu-filter-bar button.active{background:var(--gold);color:var(--coal)}.featured-menu-row{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:1100px;margin:0 auto 28px}.featured-menu-card{border:1px solid rgba(226,196,127,.42);border-radius:24px;padding:22px;background:rgba(248,241,228,.06)}.featured-menu-card small,.featured-menu-card strong,.featured-menu-card span{display:block}.featured-menu-card small,.featured-menu-card span,.public-menu-item .price{color:var(--gold-bright);font-weight:900}.featured-menu-card strong{font-family:Cinzel,Georgia,serif;font-size:1.45rem}.upgraded-menu-grid{max-width:1120px;margin:auto;display:grid;gap:26px}.public-menu-category{border:1px solid rgba(226,196,127,.26);border-radius:28px;overflow:hidden;background:rgba(248,241,228,.045)}.public-menu-category-head{padding:22px 24px;background:rgba(226,196,127,.10);display:flex;justify-content:space-between}.public-menu-category-head h3{margin:0;color:var(--gold-bright);font-family:Cinzel,Georgia,serif}.public-menu-items{display:grid;grid-template-columns:repeat(2,1fr)}.public-menu-item{padding:22px 24px;border-top:1px solid rgba(226,196,127,.14);display:grid;grid-template-columns:1fr auto;gap:20px}.public-menu-item:nth-child(odd){border-right:1px solid rgba(226,196,127,.14)}.public-menu-item p,.featured-menu-card p{color:rgba(248,241,228,.70);line-height:1.5}.public-menu-item em{color:var(--gold-bright);font-weight:900;font-style:normal}.menu-cta{display:grid;grid-template-columns:1fr auto;gap:22px;align-items:center;background:linear-gradient(135deg,rgba(111,31,46,.38),rgba(15,18,16,.96))}.backend-body{margin:0;background:radial-gradient(circle at 10% 0%,rgba(226,196,127,.12),transparent 28%),linear-gradient(180deg,#0f1210,#171a17);color:var(--cream);font-family:Inter,Arial,sans-serif}.backend-topbar{padding:14px clamp(18px,4vw,52px);display:flex;justify-content:space-between;gap:20px;align-items:center;border-bottom:1px solid rgba(226,196,127,.28);background:rgba(15,18,16,.94)}.backend-brand{display:flex;align-items:center;gap:14px;color:var(--cream);text-decoration:none}.backend-brand img{width:150px;max-height:86px;object-fit:contain}.backend-brand strong,.backend-brand small{display:block}.backend-brand strong{font-family:Cinzel,Georgia,serif}.backend-brand small,.backend-card p{color:rgba(248,241,228,.70)}.backend-top-actions{display:flex;gap:10px;flex-wrap:wrap}.backend-top-actions a,.backend-top-actions button,.backend-menu-actions button,.special-manager-card button,.application-card button{border:1px solid rgba(226,196,127,.36);border-radius:999px;padding:9px 13px;background:rgba(248,241,228,.05);color:var(--cream);text-decoration:none;font-weight:850}.backend-shell{padding:clamp(18px,4vw,42px)}.backend-login-card{max-width:1100px;margin:40px auto;display:grid;grid-template-columns:1fr 390px;gap:24px;align-items:center;padding:clamp(28px,5vw,54px);border:1px solid rgba(226,196,127,.32);border-radius:34px;background:rgba(248,241,228,.055)}.backend-login-card h1,.backend-page-head h1{margin:0 0 14px;font-family:Cinzel,Georgia,serif;font-size:clamp(2.2rem,5vw,4.2rem);line-height:1}.backend-login-form label,.backend-card label{display:grid;gap:7px;margin-bottom:13px;font-weight:850}.backend-login-form input,.backend-card input,.backend-card select,.backend-card textarea{width:100%;border:1px solid rgba(226,196,127,.35);border-radius:14px;padding:12px;color:var(--cream);background:rgba(15,18,16,.74);font:inherit}.backend-app{display:grid;grid-template-columns:230px 1fr;gap:22px;max-width:1460px;margin:auto}.backend-sidebar{position:sticky;top:22px;align-self:start;display:grid;gap:10px;padding:16px;border:1px solid rgba(226,196,127,.25);border-radius:24px;background:rgba(248,241,228,.045)}.backend-sidebar button{border:0;border-radius:14px;padding:13px;text-align:left;background:transparent;color:rgba(248,241,228,.78);font-weight:900}.backend-sidebar button.active{background:var(--gold);color:var(--coal)}.backend-page{display:none}.backend-page.active{display:grid;gap:20px}.backend-page-head{display:flex;justify-content:space-between;gap:18px;align-items:end;padding:24px;border:1px solid rgba(226,196,127,.22);border-radius:28px;background:rgba(248,241,228,.04)}.backend-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.backend-stats article{padding:22px;border-radius:24px;border:1px solid rgba(226,196,127,.25);background:rgba(248,241,228,.06)}.backend-stats span{display:block;color:var(--gold-bright);font-size:2.4rem;font-weight:950}.backend-grid-two,.website-form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.quick-actions,.button-row{display:flex;gap:10px;flex-wrap:wrap}.backend-check{display:flex!important;align-items:center}.backend-check input{width:auto!important}.tool-list,.module-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.tool-list span,.module-grid div{padding:13px;border-radius:14px;background:rgba(226,196,127,.08)}.backend-card-head{display:flex;justify-content:space-between;gap:14px;align-items:center}.backend-card-head input{max-width:320px}.backend-menu-list,.specials-manager-list,.applications-list{display:grid;gap:12px}.backend-menu-item,.special-manager-card,.application-card{display:grid;grid-template-columns:1fr auto;gap:14px;align-items:center;padding:16px;border:1px solid rgba(226,196,127,.18);border-radius:18px;background:rgba(15,18,16,.42)}.backend-menu-item.is-hidden{opacity:.58}.backend-menu-item-title{display:flex;justify-content:space-between;gap:14px}.backend-menu-item-title span,.special-manager-card span,.application-card span{color:var(--gold-bright);font-weight:950}.backend-menu-actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}.backend-menu-actions .danger{border-color:rgba(186,70,70,.45)}.span-two{grid-column:1/-1}.backend-empty{padding:20px;border-radius:18px;background:rgba(226,196,127,.08)}.toast{position:fixed;right:18px;bottom:18px;z-index:99;padding:13px 16px;border-radius:16px;background:rgba(15,18,16,.94);color:var(--cream);border:1px solid rgba(226,196,127,.28);opacity:0;transform:translateY(10px);transition:.2s}.toast.show{opacity:1;transform:translateY(0)}.hidden{display:none!important}@media(max-width:1050px){.backend-app,.backend-login-card,.backend-grid-two,.public-menu-items,.featured-menu-row,.menu-feature-strip,.menu-cta{grid-template-columns:1fr!important}.backend-sidebar{position:static;grid-template-columns:repeat(2,1fr)}.backend-stats{grid-template-columns:repeat(2,1fr)}.public-menu-item:nth-child(odd){border-right:0}}@media(max-width:650px){.backend-sidebar,.backend-stats,.website-form-grid,.tool-list,.module-grid{grid-template-columns:1fr}.backend-page-head,.backend-card-head,.backend-menu-item,.special-manager-card,.application-card{display:grid;grid-template-columns:1fr}}


/* v7.2 edit button no-scroll visual cue */
.edit-highlight {
  outline: 2px solid var(--gold-bright, #e2c47f) !important;
  box-shadow: 0 0 0 6px rgba(226,196,127,.16), 0 24px 70px rgba(0,0,0,.28) !important;
  transition: outline .2s ease, box-shadow .2s ease;
}


/* v7.3 inline current menu editing */
.backend-menu-item {
  grid-template-columns: minmax(0,1fr) auto;
}
.inline-menu-editor {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(226,196,127,.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(226,196,127,.12), transparent 30%),
    rgba(15,18,16,.58);
}
.inline-editor-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 180px 220px;
  gap: 12px;
  align-items: end;
}
.inline-editor-grid label {
  display: grid;
  gap: 6px;
  color: var(--cream);
  font-weight: 850;
}
.inline-editor-grid input,
.inline-editor-grid select,
.inline-editor-grid textarea {
  width: 100%;
  border: 1px solid rgba(226,196,127,.35);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--cream);
  background: rgba(15,18,16,.74);
  font: inherit;
}
.inline-span {
  grid-column: 1 / -1;
}
.inline-editor-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.inline-editor-actions button {
  border: 1px solid rgba(226,196,127,.36);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(248,241,228,.05);
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
}
.inline-editor-actions button.save {
  background: var(--gold);
  color: var(--coal);
}
.edit-highlight {
  outline: 2px solid var(--gold-bright, #e2c47f) !important;
  box-shadow: 0 0 0 6px rgba(226,196,127,.16) !important;
}
@media (max-width: 850px) {
  .inline-editor-grid {
    grid-template-columns: 1fr;
  }
  .backend-menu-item {
    grid-template-columns: 1fr;
  }
}

/* C2 Restaurant Demo v7.5 additions */
.backend-note{color:rgba(255,255,255,.68);font-size:.92rem;margin-top:-.35rem}.file-button{display:inline-flex;align-items:center;justify-content:center;cursor:pointer}.file-button input{display:none}.inline-menu-editor{border:1px solid rgba(212,175,55,.45);background:rgba(255,255,255,.06);border-radius:18px;padding:18px;margin-top:16px;grid-column:1/-1}.inline-editor-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.inline-editor-grid .inline-span{grid-column:1/-1}.inline-editor-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}.inline-editor-actions .save{background:#d4af37;color:#14110d;border:0;border-radius:999px;padding:10px 16px;font-weight:800}.edit-highlight{box-shadow:0 0 0 4px rgba(212,175,55,.28)}@media(max-width:800px){.inline-editor-grid{grid-template-columns:1fr}}
.menu-admin-toolbar{display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;margin:16px 0 18px;padding:14px;border:1px solid rgba(226,196,127,.22);border-radius:17px;background:rgba(226,196,127,.06)}.menu-admin-toolbar>strong{color:var(--gold-bright);white-space:nowrap}.menu-category-filters{display:flex;gap:7px;flex-wrap:wrap}.menu-category-filters button{padding:8px 11px;border:1px solid rgba(226,196,127,.3);border-radius:999px;background:rgba(15,18,16,.42);color:var(--cream);font-weight:800;cursor:pointer}.menu-category-filters button.active{border-color:var(--gold);background:var(--gold);color:var(--coal)}.backend-menu-item{position:relative;grid-template-columns:minmax(0,1fr) minmax(220px,auto);padding:20px}.backend-menu-summary{min-width:0}.menu-category-badge{display:inline-flex;margin-bottom:9px;padding:5px 9px;border-radius:999px;color:var(--gold-bright);background:rgba(226,196,127,.1);font-size:.68rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}.backend-menu-item-title strong{font-size:1.08rem}.backend-menu-item-title span{padding:4px 9px;border-radius:9px;background:rgba(226,196,127,.09);font-size:1.05rem}.backend-menu-item p{margin:8px 0 11px;line-height:1.5}.menu-status-row{display:flex;gap:7px;flex-wrap:wrap}.menu-status-row small{padding:5px 8px;border-radius:999px;font-weight:800}.menu-status-row .on{color:#b7f7d3;background:rgba(34,197,94,.13)}.menu-status-row .off{color:#fecaca;background:rgba(239,68,68,.13)}.menu-status-row .featured{color:#fff0b3;background:rgba(226,196,127,.14)}.backend-menu-actions{max-width:280px}.backend-menu-actions .menu-edit-primary{border-color:var(--gold);background:var(--gold);color:var(--coal);box-shadow:0 8px 22px rgba(212,175,55,.16)}.menu-form-options{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:5px 0 14px;padding:12px;border-radius:14px;background:rgba(226,196,127,.06)}@media(max-width:900px){.menu-admin-toolbar{grid-template-columns:1fr}.backend-menu-item{grid-template-columns:1fr}.backend-menu-actions{max-width:none;justify-content:flex-start}}@media(max-width:560px){.menu-form-options{grid-template-columns:1fr}.menu-category-filters{display:grid;grid-template-columns:1fr 1fr}.backend-menu-actions{display:grid;grid-template-columns:1fr 1fr}.backend-menu-actions button{width:100%}}
.restaurant-manager-tour{display:grid;grid-template-columns:190px repeat(4,minmax(0,1fr));gap:10px}.restaurant-manager-tour>div,.restaurant-manager-tour>button{position:relative;min-height:112px;padding:15px;border:1px solid rgba(226,196,127,.24);border-radius:18px;text-align:left;color:var(--cream);background:rgba(248,241,228,.05)}.restaurant-manager-tour>button{cursor:pointer;font:inherit;transition:transform .16s ease,border-color .16s ease,background .16s ease}.restaurant-manager-tour>button:hover{transform:translateY(-2px);border-color:rgba(226,196,127,.6);background:rgba(226,196,127,.1)}.restaurant-manager-tour span{display:block;margin-bottom:8px;color:var(--gold-bright);font-size:.65rem;font-weight:900;letter-spacing:.1em}.restaurant-manager-tour strong{display:block;font-family:Cinzel,Georgia,serif;font-size:.9rem}.restaurant-manager-tour small{display:block;margin-top:5px;color:rgba(248,241,228,.64);font-size:.68rem;line-height:1.4}.restaurant-manager-tour b{position:absolute;right:12px;top:11px;color:var(--gold-bright)}.restaurant-tour-intro{background:linear-gradient(135deg,rgba(111,31,46,.36),rgba(226,196,127,.08))!important}@media(max-width:1050px){.restaurant-manager-tour{grid-template-columns:repeat(2,1fr)}.restaurant-tour-intro{grid-column:1/-1}}@media(max-width:580px){.restaurant-manager-tour{grid-template-columns:1fr}}

/* v7.6 admin security + audit log */
.current-user-badge{display:inline-flex;align-items:center;border:1px solid rgba(226,196,127,.36);border-radius:999px;padding:9px 13px;background:rgba(226,196,127,.10);color:var(--gold-bright);font-weight:900}.audit-list{display:grid;gap:12px}.audit-card{padding:16px;border:1px solid rgba(226,196,127,.18);border-radius:18px;background:rgba(15,18,16,.42)}.audit-card strong,.audit-card span,.audit-card small{display:block}.audit-card span{color:var(--gold-bright);font-weight:900;margin:.2rem 0}.audit-card small{color:rgba(248,241,228,.62)}@media(min-width:1051px){.backend-stats{grid-template-columns:repeat(5,1fr)}}

/* v8.0 Restaurant Suite additions */
.module-toggle-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}.module-toggle{display:flex;gap:12px;align-items:center;padding:14px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.04)}.module-toggle input{width:22px;height:22px}.module-toggle span{display:flex;flex-direction:column}.module-toggle small{opacity:.75}.order-card strong small{opacity:.7}.backend-empty{padding:18px;border:1px dashed rgba(255,255,255,.2);border-radius:14px;opacity:.8}

.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin-top:1.5rem}.gallery-card{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:18px;padding:1rem;box-shadow:0 16px 40px rgba(0,0,0,.08)}.gallery-photo-placeholder{min-height:150px;border-radius:14px;background:linear-gradient(135deg,#2b1b12,#a36a2d);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;letter-spacing:.05em;text-transform:uppercase}.module-toggle small{display:block;color:#777}.compliance-note{background:#fff7e8;border:1px solid #e3bd76;border-radius:14px;padding:1rem;margin:1rem 0}


/* v9.1 Production Candidate polish */
:root{--c2-logo-scale:1.28;--c2-primary:var(--gold);--c2-secondary:var(--burgundy);}
.brand img{width:calc(150px * var(--c2-logo-scale,1.28))!important;max-height:calc(90px * var(--c2-logo-scale,1.28))!important;object-fit:contain!important;}
.backend-brand img{width:calc(170px * var(--c2-logo-scale,1.28))!important;max-height:calc(96px * var(--c2-logo-scale,1.28))!important;object-fit:contain!important;}
body.theme-light{background:#f8f1e4;color:#171a17;}
body.theme-light .site-header,body.theme-light .backend-card,body.theme-light .backend-page-head,body.theme-light .backend-sidebar{background:rgba(255,255,255,.86);color:#171a17;}
body.theme-light .site-nav a,body.theme-light .brand,body.theme-light .backend-card p{color:#171a17;}
body.theme-modern{--gold:#d8b45f;--gold-bright:#f4d98d;--burgundy:#253f73;}
.settings-pill{display:inline-flex;align-items:center;gap:8px;padding:9px 12px;border:1px solid rgba(226,196,127,.28);border-radius:999px;background:rgba(226,196,127,.08);font-weight:850;}
.setup-step{padding:16px;border:1px solid rgba(226,196,127,.18);border-radius:18px;background:rgba(248,241,228,.045);}
.gallery-card{border:1px solid rgba(226,196,127,.24);border-radius:22px;padding:18px;background:rgba(248,241,228,.055)}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.gallery-photo-placeholder{min-height:180px;border-radius:18px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(226,196,127,.22),rgba(111,31,46,.28));font-family:Cinzel,Georgia,serif;color:var(--gold-bright);font-weight:900;text-align:center;padding:18px}
@media(max-width:850px){.gallery-grid{grid-template-columns:1fr}.brand img{width:155px!important}.backend-brand img{width:170px!important}}

/* v9.6 Hero spacing cleanup - reduce oversized hero image area */
body .hero,
body .home-hero {
  min-height: clamp(390px, 48vh, 500px) !important;
  height: auto !important;
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 64px) clamp(42px, 6vw, 58px) !important;
  align-items: center !important;
}

body .page-hero,
body .menu-pro-hero,
body .employment-hero {
  min-height: clamp(300px, 38vh, 410px) !important;
  height: auto !important;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 64px) clamp(34px, 5vw, 50px) !important;
  align-content: center !important;
}

body .hero-content,
body .hero-copy {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body .page-hero h1 {
  margin-bottom: 12px !important;
}

body .page-hero p:not(.eyebrow) {
  margin-bottom: 0 !important;
}

body .section {
  padding-top: clamp(38px, 5vw, 64px) !important;
  padding-bottom: clamp(38px, 5vw, 70px) !important;
}

@media (max-width: 900px) {
  body .hero,
  body .home-hero {
    min-height: 360px !important;
    padding: 54px 20px 38px !important;
  }

  body .page-hero,
  body .menu-pro-hero,
  body .employment-hero {
    min-height: 280px !important;
    padding: 44px 20px 34px !important;
  }
}


/* v9.7 final hero spacing cleanup */
body .page-hero {
  height: auto !important;
  min-height: 300px !important;
  align-content: center !important;
  padding-top: clamp(92px, 10vw, 126px) !important;
  padding-bottom: clamp(30px, 4vw, 48px) !important;
}
body .page-hero h1 { margin-bottom: 10px; }
body .page-hero p { margin-bottom: 0; }
body .compact-hero { min-height: 280px !important; }
body .section { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(36px, 5vw, 64px); }

/* Demo sales feature: public menu QR code */
.menu-qr-section{
  display:grid;
  grid-template-columns:minmax(0,1fr) 128px;
  gap:18px;
  align-items:center;
  background:linear-gradient(135deg,rgba(23,26,23,.98),rgba(83,52,30,.94));
  border-top:1px solid rgba(226,196,127,.22);
  border-bottom:1px solid rgba(226,196,127,.22);
}
.menu-page-qr{
  padding-top:14px!important;
  padding-bottom:14px!important;
}
.menu-qr-copy{
  max-width:620px;
}
.menu-qr-copy h2{
  margin:0 0 5px;
  color:var(--cream);
  font-family:Cinzel,Georgia,serif;
  font-size:clamp(1.1rem,2.4vw,1.55rem);
  line-height:1.05;
}
.menu-qr-copy p:not(.eyebrow){
  color:rgba(248,241,228,.76);
  line-height:1.5;
  font-size:.86rem;
  margin:0;
}
.menu-qr-copy .hero-actions{
  justify-content:flex-start;
  gap:8px;
  margin-top:8px;
}
.menu-qr-copy .button{
  min-height:38px;
  padding:10px 14px;
  font-size:.88rem;
}
.menu-qr-card{
  display:grid;
  justify-items:center;
  gap:5px;
  padding:9px;
  border-radius:14px;
  background:#fffaf0;
  color:#171a17;
  text-decoration:none;
  box-shadow:0 22px 52px rgba(0,0,0,.22);
}
.menu-qr-card img{
  width:108px;
  height:108px;
  border-radius:8px;
}
.menu-qr-card strong{
  font-family:Cinzel,Georgia,serif;
  color:#4c2e17;
  font-size:.9rem;
}
.menu-qr-card span{
  color:#675b4b;
  font-size:.7rem;
  font-weight:800;
  text-align:center;
}
@media(max-width:800px){
  .menu-qr-section{
    grid-template-columns:1fr;
  }
  .menu-qr-copy .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .menu-qr-card{
    width:132px;
  }
}

.menu-hero-tools{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.menu-hero-tools .hero-actions{
  margin:0;
}
.menu-hero-qr{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 9px 6px 6px;
  border:1px solid rgba(226,196,127,.38);
  border-radius:12px;
  background:rgba(255,250,240,.95);
  color:#4c2e17;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,0,0,.16);
}
.menu-hero-qr img{
  width:58px;
  height:58px;
  border-radius:6px;
  display:block;
}
.menu-hero-qr span{
  font-size:.82rem;
  white-space:nowrap;
}
@media(max-width:720px){
  .menu-hero-tools{
    display:grid;
    justify-items:center;
  }
}

.menu-heading-with-qr{
  max-width:1120px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:center;
  text-align:left;
}
.menu-heading-with-qr h2,
.menu-heading-with-qr p{
  text-align:left;
}
.menu-category-qr{
  display:grid;
  justify-items:center;
  gap:5px;
  padding:8px;
  border:1px solid rgba(226,196,127,.34);
  border-radius:12px;
  background:#fffaf0;
  color:#4c2e17;
  text-decoration:none;
  box-shadow:0 12px 24px rgba(0,0,0,.14);
}
.menu-category-qr img{
  width:72px;
  height:72px;
  border-radius:6px;
}
.menu-category-qr span{
  color:#4c2e17;
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.4px;
}
@media(max-width:720px){
  .menu-heading-with-qr{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }
  .menu-heading-with-qr h2,
  .menu-heading-with-qr p{
    text-align:center;
  }
}

.qr-page{
  min-height:calc(100vh - 92px);
  display:grid;
  place-items:center;
  padding:clamp(24px,6vw,70px) 18px;
  background:linear-gradient(180deg,rgba(15,18,16,.98),rgba(23,26,23,.98));
}
.qr-print-card{
  width:min(340px,100%);
  margin-inline:auto;
  padding:22px;
  border:1px solid rgba(226,196,127,.34);
  border-radius:28px;
  background:#fffaf0;
  color:#171a17;
  text-align:center;
  box-shadow:0 24px 60px rgba(0,0,0,.24);
}

body .qr-page{
  width:100%;
  justify-items:center!important;
  align-items:center!important;
}
body .qr-print-card{
  justify-self:center!important;
}
body .qr-print-card .hero-actions{
  display:flex;
  justify-content:center!important;
}
.qr-print-card .eyebrow{
  color:#754b26;
}
.qr-print-card h1{
  margin:6px 0 14px;
  color:#4c2e17;
  font-family:Cinzel,Georgia,serif;
  font-size:clamp(1.55rem,5vw,2.2rem);
}
.qr-print-card img{
  width:min(170px,58vw);
  height:auto;
  border-radius:16px;
  background:#fff;
}
.qr-print-card p:not(.eyebrow){
  color:#5f5143;
  font-weight:800;
  font-size:.92rem;
  margin:10px 0;
}
.qr-print-card .hero-actions{
  justify-content:center;
}
@media print{
  .site-header,
  .qr-print-card .hero-actions{
    display:none!important;
  }
  .qr-page{
    min-height:auto;
    padding:0;
    background:#fff;
  }
  .qr-print-card{
    box-shadow:none;
    border:0;
  }
}

.business-card-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  gap:18px;
  padding:24px;
  background:linear-gradient(180deg,#0f1210,#171a17);
}
.business-card-qr{
  width:3.5in;
  min-height:2in;
  display:grid;
  grid-template-columns:1fr 1.08in;
  gap:12px;
  align-items:center;
  padding:.18in;
  border:1px solid rgba(226,196,127,.42);
  border-radius:14px;
  background:#fffaf0;
  color:#171a17;
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}
.business-card-qr h1{
  margin:4px 0 8px;
  color:#4c2e17;
  font-family:Cinzel,Georgia,serif;
  font-size:25px;
  line-height:1;
}
.business-card-qr p:not(.eyebrow){
  margin:0;
  color:#5f5143;
  font-size:12px;
  line-height:1.35;
  font-weight:800;
}
.business-card-qr .eyebrow{
  color:#9d4930;
  font-size:9px;
  letter-spacing:2px;
  text-align:left;
}
.business-card-qr img{
  width:1.08in;
  height:1.08in;
  border-radius:8px;
  background:#fff;
}
.card-footer{
  grid-column:1/-1;
  display:flex;
  justify-content:space-between;
  gap:8px;
  border-top:1px solid rgba(117,75,38,.18);
  padding-top:8px;
  color:#675b4b;
  font-size:7.5px;
  line-height:1.2;
}
.card-footer strong{
  color:#4c2e17;
  white-space:nowrap;
}
.business-card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
@media(max-width:460px){
  .business-card-qr{
    width:min(100%,3.5in);
  }
}
@media print{
  .business-card-page{
    min-height:auto;
    display:block;
    padding:.25in;
    background:#fff;
  }
  .business-card-actions{
    display:none!important;
  }
  .business-card-qr{
    box-shadow:none;
    break-inside:avoid;
  }
}

/* Final mobile menu polish */
@media(max-width:760px){
  body .site-header{
    padding:10px 14px;
  }
  body .brand img{
    width:138px!important;
  }
  body .menu-pro-hero{
    min-height:0!important;
    padding:96px 18px 34px!important;
    text-align:left!important;
    background:
      linear-gradient(90deg,rgba(6,7,6,.94),rgba(6,7,6,.82)),
      url("assets/town-hill-hero.png") center/cover no-repeat!important;
  }
  body .menu-pro-hero h1{
    font-size:clamp(2rem,12vw,3rem)!important;
    line-height:1.02!important;
    margin-bottom:10px!important;
  }
  body .menu-pro-hero p:not(.eyebrow){
    max-width:34rem!important;
    font-size:1rem!important;
    line-height:1.45!important;
  }
  body .menu-feature-strip{
    display:none!important;
  }
  body .upgraded-menu-section{
    padding:26px 14px 36px!important;
  }
  body .upgraded-menu-section .section-heading{
    margin-bottom:14px!important;
    text-align:left!important;
  }
  body .upgraded-menu-section .section-heading h2{
    font-size:1.7rem!important;
    line-height:1.12!important;
    margin-bottom:6px!important;
  }
  body .upgraded-menu-section .section-heading p{
    text-align:left!important;
    font-size:.92rem!important;
    line-height:1.4!important;
  }
  body .upgraded-menu-section .section-heading .text-link{
    display:inline-flex;
    margin-top:8px;
    font-size:.92rem;
  }
  body .menu-filter-bar{
    justify-content:flex-start!important;
    gap:8px!important;
    overflow-x:auto;
    flex-wrap:nowrap!important;
    padding:0 0 10px!important;
    margin:0 0 16px!important;
    -webkit-overflow-scrolling:touch;
  }
  body .menu-filter-bar button{
    flex:0 0 auto;
    min-height:38px;
    padding:8px 12px!important;
    font-size:.86rem!important;
    white-space:nowrap;
  }
  body .featured-menu-row{
    grid-template-columns:1fr!important;
    gap:10px!important;
    margin-bottom:16px!important;
  }
  body .featured-menu-card{
    padding:14px!important;
    border-radius:16px!important;
  }
  body .featured-menu-card strong{
    font-size:1.12rem!important;
  }
  body .upgraded-menu-grid{
    gap:14px!important;
  }
  body .public-menu-category{
    border-radius:18px!important;
  }
  body .public-menu-category-head{
    padding:15px 16px!important;
    display:block!important;
  }
  body .public-menu-category-head h3{
    font-size:1.2rem!important;
  }
  body .public-menu-items{
    grid-template-columns:1fr!important;
  }
  body .public-menu-item{
    display:block!important;
    padding:15px 16px!important;
    border-right:0!important;
    position:relative!important;
  }
  body .public-menu-item strong{
    display:block;
    font-size:1rem!important;
    line-height:1.3!important;
    padding-right:0;
  }
  body .public-menu-item .price{
    position:absolute!important;
    right:16px;
    top:15px;
    font-size:.96rem!important;
  }
  body .public-menu-item > div{
    padding-right:68px;
  }
  body .public-menu-item p{
    margin:7px 0 0!important;
    font-size:.92rem!important;
    line-height:1.42!important;
  }
  body .menu-cta{
    display:none!important;
  }
}

/* Final category jump-link behavior */
body .menu-filter-bar a{
  border:1px solid rgba(226,196,127,.42);
  border-radius:999px;
  padding:10px 16px;
  background:rgba(248,241,228,.05);
  color:var(--cream);
  font-weight:850;
  text-decoration:none;
  white-space:nowrap;
}
body .menu-filter-bar a.active,
body .menu-filter-bar a:focus{
  background:var(--gold);
  color:var(--coal);
}
body .public-menu-category{
  scroll-margin-top:96px;
}
@media(max-width:760px){
  body .menu-filter-bar a{
    flex:0 0 auto;
    min-height:38px;
    padding:8px 12px!important;
    font-size:.86rem!important;
  }
  body .public-menu-category{
    scroll-margin-top:84px;
  }
}


/* v9.8 header/hero gap fix - compact header and no extra space before hero image */
body .site-header {
  position: relative !important;
  top: auto !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 8px clamp(16px, 4vw, 46px) !important;
  gap: clamp(10px, 2vw, 22px) !important;
  background: rgba(15,18,16,.98) !important;
  box-shadow: 0 1px 0 rgba(201,164,99,.28) !important;
}
body .brand img {
  width: clamp(125px, 13vw, 175px) !important;
  max-height: 82px !important;
  object-fit: contain !important;
}
body .site-nav {
  margin: 0 !important;
  padding: 4px !important;
  gap: 4px !important;
}
body .site-nav a {
  padding: 7px 9px !important;
  font-size: .78rem !important;
  line-height: 1 !important;
}
body .nav-action {
  min-height: 36px !important;
  padding: 0 16px !important;
  margin: 0 !important;
}
body main,
body main.section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body .hero,
body .home-hero {
  margin-top: 0 !important;
  min-height: clamp(420px, 52vh, 540px) !important;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 64px) clamp(42px, 5vw, 56px) !important;
  align-items: center !important;
}
body .page-hero,
body .menu-pro-hero,
body .employment-hero,
body .page-hero.employment-hero,
body .compact-hero {
  margin-top: 0 !important;
  min-height: clamp(210px, 30vh, 300px) !important;
  padding: clamp(36px, 5vw, 58px) clamp(20px, 5vw, 64px) clamp(30px, 4vw, 48px) !important;
  align-content: center !important;
}
body .hero-content {
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 980px) {
  body .site-header {
    grid-template-columns: auto 1fr auto !important;
    padding: 8px 16px !important;
  }
  body .brand img {
    width: 118px !important;
    max-height: 70px !important;
  }
  body .hero,
  body .home-hero {
    min-height: 390px !important;
    padding: 38px 20px 40px !important;
  }
  body .page-hero,
  body .menu-pro-hero,
  body .employment-hero,
  body .compact-hero {
    min-height: 210px !important;
    padding: 32px 20px 34px !important;
  }
}

/* v9.9 logo and hero text alignment fix
   - Bigger header logo
   - Moves hero/page writing closer to the top bar on every page
   - Keeps the header compact without large dead space */
body .site-header {
  padding: 8px clamp(16px, 4vw, 46px) !important;
  align-items: center !important;
}
body .brand img,
body .logo-img {
  width: clamp(170px, 17vw, 240px) !important;
  max-height: 118px !important;
  object-fit: contain !important;
}
body .hero,
body .home-hero {
  align-items: start !important;
  min-height: clamp(410px, 50vh, 530px) !important;
  padding: clamp(22px, 3.2vw, 42px) clamp(20px, 5vw, 64px) clamp(38px, 5vw, 56px) !important;
}
body .page-hero,
body .menu-pro-hero,
body .employment-hero,
body .compact-hero {
  align-content: start !important;
  min-height: clamp(185px, 26vh, 270px) !important;
  padding: clamp(22px, 3vw, 38px) clamp(20px, 5vw, 64px) clamp(28px, 4vw, 44px) !important;
}
body .hero-content,
body .page-hero > *,
body .menu-pro-hero > *,
body .employment-hero > *,
body .compact-hero > * {
  margin-top: 0 !important;
}
body .eyebrow {
  margin-top: 0 !important;
}
@media (max-width: 980px) {
  body .brand img,
  body .logo-img {
    width: 150px !important;
    max-height: 94px !important;
  }
  body .hero,
  body .home-hero {
    min-height: 380px !important;
    padding: 18px 20px 38px !important;
  }
  body .page-hero,
  body .menu-pro-hero,
  body .employment-hero,
  body .compact-hero {
    min-height: 185px !important;
    padding: 18px 20px 32px !important;
  }
}


/* v10.3 Order/Gallery text spacing fix
   Only moves the writing down on Order Online and Gallery pages.
   Header, logo, navigation, hero image, and other pages are unchanged. */
body main.section.page-text-lower {
  padding-top: 90px !important;
}
@media (max-width: 980px) {
  body main.section.page-text-lower {
    padding-top: 72px !important;
  }
}


/* v10.4 Contact / Visit separation */
.contact-visit-section { display: grid; grid-template-columns: minmax(260px, .9fr) minmax(300px, 1.1fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: clamp(20px, 3vw, 32px); border: 1px solid rgba(226,196,127,.35); border-radius: 24px; background: rgba(8,10,12,.68); box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.contact-form label { display: grid; gap: 8px; color: var(--cream); font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(226,196,127,.34); border-radius: 14px; background: rgba(255,255,255,.08); color: var(--cream); padding: 12px 14px; font: inherit; }
.contact-form .span-two { grid-column: 1 / -1; }
.contact-note { color: var(--muted); margin-top: 18px; }
.contact-note a { color: var(--gold-bright); font-weight: 800; }
@media (max-width: 850px) { .contact-visit-section, .contact-form { grid-template-columns: 1fr; } .contact-form .span-two { grid-column: auto; } }


/* v10.5 public website pages */
.c2-feature-page .section-heading p:not(.eyebrow), .c2-feature-page > p { color: #675b4e; }
.c2-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.c2-card-grid > div { min-height: 210px; }
.faq-list { display: grid; gap: 14px; max-width: 980px; }
.faq-list details { border: 1px solid rgba(94,32,38,.18); border-radius: 18px; background: rgba(255,255,255,.72); padding: 18px 20px; box-shadow: 0 12px 30px rgba(30,20,10,.08); }
.faq-list summary { cursor: pointer; font-weight: 900; color: var(--wine); font-size: 1.05rem; }
.faq-list p { margin-top: 10px; color: #675b4e; }
.event-list .feature-icon { min-width: 64px; }
@media (max-width: 980px) { .c2-card-grid { grid-template-columns: 1fr; } }


/* v10.7 Visual Refresh - black/gold centered logo header and clean page hero style */
body .site-header {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 18px 0 0 !important;
  background: #050505 !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(226,196,127,.55) !important;
}
body .brand {
  justify-content: center !important;
  width: 100% !important;
  padding: 0 20px 14px !important;
}
body .brand img,
body .logo-img {
  width: clamp(230px, 22vw, 330px) !important;
  max-height: 175px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45)) !important;
}
body .site-nav {
  width: 100% !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-top: 1px solid rgba(226,196,127,.55) !important;
  border-bottom: 1px solid rgba(226,196,127,.55) !important;
  border-radius: 0 !important;
  background: rgba(0,0,0,.92) !important;
}
body .site-nav a {
  position: relative !important;
  padding: 15px 13px 16px !important;
  border-radius: 0 !important;
  color: #f8f1e4 !important;
  background: transparent !important;
  font-size: .78rem !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
}
body .site-nav a:hover,
body .site-nav a.active {
  color: var(--gold-bright) !important;
  background: transparent !important;
}
body .site-nav a.active::after,
body .site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 3px;
  background: var(--gold-bright);
  border-radius: 999px;
}
body .nav-action,
body .menu-toggle { display: none !important; }

/* Clean black intro blocks for standard pages so every page starts consistently below the logo/nav. */
body main.section,
body main.section.page-text-lower {
  padding: clamp(58px, 6vw, 86px) clamp(20px, 5vw, 64px) clamp(52px, 6vw, 78px) !important;
  background: linear-gradient(180deg, #050505 0%, #11120f 100%) !important;
  color: var(--cream) !important;
}
body main.section > .eyebrow:first-child,
body main.section > h1:first-of-type,
body main.section > p:first-of-type {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body main.section > .eyebrow:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px !important;
  color: var(--gold-bright) !important;
  font-size: .92rem !important;
  letter-spacing: .04em !important;
}
body main.section > .eyebrow:first-child::before,
body main.section > .eyebrow:first-child::after {
  content: "";
  width: min(120px, 18vw);
  height: 1px;
  background: var(--gold-bright);
  opacity: .75;
}
body main.section > h1:first-of-type {
  margin-bottom: 16px !important;
  font-size: clamp(2.2rem, 4.2vw, 4.25rem) !important;
}
body main.section > p:first-of-type {
  color: rgba(248,241,228,.82) !important;
  font-size: clamp(1rem, 1.5vw, 1.18rem) !important;
}
body .backend-grid-two,
body .gallery-grid,
body .c2-card-grid,
body .feature-list,
body .faq-list {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
body .backend-card {
  background: rgba(248,241,228,.055) !important;
  border-color: rgba(226,196,127,.36) !important;
  border-radius: 24px !important;
}
body .backend-card h2,
body .gallery-card h3 { color: var(--gold-bright) !important; }
body .gallery-grid {
  margin-top: 34px !important;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr)) !important;
}
body .gallery-card { background: rgba(248,241,228,.055) !important; color: var(--cream) !important; }
body .gallery-card p { color: rgba(248,241,228,.72) !important; }

/* Keep the true home page hero just below the new nav, matching the visual refresh. */
body .hero,
body .home-hero {
  min-height: clamp(500px, 58vh, 650px) !important;
  padding: clamp(58px, 7vw, 86px) clamp(20px, 5vw, 64px) clamp(52px, 6vw, 78px) !important;
  align-items: center !important;
}
body .hero .eyebrow {
  font-size: .92rem !important;
  letter-spacing: .04em !important;
}

@media (max-width: 980px) {
  body .brand img,
  body .logo-img { width: 210px !important; max-height: 140px !important; }
  body .site-nav { justify-content: flex-start !important; overflow-x: auto !important; flex-wrap: nowrap !important; }
  body .site-nav a { white-space: nowrap !important; padding: 14px 12px 15px !important; }
  body main.section,
  body main.section.page-text-lower { padding: 44px 20px 52px !important; }
}

/* v108 real image gallery/order polish */
.image-gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:28px}.gallery-card{overflow:hidden}.gallery-photo{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:16px;border:1px solid rgba(226,196,127,.22);margin-bottom:14px;background:#080908}.gallery-filter-row{display:flex;gap:12px;flex-wrap:wrap;margin:22px 0 4px}.order-photo-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin:24px 0 26px}.order-photo-strip article{overflow:hidden;border:1px solid rgba(226,196,127,.24);border-radius:22px;background:rgba(248,241,228,.055);box-shadow:0 18px 44px rgba(0,0,0,.18)}.order-photo-strip img{width:100%;aspect-ratio:16/9;object-fit:cover}.order-photo-strip strong{display:block;padding:14px 16px;color:var(--gold-bright);font-family:Cinzel,Georgia,serif;font-size:1.18rem}.photo-page,.order-page{padding-top:clamp(72px,8vw,104px)}@media(max-width:850px){.image-gallery-grid,.order-photo-strip{grid-template-columns:1fr}.gallery-filter-row .button{min-height:42px}}


/* v109 full photo gallery polish */
.photo-page{max-width:1220px;margin:0 auto;padding-top:64px;text-align:center}
.photo-page .eyebrow{display:inline-flex;align-items:center;gap:14px;color:var(--gold-bright);font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.photo-page h1{font-size:clamp(2.4rem,5vw,4.2rem);margin:.35rem 0 .7rem}
.photo-page>p{max-width:760px;margin:0 auto 1.5rem;color:rgba(248,241,228,.82);font-size:1.05rem}
.gallery-filter-row{justify-content:center;margin:26px 0 30px}
.gallery-filter-row .button{min-width:130px}
.image-gallery-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:16px!important;margin-top:10px!important}
.gallery-card{position:relative!important;padding:0!important;overflow:hidden!important;border:1px solid rgba(226,196,127,.55)!important;border-radius:12px!important;background:#050505!important;box-shadow:0 16px 42px rgba(0,0,0,.28)!important}
.gallery-card .gallery-photo{width:100%!important;aspect-ratio:4/3!important;object-fit:cover!important;border:0!important;border-radius:0!important;margin:0!important;display:block!important;transition:transform .25s ease, filter .25s ease!important}
.gallery-card:hover .gallery-photo{transform:scale(1.04);filter:brightness(1.08)}
.gallery-card h3{position:absolute;left:12px;right:12px;bottom:38px;margin:0!important;color:#fff!important;text-shadow:0 3px 12px rgba(0,0,0,.85);font-size:1.1rem!important;opacity:0;transform:translateY(8px);transition:.22s ease}
.gallery-card p{position:absolute;left:12px;right:12px;bottom:12px;margin:0!important;color:rgba(255,255,255,.82)!important;text-shadow:0 3px 12px rgba(0,0,0,.85);font-size:.88rem!important;opacity:0;transform:translateY(8px);transition:.22s ease}
.gallery-card:after{content:'';position:absolute;left:0;right:0;bottom:0;height:45%;background:linear-gradient(transparent,rgba(0,0,0,.78));opacity:0;transition:.22s ease}
.gallery-card h3,.gallery-card p{z-index:2}
.gallery-card:hover:after,.gallery-card:hover h3,.gallery-card:hover p{opacity:1;transform:translateY(0)}
@media(max-width:1050px){.image-gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
@media(max-width:760px){.photo-page{padding-top:40px}.image-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.gallery-filter-row .button{min-width:auto;flex:1 1 42%}}
@media(max-width:480px){.image-gallery-grid{grid-template-columns:1fr!important}}

/* v110 Deluxe gallery image polish */
body .photo-page { max-width: 1240px !important; }
body .image-gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 16px !important; }
body .gallery-card { cursor: zoom-in; }
body .gallery-photo { aspect-ratio: 4/3 !important; }
.gallery-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.88); display:none; align-items:center; justify-content:center; z-index:9999; padding:24px; }
.gallery-lightbox.open { display:flex; }
.gallery-lightbox img { max-width:min(1100px,94vw); max-height:86vh; border:2px solid rgba(226,196,127,.75); border-radius:18px; box-shadow:0 30px 90px rgba(0,0,0,.65); }
.gallery-lightbox button { position:absolute; top:18px; right:22px; border:1px solid rgba(226,196,127,.7); background:#080808; color:#f5d46b; border-radius:999px; padding:10px 16px; font-weight:900; cursor:pointer; }
@media(max-width:1050px){ body .image-gallery-grid{ grid-template-columns:repeat(3,minmax(0,1fr))!important; } }
@media(max-width:760px){ body .image-gallery-grid{ grid-template-columns:repeat(2,minmax(0,1fr))!important; } }
@media(max-width:480px){ body .image-gallery-grid{ grid-template-columns:1fr!important; } }

/* v111 Town Hill grille reference refresh */
body {
  background: #050505 !important;
}

body .site-header {
  background:
    radial-gradient(circle at 50% 18%, rgba(226, 196, 127, .08), transparent 28%),
    linear-gradient(180deg, #0b0b0a 0%, #050505 100%) !important;
  padding-top: 22px !important;
}

body .brand {
  display: grid !important;
  justify-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  padding-bottom: 18px !important;
}

body .brand::after {
  content: "American Grille in Limerick, Maine";
  color: var(--gold-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(.9rem, 1.45vw, 1.18rem);
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

body .brand img,
body .logo-img {
  width: clamp(250px, 24vw, 350px) !important;
  max-height: 185px !important;
}

body .site-nav {
  min-height: 52px !important;
  border-color: rgba(212, 160, 32, .72) !important;
}

body .site-nav a[href="catering.html"],
body .site-nav a[href="events.html"],
body .site-nav a[href="rewards.html"] {
  display: none !important;
}

body .site-nav a {
  font-size: .76rem !important;
  font-weight: 950 !important;
  padding: 18px 15px 17px !important;
}

body .button,
body button {
  border-radius: 5px !important;
  font-weight: 950 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}

body .button.primary,
body .gallery-filter-row .button.primary,
body .menu-filter-bar button.active {
  background: linear-gradient(180deg, #efbd3f, #d69a20) !important;
  color: #100f0c !important;
  border-color: #efbd3f !important;
  box-shadow: 0 8px 20px rgba(214, 154, 32, .18) !important;
}

body .button.secondary,
body .gallery-filter-row .button.secondary,
body .menu-filter-bar button {
  background: #050505 !important;
  color: #f8f1e4 !important;
  border-color: rgba(226, 196, 127, .72) !important;
}

body .hero,
body .home-hero {
  min-height: clamp(500px, 56vh, 660px) !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.64) 45%, rgba(0,0,0,.18) 100%),
    url("assets/town-hill-hero.png") center 43% / cover no-repeat !important;
  border-bottom: 1px solid rgba(226,196,127,.2);
}

body .hero-content {
  max-width: 620px !important;
}

body .hero .eyebrow {
  color: var(--gold-bright) !important;
  font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
}

body .home-title {
  max-width: 650px;
  color: #fff !important;
  font-size: clamp(2.65rem, 5.2vw, 5.2rem) !important;
  line-height: .98 !important;
  text-transform: uppercase;
}

body .hero-copy {
  max-width: 430px !important;
  color: #fff !important;
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
}

body .service-strip {
  background: #0a0a09 !important;
  border-top: 1px solid rgba(226,196,127,.18) !important;
  border-bottom: 1px solid rgba(226,196,127,.18) !important;
}

body .welcome-section,
body .menu-section,
body .c2-feature-page,
body .employment-teaser {
  background: #f7f7f5 !important;
  color: #12120f !important;
}

body .welcome-section h2,
body .section-heading h2,
body .employment-teaser h2 {
  color: #12120f !important;
  font-family: Inter, Arial, sans-serif !important;
  font-weight: 950 !important;
  text-transform: uppercase;
}

body main.section,
body main.section.page-text-lower {
  background:
    radial-gradient(circle at 50% 0%, rgba(226,196,127,.08), transparent 25%),
    linear-gradient(180deg, #050505 0%, #0b0b0a 100%) !important;
}

body main.section > h1:first-of-type,
body .page-hero h1 {
  color: #fff !important;
  font-family: Cinzel, Georgia, serif !important;
  font-weight: 700 !important;
  text-shadow: 0 8px 24px rgba(0,0,0,.45);
}

body .photo-page {
  padding-top: clamp(42px, 5vw, 70px) !important;
}

body .gallery-filter-row {
  gap: 20px !important;
  margin-bottom: 34px !important;
}

body .gallery-filter-row .button {
  min-width: 136px !important;
  padding: 14px 18px !important;
}

body .image-gallery-grid {
  gap: 18px !important;
}

body .gallery-card {
  border-color: rgba(212, 160, 32, .72) !important;
  border-radius: 8px !important;
}

body main.section.order-page {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  background:
    linear-gradient(180deg, #050505 0, #080808 230px, #f6f6f4 230px, #f6f6f4 100%) !important;
}

body main.section.order-page > .eyebrow,
body main.section.order-page > h1,
body main.section.order-page > p {
  padding-left: 20px;
  padding-right: 20px;
}

body main.section.order-page .order-photo-strip {
  display: none !important;
}

body .order-photo-strip {
  max-width: 1180px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 20px;
}

.order-steps {
  max-width: 1180px;
  margin: 34px auto 28px;
  padding: 0 20px;
  color: #111;
  text-align: center;
}

.order-steps h2 {
  margin: 0 0 28px;
  color: #111;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 950;
  text-transform: uppercase;
}

.order-step-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.order-step-list::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 1px;
  background: rgba(212, 160, 32, .45);
}

.order-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  font-weight: 950;
  font-size: .72rem;
  text-transform: uppercase;
}

.order-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e8e8e8;
  color: #111;
  font-size: 1.25rem;
  box-shadow: 0 0 0 10px #f6f6f4;
  z-index: 1;
}

.order-step.is-active span {
  background: linear-gradient(180deg, #efbd3f, #d69a20);
  color: #fff;
}

body .order-page .backend-grid-two {
  max-width: 1180px !important;
  padding: 0 20px clamp(42px, 5vw, 70px);
  color: #f8f1e4;
}

body .order-page .backend-card {
  background: #050505 !important;
  border-radius: 8px !important;
  box-shadow: 0 20px 54px rgba(0,0,0,.18);
}

body .order-page .backend-card h2 {
  text-align: center;
  text-transform: uppercase;
}

body .application-card {
  border-radius: 8px !important;
}

body .order-page input,
body .order-page textarea,
body .order-page select {
  border-radius: 5px !important;
}

@media (max-width: 980px) {
  body .brand::after {
    font-size: .78rem;
    text-align: center;
  }

  body .site-nav {
    display: flex !important;
    scrollbar-width: none;
  }

  body .site-nav::-webkit-scrollbar {
    display: none;
  }

  body .site-nav a[href="catering.html"],
  body .site-nav a[href="events.html"],
  body .site-nav a[href="rewards.html"] {
    display: inline-flex !important;
  }

  body .home-title {
    font-size: clamp(2.25rem, 9vw, 3.5rem) !important;
  }

  body .order-page {
    background: linear-gradient(180deg, #050505 0, #080808 210px, #f6f6f4 210px, #f6f6f4 100%) !important;
  }

  .order-step-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .order-step-list::before {
    display: none;
  }
}

/* v112 flow cleanup: single-location ordering and food-forward site style */
body .hero,
body .home-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 43%, rgba(0,0,0,.22) 100%),
    url("assets/demo-gallery-21.jpg") center 56% / cover no-repeat !important;
}

body .service-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  padding: 28px clamp(20px, 5vw, 64px) !important;
}

body .service-strip div {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 126px;
  padding: 18px 16px !important;
  border-right: 1px solid rgba(226,196,127,.22);
}

body .service-strip div:last-child {
  border-right: 0;
}

body .service-strip strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(239,189,63,.8);
  border-radius: 50%;
  color: var(--gold-bright) !important;
  font-size: .82rem !important;
  text-align: center;
}

body .service-strip span {
  max-width: 190px;
  color: #fff !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
  text-align: center;
}

body .menu-section,
body .split-section,
body .employment-teaser,
body .c2-feature-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(226,196,127,.08), transparent 26%),
    linear-gradient(180deg, #0b0b0a, #050505) !important;
  color: var(--cream) !important;
}

body .welcome-section {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr) !important;
  gap: clamp(22px, 4vw, 54px) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: clamp(28px, 5vw, 56px) !important;
  border: 1px solid rgba(226,196,127,.36) !important;
  border-radius: 8px !important;
  background: rgba(248,241,228,.055) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.24) !important;
}

body .welcome-section h2,
body .split-section h2,
body .section-heading h2,
body .employment-teaser h2,
body .c2-feature-page h2 {
  color: #fff !important;
  font-family: Cinzel, Georgia, serif !important;
  text-transform: none !important;
}

body .welcome-section p,
body .welcome-copy p,
body .story-panel p,
body .feature-list p,
body .section-heading p,
body .employment-teaser p,
body .c2-feature-page p {
  color: rgba(248,241,228,.78) !important;
}

body .split-section {
  grid-template-columns: .85fr 1.15fr !important;
  gap: clamp(22px, 4vw, 44px) !important;
}

body .story-panel,
body .feature-list > div,
body .employment-teaser-card,
body .c2-card-grid > div {
  border: 1px solid rgba(226,196,127,.36) !important;
  border-radius: 8px !important;
  background: rgba(248,241,228,.055) !important;
  box-shadow: 0 20px 58px rgba(0,0,0,.20) !important;
}

body .feature-icon {
  background: rgba(226,196,127,.10) !important;
  border-color: rgba(226,196,127,.62) !important;
  color: var(--gold-bright) !important;
}

body .text-link {
  color: var(--gold-bright) !important;
  font-weight: 950 !important;
}

body .visit-band,
body .call-strip {
  background: #050505 !important;
  border-top: 1px solid rgba(226,196,127,.5) !important;
  border-bottom: 1px solid rgba(226,196,127,.5) !important;
  color: var(--cream) !important;
}

body .visit-band h2,
body .call-strip a {
  color: var(--gold-bright) !important;
}

body .site-footer {
  background: #050505 !important;
  border-top: 1px solid rgba(226,196,127,.35) !important;
  color: rgba(248,241,228,.82) !important;
}

.order-step-list-three {
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr) !important;
}

.order-step-list-three::before {
  left: 12% !important;
  right: 12% !important;
}

body main.section.order-page > p:first-of-type {
  max-width: 720px !important;
}

@media (max-width: 980px) {
  body .service-strip,
  body .welcome-section,
  body .split-section {
    grid-template-columns: 1fr !important;
  }

  body .service-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(226,196,127,.18);
  }

  body .service-strip div:last-child {
    border-bottom: 0;
  }

  .order-step-list-three {
    grid-template-columns: 1fr !important;
  }
}

/* v113 Full restaurant redesign: less blocky, more pop */
:root {
  --ember: #d94f2b;
  --leaf: #4f7d4f;
  --ink: #070604;
  --paper: #fff8ed;
}

body {
  background:
    linear-gradient(180deg, #070604 0%, #10100c 42%, #070604 100%) !important;
}

body .site-header {
  background:
    linear-gradient(180deg, rgba(7,6,4,.98), rgba(7,6,4,.92)) !important;
  border-bottom: 1px solid rgba(239, 189, 63, .44) !important;
}

body .brand img,
body .logo-img {
  width: clamp(210px, 20vw, 300px) !important;
}

body .brand::after {
  color: #f5c65a !important;
  text-shadow: 0 2px 18px rgba(217,79,43,.28);
}

body .site-nav {
  background: rgba(7,6,4,.78) !important;
  backdrop-filter: blur(10px);
}

body .site-nav a {
  color: rgba(255,248,237,.88) !important;
}

body .site-nav a:hover,
body .site-nav a.active {
  color: #ffd56b !important;
}

body .button {
  border-radius: 999px !important;
  padding: 13px 20px !important;
}

body .button.primary {
  background: linear-gradient(135deg, #ffd56b 0%, #e8a526 48%, #d94f2b 100%) !important;
  border-color: rgba(255,213,107,.9) !important;
  box-shadow: 0 18px 42px rgba(217,79,43,.26) !important;
}

body .button.secondary {
  background: rgba(255,248,237,.08) !important;
  border-color: rgba(255,213,107,.5) !important;
  color: #fff8ed !important;
}

body .pop-hero,
body .hero,
body .home-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(500px, 58vh, 660px) !important;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,6,4,.92) 0%, rgba(7,6,4,.74) 38%, rgba(7,6,4,.30) 66%, rgba(7,6,4,.08) 100%),
    linear-gradient(180deg, rgba(7,6,4,.12), rgba(7,6,4,.86)),
    url("assets/town-hill-hero-pop.jpg") center 54% / cover no-repeat !important;
}

body .pop-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 110px;
  background: linear-gradient(180deg, transparent, #10100c);
  z-index: -1;
}

body .hero-content {
  max-width: 760px !important;
  padding-left: clamp(0px, 2vw, 30px);
}

body .hero .eyebrow,
body main.section > .eyebrow:first-child,
body .section-heading .eyebrow,
body .eyebrow {
  color: #ffd56b !important;
}

body .home-title {
  max-width: 760px !important;
  font-size: clamp(2.65rem, 5.15vw, 5.15rem) !important;
  line-height: .96 !important;
  letter-spacing: 0 !important;
}

body .hero-copy {
  max-width: 540px !important;
  color: rgba(255,248,237,.92) !important;
}

.snap-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: -54px auto 0;
  padding: 0 20px;
  gap: 1px;
}

.snap-ribbon a {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 22px 20px;
  color: #fff8ed;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(255,248,237,.13), rgba(255,248,237,.045));
  border-top: 1px solid rgba(255,213,107,.42);
  border-bottom: 1px solid rgba(255,213,107,.22);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease;
}

.snap-ribbon a:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, rgba(217,79,43,.24), rgba(255,213,107,.10));
}

.snap-ribbon strong {
  color: #ffd56b;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.18rem;
}

.snap-ribbon span {
  color: rgba(255,248,237,.76);
  line-height: 1.42;
}

.intro-flow {
  display: grid !important;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding-top: clamp(72px, 9vw, 120px) !important;
  background:
    linear-gradient(180deg, #10100c 0%, #17130f 100%) !important;
}

.intro-copy {
  max-width: 520px;
}

.intro-copy h2,
.menu-flow h2,
.extras-flow h2,
.visit-sweep h2 {
  color: #fff8ed !important;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  line-height: 1.02;
  margin: 0 0 18px;
}

.intro-copy p,
.menu-flow .section-heading p,
.extras-flow .section-heading p,
.visit-sweep p {
  color: rgba(255,248,237,.76) !important;
  line-height: 1.75;
}

.taste-strip {
  display: grid;
  grid-template-columns: 1.05fr .9fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 14px;
  transform: rotate(-1.2deg);
}

.taste-strip img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border: 1px solid rgba(255,213,107,.35);
  box-shadow: 0 26px 70px rgba(0,0,0,.36);
}

.taste-strip img:nth-child(1) {
  grid-row: span 2;
}

.taste-strip img:nth-child(2),
.taste-strip img:nth-child(4) {
  transform: translateY(18px);
}

.menu-flow,
.extras-flow {
  background:
    linear-gradient(180deg, #17130f 0%, #070604 100%) !important;
}

.menu-flow .section-heading,
.extras-flow .section-heading {
  max-width: 860px !important;
  margin-left: auto;
  margin-right: auto;
}

.menu-lanes,
.extras-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1120px;
  margin: 42px auto 0;
  border-top: 1px solid rgba(255,213,107,.28);
  border-bottom: 1px solid rgba(255,213,107,.28);
}

.menu-lanes a,
.extras-links a {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: clamp(24px, 3vw, 38px);
  color: #fff8ed;
  text-decoration: none;
  border-right: 1px solid rgba(255,213,107,.22);
  background:
    linear-gradient(180deg, rgba(255,248,237,.055), rgba(255,248,237,.018));
  transition: background .2s ease, transform .2s ease;
}

.menu-lanes a:last-child,
.extras-links a:last-child {
  border-right: 0;
}

.menu-lanes a:hover,
.extras-links a:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(217,79,43,.22), rgba(79,125,79,.10));
}

.menu-lanes span,
.extras-links span {
  color: #ffd56b;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-lanes strong,
.extras-links strong {
  color: #fff8ed;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.menu-lanes em,
.extras-links span {
  color: rgba(255,248,237,.72);
  font-style: normal;
  line-height: 1.58;
}

.visit-sweep {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 6vw, 72px) clamp(22px, 6vw, 90px);
  background:
    linear-gradient(100deg, rgba(217,79,43,.92), rgba(232,165,38,.86) 46%, rgba(79,125,79,.78)),
    url("assets/demo-gallery-06.jpg") center / cover;
  color: #fff8ed;
}

.visit-sweep .eyebrow,
.visit-sweep h2,
.visit-sweep p {
  color: #fff8ed !important;
}

.visit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.extras-links {
  grid-template-columns: repeat(4, 1fr);
}

body main.section.photo-page,
body main.section.order-page {
  background:
    linear-gradient(180deg, rgba(7,6,4,.98) 0%, rgba(20,16,12,.98) 48%, rgba(7,6,4,.98) 100%) !important;
}

body .gallery-filter-row {
  gap: 12px !important;
}

body .gallery-filter-row .button {
  border-radius: 999px !important;
}

body .gallery-card {
  border: 0 !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.32) !important;
}

body .gallery-card:nth-child(4n+2) {
  transform: translateY(16px);
}

body .gallery-card:nth-child(4n+3) {
  transform: translateY(-10px);
}

body main.section.order-page {
  background:
    linear-gradient(180deg, #070604 0, #120f0b 218px, var(--paper) 218px, #fffdf8 100%) !important;
}

.order-steps h2 {
  color: #1a130d !important;
}

body .order-page .backend-card {
  background: #120f0b !important;
  border: 1px solid rgba(232,165,38,.42) !important;
  box-shadow: 0 28px 70px rgba(26,19,13,.22) !important;
}

body .order-page .application-card {
  background: rgba(255,248,237,.06) !important;
  border-color: rgba(255,213,107,.24) !important;
}

@media (max-width: 980px) {
  .snap-ribbon,
  .intro-flow,
  .menu-lanes,
  .extras-links,
  .visit-sweep {
    grid-template-columns: 1fr;
  }

  .snap-ribbon {
    margin-top: 0;
    padding: 0;
  }

  .taste-strip {
    transform: none;
    grid-template-columns: 1fr 1fr;
  }

  .menu-lanes a,
  .extras-links a {
    border-right: 0;
    border-bottom: 1px solid rgba(255,213,107,.22);
  }

  .menu-lanes a:last-child,
  .extras-links a:last-child {
    border-bottom: 0;
  }

  .visit-sweep {
    align-items: start;
  }

  body main.section.order-page {
    background:
      linear-gradient(180deg, #070604 0, #120f0b 205px, var(--paper) 205px, #fffdf8 100%) !important;
  }
}

@media (max-width: 560px) {
  body .home-title {
    font-size: clamp(2.65rem, 16vw, 4.3rem) !important;
  }

  .taste-strip {
    grid-template-columns: 1fr;
  }

  .taste-strip img:nth-child(1) {
    grid-row: auto;
  }

  .taste-strip img:nth-child(2),
  .taste-strip img:nth-child(4) {
    transform: none;
  }
}

/* v114 Carry the pop redesign across all public pages */
body .page-hero,
body .menu-pro-hero,
body .employment-hero,
body .compact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(300px, 38vh, 430px) !important;
  padding: clamp(42px, 6vw, 76px) clamp(20px, 6vw, 90px) !important;
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  text-align: center !important;
  background:
    radial-gradient(circle at 18% 24%, rgba(217,79,43,.22), transparent 28%),
    linear-gradient(90deg, rgba(7,6,4,.94), rgba(7,6,4,.74), rgba(7,6,4,.48)),
    url("assets/town-hill-hero-pop.jpg") center 55% / cover no-repeat !important;
}

body .page-hero::after,
body .menu-pro-hero::after,
body .employment-hero::after,
body .compact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 88px;
  background: linear-gradient(180deg, transparent, #070604);
  z-index: -1;
}

body .page-hero > *,
body .menu-pro-hero > *,
body .employment-hero > *,
body .compact-hero > * {
  max-width: 900px !important;
}

body .page-hero h1,
body .menu-pro-hero h1,
body .employment-hero h1,
body .page-hero.employment-hero h1,
body .compact-hero h1 {
  color: #fff8ed !important;
  font-size: clamp(2.25rem, 4.7vw, 4.25rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

body .page-hero p:not(.eyebrow),
body .menu-pro-hero p:not(.eyebrow),
body .employment-hero p:not(.eyebrow),
body .compact-hero p:not(.eyebrow) {
  color: rgba(255,248,237,.82) !important;
  font-size: clamp(1rem, 1.6vw, 1.2rem) !important;
}

body .section:not(.intro-flow):not(.menu-flow):not(.extras-flow):not(.photo-page):not(.order-page) {
  background:
    radial-gradient(circle at 92% 10%, rgba(232,165,38,.10), transparent 24%),
    linear-gradient(180deg, #10100c 0%, #070604 100%) !important;
  color: #fff8ed !important;
}

body .section-heading {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body .section-heading h2,
body .about-story h2,
body .reserve-copy h2,
body .application-intro h2,
body .backend-card h2,
body .specials-callout h2,
body .chalkboard h2,
body .map-panel h3 {
  color: #fff8ed !important;
  font-family: Cinzel, Georgia, serif !important;
  letter-spacing: 0 !important;
}

body .section-heading p:not(.eyebrow),
body .about-story p,
body .reserve-copy p,
body .contact-note,
body .application-intro p,
body .backend-card p,
body .feature-list p,
body .c2-feature-page p,
body .map-panel p,
body .chalkboard p,
body .specials-board p {
  color: rgba(255,248,237,.74) !important;
}

body .about-section,
body .reserve-section,
body .contact-visit-section {
  display: grid !important;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr) !important;
  gap: clamp(26px, 5vw, 70px) !important;
  align-items: start !important;
}

body .about-story,
body .reserve-copy,
body .story-panel {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body .about-highlights,
body .hours-list,
body .feature-list,
body .c2-card-grid,
body .employment-options,
body .specials-board {
  display: grid !important;
  gap: 16px !important;
}

body .about-highlights div,
body .hours-list p,
body .feature-list > div,
body .c2-card-grid > div,
body .option-card,
body .specials-board article,
body .backend-card,
body .application-tool-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,213,107,.24) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(255,248,237,.10), rgba(255,248,237,.035)) !important;
  box-shadow: 0 24px 66px rgba(0,0,0,.24) !important;
}

body .about-highlights div::before,
body .feature-list > div::before,
body .c2-card-grid > div::before,
body .option-card::before,
body .specials-board article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #ffd56b, #d94f2b);
}

body .about-highlights span,
body .hours-list strong,
body .specials-board span,
body .feature-icon,
body .option-card span,
body .public-menu-category-head h3,
body .featured-menu-card small {
  color: #ffd56b !important;
}

body .contact-form,
body .reserve-form,
body .employment-form,
body .backend-login-form {
  border: 1px solid rgba(255,213,107,.30) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(145deg, rgba(255,248,237,.10), rgba(255,248,237,.035)) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.32) !important;
}

body .contact-form label,
body .reserve-form label,
body .employment-form label,
body .backend-card label {
  color: rgba(255,248,237,.88) !important;
}

body input,
body textarea,
body select,
body .contact-form input,
body .contact-form textarea,
body .reserve-form input,
body .reserve-form textarea,
body .employment-form input,
body .employment-form textarea,
body .employment-form select,
body .backend-card input,
body .backend-card textarea,
body .backend-card select {
  border: 1px solid rgba(255,213,107,.28) !important;
  border-radius: 14px !important;
  background: rgba(7,6,4,.58) !important;
  color: #fff8ed !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

body input::placeholder,
body textarea::placeholder {
  color: rgba(255,248,237,.42) !important;
}

body .form-note,
body .application-note {
  color: rgba(255,248,237,.62) !important;
}

body .specials-board {
  grid-template-columns: repeat(4, 1fr) !important;
  max-width: 1180px;
  margin: 36px auto 0;
}

body .chalkboard,
body .specials-callout,
body .map-panel,
body .application-section,
body .printable-application {
  border: 1px solid rgba(255,213,107,.28) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(145deg, rgba(255,248,237,.10), rgba(255,248,237,.035)) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.28) !important;
}

body .map-panel {
  overflow: hidden;
}

body .map-panel iframe {
  filter: saturate(.82) contrast(1.05);
}

body .upgraded-menu-section,
body .menu-feature-strip,
body .menu-cta {
  background:
    radial-gradient(circle at 82% 0%, rgba(217,79,43,.16), transparent 24%),
    linear-gradient(180deg, #10100c, #070604) !important;
}

body .featured-menu-card,
body .public-menu-category {
  border-color: rgba(255,213,107,.28) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(145deg, rgba(255,248,237,.09), rgba(255,248,237,.03)) !important;
  box-shadow: 0 24px 66px rgba(0,0,0,.22);
}

body .public-menu-category-head {
  background: linear-gradient(90deg, rgba(217,79,43,.18), rgba(255,213,107,.08)) !important;
}

body .public-menu-item p,
body .featured-menu-card p {
  color: rgba(255,248,237,.72) !important;
}

body .application-logo-block img {
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

body .site-footer img {
  max-width: 145px;
}

@media (max-width: 1050px) {
  body .about-section,
  body .reserve-section,
  body .contact-visit-section,
  body .specials-board {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 700px) {
  body .page-hero,
  body .menu-pro-hero,
  body .employment-hero,
  body .compact-hero {
    min-height: 300px !important;
    padding: 42px 20px !important;
  }

  body .page-hero h1,
  body .menu-pro-hero h1,
  body .employment-hero h1,
  body .compact-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem) !important;
  }
}

/* v115 Compact pass: keep the pop, remove the sprawl */
body .site-header {
  padding-top: 12px !important;
}

body .brand {
  padding-bottom: 10px !important;
  gap: 4px !important;
}

body .brand img,
body .logo-img {
  width: clamp(170px, 15vw, 238px) !important;
  max-height: 138px !important;
}

body .brand::after {
  font-size: clamp(.72rem, 1vw, .95rem) !important;
}

body .site-nav {
  min-height: 42px !important;
}

body .site-nav a {
  padding: 13px 12px 12px !important;
  font-size: .72rem !important;
}

body .pop-hero,
body .hero,
body .home-hero {
  min-height: clamp(390px, 48vh, 540px) !important;
  padding: clamp(38px, 5vw, 58px) clamp(20px, 5vw, 64px) !important;
}

body .home-title {
  max-width: 650px !important;
  font-size: clamp(2.35rem, 4.35vw, 4.45rem) !important;
  line-height: 1 !important;
}

body .hero-copy {
  max-width: 500px !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

body .hero-actions,
.visit-actions,
.application-tool-buttons {
  gap: 9px !important;
}

body .button {
  padding: 10px 16px !important;
  font-size: .86rem !important;
}

.snap-ribbon {
  max-width: 1060px;
  margin-top: -34px;
}

.snap-ribbon a {
  min-height: 88px;
  padding: 16px 17px;
}

.snap-ribbon strong {
  font-size: 1rem;
}

.snap-ribbon span {
  font-size: .9rem;
}

body .section,
body main.section,
body .application-section {
  padding-top: clamp(34px, 4vw, 58px) !important;
  padding-bottom: clamp(34px, 4vw, 58px) !important;
}

.intro-flow {
  gap: clamp(20px, 4vw, 48px) !important;
  padding-top: clamp(50px, 6vw, 78px) !important;
}

.intro-copy h2,
.menu-flow h2,
.extras-flow h2,
.visit-sweep h2 {
  font-size: clamp(1.85rem, 3vw, 3.1rem) !important;
}

.intro-copy p,
.menu-flow .section-heading p,
.extras-flow .section-heading p,
.visit-sweep p {
  line-height: 1.58 !important;
}

.taste-strip {
  gap: 10px;
}

.taste-strip img {
  min-height: 135px;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.menu-lanes,
.extras-links {
  max-width: 1040px;
  margin-top: 26px;
}

.menu-lanes a,
.extras-links a {
  min-height: 152px;
  padding: clamp(18px, 2.4vw, 26px);
  gap: 8px;
}

.menu-lanes strong,
.extras-links strong {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.visit-sweep {
  padding: clamp(26px, 4vw, 46px) clamp(20px, 5vw, 64px);
}

body .page-hero,
body .menu-pro-hero,
body .employment-hero,
body .compact-hero {
  min-height: clamp(230px, 30vh, 330px) !important;
  padding: clamp(30px, 4.5vw, 54px) clamp(20px, 5vw, 64px) !important;
}

body .page-hero h1,
body .menu-pro-hero h1,
body .employment-hero h1,
body .page-hero.employment-hero h1,
body .compact-hero h1 {
  max-width: 760px !important;
  font-size: clamp(1.95rem, 3.55vw, 3.35rem) !important;
  line-height: 1.08 !important;
}

body .page-hero p:not(.eyebrow),
body .menu-pro-hero p:not(.eyebrow),
body .employment-hero p:not(.eyebrow),
body .compact-hero p:not(.eyebrow) {
  max-width: 700px !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

body .section-heading {
  max-width: 760px !important;
}

body .section-heading h2,
body .about-story h2,
body .reserve-copy h2,
body .application-intro h2,
body .backend-card h2,
body .specials-callout h2,
body .chalkboard h2,
body .map-panel h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.45rem) !important;
  line-height: 1.12 !important;
}

body .about-section,
body .reserve-section,
body .contact-visit-section {
  gap: clamp(20px, 3.2vw, 42px) !important;
}

body .about-highlights,
body .hours-list,
body .feature-list,
body .c2-card-grid,
body .employment-options,
body .specials-board {
  gap: 11px !important;
}

body .about-highlights div,
body .hours-list p,
body .feature-list > div,
body .c2-card-grid > div,
body .option-card,
body .specials-board article,
body .backend-card,
body .application-tool-card {
  border-radius: 12px !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
}

body .contact-form,
body .reserve-form,
body .employment-form,
body .backend-login-form {
  border-radius: 16px !important;
  padding: clamp(16px, 2.6vw, 24px) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.24) !important;
}

body input,
body textarea,
body select,
body .contact-form input,
body .contact-form textarea,
body .reserve-form input,
body .reserve-form textarea,
body .employment-form input,
body .employment-form textarea,
body .employment-form select,
body .backend-card input,
body .backend-card textarea,
body .backend-card select {
  border-radius: 10px !important;
  padding: 10px 12px !important;
}

body .specials-board {
  margin-top: 24px;
}

body .chalkboard,
body .specials-callout,
body .map-panel,
body .application-section,
body .printable-application {
  border-radius: 16px !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.22) !important;
}

body .image-gallery-grid {
  gap: 12px !important;
}

body .gallery-card {
  box-shadow: 0 14px 34px rgba(0,0,0,.24) !important;
}

body .gallery-card:nth-child(4n+2),
body .gallery-card:nth-child(4n+3) {
  transform: none !important;
}

body .gallery-filter-row {
  margin: 18px 0 22px !important;
}

body .gallery-filter-row .button {
  min-width: 112px !important;
  padding: 10px 14px !important;
}

body main.section.order-page {
  background:
    linear-gradient(180deg, #070604 0, #120f0b 178px, var(--paper) 178px, #fffdf8 100%) !important;
}

.order-steps {
  margin: 22px auto 18px !important;
}

.order-steps h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem) !important;
  margin-bottom: 18px !important;
}

.order-step span {
  width: 38px !important;
  height: 38px !important;
  font-size: 1rem !important;
}

body .order-page .backend-grid-two {
  padding-bottom: clamp(30px, 4vw, 48px) !important;
}

body .order-page .backend-card {
  box-shadow: 0 16px 42px rgba(26,19,13,.18) !important;
}

@media (max-width: 980px) {
  .snap-ribbon {
    margin-top: 0;
  }

  body main.section.order-page {
    background:
      linear-gradient(180deg, #070604 0, #120f0b 168px, var(--paper) 168px, #fffdf8 100%) !important;
  }
}

@media (max-width: 700px) {
  body .brand img,
  body .logo-img {
    width: 180px !important;
    max-height: 104px !important;
  }

  body .brand::after {
    font-size: .68rem !important;
  }

  body .pop-hero,
  body .hero,
  body .home-hero {
    min-height: 430px !important;
    padding: 30px 20px !important;
  }

  body .home-title {
    font-size: clamp(2.25rem, 12vw, 3.45rem) !important;
  }

  body .page-hero,
  body .menu-pro-hero,
  body .employment-hero,
  body .compact-hero {
    min-height: 235px !important;
    padding: 30px 20px !important;
  }

  body .page-hero h1,
  body .menu-pro-hero h1,
  body .employment-hero h1,
  body .compact-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.85rem) !important;
  }
}

/* v116 QR code option */
body .site-nav a[href="qr-codes.html"] {
  color: #ffd56b !important;
}

.qr-section {
  display: grid;
  gap: 24px;
}

.qr-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, .9fr) auto;
  gap: 16px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255,213,107,.26);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,248,237,.09), rgba(255,248,237,.03));
}

.qr-controls h2 {
  margin: 0;
  color: #fff8ed;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.qr-controls label {
  display: grid;
  gap: 7px;
  color: rgba(255,248,237,.88);
  font-weight: 900;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.qr-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255,213,107,.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,213,107,.16), transparent 28%),
    linear-gradient(145deg, rgba(255,248,237,.10), rgba(255,248,237,.035));
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}

.qr-code-frame {
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
}

.qr-code-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card h2 {
  margin: 0 0 8px;
  color: #fff8ed;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.qr-card p:not(.eyebrow) {
  color: rgba(255,248,237,.75);
}

.qr-card .text-link {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: .9rem;
}

.qr-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .qr-controls,
  .qr-grid,
  .qr-card {
    grid-template-columns: 1fr;
  }

  .qr-code-frame {
    max-width: 260px;
    margin: 0 auto;
  }
}

@media print {
  .site-header,
  .page-hero,
  .qr-controls,
  .qr-actions,
  .call-strip,
  .site-footer {
    display: none !important;
  }

  body,
  body .section,
  .qr-section {
    background: #fff !important;
    color: #111 !important;
  }

  .qr-section {
    padding: 24px !important;
  }

  .qr-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
    max-width: none !important;
  }

  .qr-card {
    break-inside: avoid;
    border: 2px solid #111 !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
  }

  .qr-card h2,
  .qr-card p,
  .qr-card .eyebrow,
  .qr-card .text-link {
    color: #111 !important;
  }
}

/* Town Hill final homepage ribbon spacing */
body .snap-ribbon {
  margin-top: 18px !important;
  border-top: 0 !important;
}

body .snap-ribbon a {
  text-decoration: none !important;
  border-top: 0 !important;
}

/* QR page live override - keep this at the end */
html body main.qr-page {
  width: 100vw !important;
  max-width: none !important;
  min-height: calc(100vh - 92px) !important;
  margin: 0 !important;
  padding: 32px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

html body main.qr-page .qr-print-card {
  width: min(300px, calc(100vw - 32px)) !important;
  max-width: 300px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  color: #3f2a10 !important;
}

html body main.qr-page .qr-print-card .eyebrow,
html body main.qr-page .qr-print-card h1 {
  color: #8a5a13 !important;
}

html body main.qr-page .qr-print-card p:not(.eyebrow) {
  color: #493515 !important;
}

html body main.qr-page .qr-print-card img {
  width: min(145px, 50vw) !important;
  height: auto !important;
  margin: 10px auto 12px !important;
  display: block !important;
}

html body main.qr-page .qr-print-card .button,
html body main.qr-page .qr-print-card .button.secondary {
  background: #8a5a13 !important;
  border-color: #8a5a13 !important;
  color: #fff8e8 !important;
}
