:root {
  --og-ink: #1a1614;
  --og-ink-soft: #3d342c;
  --og-muted: #6f655c;
  --og-paper: #fffcf4;
  --og-cream: #f7ebd4;
  --og-cream-deep: #edd9b8;
  --og-gold: #fa5918;
  --og-gold-dark: #d9480f;
  --og-gold-light: #ffb347;
  --og-yellow: #ffd166;
  --og-brown: #221c17;
  --og-brown-soft: #2f2720;
  --og-rust: #c4451a;
  --og-line: rgba(26, 22, 20, 0.1);
  --og-shadow-sm: 0 8px 24px rgba(26, 22, 20, 0.08);
  --og-shadow: 0 20px 60px rgba(26, 22, 20, 0.12);
  --og-shadow-lg: 0 32px 80px rgba(26, 22, 20, 0.16);
  --og-radius: 14px;
  --og-radius-lg: 22px;
  --og-font-display: "Fraunces", "Inter Tight", Georgia, serif;
  --og-font-body: "DM Sans", Inter, system-ui, sans-serif;
  --og-header-h: 88px;
  --og-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.og-public {
  margin: 0;
  background: var(--og-paper);
  color: var(--og-ink);
  font-family: var(--og-font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.og-public h1,
body.og-public h2,
body.og-public h3,
body.og-public p {
  margin-top: 0;
}

body.og-public a:not(.og-btn):not(.og-brand):not(.og-footer__links a) {
  color: inherit;
}

body.og-public img {
  max-width: 100%;
}

.og-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* â”€â”€ Header â”€â”€ */
.og-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 50;
  pointer-events: none;
  transition: inset 0.3s var(--og-ease);
}

.og-header.is-solid {
  inset: 0;
}

.og-header.is-solid .og-nav {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: rgba(22, 18, 14, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.og-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--og-radius) + 2px);
  background: rgba(22, 18, 14, 0.55);
  color: #fff;
  box-shadow: var(--og-shadow-sm);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.og-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.og-brand img {
  width: 132px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.og-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.og-links a {
  padding: 9px 11px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
  transition: background 0.2s ease, color 0.2s ease;
}

.og-links a:hover,
.og-links a:focus-visible,
.og-links a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.og-nav-call {
  margin-left: 4px;
  padding: 10px 16px !important;
  background: linear-gradient(135deg, var(--og-gold), var(--og-gold-dark)) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(250, 89, 24, 0.35);
}

.og-nav-call:hover,
.og-nav-call:focus-visible {
  background: linear-gradient(135deg, var(--og-gold-light), var(--og-gold)) !important;
  color: #fff !important;
}

.og-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.og-lang__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 0;
  padding: 5px 6px 4px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.78) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.og-lang__item:hover,
.og-lang__item:focus-visible {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.og-lang__flag {
  display: block;
  width: 28px;
  height: 19px;
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  line-height: 0;
}

.og-lang__flag svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.og-lang__code {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.88;
}

.og-lang__item.is-active {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 0 2px rgba(250, 89, 24, 0.55);
}

.og-lang__item.is-active .og-lang__flag {
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.12),
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 4px 12px rgba(0, 0, 0, 0.28);
}

.og-lang__item.is-active .og-lang__code {
  opacity: 1;
  color: var(--og-gold-light);
}

.og-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.og-menu-btn span,
.og-menu-btn span::before,
.og-menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease;
}

.og-menu-btn span::before {
  transform: translateY(-6px);
}

.og-menu-btn span::after {
  transform: translateY(4px);
}

/* â”€â”€ Hero â”€â”€ */
.og-hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.og-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  will-change: transform;
}

.og-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 58%;
  display: block;
  filter: saturate(1.12) contrast(1.06) brightness(0.96);
  transform: scale(1.04);
  animation: og-hero-kenburns 22s ease-out forwards;
  will-change: transform;
}

