:root {
  --black: #090909;
  --black-soft: #101010;
  --charcoal: #171615;
  --charcoal-2: #201e1b;
  --cream: #f4ecdf;
  --cream-2: #e9dece;
  --white: #fffaf2;
  --text: #e9e2d8;
  --muted: #b9afa3;
  --muted-dark: #655d54;
  --gold: #c99c3d;
  --gold-light: #f0d485;
  --gold-dark: #8e6421;
  --red: #8a1119;
  --red-bright: #ae1c26;
  --green: #1fa463;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(20, 16, 11, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-height: 82px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  color-scheme: dark;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: #111;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

p,
h1,
h2,
h3,
h4,
figure,
blockquote,
ul {
  margin-top: 0;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--cream);
  color: #111;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 4.75rem);
}

h3 {
  font-size: 1.55rem;
}

.section {
  position: relative;
  padding-block: clamp(86px, 10vw, 140px);
}

.section-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.8;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 58px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.76rem;
}

.button--large {
  min-height: 58px;
  padding-inline: 29px;
}

.button--full {
  width: 100%;
}

.button--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 54%, var(--gold-dark));
  box-shadow: 0 12px 32px rgba(201, 156, 61, 0.22);
  color: #16110a;
}

.button--gold:hover {
  box-shadow: 0 16px 42px rgba(201, 156, 61, 0.35);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(8, 8, 8, 0.26);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  border-color: var(--gold-light);
  background: rgba(8, 8, 8, 0.6);
}

.button--outline {
  border-color: rgba(240, 212, 133, 0.68);
  background: transparent;
  color: var(--gold-light);
}

.button--outline:hover {
  border-color: var(--gold-light);
  background: rgba(240, 212, 133, 0.08);
}

.button--cream {
  background: var(--cream);
  color: #17120c;
}

.button--cream:hover {
  background: #fff8ec;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(240, 212, 133, 0.48);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

/* Top bar and header */
.topbar {
  position: relative;
  z-index: 120;
  min-height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #6f0c13;
  color: #f9eee3;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.topbar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5de39b;
  box-shadow: 0 0 0 4px rgba(93, 227, 155, 0.12);
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 250, 242, 0.84);
}

.topbar__links a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 110;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(18px) saturate(125%);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(6, 6, 6, 0.96);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(180px, 248px) 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(248px, 100%);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 38px);
}

.primary-nav a {
  position: relative;
  padding-block: 9px;
  color: #d4ccc1;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  content: "";
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch__button {
  width: 34px;
  height: 30px;
  border-radius: 999px;
  background: transparent;
  color: #918a82;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 900;
}

.language-switch__button.is-active {
  background: var(--cream);
  color: #17120d;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(880px, calc(100svh - 38px));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  object-fit: cover;
  object-position: center 55%;
  animation: heroZoom 18s ease-out both;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(5, 5, 5, 0.79) 37%, rgba(5, 5, 5, 0.30) 72%, rgba(5, 5, 5, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.84) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) .5px, transparent .5px);
  background-size: 4px 4px;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 100px 150px;
}

.hero__content > * {
  max-width: 810px;
}

.hero__title {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  line-height: 0.93;
  text-wrap: balance;
}

.hero__title em {
  color: var(--gold-light);
  font-weight: 500;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 35px;
  color: #d5cdc2;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero__hours {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(12px);
}

.hero__hours div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero__hours span {
  color: #aca49b;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__hours strong {
  color: var(--white);
  font-size: 0.92rem;
}

