
:root {
  --primary: #93c83f;
  --primary-dark: #7fb22f;
  --background: #ffffff;
  --foreground: #262626;
  --secondary: #ededed;
  --muted: #ededed;
  --muted-foreground: #666666;
  --card: #fafafa;
  --border: #d9d9d9;
  --shadow-sm: 0 10px 22px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 34px rgba(0, 0, 0, 0.08);
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Barlow Condensed", Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: clip;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--foreground);
}

p { color: var(--muted-foreground); }

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

.container { max-width: 1320px; }
.section-narrow { max-width: 1140px; }
.section-wide { max-width: 1460px; }

.navbar {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.navbar.nav-scrolled {
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.nav-shell { min-height: 72px; }

.navbar-brand img {
  width: 124px;
  height: 124px;
  object-fit: contain;
  transition: transform .3s ease;
}

.navbar-brand:hover img { transform: scale(1.05); }

.brand-title { line-height: 1; }
.brand-name {
  font-size: clamp(2.15rem, 1.3rem + 1.5vw, 3.15rem);
  color: var(--foreground);
  font-weight: 500;
  letter-spacing: .01em;
}
.brand-title small {
  display: block;
  margin-top: .45rem;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  font-weight: 600;
}

.navbar-nav .nav-link {
  font-size: 1.16rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.navbar-nav .nav-link:hover {
  background: rgba(147, 200, 63, .1);
  color: var(--foreground);
}

.navbar-nav .nav-link.active {
  background: var(--primary);
  color: #1d1d1d !important;
}

.navbar-toggler:focus { box-shadow: none; }

.page-header {
  background: var(--secondary);
  padding: 6rem 0 5rem;
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.page-title {
  font-size: clamp(3.8rem, 2.8rem + 2.8vw, 6rem);
  line-height: .95;
  margin: 0;
}

.page-subtitle {
  font-size: clamp(1.45rem, 1.1rem + .8vw, 2rem);
  max-width: 760px;
}

.menu-page-header {
  padding: 2.15rem 0;
  min-height: 68px;
}


.btn-brand {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #1f1f1f;
  font-size: 1.35rem;
  font-weight: 600;
  border-radius: 999px;
  padding: .95rem 1.7rem;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #1f1f1f;
  transform: translateY(-1px);
}
.btn-outline-brand {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
  background: var(--primary);
  color: #1f1f1f;
  border-color: var(--primary);
}

.text-brand { color: var(--primary) !important; }
.bg-brand { background: var(--primary) !important; }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.42) 46%, rgba(0,0,0,.18) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1, .hero p { color:#fff; }
.hero-badge {
  display: inline-block;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  background: rgba(147, 200, 63, .95);
  color: #1f1f1f;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: 1.2rem;
}
.section-title { font-weight: 700; letter-spacing: -.02em; }

.card-hover {
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.dish-card img, .feature-image, .cta-panel { object-fit: cover; }

.parallax-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  color: #fff;
}
.parallax-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(147, 200, 63, .78), rgba(0, 0, 0, .45));
}
.parallax-banner .container,
.cta-block .content-wrap { position: relative; z-index: 1; }

.loyalty-box {
  border-left: 6px solid var(--primary);
  background: rgba(147, 200, 63, .10);
  border-radius: 0 1.25rem 1.25rem 0;
}

.cta-block {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  color: #fff;
  min-height: 440px;
  background-size: cover;
  background-position: center;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.65) 48%, rgba(0,0,0,.2) 100%);
}

.menu-info-panel {
  max-width: 960px;
  background: #f8f8f8;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  padding: 1.75rem;
}
.menu-cafe-name {
  font-size: 2rem;
  color: var(--primary);
}
.menu-address, .menu-phone {
  font-size: 1.55rem;
  color: var(--foreground);
}
.menu-phone, .menu-phone a { color: var(--muted-foreground); }
.menu-phone a:hover { color: var(--primary); }
.menu-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: 1.2rem;
  background: rgba(147, 200, 63, .1);
  color: var(--primary);
  font-weight: 600;
}