.og-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(ellipse 70% 55% at 18% 88%, rgba(250, 89, 24, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(12, 8, 5, 0.08) 0%, rgba(12, 8, 5, 0.18) 38%, rgba(12, 8, 5, 0.78) 100%),
    linear-gradient(90deg, rgba(12, 8, 5, 0.72) 0%, rgba(12, 8, 5, 0.28) 42%, rgba(12, 8, 5, 0.05) 72%);
}

.og-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(12, 8, 5, 0.55));
  pointer-events: none;
}

@keyframes og-hero-kenburns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.og-hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--og-header-h) + 72px) 0 88px;
}

.og-hero__content > * {
  animation: og-fade-up 0.75s var(--og-ease) both;
}

.og-hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.og-hero__content > *:nth-child(2) { animation-delay: 0.14s; }
.og-hero__content > *:nth-child(3) { animation-delay: 0.22s; }
.og-hero__content > *:nth-child(4) { animation-delay: 0.3s; }
.og-hero__content > *:nth-child(5) { animation-delay: 0.38s; }


.og-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.og-scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--og-gold), var(--og-yellow));
  box-shadow: 0 0 12px rgba(250, 89, 24, 0.55);
  transform-origin: left center;
  transition: width 0.08s linear;
}

.og-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(250, 89, 24, 0.14);
  background: linear-gradient(90deg, rgba(255, 248, 240, 0.98), rgba(255, 255, 255, 0.98));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.og-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 12px 0;
  animation: og-marquee 38s linear infinite;
}

.og-marquee:hover .og-marquee__track {
  animation-play-state: paused;
}

.og-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  color: var(--og-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.og-marquee__item::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--og-gold);
  content: "";
  flex-shrink: 0;
}

@keyframes og-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.og-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.16);
  color: var(--og-yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.og-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--og-gold);
  content: "";
}

.og-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: var(--og-font-display);
  font-size: clamp(38px, 6.2vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.og-hero__lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}

.og-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.og-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.og-btn:hover,
.og-btn:focus-visible {
  transform: translateY(-2px);
}

.og-btn--primary {
  background: linear-gradient(135deg, var(--og-gold), var(--og-gold-dark));
  color: #fff;
  box-shadow: 0 12px 32px rgba(250, 89, 24, 0.35);
}

.og-btn--primary:hover,
.og-btn--primary:focus-visible {
  box-shadow: 0 16px 40px rgba(250, 89, 24, 0.45);
}

.og-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.og-btn--ghost:hover,
.og-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.og-btn--call {
  background: #fff;
  color: var(--og-ink) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.og-btn--call:hover,
.og-btn--call:focus-visible {
  background: var(--og-yellow);
  color: var(--og-ink) !important;
}

.og-btn--block {
  width: 100%;
}

.og-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.og-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  animation: og-chip-float 5s ease-in-out infinite;
}

.og-hero__chips li:nth-child(2) { animation-delay: -1.2s; }
.og-hero__chips li:nth-child(3) { animation-delay: -2.4s; }
.og-hero__chips li:nth-child(4) { animation-delay: -3.6s; }

@keyframes og-chip-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.og-hero__chips i {
  color: var(--og-yellow);
}

/* â”€â”€ Sections â”€â”€ */
.og-section {
  padding: clamp(72px, 10vw, 108px) 0;
}

.og-section--alt {
  background: var(--og-cream);
}

.og-section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.og-section-head--center {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.og-section h2 {
  margin-bottom: 16px;
  font-family: var(--og-font-display);
  font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--og-ink);
}

.og-section p {
  color: var(--og-muted);
  font-size: 17px;
  line-height: 1.72;
}

.og-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.og-two-col--reverse {
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
}

.og-two-col--about {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.og-reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--og-ease), transform 0.55s var(--og-ease);
}

.og-reveal.is-visible > * {
  opacity: 1;
  transform: none;
}