.hero__hours-divider {
  width: 1px;
  height: 29px;
  background: rgba(255, 255, 255, 0.18);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d2cbc2;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

.hero__ember {
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffb347;
  box-shadow: 0 0 12px #ff6b20;
  opacity: 0;
  pointer-events: none;
}

.hero__ember--one {
  right: 18%;
  bottom: 17%;
  animation: ember 6s 1s infinite;
}

.hero__ember--two {
  right: 29%;
  bottom: 11%;
  animation: ember 8s 3s infinite;
}

@keyframes ember {
  0% { transform: translate(0, 30px) scale(.7); opacity: 0; }
  20% { opacity: .8; }
  100% { transform: translate(-40px, -250px) scale(0); opacity: 0; }
}

/* Highlights */
.trust-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #11100f;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip article {
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.trust-strip article:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip svg {
  width: 37px;
  flex: 0 0 37px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

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

.trust-strip strong {
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

/* Experience */
.experience {
  background:
    radial-gradient(circle at 12% 15%, rgba(139, 17, 25, 0.12), transparent 32%),
    var(--black);
}

.experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.experience__visual {
  position: relative;
  min-height: 650px;
}

.experience__image {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.experience__image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

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

.experience__image--main {
  inset: 0 14% 10% 0;
  border-radius: 4px 74px 4px 4px;
}

.experience__image--small {
  right: 0;
  bottom: 0;
  width: 47%;
  height: 44%;
  border: 10px solid var(--black);
  border-radius: 4px;
}

.experience__seal {
  position: absolute;
  z-index: 3;
  top: 41px;
  right: 2%;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(26, 20, 10, .45);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  color: #1a140b;
  text-align: center;
  transform: rotate(7deg);
}

.experience__seal::before,
.experience__seal::after {
  position: absolute;
  border: 1px dashed rgba(20, 14, 6, .5);
  border-radius: 50%;
  content: "";
}

.experience__seal::before { inset: 7px; }
.experience__seal::after { inset: 13px; }

.experience__seal span {
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience__seal strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
}

.experience__copy h2 {
  max-width: 680px;
}

.experience__features {
  display: grid;
  gap: 0;
  margin-block: 42px 36px;
  border-top: 1px solid var(--line);
}

.experience__features article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.experience__features > article > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.experience__features h3 {
  margin-bottom: 7px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.experience__features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Offering cards */
.offerings {
  overflow: hidden;
  background: var(--cream);
  color: #282219;
}

.offerings::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(138, 17, 25, .12);
  border-radius: 50%;
  content: "";
}

.offerings .eyebrow {
  color: var(--red);
}

.offerings h2,
.offerings h3 {
  color: #1b1712;
}

.offerings .section-heading > p:last-child {
  color: var(--muted-dark);
}

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

.offering-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 37px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 251, 244, .68);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.offering-card::after {
  position: absolute;
  right: -40px;
  bottom: -45px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(201,156,61,.18);
  border-radius: 50%;
  content: "";
}

.offering-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 156, 61, .58);
  box-shadow: var(--shadow-soft);
}

.offering-card__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(26, 20, 13, .18);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.offering-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border: 1px solid rgba(138,17,25,.18);
  border-radius: 50%;
  background: #fffaf2;
}

.offering-card__icon svg {
  width: 34px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.offering-card h3 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.offering-card p {
  margin-bottom: 32px;
  color: var(--muted-dark);
  font-size: .92rem;
}

.offering-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--red);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.offering-card a svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .2s ease;
}

.offering-card a:hover svg {
  transform: translateX(4px);
}

/* Menu */
.menu-section {
  background:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px),
    #0c0c0c;
  background-size: 40px 40px;
}

.menu-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.menu-section__header h2 {
  margin-bottom: 0;
}

.menu-section__header > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 17px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}

.menu-tab {
  min-height: 46px;
  flex: 0 0 auto;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--muted);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.menu-tab:hover {
  border-color: rgba(201, 156, 61, .5);
  color: var(--white);
}

.menu-tab[aria-selected="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: #181108;
}

.menu-panel {
  min-height: 370px;
  padding-top: 36px;
}

.menu-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.menu-panel__eyebrow {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
}

.menu-panel__hint {
  color: #827b72;
  font-size: .73rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:nth-child(odd) {
  padding-right: 38px;
  border-right: 1px solid var(--line);
}

.menu-item:nth-child(even) {
  padding-left: 38px;
}

.menu-item__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.menu-item__badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 99px;
  background: rgba(138,17,25,.22);
  color: #f1b2b6;
  font-family: var(--font-sans);
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.menu-item__description {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}

.menu-item__price {
  color: var(--gold-light);
  font-size: .95rem;
  font-weight: 900;
  white-space: nowrap;
}

.menu-section__note {
  margin: 28px 0 0;
  color: #817a72;
  font-size: .74rem;
}

/* Signature */
.signature {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--red);
}

.signature__image {
  min-height: 720px;
  overflow: hidden;
}

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

.signature__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(70px, 8vw, 130px);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #8d1119, #5b090e);
}

.signature__content .eyebrow {
  color: var(--gold-light);
}

.signature__content h2 {
  max-width: 670px;
}

.signature__content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,247,237,.78);
  font-size: 1.05rem;
}

.signature__content ul {
  display: grid;
  gap: 15px;
  margin: 29px 0 38px;
  padding: 0;
  list-style: none;
}

.signature__content li {
  position: relative;
  padding-left: 27px;
  color: #fff5e9;
}

.signature__content li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold-light);
  content: "";
}

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

/* Gallery */
.gallery {
  background: #0b0b0b;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 205px;
  gap: 14px;
}

.gallery__item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #1b1b1b;
}

.gallery__item--wide {
  grid-column: span 8;
}

.gallery__item--tall {
  grid-row: span 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.gallery__item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.78));
  content: "";
}

.gallery__item figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.gallery__item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.gallery__disclaimer {
  margin: 18px 0 0;
  color: #78716a;
  font-size: .72rem;
  text-align: right;
}

/* Reservation */
.reservation {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(201,156,61,.13), transparent 25%),
    radial-gradient(circle at 92% 87%, rgba(138,17,25,.18), transparent 31%),
    #12110f;
}

.reservation::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
}

.reservation__grid {
  display: grid;
  grid-template-columns: minmax(0, .87fr) minmax(480px, 1.13fr);
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}

.reservation__intro {
  position: relative;
}