.menu-note-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 106px;
  background: var(--muted);
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
}
.menu-note-card span {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--foreground);
}
.menu-note-card strong { color: var(--primary); }
.menu-note-icon {
  color: var(--primary);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.menu-accordion { display: grid; gap: 1.75rem; }
.menu-accordion-item {
  background: #f9f9f9;
  border: 1px solid var(--border) !important;
  border-radius: 1.5rem !important;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
}
.menu-accordion-item.senior-section {
  background: rgba(147, 200, 63, .05);
  border-color: rgba(147, 200, 63, .45) !important;
}
.menu-accordion-trigger {
  background: transparent !important;
  box-shadow: none !important;
  padding: 1.6rem 1.85rem !important;
}
.menu-accordion-trigger:not(.collapsed) {
  color: var(--foreground) !important;
  background: transparent !important;
}
.menu-accordion-trigger:focus {
  border-color: rgba(147, 200, 63, .25);
  box-shadow: 0 0 0 .18rem rgba(147, 200, 63, .12) !important;
}
.menu-section-title {
  font-size: clamp(2.4rem, 1.8rem + 1.2vw, 3.4rem);
  line-height: 1;
  color: var(--foreground);
}
.senior-section .menu-section-title { color: var(--primary); }

.menu-item-card {
  background: #ffffff;
  border: none;
  border-radius: 1.15rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 1.65rem 1.8rem;
  min-height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}
.menu-item-card:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,.10);
  transform: translateY(-2px);
}
.menu-item-title {
  font-size: clamp(2rem, 1.45rem + .6vw, 2.4rem);
  line-height: 1.05;
}
.menu-item-price {
  color: var(--primary);
  font-size: clamp(2rem, 1.5rem + .6vw, 2.5rem);
  line-height: 1;
  font-weight: 700;
}
.menu-item-copy {
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--muted-foreground);
}


