@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #F5EDE0;
  --bg-soft: #EFE4D3;
  --panel: #FBF6EE;
  --panel-strong: #F2E9D8;
  --panel-muted: #EDE2D0;
  --text: #1E1410;
  --text-soft: #5E4840;
  --text-muted: #9A7E74;
  --line: rgba(160, 80, 55, 0.14);
  --line-strong: rgba(160, 80, 55, 0.26);
  --orange: #E8751A;
  --orange-deep: #C46015;
  --orange-soft: rgba(232, 117, 26, 0.10);
  --blue: #1E3F8E;
  --blue-soft: rgba(30, 63, 142, 0.10);
  --amber: #F09A4A;
  --amber-soft: rgba(240, 154, 74, 0.14);
  --sand: #FBF5EC;
  --ink-dark: #0F0A08;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 2rem));
  --shadow: 0 18px 44px rgba(100, 40, 20, 0.11);
  --shadow-soft: 0 8px 20px rgba(100, 40, 20, 0.08);
  --display: "Archivo", sans-serif;
  --body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 8%, rgba(232, 117, 26, 0.08), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(240, 154, 74, 0.06), transparent 25%),
    #F5EDE0;
  font-family: var(--body);
  font-size: 1.0125rem;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

iframe {
  border: 0;
  width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
ul,
ol,
table {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.2;
}

p + p {
  margin-top: 0.75rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 300;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--ink-dark);
  background: var(--sand);
  overflow: hidden;
}

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

.announcement {
  position: relative;
  z-index: 15;
  border-bottom: 1px solid rgba(30, 63, 142, 0.25);
  color: #FBF5EC;
  background: #1A3272;
}

.announcement__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0.82rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.announcement strong {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.button-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.button-inline::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(245, 237, 224, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(232, 117, 26, 0.10), rgba(240, 154, 74, 0.14));
  padding: 0.3rem;
}

.brand__text {
  display: grid;
  gap: 0.12rem;
}

.brand__eyebrow {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.3rem 0.82rem;
  color: var(--text-soft);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0.82rem;
  right: 0.82rem;
  bottom: 0.38rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--orange);
  transition: transform 160ms ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list a.is-active {
  color: var(--text);
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after,
.site-nav__list a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  position: absolute;
  left: 50%;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translateX(-50%);
  transition: transform 160ms ease, opacity 160ms ease;
  content: "";
}

.nav-toggle__lines {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle__lines::before {
  top: -0.38rem;
}

.nav-toggle__lines::after {
  top: 0.38rem;
}

body.menu-open .nav-toggle__lines {
  background: transparent;
}

body.menu-open .nav-toggle__lines::before {
  transform: translateX(-50%) translateY(0.38rem) rotate(45deg);
}

body.menu-open .nav-toggle__lines::after {
  transform: translateX(-50%) translateY(-0.38rem) rotate(-45deg);
}

.button,
.button-inline {
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.button-inline:hover,
.button-inline:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #FBF5EC;
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(232, 117, 26, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--orange-deep);
  box-shadow: 0 12px 28px rgba(232, 117, 26, 0.32);
}

.button--secondary {
  color: var(--orange);
  background: transparent;
  border-color: var(--orange);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--orange-soft);
}

.button--ghost {
  color: var(--text-soft);
  border-color: var(--line-strong);
  background: rgba(160, 80, 55, 0.04);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--text);
  border-color: var(--orange);
  background: var(--orange-soft);
}

.section {
  padding: 3.5rem 0;
}

.section--compact {
  padding: 2rem 0 2.5rem;
}

.section__inner {
  width: var(--container);
  margin: 0 auto;
}

.stack {
  display: grid;
  gap: 1.2rem;
}

.card .stack,
.contact-card .stack,
.feature-card .stack,
.stat-card .stack {
  gap: 0.7rem;
}

.hero__content.stack {
  gap: 1.5rem;
}

.cta-band .stack {
  gap: 0.8rem;
}

.page-hero__panel .stack {
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4,
.split,
.hero__grid,
.footer__grid,
.form-grid,
.gallery-grid,
.menu-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.split {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: stretch;
}

.footer__grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
}

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

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