.reservation__steps {
  display: grid;
  gap: 17px;
  margin-block: 42px 34px;
}

.reservation__steps article {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 17px;
  align-items: start;
}

.reservation__steps article > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,156,61,.45);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.reservation__steps strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: .93rem;
}

.reservation__steps p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.reservation__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
}

.reservation__contact a {
  color: var(--gold-light);
  font-weight: 850;
}

.reservation-card {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: rgba(26, 24, 21, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.reservation-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  content: "";
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 17px;
  margin-bottom: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label {
  color: #e5ddd3;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field label span {
  color: #7f776f;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  outline: none;
  background: #10100f;
  color: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #a89f95 50%), linear-gradient(135deg, #a89f95 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #141310;
  box-shadow: 0 0 0 3px rgba(201,156,61,.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6f6962;
}

.field input::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(.2);
  cursor: pointer;
}

.form-note {
  margin: 14px auto 0;
  max-width: 520px;
  color: #7f7870;
  font-size: .7rem;
  line-height: 1.55;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #7ce2aa;
  font-size: .78rem;
  font-weight: 750;
  text-align: center;
}

/* Location */
.location {
  background: var(--cream);
  color: #2b251d;
}

.location .eyebrow {
  color: var(--red);
}

.location h2,
.location h3 {
  color: #1a1712;
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  align-items: stretch;
  gap: clamp(50px, 8vw, 100px);
}

.location__details {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.location address {
  display: flex;
  flex-direction: column;
  margin-bottom: 34px;
  color: var(--muted-dark);
}

.location address strong {
  color: #2a241d;
  font-size: 1.06rem;
}

.location__hours {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  margin-bottom: 35px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.location__hours div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 21px 14px 21px 0;
  border-right: 1px solid var(--line-dark);
}

.location__hours div + div {
  padding-left: 18px;
}

.location__hours div:last-child {
  border-right: 0;
}

.location__hours span {
  color: #81776b;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location__hours strong {
  color: #292219;
  font-size: .86rem;
}

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

.location .button--outline {
  border-color: rgba(42,34,24,.3);
  color: #2b241a;
}

.location .button--outline:hover {
  border-color: var(--red);
  background: rgba(138,17,25,.06);
  color: var(--red);
}

.map-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(26,19,11,.15);
  border-radius: var(--radius-lg);
  background: #d8d1c3;
  box-shadow: 0 28px 60px rgba(47,33,15,.15);
}

.map-card__pattern,
.map-card__frame,
.map-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-card__pattern {
  background:
    linear-gradient(35deg, transparent 38%, rgba(118,108,93,.12) 39%, rgba(118,108,93,.12) 41%, transparent 42%) 0 0 / 130px 130px,
    linear-gradient(-35deg, transparent 38%, rgba(118,108,93,.09) 39%, rgba(118,108,93,.09) 41%, transparent 42%) 0 0 / 170px 170px,
    #dcd5c9;
}

.map-card__road {
  position: absolute;
  height: 18px;
  border: 5px solid #eee8dd;
  border-radius: 100px;
  background: #b9b0a2;
  box-shadow: 0 0 0 1px rgba(100,90,76,.14);
}

.map-card__road--one {
  width: 130%;
  top: 38%;
  left: -10%;
  transform: rotate(-14deg);
}

.map-card__road--two {
  width: 95%;
  top: 65%;
  left: 15%;
  transform: rotate(31deg);
}

.map-card__road--three {
  width: 75%;
  top: 16%;
  left: 30%;
  transform: rotate(77deg);
}

.map-card__pin {
  position: absolute;
  top: 31%;
  left: 67%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 25px rgba(99,10,15,.3), 0 0 0 10px rgba(138,17,25,.13);
}

.map-card__pin svg {
  width: 27px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.map-card__consent {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 250, 242, .94);
  box-shadow: 0 18px 45px rgba(48,33,13,.2);
  backdrop-filter: blur(10px);
}

.map-card__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.map-card__consent h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.map-card__consent p {
  margin-bottom: 19px;
  color: #6d6358;
  font-size: .82rem;
  line-height: 1.55;
}

.map-card__frame {
  z-index: 5;
  background: #ddd;
}

.map-card__frame iframe {
  border: 0;
}

/* FAQ */
.faq {
  background: #0b0b0b;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq__heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq__heading p:last-child {
  color: var(--muted);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary svg {
  width: 23px;
  flex: 0 0 23px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .25s ease;
}

.faq details[open] summary svg {
  transform: rotate(180deg);
}

.faq details p {
  max-width: 760px;
  padding: 0 55px 28px 0;
  color: var(--muted);
  font-size: .94rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.final-cta__image,
.final-cta__image img,
.final-cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta__image {
  z-index: -3;
}

.final-cta__image img {
  object-fit: cover;
  object-position: center 60%;
}

.final-cta__overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(3,3,3,.92), rgba(44,5,8,.76), rgba(3,3,3,.88));
}

.final-cta__content {
  padding-block: 90px;
  text-align: center;
}

.final-cta__content .eyebrow {
  justify-content: center;
}

.final-cta__content h2 {
  margin-bottom: 18px;
}

.final-cta__content p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #d1c8bd;
  font-size: 1.06rem;
}

/* Footer */
.site-footer {
  background: #060606;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.55fr .75fr 1fr .75fr;
  gap: 50px;
  padding-block: 72px 58px;
  border-bottom: 1px solid var(--line);
}

.site-footer__brand img {
  width: 245px;
  margin-bottom: 23px;
}

.site-footer__brand p {
  max-width: 360px;
  color: #8f887f;
  font-size: .84rem;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #c5bbb0;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold-light);
}

.social-links svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-links svg .fill {
  fill: currentColor;
  stroke: none;
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.site-footer__column h3 {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column address,
.site-footer__column p {
  margin: 0;
  color: #918a82;
  font-size: .8rem;
  line-height: 1.7;
}

.site-footer__column a:hover {
  color: var(--white);
}

.site-footer__column strong {
  color: #c9c0b6;
}

.site-footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #716b65;
  font-size: .7rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  gap: 22px;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: #159b58;
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(53,214,132,.3);
  border-radius: inherit;
  content: "";
  animation: whatsappPulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #0eaf5d;
}

.whatsapp-float svg {
  width: 29px;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(.98); opacity: 0; }
  35% { opacity: .75; }
  85% { transform: scale(1.12); opacity: 0; }
}

/* Reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.offerings__grid .reveal:nth-child(2),
.gallery__grid .reveal:nth-child(2) { transition-delay: .08s; }
.offerings__grid .reveal:nth-child(3),
.gallery__grid .reveal:nth-child(3) { transition-delay: .16s; }
.offerings__grid .reveal:nth-child(4),
.gallery__grid .reveal:nth-child(4) { transition-delay: .24s; }
.gallery__grid .reveal:nth-child(5) { transition-delay: .32s; }

/* Legal / utility pages */
.utility-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 85% 5%, rgba(138,17,25,.18), transparent 24%),
    var(--black);
}