.og-reveal.is-visible > *:nth-child(2) {
  transition-delay: 0.06s;
}

.og-reveal.is-visible > *:nth-child(3) {
  transition-delay: 0.12s;
}

.og-reveal.is-visible > *:nth-child(4) {
  transition-delay: 0.18s;
}

.og-reveal.is-visible > *:nth-child(5) {
  transition-delay: 0.24s;
}

/* â”€â”€ About â”€â”€ */
.og-about-media {
  display: grid;
  gap: 14px;
}

.og-about-media--featured {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.og-about-media figure,
.og-about-media__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--og-radius-lg);
  box-shadow: var(--og-shadow);
  background: var(--og-cream-deep);
}

.og-about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.og-about-media__hero {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: clamp(280px, 36vw, 440px);
}

.og-about-media__hero img {
  object-position: center 18%;
}

.og-about-media__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.og-about-media__side,
.og-about-media__extra {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 200px;
}

.og-about-media__side figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(22, 18, 14, 0.88);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.og-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.og-check-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--og-line);
  color: var(--og-ink-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.og-check-list li::before {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(250, 89, 24, 0.14);
  color: var(--og-gold);
  font: 11px/1 var(--fa-font-solid);
  content: "\f00c";
}

/* â”€â”€ Menu â”€â”€ */
.og-menu {
  background: linear-gradient(180deg, var(--og-paper) 0%, var(--og-cream) 100%);
}

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

.og-menu-grid--stack {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.og-menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--og-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.og-menu-card--photo {
  padding: 0;
}

.og-menu-card__photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.og-menu-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--og-ease);
}

.og-menu-card:hover .og-menu-card__photo img {
  transform: scale(1.04);
}

.og-menu-card__body {
  position: relative;
  padding: 22px 22px 22px 68px;
}

.og-menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--og-shadow);
}

.og-menu-card__icon {
  position: absolute;
  left: 18px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(250, 89, 24, 0.15), rgba(255, 209, 102, 0.25));
  color: var(--og-gold-dark);
  font-size: 17px;
}

.og-menu-card h3 {
  margin-bottom: 8px;
  font-family: var(--og-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--og-ink);
}

.og-menu-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.og-menu-photo {
  position: relative;
}

.og-menu-photo::before {
  position: absolute;
  inset: -12px -12px auto auto;
  z-index: -1;
  width: 70%;
  height: 70%;
  border-radius: var(--og-radius-lg);
  background: var(--og-yellow);
  opacity: 0.35;
  content: "";
}

.og-menu-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--og-radius-lg);
  box-shadow: var(--og-shadow-lg);
}

.og-menu-cta {
  margin-top: 28px;
}

/* â”€â”€ Place â”€â”€ */
.og-band {
  position: relative;
  overflow: hidden;
  background: var(--og-brown);
  color: #fff;
}

.og-band::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(250, 89, 24, 0.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255, 209, 102, 0.1), transparent 35%);
  content: "";
  pointer-events: none;
}

.og-band .og-kicker {
  background: rgba(255, 209, 102, 0.12);
  color: var(--og-yellow);
}

.og-band h2,
.og-band .og-section-head p {
  color: rgba(255, 255, 255, 0.92);
}

.og-band .og-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

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

.og-card-grid--place {
  position: relative;
  z-index: 1;
}

.og-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--og-shadow-sm);
}

.og-card--place {
  position: relative;
  min-height: 220px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.og-card--place:hover {
  transform: translateY(-4px);
}

.og-card--place__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--og-ease);
}

.og-card--place:hover .og-card--place__photo {
  transform: scale(1.05);
}

.og-card--place__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(22, 18, 14, 0.15) 0%, rgba(22, 18, 14, 0.82) 100%);
}

.og-card--place__overlay i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(250, 89, 24, 0.85);
  color: #fff;
  font-size: 18px;
}