/* Home featured cards - closer to original export */
.bg-brand-light { background: #efefef !important; }
.dish-card {
  background: #fafafa;
  border: 1px solid #e1e1e1 !important;
  border-radius: 1.9rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.dish-card .card-img-top {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}
.dish-card .card-body {
  padding: 1.95rem 1.9rem 1.55rem;
}
.dish-card h3, .dish-card .dish-name {
  font-size: clamp(2.8rem, 2.05rem + .75vw, 3.55rem);
  line-height: .94;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.dish-card p {
  font-size: clamp(1.35rem, 1.18rem + .16vw, 1.55rem);
  line-height: 1.55;
  color: #6a6a6a;
}
.btn-outline-brand.btn-detail {
  border: 2px solid #cfcfcf;
  color: #1f1f1f;
  background: #fff;
  border-radius: 1.1rem;
  font-size: 1.42rem;
  letter-spacing: .055em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 1.05rem;
}
.btn-outline-brand.btn-detail:hover, .btn-outline-brand.btn-detail:focus {
  background: #fff;
  color: #1f1f1f;
  border-color: #bdbdbd;
}
.featured-modal .modal-content {
  border: none;
  border-radius: 1.75rem;
  overflow: hidden;
}
.featured-modal .modal-header {
  border-bottom: 1px solid #eee;
  padding: 1.1rem 1.35rem;
}
.featured-modal .modal-title {
  font-size: 2rem;
  font-weight: 600;
}
.featured-modal .modal-body {
  padding: 0;
}
.featured-modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.featured-modal-copy {
  padding: 1.5rem;
}
.featured-modal-copy p {
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.service-card {
  height: 100%;
  background: #fafafa;
  border-top: 4px solid var(--primary);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-icon-box {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  border-radius: 1.25rem;
  background: rgba(147, 200, 63, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2.6rem;
}
.service-title {
  font-size: 2.2rem;
  margin-bottom: .9rem;
}
.service-copy {
  font-size: 1.45rem;
  line-height: 1.5;
}

.promotion-grid { align-items: stretch; }
.promo-card {
  height: 100%;
  background: #fafafa;
  border-radius: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.promo-featured-card {
  background: var(--primary);
  color: #1d1d1d;
  box-shadow: none;
}
.promo-card-body {
  padding: 2.25rem;
  flex: 1 1 auto;
}
.promo-card-footer {
  padding: 0 2.25rem 2.25rem;
}
.promo-pill {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,.28);
  color: #1f1f1f;
  font-size: 1.1rem;
  font-weight: 600;
}
.promo-title {
  font-size: clamp(2.6rem, 2rem + .7vw, 3.4rem);
  margin-bottom: 1rem;
}
.promo-copy {
  font-size: 1.6rem;
  line-height: 1.45;
  margin-bottom: 1.4rem;
}
.promo-featured-card .promo-copy,
.promo-featured-card .promo-valid,
.promo-featured-card .promo-title { color: #1d1d1d; }
.promo-valid {
  font-size: 1.3rem;
  color: var(--muted-foreground);
  font-weight: 600;
}
.promo-btn {
  display: block;
  width: 100%;
  border-radius: 1rem;
  padding: .95rem 1rem;
  text-align: center;
}
.btn-promo-secondary {
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
  color: #262626;
  font-size: 1.35rem;
  font-weight: 600;
}
.btn-promo-secondary:hover {
  background: #ffffff;
  color: #262626;
}

.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 200, 63, .12);
  color: var(--primary);
  font-size: 1.45rem;
}

.footer-link {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}
.footer-link:hover { color: #fff; }
footer {
  background: #1d2613;
  color: #fff;
}
.footer-heading, .footer-label {
  color: #fff;
}

.map-placeholder {
  min-height: 260px;
  background-image: radial-gradient(circle at 2px 2px, rgba(38,38,38,.22) 1px, transparent 0);
  background-size: 24px 24px;
}

.form-control, .form-select {
  border-radius: 1rem;
  border-color: var(--border);
  font-size: 1.25rem;
  padding: .9rem 1.1rem;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(147, 200, 63, .55);
  box-shadow: 0 0 0 .2rem rgba(147, 200, 63, .18);
}

@media (max-width: 991.98px) {
  .hero { min-height: 72vh; }
  .cta-block { min-height: 380px; }
  .navbar-nav .nav-link { font-size: 1.45rem; }
}

@media (max-width: 767.98px) {
  .page-header { padding: 4.5rem 0 4rem; }
  .service-card, .promo-card-body { padding: 1.6rem; }
  .promo-card-footer { padding: 0 1.6rem 1.6rem; }
  .menu-item-card { padding: 1.3rem 1.2rem; }
  .menu-section-title { font-size: 2.2rem; }
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal-right {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.zoom-in {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.zoom-in.is-visible {
  opacity: 1;
  transform: none;
}
.stagger-item { transition-delay: var(--delay, 0ms); }

.hero .container > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp .85s ease forwards;
}
.hero .container > *:nth-child(1) { animation-delay: .08s; }
.hero .container > *:nth-child(2) { animation-delay: .18s; }
.hero .container > *:nth-child(3) { animation-delay: .28s; }
.hero .container > *:nth-child(4) { animation-delay: .38s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Next-level fidelity refinements */
body,
.navbar-nav .nav-link,
.brand-name,
.brand-title small,
.hero-badge,
.page-title,
.page-subtitle,
.menu-cafe-name,
.menu-address,
.menu-phone,
.menu-chip,
.menu-note-card span,
.menu-section-title,
.menu-item-title,
.menu-item-price,
.menu-item-copy,
.service-title,
.service-copy,
.promo-pill,
.promo-title,
.promo-copy,
.promo-valid,
.btn-brand,
.btn-outline-brand,
.btn-promo-secondary,
.form-control,
.form-select,
label,
.footer-link,
.loyalty-box,
.section-title {
  font-family: "Barlow Condensed", Arial, sans-serif;
}

body {
  font-size: 18px;
  line-height: 1.55;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
}

.hero {
  min-height: 90vh;
}

.hero::before {
  background: linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.60) 36%, rgba(0,0,0,.28) 68%, rgba(0,0,0,.08) 100%);
}

.hero h1,
.hero .display-1,
.hero .display-2,
.hero .display-3,
.hero .display-4,
.hero .display-5,
.hero p,
.hero .lead,
.hero .section-title {
  color: #ffffff !important;
  text-shadow: 0 6px 28px rgba(0,0,0,.26);
}

.hero p,
.hero .lead {
  color: rgba(255,255,255,.88) !important;
}

.hero h1, .hero p { color:#fff; }
.hero-badge {
  background: rgba(147, 200, 63, .98);
  color: #1a1a1a;
  letter-spacing: .07em;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
}

.navbar-nav .nav-link.active {
  background: #9fcb39;
  color: #181818 !important;
}

.btn-brand {
  font-weight: 700;
  letter-spacing: .02em;
}

.btn-outline-brand {
  border-width: 3px;
}

.page-header {
  background: #ececec;
}

.menu-note-card {
  background: #ededed;
  border: 1px solid rgba(0,0,0,.04);
  min-height: 108px;
}

.menu-accordion-item {
  background: #f7f7f7;
  border-color: #cfcfcf !important;
}

.menu-accordion-item.senior-section {
  background: rgba(147, 200, 63, .06);
  border-color: rgba(147, 200, 63, .55) !important;
}

.menu-accordion-trigger {
  min-height: 104px;
}

.menu-item-card {
  background: #ffffff;
  border-radius: 1.1rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}


/* Home featured cards - closer to original export */
.bg-brand-light { background: #efefef !important; }
.dish-card {
  background: #fafafa;
  border: 1px solid #e1e1e1 !important;
  border-radius: 1.9rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.dish-card .card-img-top {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}
.dish-card .card-body {
  padding: 1.95rem 1.9rem 1.55rem;
}
.dish-card h3, .dish-card .dish-name {
  font-size: clamp(2.8rem, 2.05rem + .75vw, 3.55rem);
  line-height: .94;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.dish-card p {
  font-size: clamp(1.35rem, 1.18rem + .16vw, 1.55rem);
  line-height: 1.55;
  color: #6a6a6a;
}
.btn-outline-brand.btn-detail {
  border: 2px solid #cfcfcf;
  color: #1f1f1f;
  background: #fff;
  border-radius: 1.1rem;
  font-size: 1.42rem;
  letter-spacing: .055em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 1.05rem;
}
.btn-outline-brand.btn-detail:hover, .btn-outline-brand.btn-detail:focus {
  background: #fff;
  color: #1f1f1f;
  border-color: #bdbdbd;
}
.featured-modal .modal-content {
  border: none;
  border-radius: 1.75rem;
  overflow: hidden;
}
.featured-modal .modal-header {
  border-bottom: 1px solid #eee;
  padding: 1.1rem 1.35rem;
}
.featured-modal .modal-title {
  font-size: 2rem;
  font-weight: 600;
}
.featured-modal .modal-body {
  padding: 0;
}
.featured-modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.featured-modal-copy {
  padding: 1.5rem;
}
.featured-modal-copy p {
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.service-card {
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,.05);
  border-top: 5px solid var(--primary);
}

.service-icon-box {
  background: rgba(147, 200, 63, .08);
}

.promo-card {
  background: #fafafa;
}

.promo-featured-card {
  background: #9fcb39;
}

.promo-pill {
  background: rgba(255,255,255,.26);
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 78vh;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.52) 52%, rgba(0,0,0,.40) 100%);
  }
}


.featured-modal .modal-dialog {
  max-width: min(1180px, calc(100vw - 2rem));
}
.featured-modal .modal-content {
  background: #fafafa;
}
.featured-modal .modal-header {
  padding: 1.4rem 2rem;
}
.featured-modal .modal-title {
  font-size: clamp(2.8rem, 2.15rem + 1.05vw, 4rem);
  line-height: .95;
}
.featured-modal .btn-close {
  transform: scale(1.4);
  opacity: .55;
}
.featured-modal .btn-close:hover { opacity: .85; }
.featured-modal-image-wrap {
  background: #efefef;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid #d8d8d8;
}
.featured-modal-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  background: #efefef;
}
.featured-modal-copy {
  padding: 2.2rem 2.5rem;
}
.featured-modal-copy .dish-name {
  font-size: clamp(3rem, 2.4rem + .8vw, 4.4rem);
  line-height: .94;
  margin-bottom: 1.1rem;
}
.featured-modal-copy p {
  font-size: 1.55rem;
  line-height: 1.55;
  color: #5d5d5d;
}

@media (min-width: 1200px) {
  .featured-grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 1480px;
  }
}

@media (max-width: 1199.98px) {
  .dish-card h3, .dish-card .dish-name { font-size: 2.6rem; }
}

@media (max-width: 991.98px) {
  .section-wide { max-width: 1140px; }
  .dish-card .card-body { padding: 1.55rem 1.45rem 1.3rem; }
  .featured-modal-image { min-height: 320px; }
  .featured-modal-copy { padding: 1.6rem 1.6rem 2rem; }
}

@media (max-width: 767.98px) {
  .dish-card h3, .dish-card .dish-name { font-size: 2.25rem; }
  .btn-outline-brand.btn-detail { font-size: 1.2rem; }
  .featured-grid { padding-left: 0.5rem; padding-right: 0.5rem; }
  .featured-modal .modal-dialog { max-width: calc(100vw - 1rem); margin: .5rem auto; }
  .featured-modal-image-wrap { border-right: 0; border-bottom: 1px solid #d8d8d8; }
  .featured-modal-image { min-height: 260px; }
}


/* v4 fidelity refinements */

.home-hero-wrap {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.03);
}
.home-hero-card {
  position: relative;
  min-height: 580px;
  border-radius: 2.6rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  isolation: isolate;
}
.home-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.58) 34%, rgba(0,0,0,.24) 66%, rgba(0,0,0,.04) 100%);
  z-index: -1;
}
.home-hero-content {
  width: min(52%, 760px);
  padding: 4.4rem 3.9rem;
}
.home-hero-title {
  color: #fff !important;
  font-size: clamp(4.8rem, 3.6rem + 2.2vw, 7rem);
  line-height: .93;
  margin-bottom: 1.4rem;
  text-shadow: 0 8px 34px rgba(0,0,0,.26);
}
.home-hero-copy {
  color: rgba(255,255,255,.90) !important;
  font-size: clamp(1.8rem, 1.45rem + .5vw, 2.5rem);
  line-height: 1.4;
  max-width: 650px;
  margin-bottom: 2.2rem;
  text-shadow: 0 4px 18px rgba(0,0,0,.22);
}
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,.82);
  color: #fff;
  background: rgba(255,255,255,.04);
}
.btn-hero-outline:hover,
.btn-hero-outline:focus {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.featured-home-section .section-wide {
  max-width: 1760px;
}
.featured-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1760px;
}
.featured-grid > [class*="col"] {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  flex: initial !important;
}
.dish-card {
  min-height: 100%;
  border-radius: 2rem;
}
.dish-card .card-img-top {
  aspect-ratio: .98 / 1;
}
.dish-card .card-body {
  padding: 1.85rem 1.65rem 1.55rem;
}
.dish-card h3, .dish-card .dish-name {
  font-size: clamp(2.15rem, 1.75rem + .55vw, 2.9rem);
  line-height: 1.02;
  margin-bottom: .95rem;
}
.dish-card p {
  font-size: clamp(1.18rem, 1.02rem + .12vw, 1.38rem);
  line-height: 1.55;
  min-height: 6.8rem;
}
.btn-outline-brand.btn-detail {
  border-radius: 1rem;
  font-size: 1.2rem;
  padding: .95rem 1rem;
}
.featured-modal-image-wrap {
  min-height: 520px;
}
.featured-modal-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.menu-intro {
  background: var(--secondary);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.menu-intro-card {
  max-width: 1220px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1.8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  padding: 2.3rem 2rem 2rem;
}
.menu-cafe-name {
  color: var(--primary);
  font-size: 2.4rem;
  font-weight: 700;
}
.menu-address {
  color: #232323;
  font-size: 2rem;
  font-weight: 600;
}
.menu-phone, .menu-phone a {
  color: #727272;
  font-size: 1.8rem;
  text-decoration: none;
}
.menu-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  background: rgba(147,200,63,.12);
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}
.page-header .page-title,
.page-header .page-subtitle,
.page-header .page-title *,
.page-header .page-subtitle * {
  color: #222 !important;
  text-shadow: none !important;
}
.page-header,
.page-header.reveal,
.page-header.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
@media (max-width: 1399.98px) {
  .featured-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1199.98px) {
  .home-hero-content { width: min(62%, 760px); }
  .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-home-section .section-wide { max-width: 1500px; }
}
@media (max-width: 991.98px) {
  .home-hero-card { min-height: 520px; }
  .home-hero-content { width: 100%; padding: 3.25rem 2.2rem; }
  .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-modal-image-wrap,
  .featured-modal-image { min-height: 340px; }
}
@media (max-width: 767.98px) {
  .home-hero-card { min-height: 500px; border-radius: 2rem; }
  .home-hero-card::before { background: linear-gradient(180deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.58) 52%, rgba(0,0,0,.45) 100%); }
  .home-hero-content { padding: 2.4rem 1.5rem; }
  .featured-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .featured-modal-copy { padding: 1.4rem 1.25rem 1.7rem; }
}