.utility-header {
  height: 86px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(8,8,8,.88);
}

.utility-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-header img {
  width: 235px;
}

.utility-main {
  padding-block: 84px 120px;
}

.utility-card {
  max-width: 930px;
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #11100f;
  box-shadow: var(--shadow-soft);
}

.utility-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
}

.utility-card h2 {
  margin-top: 46px;
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.utility-card p,
.utility-card li {
  color: var(--muted);
}

.utility-card a:not(.button) {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(240,212,133,.35);
  text-underline-offset: 3px;
}

.utility-card ul {
  padding-left: 20px;
}

.utility-meta {
  margin-bottom: 38px;
  color: #716b64;
  font-size: .78rem;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(rgba(0,0,0,.84), rgba(0,0,0,.92)),
    url("../images/hero-1920.webp") center / cover;
  text-align: center;
}

.error-page__content {
  max-width: 800px;
}

.error-page__code {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: .8;
}

.error-page h1 {
  margin: 35px 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.error-page p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 1120px) {
  :root { --header-height: 76px; }

  .site-header__inner {
    grid-template-columns: 215px 1fr auto;
    gap: 18px;
  }

  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: .7rem;
  }

  .header-actions .button {
    display: none;
  }

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

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(3),
  .trust-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .offering-card {
    min-height: 340px;
  }

  .signature__content {
    padding: 75px 58px;
  }

  .reservation__grid {
    grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr);
    gap: 65px;
  }

  .location__grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 55px;
  }

  .site-footer__main {
    grid-template-columns: 1.4fr .7fr 1fr;
  }

  .site-footer__column:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 900px) {
  .topbar__links span:nth-of-type(n+2),
  .topbar__links > span {
    display: none;
  }

  .topbar__links a {
    display: block;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    grid-column: 1;
    width: 205px;
  }

  .nav-toggle {
    display: flex;
    grid-column: 3;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 4px;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 40px 24px calc(40px + env(safe-area-inset-bottom));
    transform: translateX(100%);
    background: rgba(7,7,7,.985);
    opacity: 0;
    visibility: hidden;
    transition: transform .32s ease, opacity .25s ease, visibility .25s ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    padding: 21px 5px;
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -.01em;
    text-transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero__content {
    padding-block: 90px 125px;
  }

  .hero__title {
    font-size: clamp(3.5rem, 10vw, 6rem);
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(3,3,3,.94), rgba(4,4,4,.66) 75%, rgba(4,4,4,.7)),
      linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.78));
  }

  .experience__grid,
  .reservation__grid,
  .location__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .experience__visual {
    min-height: 620px;
  }

  .experience__copy {
    max-width: 760px;
  }

  .menu-section__header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .signature {
    grid-template-columns: 1fr;
  }

  .signature__image {
    min-height: 580px;
    max-height: 680px;
  }

  .signature__content {
    padding: 85px 7vw;
  }

  .gallery__grid {
    grid-auto-rows: 180px;
  }

  .reservation::before {
    display: none;
  }

  .reservation__intro {
    max-width: 720px;
  }

  .reservation-card {
    max-width: 760px;
  }

  .location__details {
    max-width: 720px;
  }

  .map-card {
    min-height: 500px;
  }

  .faq__heading {
    position: static;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .section {
    padding-block: 82px;
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.75rem);
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__links {
    display: none;
  }

  .topbar p {
    font-size: .7rem;
  }

  .site-header__inner {
    gap: 10px;
  }

  .language-switch {
    display: flex;
    transform: scale(.92);
    transform-origin: right center;
  }

  .brand {
    width: 145px;
  }

  .hero {
    min-height: min(860px, calc(100svh - 38px));
    align-items: flex-end;
  }

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

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(4,4,4,.25) 0%, rgba(4,4,4,.6) 34%, rgba(4,4,4,.96) 80%),
      linear-gradient(90deg, rgba(4,4,4,.75), rgba(4,4,4,.12));
  }

  .hero__content {
    padding-block: 100px 88px;
  }

  .hero__title {
    font-size: clamp(3.2rem, 16vw, 5.1rem);
  }

  .hero__lead {
    font-size: .98rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__hours {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
  }

  .hero__hours strong {
    font-size: .77rem;
  }

  .hero__hours span {
    font-size: .55rem;
  }

  .hero__hours-divider {
    height: 28px;
  }

  .hero__scroll {
    display: none;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .trust-strip article:first-child {
    min-height: 105px;
    padding: 22px 15px;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip article:first-child {
    border-top: 0;
  }

  .experience__visual {
    min-height: 470px;
  }

  .experience__image--main {
    right: 7%;
    bottom: 9%;
    border-radius: 3px 44px 3px 3px;
  }

  .experience__image--small {
    width: 50%;
    height: 38%;
    border-width: 7px;
  }

  .experience__seal {
    top: 22px;
    right: 0;
    width: 103px;
    height: 103px;
  }

  .experience__seal strong {
    font-size: .9rem;
  }

  .experience__features article {
    grid-template-columns: 38px 1fr;
  }

  .offerings__grid {
    grid-template-columns: 1fr;
  }

  .offering-card {
    min-height: 320px;
  }

  .menu-panel {
    padding-top: 25px;
  }

  .menu-panel__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

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

  .menu-item,
  .menu-item:nth-child(odd),
  .menu-item:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }

  .menu-item__name {
    font-size: 1.25rem;
  }

  .signature__image {
    min-height: 460px;
  }

  .signature__content {
    padding: 78px 22px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 155px;
    gap: 9px;
  }

  .gallery__item,
  .gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__item:nth-child(3),
  .gallery__item:nth-child(5) {
    grid-column: span 1;
  }

  .gallery__item--tall {
    grid-row: span 3;
  }

  .gallery__item figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: .92rem;
  }

  .gallery__disclaimer {
    text-align: left;
  }

  .reservation__grid {
    gap: 52px;
  }

  .reservation-card {
    margin-inline: -3px;
    padding: 25px 18px;
    border-radius: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .location__hours {
    grid-template-columns: 1fr;
  }

  .location__hours div,
  .location__hours div + div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .location__hours div:last-child {
    border-bottom: 0;
  }

  .location__actions {
    display: grid;
  }

  .location__actions .button {
    width: 100%;
  }

  .map-card {
    min-height: 460px;
    border-radius: 22px;
  }

  .map-card__consent {
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    padding: 21px;
  }

  .faq summary {
    min-height: 80px;
    font-size: 1.14rem;
  }

  .faq details p {
    padding-right: 5px;
  }

  .final-cta {
    min-height: 490px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .site-footer__brand,
  .site-footer__column:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px 105px;
  }

  .site-footer__bottom div {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .utility-header img {
    width: 180px;
  }

  .utility-main {
    padding-block: 50px 80px;
  }

  .utility-card {
    border-radius: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Brazilian Gold Grill — Premium interface v2
   Actual brand mark, refined iconography and booking dock.
   ========================================================= */
body.site-v2 {
  --black: #070706;
  --black-soft: #0d0c0b;
  --charcoal: #141210;
  --charcoal-2: #1b1815;
  --cream: #f4efe7;
  --cream-2: #e7ddcf;
  --white: #fffaf1;
  --text: #e9e1d6;
  --muted: #aaa096;
  --muted-dark: #665d53;
  --gold: #d0a62a;
  --gold-light: #e7c869;
  --gold-dark: #9a7317;
  --red: #bd111c;
  --red-bright: #d11925;
  --line: rgba(255, 255, 255, 0.105);
  --line-dark: rgba(28, 22, 15, 0.14);
  --shadow: 0 30px 85px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.17);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --header-height: 94px;
  --font-display: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  background:
    radial-gradient(circle at 75% 0%, rgba(189, 17, 28, 0.06), transparent 34rem),
    var(--black);
}

.site-v2 .icon--stroke {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-v2 h1,
.site-v2 h2,
.site-v2 h3 {
  letter-spacing: -0.03em;
}

.site-v2 .eyebrow {
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.71rem;
  letter-spacing: 0.18em;
}

.site-v2 .eyebrow::before {
  width: 28px;
}

.site-v2 .button {
  min-height: 50px;
  gap: 10px;
  padding: 13px 21px;
  border-radius: 11px;
  font-size: 0.77rem;
  letter-spacing: 0.065em;
  box-shadow: none;
}

.site-v2 .button--large {
  min-height: 58px;
  padding-inline: 26px;
}

.site-v2 .button--small {
  min-height: 45px;
  padding-inline: 18px;
}

.site-v2 .button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
}

.site-v2 .button--gold {
  border-color: rgba(255, 242, 188, 0.26);
  background: linear-gradient(135deg, #ebce6c 0%, #d0a62a 58%, #af8318 100%);
  box-shadow: 0 12px 28px rgba(208, 166, 42, 0.17);
  color: #17120a;
}

.site-v2 .button--gold:hover {
  box-shadow: 0 16px 38px rgba(208, 166, 42, 0.27);
}

.site-v2 .button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(8, 8, 7, 0.5);
}

.site-v2 .button--ghost:hover {
  border-color: rgba(231, 200, 105, 0.75);
  background: rgba(8, 8, 7, 0.8);
}

/* Status strip */
.site-v2 .topbar {
  min-height: 40px;
  border-top: 2px solid var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: #0a0908;
  color: #d8d0c5;
  font-size: 0.7rem;
  letter-spacing: 0.035em;
}

.site-v2 .topbar__inner {
  min-height: 38px;
}

.site-v2 .topbar__status {
  color: #f5eee3;
  font-weight: 760;
}

.site-v2 .topbar__dot {
  width: 6px;
  height: 6px;
  background: #d1a62a;
  box-shadow: 0 0 0 4px rgba(208, 166, 42, 0.11);
}

.site-v2 .topbar__status[data-state="open"] .topbar__dot {
  background: #57d38a;
  box-shadow: 0 0 0 4px rgba(87, 211, 138, 0.11);
}

.site-v2 .topbar__status[data-state="closed"] .topbar__dot {
  background: #d0a62a;
  box-shadow: 0 0 0 4px rgba(208, 166, 42, 0.11);
}

.site-v2 .topbar__links {
  gap: 12px;
  color: #9f968c;
  font-weight: 650;
}

.site-v2 .topbar__links strong {
  color: #d8d0c5;
}

.site-v2 .topbar__separator {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.13);
}

/* Brand header */
.site-v2 .site-header {
  height: var(--header-height);
  background: rgba(7, 7, 6, 0.9);
  backdrop-filter: blur(22px) saturate(120%);
}

.site-v2 .site-header.is-scrolled {
  height: 82px;
  background: rgba(7, 7, 6, 0.975);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
}

.site-v2 .site-header__inner {
  grid-template-columns: 96px 1fr auto;
  gap: 24px;
}

.site-v2 .brand {
  width: 88px;
  height: 88px;
  justify-content: center;
  transition: transform 0.25s ease;
}

.site-v2 .brand:hover {
  transform: translateY(-1px);
}

.site-v2 .brand img {
  width: 86px;
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.site-v2 .primary-nav {
  gap: clamp(20px, 2.8vw, 42px);
}

.site-v2 .primary-nav a {
  color: #c7bdb2;
  font-size: 0.72rem;
  letter-spacing: 0.095em;
}

.site-v2 .primary-nav a::after {
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.site-v2 .language-switch {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.site-v2 .language-switch__button {
  border-radius: 7px;
}

.site-v2 .language-switch__button.is-active {
  background: var(--cream);
}

.site-v2 .nav-toggle {
  border-radius: 11px;
}

/* Hero */
.site-v2 .hero {
  min-height: min(850px, calc(100svh - 40px));
}

.site-v2 .hero__media img {
  object-position: center 56%;
  filter: saturate(0.92) contrast(1.05);
}

.site-v2 .hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(5, 5, 5, 0.88) 38%, rgba(5, 5, 5, 0.3) 74%, rgba(5, 5, 5, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.9) 100%);
}

.site-v2 .hero::after {
  opacity: 0.06;
}

.site-v2 .hero__ember {
  display: none;
}

.site-v2 .hero__content {
  padding-block: 94px 130px;
}

.site-v2 .hero__content > * {
  max-width: 760px;
}

.site-v2 .hero__title {
  max-width: 740px;
  margin-bottom: 25px;
  font-size: clamp(3.7rem, 6.6vw, 6.85rem);
  line-height: 0.94;
}

.site-v2 .hero__title em {
  color: var(--gold-light);
  font-weight: 400;
}

.site-v2 .hero__lead {
  max-width: 640px;
  margin-bottom: 31px;
  color: #cbc2b8;
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.72;
}

.site-v2 .hero__actions {
  margin-bottom: 38px;
}

.site-v2 .hero__hours {
  width: min(650px, 100%);
  display: grid;
  grid-template-columns: 1.25fr auto 1fr auto 1fr;
  gap: 18px;
  padding: 17px 19px 13px;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(9, 8, 7, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.site-v2 .hero__hours-item {
  min-width: 0;
}

.site-v2 .hero__hours span {
  font-size: 0.61rem;
  letter-spacing: 0.11em;
}

.site-v2 .hero__hours strong {
  font-size: 0.84rem;
}

.site-v2 .hero__hours-divider {
  align-self: center;
  height: 27px;
}

.site-v2 .hero__hours-closed {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #9d958c;
}

.site-v2 .hero__hours-closed .icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.site-v2 .hero__hours-closed span {
  font-size: 0.62rem;
}

.site-v2 .hero__scroll {
  opacity: 0.72;
}

/* Highlights and feature cards */
.site-v2 .trust-strip {
  border-block-color: rgba(255, 255, 255, 0.085);
  background: #0d0c0b;
}

.site-v2 .trust-strip article {
  min-height: 128px;
  gap: 15px;
}

.site-v2 .trust-strip svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(208, 166, 42, 0.28);
  border-radius: 11px;
  color: var(--gold-light);
}

.site-v2 .trust-strip strong {
  font-size: 0.77rem;
}

.site-v2 .trust-strip span {
  color: #837b73;
}

.site-v2 .offerings {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 40%),
    var(--black-soft);
}

.site-v2 .offering-card {
  min-height: 350px;
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012));
}

.site-v2 .offering-card:hover {
  border-color: rgba(208, 166, 42, 0.38);
  background: linear-gradient(145deg, rgba(208, 166, 42, 0.075), rgba(255, 255, 255, 0.015));
}

.site-v2 .offering-card__number {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
}

.site-v2 .offering-card__icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(208, 166, 42, 0.27);
  border-radius: 12px;
  background: rgba(208, 166, 42, 0.055);
  color: var(--gold-light);
}