.og-card--place__overlay h3 {
  margin: 0;
  font-family: var(--og-font-body);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* â”€â”€ Gallery â”€â”€ */
.og-gallery {
  background: var(--og-cream);
}

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

.og-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--og-radius);
  background: var(--og-cream-deep);
  aspect-ratio: 4 / 3;
  min-height: 180px;
  transition: transform 0.35s var(--og-ease), box-shadow 0.35s var(--og-ease);
}

.og-gallery figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--og-shadow-lg);
}

.og-gallery figure:nth-child(1),
.og-gallery figure:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.og-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--og-ease);
}

.og-gallery figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 22, 20, 0.35));
  opacity: 0;
  transition: opacity 0.35s ease;
  content: "";
}

.og-gallery figure:hover img {
  transform: scale(1.05);
}

.og-gallery figure:hover::after {
  opacity: 1;
}

/* â”€â”€ Hours â”€â”€ */
.og-hours {
  background: var(--og-paper);
}

.og-hours__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: start;
}

.og-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(70, 186, 60, 0.12);
  color: #2d8a24;
  font-size: 14px;
  font-weight: 800;
}

.og-hours-badge.is-closed {
  background: rgba(196, 69, 26, 0.12);
  color: var(--og-rust);
}

.og-hours-badge.is-open i {
  animation: og-pulse-dot 1.8s ease-in-out infinite;
}

@keyframes og-pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.35);
  }
}

.og-hours-badge i {
  font-size: 8px;
}

.og-hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.og-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--og-line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.og-hours-list li.is-today {
  border-color: rgba(250, 89, 24, 0.35);
  background: linear-gradient(90deg, rgba(250, 89, 24, 0.08), #fff 40%);
  box-shadow: var(--og-shadow-sm);
}

.og-hours-list li.is-closed {
  opacity: 0.65;
}

.og-hours-list span {
  color: var(--og-muted);
  font-weight: 600;
}

.og-hours-list strong {
  color: var(--og-ink);
  font-weight: 800;
}

/* â”€â”€ Contact â”€â”€ */
.og-contact {
  background: linear-gradient(180deg, var(--og-cream) 0%, var(--og-paper) 100%);
}

.og-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

.og-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.og-contact-list a,
.og-contact-list span {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--og-line);
  border-radius: 14px;
  background: #fff;
  color: var(--og-ink-soft);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.og-contact-list a:hover,
.og-contact-list a:focus-visible {
  border-color: rgba(250, 89, 24, 0.3);
  box-shadow: var(--og-shadow-sm);
}

.og-contact-list i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(250, 89, 24, 0.12);
  color: var(--og-gold);
}

.og-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius-lg);
  background: #fff;
  box-shadow: var(--og-shadow);
}

.og-form label {
  display: grid;
  gap: 8px;
  color: var(--og-ink);
  font-size: 14px;
  font-weight: 800;
}

.og-form input,
.og-form textarea {
  width: 100%;
  border: 1px solid var(--og-line);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--og-paper);
  color: var(--og-ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.og-form input:focus,
.og-form textarea:focus {
  outline: none;
  border-color: rgba(250, 89, 24, 0.45);
  box-shadow: 0 0 0 4px rgba(250, 89, 24, 0.1);
}

.og-form textarea {
  resize: vertical;
  min-height: 120px;
}

.og-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 600 !important;
  color: var(--og-muted) !important;
}

.og-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--og-gold);
}

.og-check a {
  color: var(--og-gold-dark);
  font-weight: 800;
}

.og-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.og-form__note {
  margin-bottom: 0;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

/* â”€â”€ Footer â”€â”€ */
.og-footer {
  padding: 56px 0 32px;
  background: var(--og-brown);
  color: #fff;
}

.og-footer .og-brand img {
  width: 140px;
  filter: none;
}

.og-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.og-footer__col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.og-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.og-footer__links {
  display: grid;
  gap: 10px;
}

.og-footer__links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.og-footer__links a:hover,
.og-footer__links a:focus-visible {
  color: var(--og-yellow);
}

.og-footer__contact a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
}