.section-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-header--inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.lead {
  max-width: 72ch;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.7;
}

.mono {
  font-family: var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.hero {
  padding-top: 2.1rem;
}

.hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.hero__content {
  align-content: start;
}

.eyebrow--hero {
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.hero-word {
  display: inline;
}

.hero-word--orange {
  color: var(--orange);
}

.hero-word--blue {
  color: var(--blue);
}

.hero-word--dark {
  color: var(--text);
}

.hero__content h1 {
  max-width: 22ch;
}

.hero__content .lead {
  max-width: 60ch;
}

.hero__badges,
.hero__actions,
.button-row,
.menu-card__meta,
.meta-list,
.plain-list,
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero__badges {
  margin-top: 0.2rem;
}

.hero__actions {
  margin-top: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.48rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(160, 80, 55, 0.04);
  font-family: var(--display);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill--accent {
  border-color: rgba(232, 117, 26, 0.35);
  color: var(--orange);
  background: var(--orange-soft);
}

.hero__media {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel-muted);
  box-shadow: var(--shadow);
  transition: transform 400ms ease;
}

.hero__media--wide {
  min-height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.hero__media--wide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__media--wide img {
  object-position: center 40%;
}

.hero__media:hover {
  transform: scale(1.01);
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: auto -2.4rem -2.4rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  opacity: 0.9;
  filter: blur(0.4px);
}

.hero__media::after {
  display: none;
}

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

.hero__note {
  display: none;
}

.hero__note strong {
  color: #F5EDE0;
}

.hero__note p {
  color: rgba(245, 237, 224, 0.70);
  font-size: 0.94rem;
}

.page-hero {
  padding-top: 1.8rem;
  padding-bottom: 1rem;
}

.page-hero + .section {
  padding-top: 1rem;
}

.page-hero__panel {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(232, 117, 26, 0.06), rgba(240, 154, 74, 0.04)),
    linear-gradient(180deg, #FBF6EE, #F2E9D8);
  box-shadow: var(--shadow);
}

.page-hero__panel::before {
  display: none;
}

.page-hero__panel h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08;
}

.page-hero__panel .lead {
  max-width: 62ch;
}

.card,
.menu-card,
.faq-item,
.stat-card,
.hours-card,
.cta-card,
.contact-card,
.feature-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #FBF6EE, #F2E9D8);
  box-shadow: var(--shadow-soft);
}

.card::before,
.faq-item::before,
.cta-card::before,
.contact-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.card,
.stat-card,
.hours-card,
.cta-card,
.contact-card,
.feature-card,
.faq-item {
  padding: 1.35rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #FBF6EE, #F2E9D8);
  box-shadow: var(--shadow-soft);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(100, 40, 20, 0.14);
  border-color: var(--orange);
}

.social-link svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--orange);
  flex-shrink: 0;
}

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.3rem;
}

.feature-card__kicker {
  color: var(--text-muted);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card h2,
.card h3,
.stat-card h3,
.hours-card h3,
.contact-card h3,
.feature-card h3,
.cta-band h2 {
  max-width: none;
}

.faq-item h3 {
  max-width: none;
}

.feature-card p,
.stat-card p,
.hours-card p,
.contact-card p,
.menu-card p,
.faq-item p,
.cta-band p,
.placeholder-note,
.plain-list li,
.meta-list li {
  color: var(--text-soft);
}

.menu-card {
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(100, 40, 20, 0.16);
}

.menu-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel-muted);
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.06);
}

.menu-card__content {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1.3rem 1.35rem 1.45rem;
}

.menu-card__meta {
  margin-top: 0.15rem;
}

.menu-card__content p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.menu-card__title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.menu-card__title strong {
  min-width: 0;
}