.site-v2 .offering-card__icon svg {
  width: 24px;
  height: 24px;
}

.site-v2 .menu-tab {
  border-radius: 9px;
}

.site-v2 .menu-item__badge {
  border-radius: 6px;
}

/* Reservation form */
.site-v2 .reservation {
  background:
    radial-gradient(circle at 78% 18%, rgba(189, 17, 28, 0.11), transparent 34rem),
    #0b0a09;
}

.site-v2 .reservation-card {
  padding: clamp(28px, 4vw, 44px);
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(20, 18, 16, 0.94);
  backdrop-filter: blur(20px);
}

.site-v2 .reservation-card__schedule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -5px 0 23px;
  padding: 11px 13px;
  border: 1px solid rgba(208, 166, 42, 0.2);
  border-radius: 10px;
  background: rgba(208, 166, 42, 0.055);
  color: #cfc3b5;
  font-size: 0.73rem;
}

.site-v2 .reservation-card__schedule .icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--gold-light);
}

.site-v2 .field input,
.site-v2 .field select,
.site-v2 .field textarea {
  border-color: rgba(255, 255, 255, 0.115);
  border-radius: 9px;
  background: #0d0c0b;
}

.site-v2 .field input:hover,
.site-v2 .field select:hover,
.site-v2 .field textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.site-v2 .field__hint {
  color: #7d746b;
  font-size: 0.68rem;
  line-height: 1.4;
}

