.hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: center;
      overflow: hidden;
      color: var(--color-white);
      background:
        linear-gradient(90deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.58), rgba(11, 11, 11, 0.25)),
        radial-gradient(circle at 72% 34%, rgba(155, 107, 61, 0.24), transparent 34%),
        linear-gradient(135deg, #131313, #2b211a 45%, #080808);
    }

.hero::before,
    .placeholder::before {
      position: absolute;
      inset: 0;
      pointer-events: none;
      content: "";
      opacity: 0.28;
      background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.055) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
      background-size: 34px 34px;
    }

.hero__placeholder {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.22);
      font-family: "Inter", Arial, sans-serif;
      font-size: clamp(20px, 4vw, 54px);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-align: center;
      text-transform: uppercase;
    }

.hero__placeholder img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      animation: cinematicZoom 22s ease-in-out infinite alternate;
      transform-origin: center center;
      will-change: transform;
    }

@keyframes cinematicZoom {
      from {
        transform: scale(1) translate(0, 0);
      }

      to {
        transform: scale(1.08) translate(-1.6%, -0.8%);
      }
    }

.placeholder img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

.hero__placeholder::after {
      position: absolute;
      inset: 0;
      content: "";
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(11, 11, 11, 0.18), rgba(11, 11, 11, 0.58)),
        linear-gradient(90deg, rgba(11, 11, 11, 0.62), rgba(11, 11, 11, 0.24));
    }

.hero__content {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      padding: 112px 0 128px;
      margin: 0 auto;
      text-align: center;
    }

.eyebrow,
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--color-bronze) !important;
      font-family: "Inter", Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

.eyebrow::before,
    .eyebrow::after,
    .section-label::before,
    .section-label::after {
      width: 36px;
      height: 1px;
      content: "";
      background: currentColor;
    }

h1,
    h2,
    h3 {
      margin: 0;
      font-family: "Playfair Display", Georgia, serif;
      line-height: 1.08;
      color: inherit;
    }

h1 {
      max-width: 800px;
      margin: 22px auto 0;
      font-size: clamp(54px, 8vw, 108px);
      font-weight: 800;
    }

.hero h1 {
      max-width: 1180px;
      font-size: clamp(48px, 5.2vw, 74px);
      white-space: nowrap;
    }

.hero__subtitle {
      max-width: 980px;
      margin: 22px auto 0;
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(22px, 3vw, 34px);
      line-height: 1.24;
      color: rgba(255, 255, 255, 0.94);
      white-space: nowrap;
    }

.hero__text {
      max-width: 620px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 18px;
    }

.hero__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 28px 0 0;
      font-family: "Inter", Arial, sans-serif;
      font-size: 13px;
      font-weight: 700;
    }

.badge {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 8px 14px;
      color: rgba(255, 255, 255, 0.92);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(155, 107, 61, 0.32);
      border-radius: 999px;
      backdrop-filter: blur(12px);
    }

.hero__actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-top: 36px;
    }

.placeholder img {
      z-index: 0;
    }

.eyebrow,
    .section-label,
    .reservation-form__eyebrow {
      color: #8f1f1f !important;
    }

.eyebrow::before,
    .eyebrow::after,
    .section-label::before,
    .section-label::after {
      background: #8f1f1f !important;
    }