.menu-card__title strong {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.menu-card__price {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.36rem 0.7rem;
  border: 1px solid rgba(232, 117, 26, 0.30);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(232, 117, 26, 0.08);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-anchor-bar {
  position: sticky;
  top: calc(5.25rem + 1px);
  z-index: 20;
  margin-top: 0;
  padding: 0.85rem;
  overflow: auto hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 237, 224, 0.97);
  box-shadow: var(--shadow-soft);
}

.menu-anchor-bar ul {
  display: flex;
  gap: 0.7rem;
  min-width: max-content;
  list-style: none;
}

.menu-anchor-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(160, 80, 55, 0.04);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-anchor-bar a:hover,
.menu-anchor-bar a:focus-visible,
.menu-anchor-bar a.is-active {
  color: var(--orange);
  border-color: rgba(232, 117, 26, 0.45);
  background: rgba(232, 117, 26, 0.10);
}

.menu-category.is-hidden {
  display: none;
}

.menu-category {
  scroll-margin-top: 9rem;
  padding: 2rem 0;
}

body[data-page="menu"] .page-hero + .section--compact {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

body[data-page="menu"] .page-hero {
  padding-bottom: 1rem;
}

.menu-items {
  display: grid;
  gap: 0.9rem;
}

.menu-line-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(160, 80, 55, 0.03);
}

.menu-line-item__copy {
  display: grid;
  gap: 0.35rem;
}

.menu-line-item__copy h3 {
  font-size: 1.02rem;
  line-height: 1;
}

.menu-line-item__copy h3 a:hover,
.menu-line-item__copy h3 a:focus-visible {
  color: var(--orange);
}

.menu-line-item__copy p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.menu-line-item__actions {
  display: grid;
  justify-items: end;
  gap: 0.6rem;
}

.menu-line-item__link {
  min-height: 2.35rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--ink-dark);
  background: var(--sand);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: 1.2rem;
  align-items: start;
}

.menu-detail__content {
  display: grid;
  gap: 1rem;
}

.menu-detail__summary {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #FBF6EE, #F2E9D8);
  box-shadow: var(--shadow-soft);
}

.menu-detail__summary h2 {
  font-size: clamp(1.7rem, 4vw, 2.55rem);
}

.menu-detail__facts {
  display: grid;
  gap: 0.75rem;
}

.menu-detail__facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.menu-detail__facts strong {
  color: var(--orange);
}

.related-links {
  display: grid;
  gap: 0.85rem;
}

.related-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  background: rgba(160, 80, 55, 0.03);
}

.related-links a:hover,
.related-links a:focus-visible {
  color: var(--orange);
  border-color: rgba(232, 117, 26, 0.30);
}