.site-v2 .form-status {
  color: var(--gold-light);
}

/* Location */
.site-v2 .location {
  background: #f1ece4;
}

.site-v2 .location__hours {
  grid-template-columns: 1.2fr 1fr 1fr 0.82fr;
}

.site-v2 .location__hours .location__closed {
  padding-right: 0;
}

.site-v2 .location__closed strong {
  color: var(--red);
}

.site-v2 .map-card {
  border-radius: 20px;
}

.site-v2 .map-card__pin {
  background: #15110d;
  box-shadow: 0 10px 25px rgba(15, 12, 9, 0.3), 0 0 0 9px rgba(208, 166, 42, 0.18);
  color: var(--gold-light);
}

.site-v2 .map-card__pin svg {
  color: inherit;
  stroke: currentColor;
}

/* Footer and social */
.site-v2 .site-footer {
  background: #070706;
}

.site-v2 .site-footer__brand img {
  width: 178px;
  max-height: 178px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.32));
}

.site-v2 .social-links a {
  border-radius: 10px;
}

.site-v2 .site-footer__column small {
  display: inline-block;
  margin-top: 5px;
  color: #756e67;
  font-size: 0.72rem;
}

/* Refined WhatsApp reservation dock: intentionally avoids the generic green bubble. */
.site-v2 .whatsapp-float {
  right: 20px;
  bottom: 20px;
  min-width: 238px;
  min-height: 68px;
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  align-items: center;
  gap: 12px;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(231, 200, 105, 0.36);
  border-radius: 16px;
  background: rgba(10, 9, 8, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  color: var(--white);
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  backdrop-filter: blur(18px);
}

.site-v2 .whatsapp-float::before {
  display: none;
}

.site-v2 .whatsapp-float:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 200, 105, 0.72);
  background: rgba(17, 15, 12, 0.98);
}