.og-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.og-footer__bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* â”€â”€ Floating â”€â”€ */
.og-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #0f2318;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.og-whatsapp:hover,
.og-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.og-mobile-dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 41;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(22, 18, 14, 0.94);
  box-shadow: var(--og-shadow-lg);
  backdrop-filter: blur(16px);
}

.og-mobile-dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
}

.og-mobile-dock a i {
  font-size: 16px;
}

.og-mobile-dock a.is-primary {
  background: linear-gradient(135deg, var(--og-gold), var(--og-gold-dark));
  color: #fff;
}

.og-page {
  padding: 120px 0 72px;
}

.og-page__inner {
  max-width: 820px;
}

.og-page h1 {
  margin-bottom: 24px;
  font-family: var(--og-font-display);
  font-size: clamp(34px, 5vw, 52px);
}

.og-page .politica-privacidad-dynamic {
  color: var(--og-muted);
  font-size: 17px;
  line-height: 1.75;
}

#movetop {
  display: none !important;
}

@keyframes og-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .og-scroll-progress {
    display: none;
  }
  .og-marquee__track,
  .og-hero__chips li,
  .og-hours-badge.is-open i {
    animation: none !important;
  }

  .og-hero__content > * {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .og-hero__media {
    transform: none !important;
  }

  .og-reveal,
  .og-hero__content,
  .og-gallery img,
  .og-gallery figure,
  .og-btn,
  .og-menu-card,
  .og-card--place,
  .og-hero__media img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .og-menu-btn {
    display: block;
  }

  .og-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border-radius: var(--og-radius);
    background: rgba(22, 18, 14, 0.98);
    box-shadow: var(--og-shadow-lg);
  }

  .og-links.is-open {
    display: grid;
  }

  .og-links a {
    padding: 12px 14px;
  }

  .og-lang {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 4px;
    padding: 8px;
    width: 100%;
  }

  .og-lang__item {
    min-width: 52px;
    padding: 8px 10px 7px !important;
  }

  .og-lang__flag {
    width: 32px;
    height: 22px;
  }

  .og-two-col,
  .og-two-col--reverse,
  .og-two-col--about,
  .og-contact__grid,
  .og-hours__grid,
  .og-footer__grid {
    grid-template-columns: 1fr;
  }

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

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

  .og-gallery figure,
  .og-gallery figure:nth-child(1),
  .og-gallery figure:nth-child(5) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .og-mobile-dock {
    display: grid;
  }

  body.og-public.has-mobile-dock {
    padding-bottom: 88px;
  }

  body.og-public.has-mobile-dock .og-whatsapp {
    bottom: 92px;
  }
}

@media (max-width: 640px) {
  .og-header {
    inset: 10px 0 auto;
  }

  .og-nav {
    padding: 8px 10px 8px 12px;
  }

  .og-brand img {
    width: 112px;
  }

  .og-hero {
    min-height: 78vh;
  }

  .og-hero__media img {
    object-position: 50% 62%;
  }

  .og-hero__content {
    padding: calc(var(--og-header-h) + 48px) 0 64px;
  }

  .og-section {
    padding: 64px 0;
  }

  .og-card-grid,
  .og-menu-grid,
  .og-card-grid--place,
  .og-gallery__grid {
    grid-template-columns: 1fr;
  }

  .og-about-media__pair {
    grid-template-columns: 1fr;
  }

  .og-about-media__hero {
    aspect-ratio: 16 / 11;
    min-height: 260px;
  }

  .og-about-media__side,
  .og-about-media__extra {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

  .og-menu-photo img {
    min-height: 360px;
  }

  .og-actions {
    flex-direction: column;
  }

  .og-actions .og-btn {
    width: 100%;
  }
}