.gallery-card {
  display: block;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
  transition: transform 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  padding: 0.7rem 1rem 0.8rem;
  color: var(--text-muted);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-card:first-child {
  grid-column: 1 / -1;
}

.gallery-card:first-child img {
  aspect-ratio: 16 / 9;
}

.image-frame,
.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

.map-frame iframe {
  min-height: 30rem;
}

.placeholder-note {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(232, 117, 26, 0.25);
  border-radius: var(--radius-md);
  background: rgba(232, 117, 26, 0.06);
}

.placeholder-note strong {
  color: var(--orange);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

.plain-list,
.plain-list--columns,
.meta-list {
  list-style: none;
}

.plain-list {
  display: grid;
  gap: 0.75rem;
}

.plain-list--columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.plain-list li,
.meta-list li {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(160, 80, 55, 0.03);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.meta-list li span:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.meta-list {
  display: grid;
  gap: 0.75rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.hours-table th,
.hours-table td {
  padding: 0.82rem 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.hours-table th {
  color: var(--text-muted);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-table tbody tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 1.15rem;
}

.faq-item {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(100, 40, 20, 0.12);
}

.faq-item h3 {
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text-muted);
  font-family: var(--display);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: var(--text);
  background: #FBF6EE;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8f897d;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: rgba(232, 117, 26, 0.55);
  box-shadow: 0 0 0 4px rgba(232, 117, 26, 0.10);
}

.cta-band {
  position: relative;
  padding: 2.8rem 2rem;
  overflow: hidden;
  border: none;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1E3F8E, #152D66);
  color: #FBF5EC;
  box-shadow: 0 22px 50px rgba(30, 63, 142, 0.25);
}

.cta-band h2 {
  color: #FBF5EC;
}

.cta-band .eyebrow {
  color: var(--amber);
}

.cta-band .eyebrow::before {
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.cta-band .lead {
  color: rgba(251, 245, 236, 0.75);
}

.cta-band .button--ghost {
  border-color: rgba(251, 245, 236, 0.30);
  color: rgba(251, 245, 236, 0.75);
}

.cta-band .button--ghost:hover,
.cta-band .button--ghost:focus-visible {
  border-color: rgba(251, 245, 236, 0.55);
  color: #FBF5EC;
  background: rgba(251, 245, 236, 0.08);
}

.cta-band .button--secondary {
  border-color: rgba(251, 245, 236, 0.40);
  color: #FBF5EC;
}

.cta-band .button--secondary:hover,
.cta-band .button--secondary:focus-visible {
  border-color: rgba(251, 245, 236, 0.65);
  background: rgba(251, 245, 236, 0.08);
}


.footer {
  margin-top: 2rem;
  border-top: 3px solid var(--orange);
  background: linear-gradient(180deg, #1A3272, #122454);
  color: #E8DDD0;
}

.footer__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 3rem 0 2rem;
  display: grid;
  gap: 1.5rem;
}

.footer p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(232, 221, 208, 0.6);
}

.footer__bar {
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 221, 208, 0.12);
  color: rgba(232, 221, 208, 0.45);
  font-size: 0.9rem;
}

.footer__nav {
  list-style: none;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-links strong {
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(232, 221, 208, 0.65);
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #E8DDD0;
}

.footer__nav a {
  color: rgba(232, 221, 208, 0.65);
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: #E8DDD0;
}

.contact-card a:not(.button),
.hours-card a:not(.button) {
  color: var(--orange);
}

.contact-card a:not(.button):hover,
.contact-card a:not(.button):focus-visible,
.hours-card a:not(.button):hover,
.hours-card a:not(.button):focus-visible {
  color: var(--orange-deep);
}

body[data-page="home"] .hero__content .grid-2 {
  margin-top: 0.5rem;
}

body[data-page="home"] .feature-card {
  background: rgba(160, 80, 55, 0.04);
}

.stat-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  transition: transform 300ms ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.contact-card {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

body[data-page="home"] .stat-card:nth-child(2),
body[data-page="home"] .stat-card:nth-child(4) {
  background: linear-gradient(135deg, #1E3F8E, #152D66);
  border-color: transparent;
  color: #FBF5EC;
}

body[data-page="home"] .stat-card:nth-child(2) h3,
body[data-page="home"] .stat-card:nth-child(4) h3 {
  color: #FBF5EC;
}

body[data-page="home"] .stat-card:nth-child(2) p,
body[data-page="home"] .stat-card:nth-child(4) p,
body[data-page="home"] .stat-card:nth-child(2) .feature-card__kicker,
body[data-page="home"] .stat-card:nth-child(4) .feature-card__kicker {
  color: rgba(251, 245, 236, 0.75);
}

body[data-page="home"] .stat-card:nth-child(2)::before,
body[data-page="home"] .stat-card:nth-child(4)::before {
  background: rgba(251, 245, 236, 0.50);
}

/* ── Sources & References ────────────────────── */

.sources {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.sources__title {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sources ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.sources a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
}

.sources a:hover,
.sources a:focus-visible {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

/* ── Toile Pattern ───────────────────────────── */

/* Global: very subtle background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('../images/brand/genkis-wave-pattern.svg') 0 0 / 920px auto repeat;
  opacity: 0.35;
  pointer-events: none;
}

/* CTA Band: most prominent — mirrors the box packaging design */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/brand/genkis-wave-pattern.svg') center / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
  border-radius: inherit;
}

/* Page Hero Panel: right-side toile peek */
.page-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/brand/genkis-wave-pattern.svg') right center / auto 140% no-repeat;
  opacity: 0.10;
  pointer-events: none;
}

/* Hero media: toile visible in corner behind photo overlay */
.hero__media::before {
  display: none;
}

/* Salmon-tinted stat cards with toile */
body[data-page="home"] .stat-card:nth-child(2)::after,
body[data-page="home"] .stat-card:nth-child(4)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/brand/genkis-wave-pattern.svg') center / cover no-repeat;
  opacity: 0.10;
  pointer-events: none;
  border-radius: inherit;
  mix-blend-mode: overlay;
}

@media (max-width: 1100px) {
  .site-nav__list {
    gap: 0;
  }

  .site-nav__list a {
    padding-inline: 0.6rem;
    font-size: 0.78rem;
  }

  .hero__grid,
  .split,
  .footer__grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .announcement__inner,
  .nav-shell {
    width: min(100vw - 1rem, var(--container));
  }

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

  .site-nav {
    position: fixed;
    top: calc(5.25rem + 1px);
    left: 0.5rem;
    right: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.6rem);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

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

  .site-nav__list {
    padding: 0.85rem;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(245, 237, 224, 0.99);
    box-shadow: var(--shadow);
  }

  .site-nav__list a {
    justify-content: flex-start;
    min-height: 3.05rem;
    padding-inline: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
  }

  .site-nav__list a::after {
    display: none;
  }

  .site-nav__list a.is-active,
  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    background: rgba(232, 117, 26, 0.08);
    color: var(--orange);
  }

  .hero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .hero__right {
    align-items: flex-start;
  }

  .hero__media--wide {
    aspect-ratio: 16 / 9;
  }

  .hero__grid,
  .split,
  .menu-detail,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer__grid,
  .form-grid,
  .plain-list--columns {
    grid-template-columns: 1fr;
  }

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

  .hero__media {
    min-height: 25rem;
  }

  .section-header--inline {
    align-items: start;
    flex-direction: column;
  }

  .nav-actions .button--primary {
    display: none;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.2rem, 11.8vw, 3.35rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .announcement__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button-inline {
    align-self: flex-start;
  }

  .nav-shell {
    min-height: 4.75rem;
  }

  .site-nav {
    top: calc(4.75rem + 1px);
  }

  .brand__mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .section {
    padding: 2rem 0;
  }

  .hero {
    padding-top: 1.3rem;
  }

  .hero__content {
    padding-top: 0.2rem;
  }

  .hero__content h1 {
    max-width: 100%;
  }

  .hero__media {
    min-height: 22rem;
    border-radius: 24px;
  }

  .hero__note {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .page-hero__panel,
  .cta-band,
  .card,
  .menu-card,
  .faq-item,
  .stat-card,
  .hours-card,
  .cta-card,
  .contact-card,
  .feature-card,
  .image-frame,
  .map-frame {
    border-radius: 22px;
  }

  .page-hero__panel {
    padding: 1.45rem 1.25rem 1.55rem 1.45rem;
  }

  .hero__actions,
  .button-row {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: 100%;
  }

  .menu-anchor-bar {
    top: calc(4.75rem + 1px);
    padding: 0.65rem;
    border-radius: 24px;
  }

  .menu-line-item {
    grid-template-columns: 1fr;
  }

  .menu-line-item__actions {
    justify-items: start;
  }

  .field--full {
    grid-column: auto;
  }

  .map-frame iframe {
    min-height: 22rem;
  }
}

@media (max-width: 480px) {
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card:first-child {
    grid-column: auto;
  }

  .gallery-card:first-child img {
    aspect-ratio: 4 / 3;
  }

  .section__inner,
  .announcement__inner,
  .nav-shell,
  .footer__inner {
    width: min(100vw - 1rem, var(--container));
  }

  .section {
    padding: 1.7rem 0;
  }

  .hero__badges,
  .menu-card__meta,
  .footer__nav {
    gap: 0.55rem;
  }

  .pill,
  .menu-anchor-bar a {
    font-size: 0.72rem;
  }

  .card,
  .stat-card,
  .hours-card,
  .cta-card,
  .contact-card,
  .feature-card,
  .faq-item {
    padding: 1.12rem;
  }

  .menu-card__content {
    padding: 1.05rem 1.05rem 1.2rem;
  }

  .announcement__inner {
    font-size: 0.82rem;
    padding: 0.6rem 0;
  }

  .meta-list li {
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
  }

  .meta-list li span:first-child {
    white-space: normal;
  }

  .hero__media::before {
    width: 5.5rem;
    height: 5.5rem;
  }
}