.site-v2 .whatsapp-float__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #17120a;
}

.site-v2 .whatsapp-float__icon .icon {
  width: 21px;
  height: 21px;
}

.site-v2 .whatsapp-float__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}

.site-v2 .whatsapp-float__copy strong {
  color: #fff8ed;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-v2 .whatsapp-float__copy small {
  margin-top: 5px;
  color: #8f877f;
  font-size: 0.68rem;
  font-weight: 650;
}

.site-v2 .whatsapp-float__arrow {
  color: var(--gold-light);
}

.site-v2 .whatsapp-float__arrow .icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 1120px) {
  body.site-v2 {
    --header-height: 86px;
  }

  .site-v2 .site-header__inner {
    grid-template-columns: 82px 1fr auto;
  }

  .site-v2 .brand,
  .site-v2 .brand img {
    width: 76px;
    height: 76px;
  }

  .site-v2 .location__hours {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-v2 .location__hours div:nth-child(2) {
    border-right: 0;
  }

  .site-v2 .location__hours div:nth-child(3),
  .site-v2 .location__hours div:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }
}

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

  .site-v2 .brand {
    width: 72px;
  }

  .site-v2 .brand img {
    width: 70px;
    height: 70px;
  }

  .site-v2 .primary-nav {
    top: var(--header-height);
    padding-top: 32px;
  }

  .site-v2 .hero {
    min-height: 790px;
  }

  .site-v2 .hero__content {
    padding-block: 82px 112px;
  }

  .site-v2 .hero__title {
    font-size: clamp(3.5rem, 10vw, 5.8rem);
  }
}