/* v6 restore original home hero */
.hero-home-original {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(0,0,0,.03);
}
.hero-home-original::before {
  background:
    linear-gradient(rgba(74, 110, 21, .60), rgba(56, 84, 16, .60)),
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.18) 100%);
}
.hero-home-original .container {
  display: flex;
  justify-content: center;
}
.hero-home-inner {
  max-width: 1120px;
  width: 100%;
  padding: 7rem 1rem 6rem;
}
.hero-heart {
  font-size: 4.2rem;
  line-height: 1;
  color: #fff;
}
.hero-badge-home {
  background: rgba(147, 200, 63, .95);
  color: #111;
  font-size: 1.2rem;
  padding: .8rem 1.6rem;
  margin-bottom: 2rem;
}
.hero-home-title {
  color: #fff !important;
  font-size: clamp(4.5rem, 3.2rem + 4vw, 7.3rem);
  line-height: .95;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 auto 2rem;
  max-width: 980px;
  text-shadow: 0 6px 24px rgba(0,0,0,.20);
}
.hero-home-copy {
  color: rgba(255,255,255,.93) !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(2rem, 1.4rem + 1vw, 3rem);
  line-height: 1.25;
  max-width: 920px;
  margin: 0 auto 2.6rem;
  text-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.hero-home-btn {
  font-size: 1.9rem;
  padding: 1.15rem 2.4rem !important;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}
.hero-home-btn i {
  font-size: 1.15em;
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .hero-home-original {
    min-height: 72vh;
  }
  .hero-home-inner {
    padding: 5.5rem 1rem 4.8rem;
  }
  .hero-heart {
    font-size: 3.3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-home-original {
    min-height: 68vh;
  }
  .hero-home-inner {
    padding: 4.4rem .35rem 4rem;
  }
  .hero-badge-home {
    font-size: 1rem;
    padding: .65rem 1.15rem;
  }
  .hero-home-copy {
    max-width: 640px;
  }
  .btn.rounded-circle {
  width: 45px;
  height: 45px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-icon {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  min-height: 48px;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  line-height: 1;
}

.social-icon i {
  font-size: 20px;
  line-height: 1;
}
}