@media (max-width: 680px) {
  body.site-v2 {
    --header-height: 74px;
  }

  .site-v2 .topbar {
    min-height: 38px;
  }

  .site-v2 .topbar__inner {
    justify-content: center;
  }

  .site-v2 .topbar__status {
    justify-content: center;
    text-align: center;
  }

  .site-v2 .site-header__inner {
    grid-template-columns: 62px 1fr auto;
  }

  .site-v2 .brand,
  .site-v2 .brand img {
    width: 59px;
    height: 59px;
  }

  .site-v2 .header-actions {
    margin-right: 2px;
  }

  .site-v2 .language-switch {
    transform: scale(0.88);
  }

  .site-v2 .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-v2 .hero {
    min-height: min(850px, calc(100svh - 38px));
  }

  .site-v2 .hero__media img {
    object-position: 61% center;
  }

  .site-v2 .hero__overlay {
    background:
      linear-gradient(180deg, rgba(4, 4, 4, 0.19) 0%, rgba(4, 4, 4, 0.58) 32%, rgba(4, 4, 4, 0.97) 80%),
      linear-gradient(90deg, rgba(4, 4, 4, 0.8), rgba(4, 4, 4, 0.1));
  }

  .site-v2 .hero__content {
    padding-block: 90px 82px;
  }

  .site-v2 .hero__title {
    font-size: clamp(3.05rem, 15vw, 4.8rem);
    line-height: 0.95;
  }

  .site-v2 .hero__lead {
    line-height: 1.65;
  }

  .site-v2 .hero__actions {
    gap: 10px;
    margin-bottom: 26px;
  }

  .site-v2 .hero__hours {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .site-v2 .hero__hours-item {
    padding: 14px 15px;
  }

  .site-v2 .hero__hours-item:first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-v2 .hero__hours-item:nth-of-type(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-v2 .hero__hours-divider {
    display: none;
  }

  .site-v2 .hero__hours-closed {
    padding: 10px 15px;
  }

  .site-v2 .trust-strip article {
    min-height: 98px;
  }

  .site-v2 .offering-card {
    min-height: 300px;
  }

  .site-v2 .reservation-card__schedule {
    align-items: flex-start;
    line-height: 1.5;
  }

  .site-v2 .location__hours {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-v2 .location__hours div,
  .site-v2 .location__hours div + div {
    padding: 15px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .site-v2 .location__hours div:nth-child(2n) {
    border-right: 0;
  }

  .site-v2 .location__hours div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .site-v2 .site-footer__brand img {
    width: 154px;
    max-height: 154px;
  }

  .site-v2 .site-footer__bottom {
    padding-bottom: 122px;
  }

  .site-v2 .whatsapp-float {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    min-width: 0;
    min-height: 64px;
    grid-template-columns: 42px 1fr 20px;
    padding: 9px 12px 9px 9px;
    border-radius: 15px;
  }

  .site-v2 .whatsapp-float span {
    display: flex;
  }

  .site-v2 .whatsapp-float__icon {
    width: 42px;
    height: 42px;
  }

  .site-v2 .whatsapp-float__copy strong {
    font-size: 0.75rem;
  }
}
